@keshavsoft/kschema-cli 1.12.12 → 1.12.14

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 (4040) hide show
  1. package/bin/v12/commands/express/steps/locateSource.js +1 -1
  2. package/bin/v12/commands/express/template/v5/.env +9 -0
  3. package/bin/v12/commands/express/template/v5/Config/Schemas/LedgerNames.json +60 -0
  4. package/bin/v12/commands/express/template/v5/Config/Schemas/StockItems.json +50 -0
  5. package/bin/v12/commands/express/template/v5/Public/index.html +129 -0
  6. package/bin/v12/commands/express/template/v5/app.js +19 -0
  7. package/bin/v12/commands/express/template/v5/configLoader.js +6 -0
  8. package/bin/v12/commands/express/template/v5/package-lock.json +834 -0
  9. package/bin/v12/commands/express/template/v5/package.json +18 -0
  10. package/bin/v12/commands/express/template/v5/port.js +6 -0
  11. package/bin/v12/commands/express/template/v5/routes.js +5 -0
  12. package/bin/v12/commands/express/template/v5/server.js +13 -0
  13. package/bin/v12/commands/tally/steps/locateSource.js +1 -1
  14. package/bin/v12/commands/tally/template/v4/.env +9 -0
  15. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Config/schema.json +3 -0
  16. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/controller.js +27 -0
  17. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/errors.js +11 -0
  18. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/middleware.js +19 -0
  19. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/rest.http +1 -0
  20. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/service.js +11 -0
  21. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/controller.js +24 -0
  22. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/errors.js +11 -0
  23. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/middleware.js +19 -0
  24. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/rest.http +12 -0
  25. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/service.js +11 -0
  26. package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/end-points.js +11 -0
  27. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Config/schema.json +3 -0
  28. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/controller.js +27 -0
  29. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/errors.js +11 -0
  30. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/middleware.js +19 -0
  31. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/rest.http +1 -0
  32. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/service.js +9 -0
  33. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/controller.js +24 -0
  34. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/errors.js +11 -0
  35. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/middleware.js +19 -0
  36. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/rest.http +13 -0
  37. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/service.js +11 -0
  38. package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/end-points.js +11 -0
  39. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/Config/schema.json +3 -0
  40. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/controller.js +21 -0
  41. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/errors.js +11 -0
  42. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/rest.http +1 -0
  43. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/service.js +9 -0
  44. package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/end-points.js +9 -0
  45. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/Config/schema.json +3 -0
  46. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/controller.js +21 -0
  47. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/errors.js +11 -0
  48. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/rest.http +1 -0
  49. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/service.js +9 -0
  50. package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/end-points.js +9 -0
  51. package/bin/v12/commands/tally/template/v4/Api/V1/routes.js +13 -0
  52. package/bin/v12/commands/tally/template/v4/Api/routes.js +7 -0
  53. package/bin/v12/commands/tally/template/v4/Config/Schemas/LedgerNames.json +60 -0
  54. package/bin/v12/commands/tally/template/v4/Config/Schemas/StockItems.json +85 -0
  55. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Config/schema.json +3 -0
  56. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/controller.js +21 -0
  57. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/errors.js +11 -0
  58. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/restNew.http +1 -0
  59. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/routes.js +11 -0
  60. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/service.js +24 -0
  61. package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/end-points.js +9 -0
  62. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Config/schema.json +3 -0
  63. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/controller.js +21 -0
  64. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/errors.js +11 -0
  65. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/restNew.http +1 -0
  66. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/routes.js +11 -0
  67. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/service.js +42 -0
  68. package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/end-points.js +9 -0
  69. package/bin/v12/commands/tally/template/v4/FromTally/V1/routes.js +11 -0
  70. package/bin/v12/commands/tally/template/v4/FromTally/routes.js +8 -0
  71. package/bin/v12/commands/tally/template/v4/Import/Templates/inventory.json +121 -0
  72. package/bin/v12/commands/tally/template/v4/Import/Templates/ledgers.json +28 -0
  73. package/bin/v12/commands/tally/template/v4/Import/Templates/main.json +224 -0
  74. package/bin/v12/commands/tally/template/v4/Import/Templates/template.json +224 -0
  75. package/bin/v12/commands/tally/template/v4/Import/ledgers.json +17 -0
  76. package/bin/v12/commands/tally/template/v4/Import/staticVariables.json +12 -0
  77. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  78. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  79. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  80. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  81. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  82. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  83. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
  84. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/start.js +21 -0
  85. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/attachSortHandlers.js +38 -0
  86. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/getTHead.js +12 -0
  87. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/sortData.js +16 -0
  88. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/start.js +9 -0
  89. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/updateHeaderUI.js +49 -0
  90. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/start.js +15 -0
  91. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
  92. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
  93. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
  94. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
  95. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
  96. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
  97. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
  98. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
  99. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
  100. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
  101. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
  102. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
  103. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
  104. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
  105. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
  106. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
  107. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
  108. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
  109. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
  110. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
  111. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
  112. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
  113. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
  114. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
  115. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
  116. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/applyProjection.js +15 -0
  117. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/start.js +86 -0
  118. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  119. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  120. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  121. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  122. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  123. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  124. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  125. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  126. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  127. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  128. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  129. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  130. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  131. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  132. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  133. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  134. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  135. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  136. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  137. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  138. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  139. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  140. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  141. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  142. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  143. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  144. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  145. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  146. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  147. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  148. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  149. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  150. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  151. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  152. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  153. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  154. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  155. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  156. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  157. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  158. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  159. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  160. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  161. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  162. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  163. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  164. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  165. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  166. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  167. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  168. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  169. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  170. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  171. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  172. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  173. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  174. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  175. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  176. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  177. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  178. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  179. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  180. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  181. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  182. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  183. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  184. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  185. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  186. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  187. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  188. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  189. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  190. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  191. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  192. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  193. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  194. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  195. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  196. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  197. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  198. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  199. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  200. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
  201. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
  202. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  203. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  204. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  205. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  206. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  207. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  208. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  209. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  210. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  211. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  212. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  213. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  214. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  215. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  216. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  217. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  218. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  219. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  220. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  221. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  222. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  223. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  224. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  225. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  226. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  227. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  228. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  229. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  230. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  231. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  232. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  233. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  234. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  235. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  236. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  237. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  238. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  239. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  240. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  241. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  242. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  243. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  244. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  245. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  246. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  247. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  248. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  249. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  250. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  251. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  252. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  253. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  254. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  255. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  256. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  257. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  258. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  259. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  260. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  261. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  262. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  263. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  264. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  265. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  266. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  267. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  268. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  269. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  270. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  271. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  272. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  273. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  274. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  275. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  276. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  277. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  278. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  279. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  280. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  281. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  282. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
  283. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  284. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
  285. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
  286. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
  287. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/afterMutation.js +46 -0
  288. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/initRender.js +97 -0
  289. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/refresh.js +31 -0
  290. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/start.js +49 -0
  291. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/start.js +15 -0
  292. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
  293. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
  294. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
  295. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
  296. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
  297. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
  298. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
  299. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
  300. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/start.js +27 -0
  301. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
  302. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom.js +67 -0
  303. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
  304. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V1/createForm.js +65 -0
  305. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
  306. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
  307. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createButton.js +29 -0
  308. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createForm.js +44 -0
  309. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
  310. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
  311. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
  312. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
  313. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createButton.js +30 -0
  314. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createForm.js +52 -0
  315. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
  316. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
  317. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/applyProjection.js +15 -0
  318. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/start.js +86 -0
  319. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  320. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  321. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  322. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  323. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  324. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  325. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  326. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  327. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  328. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  329. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  330. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  331. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  332. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  333. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  334. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  335. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  336. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  337. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  338. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  339. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  340. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  341. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  342. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  343. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  344. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  345. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  346. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  347. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  348. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  349. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  350. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  351. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  352. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  353. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  354. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  355. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  356. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  357. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  358. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  359. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  360. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  361. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  362. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  363. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  364. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  365. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  366. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  367. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  368. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  369. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  370. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  371. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  372. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  373. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  374. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  375. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  376. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  377. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  378. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  379. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  380. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  381. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  382. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  383. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  384. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  385. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  386. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  387. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  388. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  389. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  390. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  391. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  392. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  393. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  394. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  395. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  396. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  397. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  398. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  399. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  400. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  401. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/init.js +54 -0
  402. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/start.js +37 -0
  403. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  404. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  405. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  406. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  407. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  408. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  409. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  410. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  411. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  412. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  413. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  414. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  415. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  416. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  417. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  418. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  419. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  420. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  421. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  422. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  423. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  424. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  425. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  426. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  427. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  428. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  429. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  430. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  431. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  432. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  433. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  434. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  435. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  436. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  437. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  438. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  439. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  440. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  441. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  442. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  443. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  444. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  445. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  446. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  447. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  448. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  449. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  450. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  451. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  452. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  453. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  454. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  455. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  456. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  457. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  458. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  459. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  460. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  461. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  462. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  463. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  464. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  465. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  466. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  467. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  468. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  469. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  470. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  471. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  472. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  473. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  474. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  475. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  476. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  477. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  478. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  479. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  480. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  481. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  482. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  483. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  484. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  485. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/init.js +61 -0
  486. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
  487. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/start.js +37 -0
  488. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/afterMutation.js +46 -0
  489. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/initRender.js +118 -0
  490. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/refresh.js +31 -0
  491. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/start.js +80 -0
  492. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/start.js +15 -0
  493. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
  494. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
  495. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
  496. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
  497. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
  498. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
  499. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
  500. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
  501. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/start.js +27 -0
  502. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
  503. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom.js +67 -0
  504. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
  505. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V1/createForm.js +65 -0
  506. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
  507. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
  508. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createButton.js +29 -0
  509. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createForm.js +44 -0
  510. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
  511. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
  512. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
  513. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
  514. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createButton.js +30 -0
  515. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createForm.js +52 -0
  516. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
  517. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
  518. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/applyProjection.js +15 -0
  519. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/start.js +69 -0
  520. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  521. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  522. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  523. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  524. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  525. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  526. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  527. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  528. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  529. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  530. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  531. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  532. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  533. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  534. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  535. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  536. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  537. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  538. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  539. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  540. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  541. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  542. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  543. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  544. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  545. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  546. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  547. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  548. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  549. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  550. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  551. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  552. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  553. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  554. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  555. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  556. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  557. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  558. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  559. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  560. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  561. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  562. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  563. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  564. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  565. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  566. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  567. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  568. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  569. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  570. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  571. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  572. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  573. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  574. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  575. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  576. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  577. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  578. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  579. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  580. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  581. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  582. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  583. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  584. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  585. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  586. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  587. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  588. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  589. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  590. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  591. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  592. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  593. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  594. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  595. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  596. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  597. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  598. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  599. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  600. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  601. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  602. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/init.js +54 -0
  603. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/start.js +37 -0
  604. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  605. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  606. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  607. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  608. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  609. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  610. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  611. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  612. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  613. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  614. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  615. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  616. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  617. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  618. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  619. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  620. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  621. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  622. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  623. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  624. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  625. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  626. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  627. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  628. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  629. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  630. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  631. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  632. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  633. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  634. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  635. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  636. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  637. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  638. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  639. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  640. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  641. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  642. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  643. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  644. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  645. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  646. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  647. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  648. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  649. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  650. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  651. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  652. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  653. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  654. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  655. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  656. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  657. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  658. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  659. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  660. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  661. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  662. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  663. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  664. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  665. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  666. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  667. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  668. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  669. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  670. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  671. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  672. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  673. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  674. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  675. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  676. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  677. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  678. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  679. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  680. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  681. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  682. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  683. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  684. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  685. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  686. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/init.js +61 -0
  687. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
  688. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/start.js +37 -0
  689. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/afterMutation.js +46 -0
  690. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/initRender.js +70 -0
  691. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/refresh.js +31 -0
  692. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/start.js +80 -0
  693. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Core/applyMode.js +41 -0
  694. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Core/loadDataFlow.js +24 -0
  695. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/DataLayer/loadInitialData.js +48 -0
  696. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/DomManipulation/start.js +45 -0
  697. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/FocusSet/V1/focusSet.js +21 -0
  698. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/FocusSet/V2/focusSet.js +44 -0
  699. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/HtmlState/start.js +16 -0
  700. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  701. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  702. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  703. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  704. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  705. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  706. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/insertCells.js +9 -0
  707. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/start.js +21 -0
  708. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/attachSortHandlers.js +38 -0
  709. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/getTHead.js +12 -0
  710. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/sortData.js +16 -0
  711. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/start.js +9 -0
  712. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/updateHeaderUI.js +49 -0
  713. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/buildUrlWithParams.js +11 -0
  714. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/createItem.js +15 -0
  715. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/createServices.js +51 -0
  716. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/dataListLoader.js +17 -0
  717. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/deleteItem.js +11 -0
  718. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/findItem.js +11 -0
  719. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/formSearchParamsFunc.js +8 -0
  720. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/getData.js +19 -0
  721. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/setupServices.js +13 -0
  722. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/updateItem.js +15 -0
  723. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/columnStore.js +13 -0
  724. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/dataStore.js +38 -0
  725. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/metaStore.js +11 -0
  726. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/start.js +9 -0
  727. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/columnStore.js +25 -0
  728. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/dataStore.js +45 -0
  729. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/metaStore.js +11 -0
  730. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/start.js +9 -0
  731. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountTableOnly.js +29 -0
  732. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountTableUI.js +27 -0
  733. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountVertical.js +29 -0
  734. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/normalizeConfig.js +27 -0
  735. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/prepareColumnsBundle.js +26 -0
  736. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/tableHelpers.js +24 -0
  737. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateConfig.js +16 -0
  738. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateEndpoints.js +12 -0
  739. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateOptions.js +21 -0
  740. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateRequired.js +16 -0
  741. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/ai.js +164 -0
  742. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/entry.js +23 -0
  743. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/tableStore.js +79 -0
  744. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/uiClasses.js +22 -0
  745. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  746. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  747. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  748. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  749. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  750. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  751. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
  752. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/start.js +21 -0
  753. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/attachSortHandlers.js +38 -0
  754. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/getTHead.js +12 -0
  755. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/sortData.js +16 -0
  756. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/start.js +9 -0
  757. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/updateHeaderUI.js +49 -0
  758. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/start.js +15 -0
  759. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
  760. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
  761. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
  762. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
  763. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
  764. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
  765. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
  766. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
  767. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
  768. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
  769. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
  770. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
  771. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
  772. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
  773. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
  774. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
  775. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
  776. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
  777. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
  778. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
  779. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
  780. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
  781. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
  782. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
  783. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
  784. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/applyProjection.js +15 -0
  785. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/start.js +86 -0
  786. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  787. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  788. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  789. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  790. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  791. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  792. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  793. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  794. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  795. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  796. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  797. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  798. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  799. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  800. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  801. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  802. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  803. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  804. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  805. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  806. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  807. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  808. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  809. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  810. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  811. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  812. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  813. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  814. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  815. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  816. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  817. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  818. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  819. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  820. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  821. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  822. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  823. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  824. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  825. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  826. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  827. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  828. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  829. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  830. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  831. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  832. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  833. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  834. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  835. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  836. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  837. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  838. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  839. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  840. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  841. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  842. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  843. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  844. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  845. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  846. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  847. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  848. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  849. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  850. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  851. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  852. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  853. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  854. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  855. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  856. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  857. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  858. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  859. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  860. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  861. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  862. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  863. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  864. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  865. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  866. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  867. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  868. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
  869. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
  870. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  871. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  872. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  873. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  874. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  875. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  876. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  877. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  878. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  879. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  880. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  881. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  882. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  883. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  884. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  885. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  886. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  887. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  888. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  889. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  890. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  891. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  892. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  893. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  894. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  895. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  896. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  897. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  898. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  899. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  900. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  901. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  902. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  903. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  904. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  905. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  906. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  907. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  908. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  909. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  910. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  911. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  912. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  913. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  914. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  915. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  916. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  917. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  918. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  919. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  920. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  921. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  922. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  923. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  924. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  925. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  926. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  927. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  928. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  929. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  930. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  931. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  932. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  933. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  934. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  935. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  936. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  937. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  938. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  939. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  940. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  941. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  942. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  943. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  944. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  945. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  946. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  947. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  948. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  949. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  950. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
  951. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  952. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
  953. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
  954. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
  955. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/afterMutation.js +46 -0
  956. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/initRender.js +97 -0
  957. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/refresh.js +31 -0
  958. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/start.js +49 -0
  959. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/start.js +15 -0
  960. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
  961. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
  962. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
  963. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
  964. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
  965. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
  966. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
  967. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
  968. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/start.js +27 -0
  969. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
  970. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom.js +67 -0
  971. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
  972. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V1/createForm.js +65 -0
  973. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
  974. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
  975. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createButton.js +29 -0
  976. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createForm.js +44 -0
  977. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
  978. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
  979. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
  980. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
  981. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createButton.js +30 -0
  982. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createForm.js +52 -0
  983. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
  984. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
  985. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/applyProjection.js +15 -0
  986. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/start.js +86 -0
  987. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  988. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  989. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  990. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  991. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  992. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  993. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  994. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  995. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  996. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  997. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  998. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  999. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1000. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1001. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1002. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1003. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1004. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1005. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1006. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1007. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1008. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1009. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1010. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1011. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1012. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  1013. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1014. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1015. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  1016. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  1017. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1018. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1019. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1020. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1021. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1022. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1023. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1024. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1025. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1026. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1027. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1028. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1029. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1030. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1031. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1032. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1033. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  1034. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1035. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1036. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  1037. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  1038. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1039. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1040. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1041. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1042. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1043. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1044. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1045. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1046. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  1047. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  1048. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1049. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1050. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1051. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1052. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1053. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1054. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  1055. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1056. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  1057. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  1058. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  1059. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1060. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1061. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1062. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1063. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1064. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1065. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1066. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1067. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  1068. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  1069. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/init.js +54 -0
  1070. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/start.js +37 -0
  1071. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  1072. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  1073. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  1074. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1075. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1076. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  1077. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  1078. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1079. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  1080. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1081. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1082. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1083. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1084. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1085. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1086. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1087. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1088. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1089. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1090. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1091. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1092. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1093. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1094. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1095. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1096. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  1097. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1098. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1099. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  1100. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  1101. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1102. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1103. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1104. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1105. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1106. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1107. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1108. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1109. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1110. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1111. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1112. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1113. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1114. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1115. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1116. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1117. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  1118. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1119. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1120. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  1121. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  1122. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1123. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1124. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1125. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1126. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1127. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1128. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1129. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1130. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  1131. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  1132. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1133. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1134. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1135. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1136. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1137. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1138. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  1139. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1140. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  1141. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  1142. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  1143. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1144. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1145. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1146. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1147. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1148. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1149. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1150. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1151. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  1152. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  1153. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/init.js +61 -0
  1154. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
  1155. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/start.js +37 -0
  1156. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/afterMutation.js +46 -0
  1157. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/initRender.js +118 -0
  1158. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/refresh.js +31 -0
  1159. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/start.js +80 -0
  1160. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/start.js +15 -0
  1161. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
  1162. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
  1163. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
  1164. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
  1165. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
  1166. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
  1167. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
  1168. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
  1169. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/start.js +27 -0
  1170. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
  1171. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom.js +67 -0
  1172. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
  1173. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V1/createForm.js +65 -0
  1174. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
  1175. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
  1176. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createButton.js +29 -0
  1177. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createForm.js +44 -0
  1178. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
  1179. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
  1180. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
  1181. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
  1182. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createButton.js +30 -0
  1183. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createForm.js +52 -0
  1184. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
  1185. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
  1186. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/applyProjection.js +15 -0
  1187. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/start.js +69 -0
  1188. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  1189. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  1190. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  1191. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1192. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1193. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  1194. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  1195. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1196. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  1197. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1198. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1199. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1200. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1201. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1202. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1203. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1204. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1205. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1206. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1207. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1208. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1209. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1210. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1211. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1212. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1213. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  1214. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1215. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1216. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  1217. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  1218. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1219. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1220. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1221. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1222. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1223. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1224. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1225. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1226. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1227. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1228. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1229. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1230. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1231. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1232. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1233. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1234. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  1235. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1236. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1237. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  1238. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  1239. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1240. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1241. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1242. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1243. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1244. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1245. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1246. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1247. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  1248. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  1249. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1250. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1251. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1252. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1253. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1254. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1255. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  1256. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1257. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  1258. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  1259. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  1260. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1261. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1262. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1263. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1264. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1265. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1266. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1267. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1268. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  1269. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  1270. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/init.js +54 -0
  1271. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/start.js +37 -0
  1272. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  1273. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  1274. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  1275. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1276. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1277. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  1278. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  1279. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1280. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  1281. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1282. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1283. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1284. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1285. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1286. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1287. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1288. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1289. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1290. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1291. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1292. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1293. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1294. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1295. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1296. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1297. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  1298. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1299. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1300. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  1301. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  1302. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1303. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1304. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1305. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1306. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1307. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1308. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1309. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1310. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1311. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1312. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1313. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1314. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1315. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1316. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1317. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1318. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  1319. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1320. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1321. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  1322. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  1323. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1324. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1325. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1326. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1327. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1328. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1329. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1330. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1331. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  1332. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  1333. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1334. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1335. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1336. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1337. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1338. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1339. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  1340. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1341. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  1342. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  1343. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  1344. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1345. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1346. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1347. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1348. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1349. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1350. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1351. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1352. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  1353. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  1354. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/init.js +61 -0
  1355. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
  1356. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/start.js +37 -0
  1357. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/afterMutation.js +46 -0
  1358. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/initRender.js +70 -0
  1359. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/refresh.js +31 -0
  1360. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/start.js +80 -0
  1361. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/applyMode.js +41 -0
  1362. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/loadDataFlow.js +24 -0
  1363. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/loadVerticalOnly.js +14 -0
  1364. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/DataLayer/loadInitialData.js +48 -0
  1365. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/DomManipulation/start.js +45 -0
  1366. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/FocusSet/V1/focusSet.js +21 -0
  1367. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/FocusSet/V2/focusSet.js +44 -0
  1368. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/HtmlState/start.js +16 -0
  1369. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1370. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1371. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1372. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1373. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1374. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1375. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/insertCells.js +9 -0
  1376. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/start.js +21 -0
  1377. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/attachSortHandlers.js +38 -0
  1378. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/getTHead.js +12 -0
  1379. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/sortData.js +16 -0
  1380. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/start.js +9 -0
  1381. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/updateHeaderUI.js +49 -0
  1382. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/buildUrlWithParams.js +11 -0
  1383. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/createItem.js +15 -0
  1384. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/createServices.js +51 -0
  1385. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/dataListLoader.js +17 -0
  1386. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/deleteItem.js +11 -0
  1387. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/findItem.js +11 -0
  1388. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/formSearchParamsFunc.js +8 -0
  1389. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/getData.js +19 -0
  1390. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/setupServices.js +13 -0
  1391. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/updateItem.js +15 -0
  1392. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/columnStore.js +13 -0
  1393. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/dataStore.js +38 -0
  1394. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/metaStore.js +11 -0
  1395. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/start.js +9 -0
  1396. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/columnStore.js +25 -0
  1397. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/dataStore.js +45 -0
  1398. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/metaStore.js +11 -0
  1399. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/start.js +9 -0
  1400. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountTableOnly.js +29 -0
  1401. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountTableUI.js +27 -0
  1402. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountVertical.js +29 -0
  1403. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/normalizeConfig.js +27 -0
  1404. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/prepareColumnsBundle.js +26 -0
  1405. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/tableHelpers.js +24 -0
  1406. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateConfig.js +16 -0
  1407. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateEndpoints.js +12 -0
  1408. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateOptions.js +21 -0
  1409. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateRequired.js +16 -0
  1410. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/ai.js +165 -0
  1411. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/entry.js +23 -0
  1412. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/tableStore.js +79 -0
  1413. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/uiClasses.js +22 -0
  1414. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1415. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1416. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1417. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1418. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1419. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1420. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
  1421. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/start.js +21 -0
  1422. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/attachSortHandlers.js +38 -0
  1423. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/getTHead.js +12 -0
  1424. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/sortData.js +16 -0
  1425. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/start.js +9 -0
  1426. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/updateHeaderUI.js +49 -0
  1427. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/start.js +15 -0
  1428. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
  1429. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
  1430. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
  1431. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
  1432. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
  1433. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
  1434. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
  1435. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
  1436. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
  1437. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
  1438. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
  1439. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
  1440. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
  1441. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
  1442. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
  1443. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
  1444. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
  1445. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
  1446. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
  1447. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
  1448. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
  1449. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
  1450. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
  1451. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
  1452. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
  1453. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/applyProjection.js +15 -0
  1454. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/start.js +86 -0
  1455. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  1456. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  1457. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  1458. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1459. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1460. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  1461. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  1462. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1463. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  1464. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1465. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1466. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1467. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1468. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1469. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1470. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1471. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1472. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1473. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1474. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1475. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1476. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1477. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1478. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1479. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1480. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  1481. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1482. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1483. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  1484. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  1485. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1486. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1487. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1488. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1489. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1490. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1491. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1492. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1493. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1494. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1495. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1496. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1497. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1498. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1499. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1500. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1501. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  1502. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1503. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1504. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  1505. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  1506. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1507. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1508. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1509. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1510. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1511. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1512. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1513. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1514. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  1515. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  1516. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1517. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1518. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1519. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1520. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1521. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1522. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  1523. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1524. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  1525. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  1526. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  1527. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1528. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1529. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1530. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1531. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1532. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1533. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1534. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1535. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  1536. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  1537. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
  1538. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
  1539. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  1540. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  1541. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  1542. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1543. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1544. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  1545. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  1546. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1547. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  1548. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1549. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1550. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1551. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1552. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1553. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1554. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1555. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1556. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1557. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1558. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1559. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1560. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1561. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1562. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1563. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1564. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  1565. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1566. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1567. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  1568. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  1569. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1570. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1571. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1572. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1573. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1574. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1575. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1576. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1577. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1578. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1579. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1580. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1581. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1582. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1583. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1584. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1585. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  1586. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1587. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1588. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  1589. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  1590. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1591. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1592. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1593. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1594. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1595. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1596. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1597. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1598. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  1599. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  1600. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1601. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1602. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1603. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1604. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1605. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1606. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  1607. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1608. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  1609. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  1610. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  1611. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1612. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1613. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1614. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1615. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1616. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1617. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1618. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1619. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
  1620. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  1621. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
  1622. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
  1623. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
  1624. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/afterMutation.js +46 -0
  1625. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/initRender.js +97 -0
  1626. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/refresh.js +31 -0
  1627. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/start.js +49 -0
  1628. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/start.js +15 -0
  1629. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
  1630. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
  1631. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
  1632. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
  1633. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
  1634. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
  1635. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
  1636. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
  1637. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/start.js +27 -0
  1638. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
  1639. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom.js +67 -0
  1640. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
  1641. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V1/createForm.js +65 -0
  1642. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
  1643. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
  1644. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createButton.js +29 -0
  1645. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createForm.js +44 -0
  1646. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
  1647. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
  1648. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
  1649. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
  1650. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createButton.js +30 -0
  1651. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createForm.js +52 -0
  1652. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
  1653. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
  1654. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/applyProjection.js +15 -0
  1655. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/start.js +86 -0
  1656. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  1657. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  1658. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  1659. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1660. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1661. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  1662. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  1663. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1664. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  1665. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1666. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1667. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1668. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1669. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1670. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1671. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1672. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1673. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1674. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1675. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1676. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1677. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1678. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1679. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1680. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1681. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  1682. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1683. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1684. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  1685. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  1686. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1687. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1688. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1689. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1690. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1691. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1692. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1693. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1694. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1695. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1696. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1697. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1698. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1699. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1700. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1701. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1702. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  1703. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1704. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1705. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  1706. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  1707. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1708. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1709. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1710. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1711. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1712. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1713. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1714. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1715. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  1716. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  1717. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1718. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1719. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1720. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1721. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1722. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1723. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  1724. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1725. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  1726. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  1727. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  1728. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1729. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1730. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1731. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1732. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1733. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1734. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1735. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1736. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  1737. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  1738. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/init.js +54 -0
  1739. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/start.js +37 -0
  1740. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  1741. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  1742. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  1743. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1744. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1745. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  1746. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  1747. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1748. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  1749. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1750. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1751. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1752. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1753. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1754. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1755. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1756. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1757. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1758. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1759. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1760. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1761. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1762. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1763. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1764. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1765. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  1766. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1767. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1768. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  1769. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  1770. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1771. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1772. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1773. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1774. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1775. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1776. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1777. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1778. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1779. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1780. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1781. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1782. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1783. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1784. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1785. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1786. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  1787. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1788. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1789. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  1790. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  1791. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1792. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1793. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1794. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1795. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1796. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1797. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1798. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1799. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
  1800. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  1801. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1802. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1803. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
  1804. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1805. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1806. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1807. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  1808. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1809. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
  1810. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  1811. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  1812. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1813. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1814. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1815. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1816. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1817. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1818. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1819. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1820. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  1821. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  1822. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/init.js +62 -0
  1823. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
  1824. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/start.js +37 -0
  1825. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/afterMutation.js +46 -0
  1826. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/initRender.js +118 -0
  1827. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/refresh.js +31 -0
  1828. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/start.js +80 -0
  1829. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/start.js +15 -0
  1830. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
  1831. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
  1832. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
  1833. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
  1834. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
  1835. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
  1836. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
  1837. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
  1838. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/start.js +27 -0
  1839. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
  1840. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom.js +67 -0
  1841. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
  1842. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V1/createForm.js +65 -0
  1843. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
  1844. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
  1845. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createButton.js +29 -0
  1846. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createForm.js +44 -0
  1847. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
  1848. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
  1849. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
  1850. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
  1851. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createButton.js +30 -0
  1852. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createForm.js +52 -0
  1853. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
  1854. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
  1855. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/applyProjection.js +15 -0
  1856. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/start.js +69 -0
  1857. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  1858. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  1859. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  1860. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1861. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1862. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  1863. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  1864. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1865. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  1866. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1867. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1868. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1869. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1870. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1871. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1872. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1873. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1874. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1875. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1876. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1877. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1878. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1879. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1880. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1881. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1882. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  1883. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1884. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1885. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  1886. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  1887. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1888. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1889. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1890. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1891. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1892. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1893. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1894. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1895. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1896. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1897. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1898. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1899. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1900. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1901. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1902. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1903. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  1904. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1905. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1906. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  1907. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  1908. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1909. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1910. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1911. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1912. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1913. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1914. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1915. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  1916. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  1917. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  1918. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  1919. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  1920. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  1921. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  1922. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  1923. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  1924. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  1925. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  1926. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  1927. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  1928. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  1929. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  1930. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  1931. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  1932. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  1933. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  1934. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  1935. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  1936. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  1937. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  1938. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  1939. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/init.js +54 -0
  1940. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/start.js +37 -0
  1941. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  1942. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  1943. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  1944. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  1945. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  1946. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  1947. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  1948. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  1949. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  1950. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1951. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1952. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1953. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1954. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1955. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1956. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1957. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  1958. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  1959. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  1960. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  1961. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  1962. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  1963. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  1964. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  1965. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  1966. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  1967. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  1968. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  1969. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  1970. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  1971. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1972. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1973. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1974. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1975. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1976. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1977. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1978. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  1979. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  1980. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  1981. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  1982. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  1983. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  1984. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  1985. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  1986. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  1987. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  1988. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  1989. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  1990. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  1991. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  1992. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  1993. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  1994. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  1995. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  1996. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  1997. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  1998. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  1999. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2000. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  2001. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  2002. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2003. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2004. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2005. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2006. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2007. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2008. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  2009. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2010. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  2011. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  2012. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  2013. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2014. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2015. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2016. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2017. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2018. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2019. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2020. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2021. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  2022. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  2023. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/init.js +61 -0
  2024. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
  2025. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/start.js +37 -0
  2026. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/afterMutation.js +46 -0
  2027. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/initRender.js +70 -0
  2028. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/refresh.js +31 -0
  2029. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/start.js +80 -0
  2030. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/applyMode.js +41 -0
  2031. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/loadDataFlow.js +24 -0
  2032. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/loadVerticalOnly.js +14 -0
  2033. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/DataLayer/loadInitialData.js +48 -0
  2034. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/DomManipulation/start.js +45 -0
  2035. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/FocusSet/V1/focusSet.js +21 -0
  2036. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/FocusSet/V2/focusSet.js +44 -0
  2037. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/HtmlState/start.js +16 -0
  2038. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2039. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2040. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2041. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2042. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2043. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2044. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/insertCells.js +9 -0
  2045. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/start.js +21 -0
  2046. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/attachSortHandlers.js +38 -0
  2047. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/getTHead.js +12 -0
  2048. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/sortData.js +16 -0
  2049. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/start.js +9 -0
  2050. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/updateHeaderUI.js +49 -0
  2051. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/buildUrlWithParams.js +11 -0
  2052. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/createItem.js +15 -0
  2053. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/createServices.js +51 -0
  2054. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/dataListLoader.js +17 -0
  2055. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/deleteItem.js +11 -0
  2056. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/findItem.js +11 -0
  2057. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/formSearchParamsFunc.js +8 -0
  2058. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/getData.js +19 -0
  2059. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/setupServices.js +13 -0
  2060. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/updateItem.js +15 -0
  2061. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/columnStore.js +13 -0
  2062. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/dataStore.js +38 -0
  2063. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/metaStore.js +11 -0
  2064. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/start.js +9 -0
  2065. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/columnStore.js +25 -0
  2066. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/dataStore.js +45 -0
  2067. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/metaStore.js +11 -0
  2068. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/start.js +9 -0
  2069. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountTableOnly.js +29 -0
  2070. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountTableUI.js +28 -0
  2071. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountVertical.js +29 -0
  2072. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/normalizeConfig.js +27 -0
  2073. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/prepareColumnsBundle.js +26 -0
  2074. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/tableHelpers.js +24 -0
  2075. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateConfig.js +16 -0
  2076. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateEndpoints.js +12 -0
  2077. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateOptions.js +21 -0
  2078. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateRequired.js +16 -0
  2079. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/ai.js +165 -0
  2080. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/entry.js +23 -0
  2081. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/tableStore.js +79 -0
  2082. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/uiClasses.js +22 -0
  2083. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2084. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2085. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2086. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2087. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2088. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2089. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
  2090. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/start.js +21 -0
  2091. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/attachSortHandlers.js +38 -0
  2092. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/getTHead.js +12 -0
  2093. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/sortData.js +16 -0
  2094. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/start.js +9 -0
  2095. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/updateHeaderUI.js +49 -0
  2096. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/start.js +15 -0
  2097. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
  2098. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
  2099. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
  2100. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
  2101. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
  2102. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
  2103. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
  2104. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
  2105. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
  2106. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
  2107. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
  2108. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
  2109. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
  2110. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
  2111. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
  2112. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
  2113. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
  2114. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
  2115. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
  2116. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
  2117. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
  2118. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
  2119. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
  2120. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
  2121. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
  2122. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/applyProjection.js +15 -0
  2123. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/start.js +86 -0
  2124. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  2125. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  2126. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  2127. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2128. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2129. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  2130. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  2131. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2132. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  2133. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2134. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2135. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2136. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2137. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2138. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2139. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2140. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2141. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2142. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2143. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2144. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2145. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2146. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2147. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2148. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2149. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  2150. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2151. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2152. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  2153. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  2154. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2155. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2156. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2157. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2158. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2159. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2160. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2161. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2162. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2163. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2164. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2165. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2166. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2167. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2168. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2169. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2170. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  2171. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2172. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2173. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  2174. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  2175. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2176. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2177. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2178. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2179. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2180. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2181. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2182. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2183. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  2184. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  2185. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2186. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2187. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2188. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2189. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2190. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2191. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  2192. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2193. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  2194. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  2195. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  2196. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2197. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2198. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2199. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2200. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2201. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2202. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2203. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2204. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  2205. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  2206. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
  2207. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
  2208. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  2209. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  2210. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  2211. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2212. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2213. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  2214. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  2215. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
  2216. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  2217. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2218. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2219. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2220. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2221. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2222. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2223. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2224. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2225. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2226. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2227. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2228. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2229. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2230. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2231. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2232. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2233. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  2234. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2235. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2236. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  2237. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  2238. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2239. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2240. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2241. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2242. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2243. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2244. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2245. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2246. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2247. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2248. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2249. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2250. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2251. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2252. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2253. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2254. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  2255. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2256. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2257. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  2258. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  2259. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2260. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2261. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2262. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2263. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2264. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2265. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2266. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2267. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  2268. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  2269. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2270. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2271. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2272. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2273. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2274. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2275. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  2276. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2277. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  2278. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  2279. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  2280. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2281. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2282. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
  2283. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2284. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2285. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2286. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
  2287. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
  2288. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
  2289. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  2290. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
  2291. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
  2292. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
  2293. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/afterMutation.js +46 -0
  2294. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/initRender.js +97 -0
  2295. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/refresh.js +31 -0
  2296. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/start.js +49 -0
  2297. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
  2298. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
  2299. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
  2300. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
  2301. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
  2302. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
  2303. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
  2304. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
  2305. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
  2306. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
  2307. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
  2308. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
  2309. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
  2310. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
  2311. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
  2312. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
  2313. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
  2314. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
  2315. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
  2316. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
  2317. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
  2318. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
  2319. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
  2320. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
  2321. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
  2322. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
  2323. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
  2324. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
  2325. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  2326. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  2327. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  2328. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2329. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2330. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  2331. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  2332. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2333. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  2334. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2335. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2336. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2337. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2338. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2339. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2340. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2341. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2342. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2343. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2344. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2345. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2346. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2347. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2348. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2349. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2350. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  2351. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2352. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2353. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  2354. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  2355. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2356. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2357. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2358. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2359. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2360. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2361. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2362. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2363. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2364. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2365. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2366. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2367. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2368. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2369. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2370. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2371. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  2372. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2373. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2374. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  2375. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  2376. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2377. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2378. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2379. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2380. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2381. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2382. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2383. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2384. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  2385. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  2386. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2387. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2388. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2389. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2390. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2391. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2392. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  2393. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2394. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  2395. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  2396. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  2397. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2398. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2399. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2400. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2401. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2402. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2403. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2404. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2405. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  2406. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  2407. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
  2408. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
  2409. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  2410. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  2411. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  2412. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2413. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2414. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  2415. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  2416. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
  2417. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  2418. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2419. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2420. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2421. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2422. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2423. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2424. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2425. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2426. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2427. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2428. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2429. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2430. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2431. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2432. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2433. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2434. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  2435. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2436. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2437. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  2438. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  2439. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2440. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2441. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2442. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2443. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2444. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2445. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2446. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2447. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2448. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2449. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2450. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2451. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2452. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2453. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2454. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2455. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  2456. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2457. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2458. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  2459. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  2460. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2461. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2462. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2463. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2464. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2465. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2466. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2467. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2468. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  2469. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  2470. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2471. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2472. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2473. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2474. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2475. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2476. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  2477. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2478. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  2479. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  2480. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  2481. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2482. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2483. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
  2484. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2485. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2486. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2487. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
  2488. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
  2489. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
  2490. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  2491. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
  2492. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
  2493. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
  2494. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
  2495. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
  2496. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
  2497. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/start.js +49 -0
  2498. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/start.js +15 -0
  2499. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
  2500. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
  2501. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
  2502. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
  2503. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
  2504. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
  2505. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
  2506. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
  2507. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/start.js +27 -0
  2508. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
  2509. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom.js +67 -0
  2510. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
  2511. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V1/createForm.js +65 -0
  2512. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
  2513. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
  2514. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createButton.js +29 -0
  2515. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createForm.js +44 -0
  2516. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
  2517. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
  2518. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
  2519. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
  2520. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createButton.js +30 -0
  2521. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createForm.js +52 -0
  2522. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
  2523. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
  2524. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/applyProjection.js +15 -0
  2525. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/start.js +86 -0
  2526. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  2527. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  2528. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  2529. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2530. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2531. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  2532. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  2533. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2534. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  2535. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2536. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2537. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2538. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2539. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2540. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2541. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2542. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2543. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2544. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2545. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2546. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2547. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2548. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2549. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2550. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2551. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  2552. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2553. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2554. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  2555. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  2556. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2557. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2558. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2559. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2560. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2561. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2562. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2563. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2564. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2565. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2566. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2567. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2568. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2569. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2570. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2571. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2572. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  2573. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2574. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2575. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  2576. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  2577. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2578. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2579. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2580. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2581. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2582. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2583. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2584. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2585. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  2586. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  2587. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2588. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2589. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2590. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2591. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2592. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2593. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  2594. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2595. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  2596. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  2597. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  2598. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2599. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2600. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2601. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2602. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2603. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2604. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2605. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2606. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  2607. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  2608. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/init.js +54 -0
  2609. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/start.js +37 -0
  2610. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  2611. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  2612. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  2613. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2614. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2615. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  2616. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  2617. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2618. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  2619. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2620. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2621. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2622. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2623. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2624. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2625. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2626. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2627. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2628. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2629. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2630. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2631. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2632. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2633. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2634. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2635. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  2636. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2637. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2638. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  2639. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  2640. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2641. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2642. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2643. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2644. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2645. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2646. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2647. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2648. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2649. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2650. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2651. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2652. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2653. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2654. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2655. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2656. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  2657. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2658. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2659. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  2660. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  2661. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2662. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2663. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2664. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2665. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2666. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2667. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2668. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2669. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
  2670. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  2671. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2672. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2673. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
  2674. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2675. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2676. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2677. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  2678. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2679. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
  2680. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  2681. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  2682. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2683. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2684. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2685. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2686. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2687. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2688. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2689. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2690. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  2691. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  2692. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/init.js +62 -0
  2693. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
  2694. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/start.js +37 -0
  2695. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/afterMutation.js +46 -0
  2696. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/initRender.js +118 -0
  2697. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/refresh.js +31 -0
  2698. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/start.js +80 -0
  2699. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/start.js +15 -0
  2700. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
  2701. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
  2702. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
  2703. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
  2704. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
  2705. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
  2706. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
  2707. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
  2708. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/start.js +27 -0
  2709. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
  2710. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom.js +67 -0
  2711. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
  2712. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V1/createForm.js +65 -0
  2713. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
  2714. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
  2715. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createButton.js +29 -0
  2716. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createForm.js +44 -0
  2717. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
  2718. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
  2719. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
  2720. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
  2721. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createButton.js +30 -0
  2722. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createForm.js +52 -0
  2723. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
  2724. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
  2725. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/applyProjection.js +15 -0
  2726. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/start.js +69 -0
  2727. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  2728. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  2729. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  2730. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2731. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2732. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  2733. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  2734. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2735. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  2736. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2737. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2738. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2739. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2740. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2741. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2742. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2743. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2744. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2745. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2746. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2747. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2748. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2749. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2750. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2751. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2752. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  2753. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2754. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2755. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  2756. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  2757. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2758. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2759. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2760. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2761. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2762. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2763. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2764. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2765. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2766. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2767. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2768. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2769. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2770. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2771. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2772. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2773. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  2774. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2775. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2776. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  2777. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  2778. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2779. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2780. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2781. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2782. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2783. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2784. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2785. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2786. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  2787. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  2788. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2789. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2790. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2791. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2792. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2793. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2794. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  2795. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2796. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  2797. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  2798. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  2799. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2800. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2801. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2802. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2803. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2804. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2805. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2806. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2807. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  2808. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  2809. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/init.js +54 -0
  2810. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/start.js +37 -0
  2811. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  2812. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  2813. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  2814. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2815. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2816. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  2817. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  2818. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  2819. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  2820. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2821. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2822. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2823. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2824. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2825. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2826. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2827. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  2828. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  2829. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  2830. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  2831. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  2832. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  2833. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  2834. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  2835. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  2836. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  2837. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  2838. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  2839. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  2840. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  2841. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2842. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2843. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2844. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2845. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2846. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2847. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2848. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  2849. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  2850. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  2851. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  2852. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  2853. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  2854. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  2855. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  2856. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  2857. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  2858. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  2859. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  2860. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  2861. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  2862. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  2863. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  2864. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  2865. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  2866. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  2867. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  2868. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  2869. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  2870. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  2871. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  2872. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  2873. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  2874. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  2875. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  2876. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  2877. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  2878. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  2879. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  2880. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  2881. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  2882. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  2883. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2884. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2885. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2886. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2887. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2888. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2889. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  2890. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  2891. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  2892. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  2893. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/init.js +61 -0
  2894. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
  2895. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/start.js +37 -0
  2896. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/afterMutation.js +46 -0
  2897. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/initRender.js +70 -0
  2898. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/refresh.js +31 -0
  2899. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/start.js +80 -0
  2900. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/applyMode.js +41 -0
  2901. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/loadDataFlow.js +24 -0
  2902. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/loadVerticalOnly.js +14 -0
  2903. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/DataLayer/loadInitialData.js +48 -0
  2904. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/DomManipulation/start.js +45 -0
  2905. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/FocusSet/V1/focusSet.js +21 -0
  2906. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/FocusSet/V2/focusSet.js +44 -0
  2907. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/HtmlState/start.js +16 -0
  2908. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2909. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2910. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2911. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2912. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2913. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2914. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/insertCells.js +9 -0
  2915. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/start.js +21 -0
  2916. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/attachSortHandlers.js +38 -0
  2917. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/getTHead.js +12 -0
  2918. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/sortData.js +16 -0
  2919. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/start.js +9 -0
  2920. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/updateHeaderUI.js +49 -0
  2921. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/buildUrlWithParams.js +11 -0
  2922. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/createItem.js +15 -0
  2923. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/createServices.js +51 -0
  2924. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/dataListLoader.js +17 -0
  2925. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/deleteItem.js +11 -0
  2926. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/findItem.js +11 -0
  2927. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/formSearchParamsFunc.js +8 -0
  2928. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/getData.js +19 -0
  2929. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/setupServices.js +13 -0
  2930. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/updateItem.js +15 -0
  2931. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/columnStore.js +13 -0
  2932. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/dataStore.js +38 -0
  2933. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/metaStore.js +11 -0
  2934. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/start.js +9 -0
  2935. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/columnStore.js +25 -0
  2936. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/dataStore.js +45 -0
  2937. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/metaStore.js +11 -0
  2938. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/start.js +9 -0
  2939. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountTableOnly.js +72 -0
  2940. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountTableUI.js +28 -0
  2941. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountVertical.js +29 -0
  2942. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/normalizeConfig.js +27 -0
  2943. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/prepareColumnsBundle.js +26 -0
  2944. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/tableHelpers.js +24 -0
  2945. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateConfig.js +16 -0
  2946. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateEndpoints.js +12 -0
  2947. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateOptions.js +21 -0
  2948. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateRequired.js +16 -0
  2949. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/ai.js +165 -0
  2950. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/entry.js +23 -0
  2951. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/tableStore.js +79 -0
  2952. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/uiClasses.js +31 -0
  2953. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  2954. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  2955. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  2956. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  2957. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  2958. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  2959. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
  2960. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/start.js +21 -0
  2961. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/attachSortHandlers.js +38 -0
  2962. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/getTHead.js +12 -0
  2963. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/sortData.js +16 -0
  2964. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/start.js +9 -0
  2965. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/updateHeaderUI.js +49 -0
  2966. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/start.js +15 -0
  2967. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
  2968. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
  2969. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
  2970. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
  2971. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
  2972. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
  2973. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
  2974. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
  2975. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
  2976. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
  2977. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
  2978. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
  2979. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
  2980. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
  2981. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
  2982. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
  2983. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
  2984. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
  2985. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
  2986. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
  2987. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
  2988. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
  2989. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
  2990. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
  2991. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
  2992. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/applyProjection.js +15 -0
  2993. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/start.js +86 -0
  2994. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  2995. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  2996. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  2997. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  2998. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  2999. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  3000. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  3001. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3002. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  3003. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3004. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3005. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3006. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3007. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3008. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3009. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3010. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3011. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3012. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3013. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3014. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3015. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3016. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3017. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3018. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3019. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  3020. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3021. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3022. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  3023. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  3024. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3025. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3026. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3027. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3028. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3029. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3030. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3031. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3032. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3033. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3034. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3035. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3036. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3037. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3038. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3039. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3040. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  3041. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3042. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3043. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  3044. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  3045. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3046. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3047. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3048. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3049. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3050. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3051. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3052. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3053. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  3054. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  3055. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3056. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3057. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3058. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3059. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3060. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3061. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  3062. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3063. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  3064. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  3065. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  3066. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3067. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3068. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3069. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3070. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3071. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3072. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3073. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3074. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  3075. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  3076. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
  3077. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
  3078. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  3079. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  3080. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  3081. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3082. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3083. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  3084. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  3085. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
  3086. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  3087. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3088. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3089. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3090. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3091. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3092. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3093. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3094. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3095. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3096. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3097. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3098. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3099. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3100. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3101. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3102. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3103. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  3104. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3105. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3106. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  3107. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  3108. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3109. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3110. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3111. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3112. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3113. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3114. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3115. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3116. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3117. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3118. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3119. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3120. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3121. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3122. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3123. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3124. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  3125. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3126. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3127. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  3128. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  3129. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3130. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3131. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3132. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3133. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3134. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3135. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3136. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3137. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  3138. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  3139. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3140. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3141. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3142. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3143. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3144. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3145. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  3146. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3147. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  3148. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  3149. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  3150. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3151. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3152. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
  3153. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3154. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3155. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3156. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
  3157. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
  3158. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
  3159. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  3160. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
  3161. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
  3162. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
  3163. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/afterMutation.js +46 -0
  3164. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/initRender.js +97 -0
  3165. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/refresh.js +31 -0
  3166. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/start.js +49 -0
  3167. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
  3168. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
  3169. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
  3170. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
  3171. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
  3172. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
  3173. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
  3174. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
  3175. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
  3176. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
  3177. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
  3178. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
  3179. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
  3180. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
  3181. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
  3182. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
  3183. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
  3184. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
  3185. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
  3186. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
  3187. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
  3188. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
  3189. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
  3190. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
  3191. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
  3192. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
  3193. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
  3194. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
  3195. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  3196. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  3197. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  3198. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3199. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3200. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  3201. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  3202. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3203. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  3204. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3205. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3206. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3207. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3208. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3209. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3210. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3211. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3212. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3213. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3214. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3215. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3216. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3217. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3218. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3219. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3220. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  3221. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3222. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3223. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  3224. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  3225. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3226. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3227. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3228. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3229. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3230. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3231. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3232. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3233. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3234. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3235. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3236. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3237. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3238. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3239. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3240. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3241. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  3242. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3243. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3244. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  3245. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  3246. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3247. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3248. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3249. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3250. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3251. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3252. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3253. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3254. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  3255. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  3256. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3257. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3258. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3259. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3260. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3261. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3262. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  3263. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3264. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  3265. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  3266. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  3267. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3268. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3269. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3270. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3271. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3272. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3273. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3274. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3275. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  3276. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  3277. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
  3278. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
  3279. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  3280. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  3281. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  3282. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3283. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3284. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  3285. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  3286. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
  3287. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  3288. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3289. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3290. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3291. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3292. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3293. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3294. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3295. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3296. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3297. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3298. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3299. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3300. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3301. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3302. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3303. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3304. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  3305. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3306. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3307. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  3308. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  3309. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3310. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3311. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3312. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3313. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3314. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3315. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3316. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3317. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3318. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3319. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3320. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3321. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3322. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3323. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3324. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3325. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  3326. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3327. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3328. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  3329. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  3330. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3331. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3332. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3333. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3334. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3335. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3336. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3337. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3338. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  3339. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  3340. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3341. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3342. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3343. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3344. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3345. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3346. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  3347. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3348. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  3349. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  3350. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  3351. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3352. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3353. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
  3354. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3355. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3356. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3357. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
  3358. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
  3359. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
  3360. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  3361. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
  3362. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
  3363. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
  3364. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
  3365. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
  3366. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
  3367. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/start.js +49 -0
  3368. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/start.js +15 -0
  3369. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
  3370. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
  3371. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
  3372. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
  3373. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
  3374. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
  3375. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
  3376. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
  3377. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/start.js +27 -0
  3378. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
  3379. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom.js +67 -0
  3380. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
  3381. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V1/createForm.js +65 -0
  3382. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
  3383. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
  3384. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createButton.js +29 -0
  3385. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createForm.js +44 -0
  3386. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
  3387. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
  3388. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
  3389. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
  3390. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createButton.js +30 -0
  3391. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createForm.js +52 -0
  3392. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
  3393. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
  3394. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/applyProjection.js +15 -0
  3395. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/start.js +86 -0
  3396. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  3397. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  3398. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  3399. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3400. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3401. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  3402. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  3403. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3404. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  3405. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3406. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3407. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3408. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3409. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3410. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3411. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3412. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3413. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3414. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3415. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3416. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3417. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3418. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3419. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3420. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3421. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  3422. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3423. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3424. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  3425. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  3426. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3427. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3428. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3429. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3430. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3431. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3432. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3433. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3434. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3435. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3436. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3437. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3438. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3439. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3440. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3441. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3442. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  3443. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3444. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3445. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  3446. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  3447. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3448. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3449. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3450. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3451. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3452. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3453. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3454. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3455. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  3456. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  3457. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3458. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3459. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3460. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3461. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3462. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3463. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  3464. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3465. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  3466. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  3467. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  3468. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3469. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3470. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3471. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3472. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3473. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3474. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3475. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3476. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  3477. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  3478. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/init.js +54 -0
  3479. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/start.js +37 -0
  3480. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  3481. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  3482. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  3483. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3484. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3485. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  3486. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  3487. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3488. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  3489. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3490. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3491. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3492. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3493. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3494. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3495. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3496. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3497. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3498. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3499. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3500. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3501. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3502. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3503. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3504. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3505. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  3506. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3507. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3508. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  3509. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  3510. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3511. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3512. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3513. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3514. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3515. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3516. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3517. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3518. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3519. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3520. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3521. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3522. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3523. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3524. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3525. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3526. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  3527. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3528. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3529. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  3530. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  3531. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3532. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3533. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3534. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3535. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3536. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3537. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3538. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3539. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
  3540. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  3541. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3542. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3543. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
  3544. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3545. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3546. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3547. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  3548. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3549. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
  3550. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  3551. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  3552. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3553. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3554. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3555. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3556. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3557. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3558. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3559. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3560. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  3561. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  3562. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/init.js +62 -0
  3563. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
  3564. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/start.js +37 -0
  3565. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/afterMutation.js +46 -0
  3566. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/initRender.js +118 -0
  3567. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/refresh.js +31 -0
  3568. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/start.js +80 -0
  3569. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/start.js +15 -0
  3570. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
  3571. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
  3572. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
  3573. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
  3574. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
  3575. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
  3576. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
  3577. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
  3578. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/start.js +27 -0
  3579. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
  3580. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom.js +67 -0
  3581. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
  3582. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V1/createForm.js +65 -0
  3583. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
  3584. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
  3585. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createButton.js +29 -0
  3586. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createForm.js +44 -0
  3587. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
  3588. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
  3589. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
  3590. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
  3591. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createButton.js +30 -0
  3592. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createForm.js +52 -0
  3593. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
  3594. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
  3595. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/applyProjection.js +15 -0
  3596. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/start.js +69 -0
  3597. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
  3598. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
  3599. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
  3600. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3601. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3602. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
  3603. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
  3604. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3605. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
  3606. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3607. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3608. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3609. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3610. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3611. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3612. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3613. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3614. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3615. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3616. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3617. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3618. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3619. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3620. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3621. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3622. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
  3623. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3624. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3625. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
  3626. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
  3627. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3628. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3629. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3630. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3631. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3632. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3633. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3634. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3635. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3636. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3637. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3638. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3639. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3640. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3641. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3642. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3643. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
  3644. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3645. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3646. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
  3647. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
  3648. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3649. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3650. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3651. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3652. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3653. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3654. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3655. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3656. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
  3657. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
  3658. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3659. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3660. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3661. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3662. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3663. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3664. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
  3665. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3666. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
  3667. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
  3668. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
  3669. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3670. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3671. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3672. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3673. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3674. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3675. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3676. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3677. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
  3678. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
  3679. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/init.js +54 -0
  3680. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/start.js +37 -0
  3681. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
  3682. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
  3683. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
  3684. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
  3685. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
  3686. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
  3687. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
  3688. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
  3689. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
  3690. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3691. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3692. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3693. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3694. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3695. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3696. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3697. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
  3698. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
  3699. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
  3700. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
  3701. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
  3702. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
  3703. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
  3704. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
  3705. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
  3706. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
  3707. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
  3708. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
  3709. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
  3710. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
  3711. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3712. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3713. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3714. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3715. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3716. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3717. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3718. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
  3719. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
  3720. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
  3721. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
  3722. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
  3723. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
  3724. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
  3725. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
  3726. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
  3727. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
  3728. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
  3729. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
  3730. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
  3731. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
  3732. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
  3733. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
  3734. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
  3735. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
  3736. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
  3737. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
  3738. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
  3739. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
  3740. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
  3741. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
  3742. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
  3743. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
  3744. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
  3745. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
  3746. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
  3747. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
  3748. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
  3749. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
  3750. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
  3751. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
  3752. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
  3753. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3754. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3755. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3756. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3757. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3758. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3759. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
  3760. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
  3761. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
  3762. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
  3763. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/init.js +61 -0
  3764. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
  3765. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/start.js +37 -0
  3766. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/afterMutation.js +46 -0
  3767. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/initRender.js +70 -0
  3768. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/refresh.js +31 -0
  3769. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/start.js +80 -0
  3770. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/applyMode.js +41 -0
  3771. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/loadDataFlow.js +24 -0
  3772. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/loadVerticalOnly.js +14 -0
  3773. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/DataLayer/loadInitialData.js +48 -0
  3774. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/DomManipulation/start.js +45 -0
  3775. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/FocusSet/V1/focusSet.js +21 -0
  3776. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/FocusSet/V2/focusSet.js +44 -0
  3777. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/HtmlState/start.js +16 -0
  3778. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
  3779. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
  3780. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
  3781. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
  3782. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
  3783. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
  3784. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/insertCells.js +9 -0
  3785. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/start.js +21 -0
  3786. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/attachSortHandlers.js +38 -0
  3787. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/getTHead.js +12 -0
  3788. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/sortData.js +16 -0
  3789. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/start.js +9 -0
  3790. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/updateHeaderUI.js +49 -0
  3791. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/buildUrlWithParams.js +11 -0
  3792. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/createItem.js +15 -0
  3793. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/createServices.js +51 -0
  3794. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/dataListLoader.js +17 -0
  3795. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/deleteItem.js +11 -0
  3796. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/findItem.js +11 -0
  3797. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/formSearchParamsFunc.js +8 -0
  3798. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/getData.js +19 -0
  3799. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/setupServices.js +13 -0
  3800. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/updateItem.js +15 -0
  3801. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/columnStore.js +13 -0
  3802. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/dataStore.js +38 -0
  3803. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/metaStore.js +11 -0
  3804. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/start.js +9 -0
  3805. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/columnStore.js +25 -0
  3806. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/dataStore.js +45 -0
  3807. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/metaStore.js +11 -0
  3808. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/start.js +9 -0
  3809. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildDataListContainer.js +6 -0
  3810. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildHeaderRow.js +77 -0
  3811. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildTableShell.js +21 -0
  3812. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/compose/buildFullUI.js +36 -0
  3813. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountTableOnly.js +38 -0
  3814. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountTableUI.js +28 -0
  3815. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountVertical.js +36 -0
  3816. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/normalizeConfig.js +27 -0
  3817. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/prepareColumnsBundle.js +26 -0
  3818. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/tableHelpers.js +24 -0
  3819. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateConfig.js +16 -0
  3820. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateEndpoints.js +12 -0
  3821. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateOptions.js +21 -0
  3822. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateRequired.js +16 -0
  3823. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/ai.js +165 -0
  3824. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/entry.js +23 -0
  3825. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/tableStore.js +79 -0
  3826. package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/uiClasses.js +31 -0
  3827. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/For200Res/entryFile.js +6 -0
  3828. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/entryFile.js +11 -0
  3829. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status200.js +7 -0
  3830. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status401.js +23 -0
  3831. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status409.js +9 -0
  3832. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/url.json +4 -0
  3833. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/fetchFuncs.js +12 -0
  3834. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/getUrl.json +3 -0
  3835. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/start.js +10 -0
  3836. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/entryFile.js +11 -0
  3837. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status200.js +7 -0
  3838. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status401.js +23 -0
  3839. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status409.js +9 -0
  3840. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/url.json +4 -0
  3841. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/fetchFuncs.js +12 -0
  3842. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/getUrl.json +3 -0
  3843. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/start.js +10 -0
  3844. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/clickFunc.js +9 -0
  3845. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/start.js +9 -0
  3846. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/LedgersHtmlId/clickFunc.js +101 -0
  3847. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/LedgersHtmlId/start.js +9 -0
  3848. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/StockItemsHtmlId/clickFunc.js +87 -0
  3849. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/StockItemsHtmlId/start.js +9 -0
  3850. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/start.js +15 -0
  3851. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildHeader.js +55 -0
  3852. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildLedgersMenuItem.js +51 -0
  3853. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItem.js +121 -0
  3854. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItemV1.js +149 -0
  3855. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItemV2.js +66 -0
  3856. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
  3857. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +10 -0
  3858. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/start.js +7 -0
  3859. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/start.js +5 -0
  3860. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/start.js +7 -0
  3861. package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/index.html +78 -0
  3862. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/buildHeader.js +71 -0
  3863. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/buildMenuItem.js +121 -0
  3864. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +143 -0
  3865. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/start.js +7 -0
  3866. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/start.js +5 -0
  3867. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/start.js +7 -0
  3868. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/index.html +79 -0
  3869. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/For200Res/entryFile.js +6 -0
  3870. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/entryFile.js +24 -0
  3871. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status200.js +7 -0
  3872. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status401.js +23 -0
  3873. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status409.js +9 -0
  3874. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/url.json +4 -0
  3875. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/deleteFunc.js +17 -0
  3876. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/getUrl.json +3 -0
  3877. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/start.js +12 -0
  3878. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
  3879. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +89 -0
  3880. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/start.js +7 -0
  3881. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/start.js +5 -0
  3882. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/start.js +7 -0
  3883. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/index.html +141 -0
  3884. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/start.js +8 -0
  3885. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/entryFile.js +12 -0
  3886. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status200.js +7 -0
  3887. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status401.js +23 -0
  3888. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status409.js +9 -0
  3889. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/url.json +4 -0
  3890. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/fetchFuncs.js +15 -0
  3891. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/formSearchParamsFunc.js +8 -0
  3892. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/getUrl.json +3 -0
  3893. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/start.js +10 -0
  3894. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/clickFunc.js +7 -0
  3895. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/start.js +9 -0
  3896. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
  3897. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +145 -0
  3898. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/start.js +7 -0
  3899. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/start.js +5 -0
  3900. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/start.js +7 -0
  3901. package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/index.html +179 -0
  3902. package/bin/v12/commands/tally/template/v4/Public/header/v1/buildMenuItem.js +16 -0
  3903. package/bin/v12/commands/tally/template/v4/Public/header/v1/createAnchor.js +10 -0
  3904. package/bin/v12/commands/tally/template/v4/Public/header/v1/createIcon.js +19 -0
  3905. package/bin/v12/commands/tally/template/v4/Public/header/v1/createLabel.js +9 -0
  3906. package/bin/v12/commands/tally/template/v4/Public/header/v1/createLi.js +5 -0
  3907. package/bin/v12/commands/tally/template/v4/Public/header/v1/initHeader.js +33 -0
  3908. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForInventory/entryFile.js +24 -0
  3909. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForInventory/prepareInventory.js +78 -0
  3910. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForLedger/entryFile.js +46 -0
  3911. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForLedger/prepareLedger.js +17 -0
  3912. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ReadClientData/entryFile.js +49 -0
  3913. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ReadClientData/items.json +16 -0
  3914. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/entryFile.js +17 -0
  3915. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/prepareClientData.js +57 -0
  3916. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/prepareTallyJson/entryFile.js +18 -0
  3917. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PullForeignTableData/entryFile.js +42 -0
  3918. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/entryFile.js +26 -0
  3919. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/sendToTally.js +16 -0
  3920. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/controller.js +23 -0
  3921. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/endpoints.js +11 -0
  3922. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/errors.js +11 -0
  3923. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/restNew.http +1 -0
  3924. package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/service.js +42 -0
  3925. package/bin/v12/commands/tally/template/v4/V7/BillsTable/routes.js +7 -0
  3926. package/bin/v12/commands/tally/template/v4/V7/routes.js +8 -0
  3927. package/bin/v12/commands/tally/template/v4/app.js +29 -0
  3928. package/bin/v12/commands/tally/template/v4/configLoader.js +6 -0
  3929. package/bin/v12/commands/tally/template/v4/package-lock.json +2771 -0
  3930. package/bin/v12/commands/tally/template/v4/package.json +21 -0
  3931. package/bin/v12/commands/tally/template/v4/port.js +6 -0
  3932. package/bin/v12/commands/tally/template/v4/routes.js +5 -0
  3933. package/bin/v12/commands/tally/template/v4/server.js +13 -0
  3934. package/package.json +1 -1
  3935. package/bin/v11/commands/express/steps/announce.js +0 -3
  3936. package/bin/v11/commands/express/steps/createProject.js +0 -6
  3937. package/bin/v11/commands/express/steps/decideTemplate.js +0 -3
  3938. package/bin/v11/commands/express/steps/locateDestination.js +0 -5
  3939. package/bin/v11/commands/express/steps/locateSource.js +0 -13
  3940. package/bin/v11/commands/express/template/.env +0 -8
  3941. package/bin/v11/commands/express/template/Config/Schemas/BillsTable.json +0 -166
  3942. package/bin/v11/commands/express/template/Config/Schemas/ItemsTable.json +0 -206
  3943. package/bin/v11/commands/express/template/Config/Schemas/LedgerNames.json +0 -50
  3944. package/bin/v11/commands/express/template/Config/Schemas/StockItems.json +0 -45
  3945. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/build.js +0 -6
  3946. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/config.js +0 -12
  3947. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/main.js +0 -29
  3948. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/publish.js +0 -22
  3949. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/repo.js +0 -20
  3950. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/schema.js +0 -16
  3951. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/utils.js +0 -26
  3952. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/version.js +0 -25
  3953. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/buildAndCopy.js +0 -166
  3954. package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/latestVersion.js +0 -38
  3955. package/bin/v11/commands/express/template/ForFrontEnd/Secured/buildProtected.js +0 -108
  3956. package/bin/v11/commands/express/template/ForFrontEnd/Secured/latestVersion.js +0 -38
  3957. package/bin/v11/commands/express/template/app.js +0 -33
  3958. package/bin/v11/commands/express/template/package.json +0 -18
  3959. package/bin/v11/commands/express.js +0 -23
  3960. package/bin/v11/commands/generateSamples.js +0 -26
  3961. package/bin/v11/commands/init/steps/announce.js +0 -3
  3962. package/bin/v11/commands/init/steps/createProject.js +0 -6
  3963. package/bin/v11/commands/init/steps/decideTemplate.js +0 -3
  3964. package/bin/v11/commands/init/steps/locateDestination.js +0 -5
  3965. package/bin/v11/commands/init/steps/locateSource.js +0 -13
  3966. package/bin/v11/commands/init/template/Config/Schemas/LedgerNames.json +0 -50
  3967. package/bin/v11/commands/init/template/Config/Schemas/StockItems.json +0 -45
  3968. package/bin/v11/commands/init/template/Data/LedgerNames.json +0 -6
  3969. package/bin/v11/commands/init/template/Data/StockItems.json +0 -45
  3970. package/bin/v11/commands/init/template/app.js +0 -4
  3971. package/bin/v11/commands/init/template/package-lock.json +0 -21
  3972. package/bin/v11/commands/init/template/package.json +0 -14
  3973. package/bin/v11/commands/init/template/read.js +0 -8
  3974. package/bin/v11/commands/init/template/write.js +0 -8
  3975. package/bin/v11/commands/init.js +0 -23
  3976. package/bin/v11/commands/template/baseTemplate.js +0 -11
  3977. package/bin/v11/commands/template/basic/.vscode/launch.json +0 -12
  3978. package/bin/v11/commands/template/basic/Config/Schemas/BillsTable.json +0 -165
  3979. package/bin/v11/commands/template/basic/Config/Schemas/ItemsTable.json +0 -200
  3980. package/bin/v11/commands/template/basic/Config/Schemas/LedgerNames.json +0 -50
  3981. package/bin/v11/commands/template/basic/Config/Schemas/StockItems.json +0 -45
  3982. package/bin/v11/commands/template/basic/Config/api.json +0 -8
  3983. package/bin/v11/commands/template/basic/Config/schema.json +0 -8
  3984. package/bin/v11/commands/template/basic/Config/ui.json +0 -8
  3985. package/bin/v11/commands/template/basic/Data/BillsTable.json +0 -165
  3986. package/bin/v11/commands/template/basic/Data/ItemsTable.json +0 -200
  3987. package/bin/v11/commands/template/basic/Data/LedgerNames.json +0 -6
  3988. package/bin/v11/commands/template/basic/Data/StockItems.json +0 -45
  3989. package/bin/v11/commands/template/basic/app.js +0 -4
  3990. package/bin/v11/commands/template/basic/config.json +0 -4
  3991. package/bin/v11/commands/template/basic/package-lock.json +0 -21
  3992. package/bin/v11/commands/template/basic/package.json +0 -14
  3993. package/bin/v11/commands/template/basic/read.js +0 -8
  3994. package/bin/v11/commands/template/basic/write.js +0 -8
  3995. package/bin/v11/commands/template/express/.env +0 -8
  3996. package/bin/v11/commands/template/express/.vscode/launch.json +0 -12
  3997. package/bin/v11/commands/template/express/Config/Schemas/BillsTable.json +0 -166
  3998. package/bin/v11/commands/template/express/Config/Schemas/ItemsTable.json +0 -206
  3999. package/bin/v11/commands/template/express/Config/Schemas/LedgerNames.json +0 -50
  4000. package/bin/v11/commands/template/express/Config/Schemas/StockItems.json +0 -45
  4001. package/bin/v11/commands/template/express/Config/api.json +0 -8
  4002. package/bin/v11/commands/template/express/Config/schema.json +0 -8
  4003. package/bin/v11/commands/template/express/Config/ui.json +0 -8
  4004. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/build.js +0 -6
  4005. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/config.js +0 -12
  4006. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/main.js +0 -29
  4007. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/publish.js +0 -22
  4008. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/repo.js +0 -20
  4009. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/schema.js +0 -16
  4010. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/utils.js +0 -26
  4011. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/version.js +0 -25
  4012. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/buildAndCopy.js +0 -166
  4013. package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/latestVersion.js +0 -38
  4014. package/bin/v11/commands/template/express/ForFrontEnd/Secured/buildProtected.js +0 -108
  4015. package/bin/v11/commands/template/express/ForFrontEnd/Secured/latestVersion.js +0 -38
  4016. package/bin/v11/commands/template/express/app.js +0 -33
  4017. package/bin/v11/commands/template/express/config.json +0 -4
  4018. package/bin/v11/commands/template/express/package.json +0 -18
  4019. package/bin/v11/commands/test.js +0 -36
  4020. package/bin/v11/core/parseInput.js +0 -10
  4021. package/bin/v11/core/resolveCommand.js +0 -16
  4022. package/bin/v11/core/resolveFolderName.js +0 -17
  4023. package/bin/v11/core/showUsage.js +0 -42
  4024. package/bin/v11/start.js +0 -22
  4025. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/.env.local +0 -0
  4026. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/.vscode/launch.json +0 -0
  4027. /package/bin/{v11/commands/init/template → v12/commands/express/template/v5}/Config/Schemas/BillsTable.json +0 -0
  4028. /package/bin/{v11/commands/init/template → v12/commands/express/template/v5}/Config/Schemas/ItemsTable.json +0 -0
  4029. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/api.json +0 -0
  4030. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/schema.json +0 -0
  4031. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/ui.json +0 -0
  4032. /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/config.json +0 -0
  4033. /package/bin/{v11/commands/template/express → v12/commands/tally/template/v4}/.env.local +0 -0
  4034. /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/.vscode/launch.json +0 -0
  4035. /package/bin/{v11/commands/init/template/Data → v12/commands/tally/template/v4/Config/Schemas}/BillsTable.json +0 -0
  4036. /package/bin/{v11/commands/init/template/Data → v12/commands/tally/template/v4/Config/Schemas}/ItemsTable.json +0 -0
  4037. /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/api.json +0 -0
  4038. /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/schema.json +0 -0
  4039. /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/ui.json +0 -0
  4040. /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/config.json +0 -0
@@ -0,0 +1,2771 @@
1
+ {
2
+ "name": "KeshavSoft",
3
+ "version": "1.7.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "KeshavSoft",
9
+ "version": "1.7.1",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@keshavsoft/kschema": "^1.17.8",
13
+ "@keshavsoft/tallyextract": "^1.2.1",
14
+ "@yao-pkg/pkg": "^6.19.0",
15
+ "body-parser": "^2.2.0",
16
+ "dotenv": "^17.4.2",
17
+ "express": "^5.1.0"
18
+ }
19
+ },
20
+ "node_modules/@babel/code-frame": {
21
+ "version": "7.29.0",
22
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
23
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "@babel/helper-validator-identifier": "^7.28.5",
27
+ "js-tokens": "^4.0.0",
28
+ "picocolors": "^1.1.1"
29
+ },
30
+ "engines": {
31
+ "node": ">=6.9.0"
32
+ }
33
+ },
34
+ "node_modules/@babel/generator": {
35
+ "version": "7.29.1",
36
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
37
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "@babel/parser": "^7.29.0",
41
+ "@babel/types": "^7.29.0",
42
+ "@jridgewell/gen-mapping": "^0.3.12",
43
+ "@jridgewell/trace-mapping": "^0.3.28",
44
+ "jsesc": "^3.0.2"
45
+ },
46
+ "engines": {
47
+ "node": ">=6.9.0"
48
+ }
49
+ },
50
+ "node_modules/@babel/helper-globals": {
51
+ "version": "7.28.0",
52
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
53
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
54
+ "license": "MIT",
55
+ "engines": {
56
+ "node": ">=6.9.0"
57
+ }
58
+ },
59
+ "node_modules/@babel/helper-string-parser": {
60
+ "version": "7.27.1",
61
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
62
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
63
+ "license": "MIT",
64
+ "engines": {
65
+ "node": ">=6.9.0"
66
+ }
67
+ },
68
+ "node_modules/@babel/helper-validator-identifier": {
69
+ "version": "7.28.5",
70
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
71
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
72
+ "license": "MIT",
73
+ "engines": {
74
+ "node": ">=6.9.0"
75
+ }
76
+ },
77
+ "node_modules/@babel/parser": {
78
+ "version": "7.29.3",
79
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
80
+ "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
81
+ "license": "MIT",
82
+ "dependencies": {
83
+ "@babel/types": "^7.29.0"
84
+ },
85
+ "bin": {
86
+ "parser": "bin/babel-parser.js"
87
+ },
88
+ "engines": {
89
+ "node": ">=6.0.0"
90
+ }
91
+ },
92
+ "node_modules/@babel/template": {
93
+ "version": "7.28.6",
94
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
95
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
96
+ "license": "MIT",
97
+ "dependencies": {
98
+ "@babel/code-frame": "^7.28.6",
99
+ "@babel/parser": "^7.28.6",
100
+ "@babel/types": "^7.28.6"
101
+ },
102
+ "engines": {
103
+ "node": ">=6.9.0"
104
+ }
105
+ },
106
+ "node_modules/@babel/traverse": {
107
+ "version": "7.29.0",
108
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
109
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
110
+ "license": "MIT",
111
+ "dependencies": {
112
+ "@babel/code-frame": "^7.29.0",
113
+ "@babel/generator": "^7.29.0",
114
+ "@babel/helper-globals": "^7.28.0",
115
+ "@babel/parser": "^7.29.0",
116
+ "@babel/template": "^7.28.6",
117
+ "@babel/types": "^7.29.0",
118
+ "debug": "^4.3.1"
119
+ },
120
+ "engines": {
121
+ "node": ">=6.9.0"
122
+ }
123
+ },
124
+ "node_modules/@babel/types": {
125
+ "version": "7.29.0",
126
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
127
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
128
+ "license": "MIT",
129
+ "dependencies": {
130
+ "@babel/helper-string-parser": "^7.27.1",
131
+ "@babel/helper-validator-identifier": "^7.28.5"
132
+ },
133
+ "engines": {
134
+ "node": ">=6.9.0"
135
+ }
136
+ },
137
+ "node_modules/@esbuild/aix-ppc64": {
138
+ "version": "0.27.7",
139
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
140
+ "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
141
+ "cpu": [
142
+ "ppc64"
143
+ ],
144
+ "license": "MIT",
145
+ "optional": true,
146
+ "os": [
147
+ "aix"
148
+ ],
149
+ "engines": {
150
+ "node": ">=18"
151
+ }
152
+ },
153
+ "node_modules/@esbuild/android-arm": {
154
+ "version": "0.27.7",
155
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
156
+ "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
157
+ "cpu": [
158
+ "arm"
159
+ ],
160
+ "license": "MIT",
161
+ "optional": true,
162
+ "os": [
163
+ "android"
164
+ ],
165
+ "engines": {
166
+ "node": ">=18"
167
+ }
168
+ },
169
+ "node_modules/@esbuild/android-arm64": {
170
+ "version": "0.27.7",
171
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
172
+ "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
173
+ "cpu": [
174
+ "arm64"
175
+ ],
176
+ "license": "MIT",
177
+ "optional": true,
178
+ "os": [
179
+ "android"
180
+ ],
181
+ "engines": {
182
+ "node": ">=18"
183
+ }
184
+ },
185
+ "node_modules/@esbuild/android-x64": {
186
+ "version": "0.27.7",
187
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
188
+ "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
189
+ "cpu": [
190
+ "x64"
191
+ ],
192
+ "license": "MIT",
193
+ "optional": true,
194
+ "os": [
195
+ "android"
196
+ ],
197
+ "engines": {
198
+ "node": ">=18"
199
+ }
200
+ },
201
+ "node_modules/@esbuild/darwin-arm64": {
202
+ "version": "0.27.7",
203
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
204
+ "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
205
+ "cpu": [
206
+ "arm64"
207
+ ],
208
+ "license": "MIT",
209
+ "optional": true,
210
+ "os": [
211
+ "darwin"
212
+ ],
213
+ "engines": {
214
+ "node": ">=18"
215
+ }
216
+ },
217
+ "node_modules/@esbuild/darwin-x64": {
218
+ "version": "0.27.7",
219
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
220
+ "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
221
+ "cpu": [
222
+ "x64"
223
+ ],
224
+ "license": "MIT",
225
+ "optional": true,
226
+ "os": [
227
+ "darwin"
228
+ ],
229
+ "engines": {
230
+ "node": ">=18"
231
+ }
232
+ },
233
+ "node_modules/@esbuild/freebsd-arm64": {
234
+ "version": "0.27.7",
235
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
236
+ "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
237
+ "cpu": [
238
+ "arm64"
239
+ ],
240
+ "license": "MIT",
241
+ "optional": true,
242
+ "os": [
243
+ "freebsd"
244
+ ],
245
+ "engines": {
246
+ "node": ">=18"
247
+ }
248
+ },
249
+ "node_modules/@esbuild/freebsd-x64": {
250
+ "version": "0.27.7",
251
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
252
+ "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
253
+ "cpu": [
254
+ "x64"
255
+ ],
256
+ "license": "MIT",
257
+ "optional": true,
258
+ "os": [
259
+ "freebsd"
260
+ ],
261
+ "engines": {
262
+ "node": ">=18"
263
+ }
264
+ },
265
+ "node_modules/@esbuild/linux-arm": {
266
+ "version": "0.27.7",
267
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
268
+ "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
269
+ "cpu": [
270
+ "arm"
271
+ ],
272
+ "license": "MIT",
273
+ "optional": true,
274
+ "os": [
275
+ "linux"
276
+ ],
277
+ "engines": {
278
+ "node": ">=18"
279
+ }
280
+ },
281
+ "node_modules/@esbuild/linux-arm64": {
282
+ "version": "0.27.7",
283
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
284
+ "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
285
+ "cpu": [
286
+ "arm64"
287
+ ],
288
+ "license": "MIT",
289
+ "optional": true,
290
+ "os": [
291
+ "linux"
292
+ ],
293
+ "engines": {
294
+ "node": ">=18"
295
+ }
296
+ },
297
+ "node_modules/@esbuild/linux-ia32": {
298
+ "version": "0.27.7",
299
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
300
+ "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
301
+ "cpu": [
302
+ "ia32"
303
+ ],
304
+ "license": "MIT",
305
+ "optional": true,
306
+ "os": [
307
+ "linux"
308
+ ],
309
+ "engines": {
310
+ "node": ">=18"
311
+ }
312
+ },
313
+ "node_modules/@esbuild/linux-loong64": {
314
+ "version": "0.27.7",
315
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
316
+ "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
317
+ "cpu": [
318
+ "loong64"
319
+ ],
320
+ "license": "MIT",
321
+ "optional": true,
322
+ "os": [
323
+ "linux"
324
+ ],
325
+ "engines": {
326
+ "node": ">=18"
327
+ }
328
+ },
329
+ "node_modules/@esbuild/linux-mips64el": {
330
+ "version": "0.27.7",
331
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
332
+ "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
333
+ "cpu": [
334
+ "mips64el"
335
+ ],
336
+ "license": "MIT",
337
+ "optional": true,
338
+ "os": [
339
+ "linux"
340
+ ],
341
+ "engines": {
342
+ "node": ">=18"
343
+ }
344
+ },
345
+ "node_modules/@esbuild/linux-ppc64": {
346
+ "version": "0.27.7",
347
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
348
+ "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
349
+ "cpu": [
350
+ "ppc64"
351
+ ],
352
+ "license": "MIT",
353
+ "optional": true,
354
+ "os": [
355
+ "linux"
356
+ ],
357
+ "engines": {
358
+ "node": ">=18"
359
+ }
360
+ },
361
+ "node_modules/@esbuild/linux-riscv64": {
362
+ "version": "0.27.7",
363
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
364
+ "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
365
+ "cpu": [
366
+ "riscv64"
367
+ ],
368
+ "license": "MIT",
369
+ "optional": true,
370
+ "os": [
371
+ "linux"
372
+ ],
373
+ "engines": {
374
+ "node": ">=18"
375
+ }
376
+ },
377
+ "node_modules/@esbuild/linux-s390x": {
378
+ "version": "0.27.7",
379
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
380
+ "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
381
+ "cpu": [
382
+ "s390x"
383
+ ],
384
+ "license": "MIT",
385
+ "optional": true,
386
+ "os": [
387
+ "linux"
388
+ ],
389
+ "engines": {
390
+ "node": ">=18"
391
+ }
392
+ },
393
+ "node_modules/@esbuild/linux-x64": {
394
+ "version": "0.27.7",
395
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
396
+ "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
397
+ "cpu": [
398
+ "x64"
399
+ ],
400
+ "license": "MIT",
401
+ "optional": true,
402
+ "os": [
403
+ "linux"
404
+ ],
405
+ "engines": {
406
+ "node": ">=18"
407
+ }
408
+ },
409
+ "node_modules/@esbuild/netbsd-arm64": {
410
+ "version": "0.27.7",
411
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
412
+ "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
413
+ "cpu": [
414
+ "arm64"
415
+ ],
416
+ "license": "MIT",
417
+ "optional": true,
418
+ "os": [
419
+ "netbsd"
420
+ ],
421
+ "engines": {
422
+ "node": ">=18"
423
+ }
424
+ },
425
+ "node_modules/@esbuild/netbsd-x64": {
426
+ "version": "0.27.7",
427
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
428
+ "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
429
+ "cpu": [
430
+ "x64"
431
+ ],
432
+ "license": "MIT",
433
+ "optional": true,
434
+ "os": [
435
+ "netbsd"
436
+ ],
437
+ "engines": {
438
+ "node": ">=18"
439
+ }
440
+ },
441
+ "node_modules/@esbuild/openbsd-arm64": {
442
+ "version": "0.27.7",
443
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
444
+ "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
445
+ "cpu": [
446
+ "arm64"
447
+ ],
448
+ "license": "MIT",
449
+ "optional": true,
450
+ "os": [
451
+ "openbsd"
452
+ ],
453
+ "engines": {
454
+ "node": ">=18"
455
+ }
456
+ },
457
+ "node_modules/@esbuild/openbsd-x64": {
458
+ "version": "0.27.7",
459
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
460
+ "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
461
+ "cpu": [
462
+ "x64"
463
+ ],
464
+ "license": "MIT",
465
+ "optional": true,
466
+ "os": [
467
+ "openbsd"
468
+ ],
469
+ "engines": {
470
+ "node": ">=18"
471
+ }
472
+ },
473
+ "node_modules/@esbuild/openharmony-arm64": {
474
+ "version": "0.27.7",
475
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
476
+ "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
477
+ "cpu": [
478
+ "arm64"
479
+ ],
480
+ "license": "MIT",
481
+ "optional": true,
482
+ "os": [
483
+ "openharmony"
484
+ ],
485
+ "engines": {
486
+ "node": ">=18"
487
+ }
488
+ },
489
+ "node_modules/@esbuild/sunos-x64": {
490
+ "version": "0.27.7",
491
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
492
+ "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
493
+ "cpu": [
494
+ "x64"
495
+ ],
496
+ "license": "MIT",
497
+ "optional": true,
498
+ "os": [
499
+ "sunos"
500
+ ],
501
+ "engines": {
502
+ "node": ">=18"
503
+ }
504
+ },
505
+ "node_modules/@esbuild/win32-arm64": {
506
+ "version": "0.27.7",
507
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
508
+ "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
509
+ "cpu": [
510
+ "arm64"
511
+ ],
512
+ "license": "MIT",
513
+ "optional": true,
514
+ "os": [
515
+ "win32"
516
+ ],
517
+ "engines": {
518
+ "node": ">=18"
519
+ }
520
+ },
521
+ "node_modules/@esbuild/win32-ia32": {
522
+ "version": "0.27.7",
523
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
524
+ "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
525
+ "cpu": [
526
+ "ia32"
527
+ ],
528
+ "license": "MIT",
529
+ "optional": true,
530
+ "os": [
531
+ "win32"
532
+ ],
533
+ "engines": {
534
+ "node": ">=18"
535
+ }
536
+ },
537
+ "node_modules/@esbuild/win32-x64": {
538
+ "version": "0.27.7",
539
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
540
+ "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
541
+ "cpu": [
542
+ "x64"
543
+ ],
544
+ "license": "MIT",
545
+ "optional": true,
546
+ "os": [
547
+ "win32"
548
+ ],
549
+ "engines": {
550
+ "node": ">=18"
551
+ }
552
+ },
553
+ "node_modules/@isaacs/fs-minipass": {
554
+ "version": "4.0.1",
555
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
556
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
557
+ "license": "ISC",
558
+ "dependencies": {
559
+ "minipass": "^7.0.4"
560
+ },
561
+ "engines": {
562
+ "node": ">=18.0.0"
563
+ }
564
+ },
565
+ "node_modules/@jridgewell/gen-mapping": {
566
+ "version": "0.3.13",
567
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
568
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
569
+ "license": "MIT",
570
+ "dependencies": {
571
+ "@jridgewell/sourcemap-codec": "^1.5.0",
572
+ "@jridgewell/trace-mapping": "^0.3.24"
573
+ }
574
+ },
575
+ "node_modules/@jridgewell/resolve-uri": {
576
+ "version": "3.1.2",
577
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
578
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
579
+ "license": "MIT",
580
+ "engines": {
581
+ "node": ">=6.0.0"
582
+ }
583
+ },
584
+ "node_modules/@jridgewell/sourcemap-codec": {
585
+ "version": "1.5.5",
586
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
587
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
588
+ "license": "MIT"
589
+ },
590
+ "node_modules/@jridgewell/trace-mapping": {
591
+ "version": "0.3.31",
592
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
593
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
594
+ "license": "MIT",
595
+ "dependencies": {
596
+ "@jridgewell/resolve-uri": "^3.1.0",
597
+ "@jridgewell/sourcemap-codec": "^1.4.14"
598
+ }
599
+ },
600
+ "node_modules/@keshavsoft/kschema": {
601
+ "version": "1.17.9",
602
+ "resolved": "https://registry.npmjs.org/@keshavsoft/kschema/-/kschema-1.17.9.tgz",
603
+ "integrity": "sha512-Q5+c/T9ciO9mD/fH+mroFaVgiYpMyU8sZsdRZcRw6rWtuY5nc2U5PfnRFjwJ8iKtFaTK7QpRqDz8b7/1rUqZOw=="
604
+ },
605
+ "node_modules/@keshavsoft/tallyextract": {
606
+ "version": "1.2.1",
607
+ "resolved": "https://registry.npmjs.org/@keshavsoft/tallyextract/-/tallyextract-1.2.1.tgz",
608
+ "integrity": "sha512-xJ8evVw4pq5jzeD2bpnQ4x4tlxrZFFl7PsVbPvjGoqWNZwVuS8bGqO8FCtWAK32SWHYs2slkrsjLppZzhb13KA=="
609
+ },
610
+ "node_modules/@roberts_lando/vfs": {
611
+ "version": "0.3.3",
612
+ "resolved": "https://registry.npmjs.org/@roberts_lando/vfs/-/vfs-0.3.3.tgz",
613
+ "integrity": "sha512-YjkxVSLw5WMZQoARaryRAjcxA+GbBzWMJdwYZX5oLUt9cC/gew9as4Dn7tcLzPp7BPoR221VpTZ+78TRPawnjg==",
614
+ "license": "MIT",
615
+ "engines": {
616
+ "node": ">= 22"
617
+ }
618
+ },
619
+ "node_modules/@yao-pkg/pkg": {
620
+ "version": "6.19.0",
621
+ "resolved": "https://registry.npmjs.org/@yao-pkg/pkg/-/pkg-6.19.0.tgz",
622
+ "integrity": "sha512-Ys9Fn/F44C3nOTlNyhwviLyMxydgFzsB13jAAXKxEuIR7aAz8PrFlUpxTUlwaXUU847nlmg5mnaGIyOJpnVtRw==",
623
+ "license": "MIT",
624
+ "dependencies": {
625
+ "@babel/generator": "^7.23.0",
626
+ "@babel/parser": "^7.23.0",
627
+ "@babel/traverse": "^7.23.0",
628
+ "@babel/types": "^7.23.0",
629
+ "@roberts_lando/vfs": "^0.3.3",
630
+ "@yao-pkg/pkg-fetch": "3.5.33",
631
+ "esbuild": "^0.27.3",
632
+ "into-stream": "^9.1.0",
633
+ "multistream": "^4.1.0",
634
+ "picocolors": "^1.1.0",
635
+ "picomatch": "^4.0.2",
636
+ "postject": "^1.0.0-alpha.6",
637
+ "prebuild-install": "^7.1.1",
638
+ "resolve": "^1.22.10",
639
+ "resolve.exports": "^2.0.3",
640
+ "stream-meter": "^1.0.4",
641
+ "tar": "^7.5.7",
642
+ "tinyglobby": "^0.2.11",
643
+ "unzipper": "^0.12.3"
644
+ },
645
+ "bin": {
646
+ "pkg": "lib-es5/bin.js"
647
+ },
648
+ "engines": {
649
+ "node": ">=22.0.0"
650
+ }
651
+ },
652
+ "node_modules/@yao-pkg/pkg-fetch": {
653
+ "version": "3.5.33",
654
+ "resolved": "https://registry.npmjs.org/@yao-pkg/pkg-fetch/-/pkg-fetch-3.5.33.tgz",
655
+ "integrity": "sha512-j2UoH+eP4VobfovQg1gkWwDoB4O/tv8rlLnEjUEEHuWXJ5eBLNUIrobMSEp773/2pgUJUfqqPUFIhS1pN8OZuQ==",
656
+ "license": "MIT",
657
+ "dependencies": {
658
+ "https-proxy-agent": "^5.0.0",
659
+ "node-fetch": "^2.6.6",
660
+ "picocolors": "^1.1.0",
661
+ "progress": "^2.0.3",
662
+ "semver": "^7.3.5",
663
+ "tar-fs": "^3.1.1",
664
+ "yargs": "^16.2.0"
665
+ },
666
+ "bin": {
667
+ "pkg-fetch": "lib-es5/bin.js"
668
+ }
669
+ },
670
+ "node_modules/accepts": {
671
+ "version": "2.0.0",
672
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
673
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
674
+ "license": "MIT",
675
+ "dependencies": {
676
+ "mime-types": "^3.0.0",
677
+ "negotiator": "^1.0.0"
678
+ },
679
+ "engines": {
680
+ "node": ">= 0.6"
681
+ }
682
+ },
683
+ "node_modules/agent-base": {
684
+ "version": "6.0.2",
685
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
686
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
687
+ "license": "MIT",
688
+ "dependencies": {
689
+ "debug": "4"
690
+ },
691
+ "engines": {
692
+ "node": ">= 6.0.0"
693
+ }
694
+ },
695
+ "node_modules/ansi-regex": {
696
+ "version": "5.0.1",
697
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
698
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
699
+ "license": "MIT",
700
+ "engines": {
701
+ "node": ">=8"
702
+ }
703
+ },
704
+ "node_modules/ansi-styles": {
705
+ "version": "4.3.0",
706
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
707
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
708
+ "license": "MIT",
709
+ "dependencies": {
710
+ "color-convert": "^2.0.1"
711
+ },
712
+ "engines": {
713
+ "node": ">=8"
714
+ },
715
+ "funding": {
716
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
717
+ }
718
+ },
719
+ "node_modules/b4a": {
720
+ "version": "1.8.1",
721
+ "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.1.tgz",
722
+ "integrity": "sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==",
723
+ "license": "Apache-2.0",
724
+ "peerDependencies": {
725
+ "react-native-b4a": "*"
726
+ },
727
+ "peerDependenciesMeta": {
728
+ "react-native-b4a": {
729
+ "optional": true
730
+ }
731
+ }
732
+ },
733
+ "node_modules/bare-events": {
734
+ "version": "2.8.2",
735
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz",
736
+ "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
737
+ "license": "Apache-2.0",
738
+ "peerDependencies": {
739
+ "bare-abort-controller": "*"
740
+ },
741
+ "peerDependenciesMeta": {
742
+ "bare-abort-controller": {
743
+ "optional": true
744
+ }
745
+ }
746
+ },
747
+ "node_modules/bare-fs": {
748
+ "version": "4.7.1",
749
+ "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.7.1.tgz",
750
+ "integrity": "sha512-WDRsyVN52eAx/lBamKD6uyw8H4228h/x0sGGGegOamM2cd7Pag88GfMQalobXI+HaEUxpCkbKQUDOQqt9wawRw==",
751
+ "license": "Apache-2.0",
752
+ "dependencies": {
753
+ "bare-events": "^2.5.4",
754
+ "bare-path": "^3.0.0",
755
+ "bare-stream": "^2.6.4",
756
+ "bare-url": "^2.2.2",
757
+ "fast-fifo": "^1.3.2"
758
+ },
759
+ "engines": {
760
+ "bare": ">=1.16.0"
761
+ },
762
+ "peerDependencies": {
763
+ "bare-buffer": "*"
764
+ },
765
+ "peerDependenciesMeta": {
766
+ "bare-buffer": {
767
+ "optional": true
768
+ }
769
+ }
770
+ },
771
+ "node_modules/bare-os": {
772
+ "version": "3.9.1",
773
+ "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.9.1.tgz",
774
+ "integrity": "sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==",
775
+ "license": "Apache-2.0",
776
+ "engines": {
777
+ "bare": ">=1.14.0"
778
+ }
779
+ },
780
+ "node_modules/bare-path": {
781
+ "version": "3.0.0",
782
+ "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz",
783
+ "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
784
+ "license": "Apache-2.0",
785
+ "dependencies": {
786
+ "bare-os": "^3.0.1"
787
+ }
788
+ },
789
+ "node_modules/bare-stream": {
790
+ "version": "2.13.1",
791
+ "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.13.1.tgz",
792
+ "integrity": "sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==",
793
+ "license": "Apache-2.0",
794
+ "dependencies": {
795
+ "streamx": "^2.25.0",
796
+ "teex": "^1.0.1"
797
+ },
798
+ "peerDependencies": {
799
+ "bare-abort-controller": "*",
800
+ "bare-buffer": "*",
801
+ "bare-events": "*"
802
+ },
803
+ "peerDependenciesMeta": {
804
+ "bare-abort-controller": {
805
+ "optional": true
806
+ },
807
+ "bare-buffer": {
808
+ "optional": true
809
+ },
810
+ "bare-events": {
811
+ "optional": true
812
+ }
813
+ }
814
+ },
815
+ "node_modules/bare-url": {
816
+ "version": "2.4.2",
817
+ "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.2.tgz",
818
+ "integrity": "sha512-/9a2j4ac6ckpmAHvod/ob7x439OAHst/drc2Clnq+reRYd/ovddwcF4LfoxHyNk5AuGBnPg+HqFjmE/Zpq6v0A==",
819
+ "license": "Apache-2.0",
820
+ "dependencies": {
821
+ "bare-path": "^3.0.0"
822
+ }
823
+ },
824
+ "node_modules/base64-js": {
825
+ "version": "1.5.1",
826
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
827
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
828
+ "funding": [
829
+ {
830
+ "type": "github",
831
+ "url": "https://github.com/sponsors/feross"
832
+ },
833
+ {
834
+ "type": "patreon",
835
+ "url": "https://www.patreon.com/feross"
836
+ },
837
+ {
838
+ "type": "consulting",
839
+ "url": "https://feross.org/support"
840
+ }
841
+ ],
842
+ "license": "MIT"
843
+ },
844
+ "node_modules/bl": {
845
+ "version": "4.1.0",
846
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
847
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
848
+ "license": "MIT",
849
+ "dependencies": {
850
+ "buffer": "^5.5.0",
851
+ "inherits": "^2.0.4",
852
+ "readable-stream": "^3.4.0"
853
+ }
854
+ },
855
+ "node_modules/bluebird": {
856
+ "version": "3.7.2",
857
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
858
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
859
+ "license": "MIT"
860
+ },
861
+ "node_modules/body-parser": {
862
+ "version": "2.2.2",
863
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
864
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
865
+ "license": "MIT",
866
+ "dependencies": {
867
+ "bytes": "^3.1.2",
868
+ "content-type": "^1.0.5",
869
+ "debug": "^4.4.3",
870
+ "http-errors": "^2.0.0",
871
+ "iconv-lite": "^0.7.0",
872
+ "on-finished": "^2.4.1",
873
+ "qs": "^6.14.1",
874
+ "raw-body": "^3.0.1",
875
+ "type-is": "^2.0.1"
876
+ },
877
+ "engines": {
878
+ "node": ">=18"
879
+ },
880
+ "funding": {
881
+ "type": "opencollective",
882
+ "url": "https://opencollective.com/express"
883
+ }
884
+ },
885
+ "node_modules/buffer": {
886
+ "version": "5.7.1",
887
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
888
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
889
+ "funding": [
890
+ {
891
+ "type": "github",
892
+ "url": "https://github.com/sponsors/feross"
893
+ },
894
+ {
895
+ "type": "patreon",
896
+ "url": "https://www.patreon.com/feross"
897
+ },
898
+ {
899
+ "type": "consulting",
900
+ "url": "https://feross.org/support"
901
+ }
902
+ ],
903
+ "license": "MIT",
904
+ "dependencies": {
905
+ "base64-js": "^1.3.1",
906
+ "ieee754": "^1.1.13"
907
+ }
908
+ },
909
+ "node_modules/bytes": {
910
+ "version": "3.1.2",
911
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
912
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
913
+ "license": "MIT",
914
+ "engines": {
915
+ "node": ">= 0.8"
916
+ }
917
+ },
918
+ "node_modules/call-bind-apply-helpers": {
919
+ "version": "1.0.2",
920
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
921
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
922
+ "license": "MIT",
923
+ "dependencies": {
924
+ "es-errors": "^1.3.0",
925
+ "function-bind": "^1.1.2"
926
+ },
927
+ "engines": {
928
+ "node": ">= 0.4"
929
+ }
930
+ },
931
+ "node_modules/call-bound": {
932
+ "version": "1.0.4",
933
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
934
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
935
+ "license": "MIT",
936
+ "dependencies": {
937
+ "call-bind-apply-helpers": "^1.0.2",
938
+ "get-intrinsic": "^1.3.0"
939
+ },
940
+ "engines": {
941
+ "node": ">= 0.4"
942
+ },
943
+ "funding": {
944
+ "url": "https://github.com/sponsors/ljharb"
945
+ }
946
+ },
947
+ "node_modules/chownr": {
948
+ "version": "3.0.0",
949
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
950
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
951
+ "license": "BlueOak-1.0.0",
952
+ "engines": {
953
+ "node": ">=18"
954
+ }
955
+ },
956
+ "node_modules/cliui": {
957
+ "version": "7.0.4",
958
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
959
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
960
+ "license": "ISC",
961
+ "dependencies": {
962
+ "string-width": "^4.2.0",
963
+ "strip-ansi": "^6.0.0",
964
+ "wrap-ansi": "^7.0.0"
965
+ }
966
+ },
967
+ "node_modules/color-convert": {
968
+ "version": "2.0.1",
969
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
970
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
971
+ "license": "MIT",
972
+ "dependencies": {
973
+ "color-name": "~1.1.4"
974
+ },
975
+ "engines": {
976
+ "node": ">=7.0.0"
977
+ }
978
+ },
979
+ "node_modules/color-name": {
980
+ "version": "1.1.4",
981
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
982
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
983
+ "license": "MIT"
984
+ },
985
+ "node_modules/commander": {
986
+ "version": "9.5.0",
987
+ "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
988
+ "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==",
989
+ "license": "MIT",
990
+ "engines": {
991
+ "node": "^12.20.0 || >=14"
992
+ }
993
+ },
994
+ "node_modules/content-disposition": {
995
+ "version": "1.1.0",
996
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
997
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
998
+ "license": "MIT",
999
+ "engines": {
1000
+ "node": ">=18"
1001
+ },
1002
+ "funding": {
1003
+ "type": "opencollective",
1004
+ "url": "https://opencollective.com/express"
1005
+ }
1006
+ },
1007
+ "node_modules/content-type": {
1008
+ "version": "1.0.5",
1009
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
1010
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
1011
+ "license": "MIT",
1012
+ "engines": {
1013
+ "node": ">= 0.6"
1014
+ }
1015
+ },
1016
+ "node_modules/cookie": {
1017
+ "version": "0.7.2",
1018
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
1019
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
1020
+ "license": "MIT",
1021
+ "engines": {
1022
+ "node": ">= 0.6"
1023
+ }
1024
+ },
1025
+ "node_modules/cookie-signature": {
1026
+ "version": "1.2.2",
1027
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
1028
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
1029
+ "license": "MIT",
1030
+ "engines": {
1031
+ "node": ">=6.6.0"
1032
+ }
1033
+ },
1034
+ "node_modules/core-util-is": {
1035
+ "version": "1.0.3",
1036
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
1037
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
1038
+ "license": "MIT"
1039
+ },
1040
+ "node_modules/debug": {
1041
+ "version": "4.4.3",
1042
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1043
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1044
+ "license": "MIT",
1045
+ "dependencies": {
1046
+ "ms": "^2.1.3"
1047
+ },
1048
+ "engines": {
1049
+ "node": ">=6.0"
1050
+ },
1051
+ "peerDependenciesMeta": {
1052
+ "supports-color": {
1053
+ "optional": true
1054
+ }
1055
+ }
1056
+ },
1057
+ "node_modules/decompress-response": {
1058
+ "version": "6.0.0",
1059
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
1060
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
1061
+ "license": "MIT",
1062
+ "dependencies": {
1063
+ "mimic-response": "^3.1.0"
1064
+ },
1065
+ "engines": {
1066
+ "node": ">=10"
1067
+ },
1068
+ "funding": {
1069
+ "url": "https://github.com/sponsors/sindresorhus"
1070
+ }
1071
+ },
1072
+ "node_modules/deep-extend": {
1073
+ "version": "0.6.0",
1074
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
1075
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
1076
+ "license": "MIT",
1077
+ "engines": {
1078
+ "node": ">=4.0.0"
1079
+ }
1080
+ },
1081
+ "node_modules/depd": {
1082
+ "version": "2.0.0",
1083
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
1084
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
1085
+ "license": "MIT",
1086
+ "engines": {
1087
+ "node": ">= 0.8"
1088
+ }
1089
+ },
1090
+ "node_modules/detect-libc": {
1091
+ "version": "2.1.2",
1092
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1093
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1094
+ "license": "Apache-2.0",
1095
+ "engines": {
1096
+ "node": ">=8"
1097
+ }
1098
+ },
1099
+ "node_modules/dotenv": {
1100
+ "version": "17.4.2",
1101
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
1102
+ "integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
1103
+ "license": "BSD-2-Clause",
1104
+ "engines": {
1105
+ "node": ">=12"
1106
+ },
1107
+ "funding": {
1108
+ "url": "https://dotenvx.com"
1109
+ }
1110
+ },
1111
+ "node_modules/dunder-proto": {
1112
+ "version": "1.0.1",
1113
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1114
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1115
+ "license": "MIT",
1116
+ "dependencies": {
1117
+ "call-bind-apply-helpers": "^1.0.1",
1118
+ "es-errors": "^1.3.0",
1119
+ "gopd": "^1.2.0"
1120
+ },
1121
+ "engines": {
1122
+ "node": ">= 0.4"
1123
+ }
1124
+ },
1125
+ "node_modules/duplexer2": {
1126
+ "version": "0.1.4",
1127
+ "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
1128
+ "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
1129
+ "license": "BSD-3-Clause",
1130
+ "dependencies": {
1131
+ "readable-stream": "^2.0.2"
1132
+ }
1133
+ },
1134
+ "node_modules/duplexer2/node_modules/readable-stream": {
1135
+ "version": "2.3.8",
1136
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
1137
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
1138
+ "license": "MIT",
1139
+ "dependencies": {
1140
+ "core-util-is": "~1.0.0",
1141
+ "inherits": "~2.0.3",
1142
+ "isarray": "~1.0.0",
1143
+ "process-nextick-args": "~2.0.0",
1144
+ "safe-buffer": "~5.1.1",
1145
+ "string_decoder": "~1.1.1",
1146
+ "util-deprecate": "~1.0.1"
1147
+ }
1148
+ },
1149
+ "node_modules/duplexer2/node_modules/safe-buffer": {
1150
+ "version": "5.1.2",
1151
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
1152
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
1153
+ "license": "MIT"
1154
+ },
1155
+ "node_modules/duplexer2/node_modules/string_decoder": {
1156
+ "version": "1.1.1",
1157
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
1158
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
1159
+ "license": "MIT",
1160
+ "dependencies": {
1161
+ "safe-buffer": "~5.1.0"
1162
+ }
1163
+ },
1164
+ "node_modules/ee-first": {
1165
+ "version": "1.1.1",
1166
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
1167
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
1168
+ "license": "MIT"
1169
+ },
1170
+ "node_modules/emoji-regex": {
1171
+ "version": "8.0.0",
1172
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1173
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1174
+ "license": "MIT"
1175
+ },
1176
+ "node_modules/encodeurl": {
1177
+ "version": "2.0.0",
1178
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
1179
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
1180
+ "license": "MIT",
1181
+ "engines": {
1182
+ "node": ">= 0.8"
1183
+ }
1184
+ },
1185
+ "node_modules/end-of-stream": {
1186
+ "version": "1.4.5",
1187
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
1188
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
1189
+ "license": "MIT",
1190
+ "dependencies": {
1191
+ "once": "^1.4.0"
1192
+ }
1193
+ },
1194
+ "node_modules/es-define-property": {
1195
+ "version": "1.0.1",
1196
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1197
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1198
+ "license": "MIT",
1199
+ "engines": {
1200
+ "node": ">= 0.4"
1201
+ }
1202
+ },
1203
+ "node_modules/es-errors": {
1204
+ "version": "1.3.0",
1205
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1206
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1207
+ "license": "MIT",
1208
+ "engines": {
1209
+ "node": ">= 0.4"
1210
+ }
1211
+ },
1212
+ "node_modules/es-object-atoms": {
1213
+ "version": "1.1.1",
1214
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
1215
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
1216
+ "license": "MIT",
1217
+ "dependencies": {
1218
+ "es-errors": "^1.3.0"
1219
+ },
1220
+ "engines": {
1221
+ "node": ">= 0.4"
1222
+ }
1223
+ },
1224
+ "node_modules/esbuild": {
1225
+ "version": "0.27.7",
1226
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
1227
+ "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
1228
+ "hasInstallScript": true,
1229
+ "license": "MIT",
1230
+ "bin": {
1231
+ "esbuild": "bin/esbuild"
1232
+ },
1233
+ "engines": {
1234
+ "node": ">=18"
1235
+ },
1236
+ "optionalDependencies": {
1237
+ "@esbuild/aix-ppc64": "0.27.7",
1238
+ "@esbuild/android-arm": "0.27.7",
1239
+ "@esbuild/android-arm64": "0.27.7",
1240
+ "@esbuild/android-x64": "0.27.7",
1241
+ "@esbuild/darwin-arm64": "0.27.7",
1242
+ "@esbuild/darwin-x64": "0.27.7",
1243
+ "@esbuild/freebsd-arm64": "0.27.7",
1244
+ "@esbuild/freebsd-x64": "0.27.7",
1245
+ "@esbuild/linux-arm": "0.27.7",
1246
+ "@esbuild/linux-arm64": "0.27.7",
1247
+ "@esbuild/linux-ia32": "0.27.7",
1248
+ "@esbuild/linux-loong64": "0.27.7",
1249
+ "@esbuild/linux-mips64el": "0.27.7",
1250
+ "@esbuild/linux-ppc64": "0.27.7",
1251
+ "@esbuild/linux-riscv64": "0.27.7",
1252
+ "@esbuild/linux-s390x": "0.27.7",
1253
+ "@esbuild/linux-x64": "0.27.7",
1254
+ "@esbuild/netbsd-arm64": "0.27.7",
1255
+ "@esbuild/netbsd-x64": "0.27.7",
1256
+ "@esbuild/openbsd-arm64": "0.27.7",
1257
+ "@esbuild/openbsd-x64": "0.27.7",
1258
+ "@esbuild/openharmony-arm64": "0.27.7",
1259
+ "@esbuild/sunos-x64": "0.27.7",
1260
+ "@esbuild/win32-arm64": "0.27.7",
1261
+ "@esbuild/win32-ia32": "0.27.7",
1262
+ "@esbuild/win32-x64": "0.27.7"
1263
+ }
1264
+ },
1265
+ "node_modules/escalade": {
1266
+ "version": "3.2.0",
1267
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1268
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1269
+ "license": "MIT",
1270
+ "engines": {
1271
+ "node": ">=6"
1272
+ }
1273
+ },
1274
+ "node_modules/escape-html": {
1275
+ "version": "1.0.3",
1276
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
1277
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
1278
+ "license": "MIT"
1279
+ },
1280
+ "node_modules/etag": {
1281
+ "version": "1.8.1",
1282
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
1283
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
1284
+ "license": "MIT",
1285
+ "engines": {
1286
+ "node": ">= 0.6"
1287
+ }
1288
+ },
1289
+ "node_modules/events-universal": {
1290
+ "version": "1.0.1",
1291
+ "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz",
1292
+ "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
1293
+ "license": "Apache-2.0",
1294
+ "dependencies": {
1295
+ "bare-events": "^2.7.0"
1296
+ }
1297
+ },
1298
+ "node_modules/expand-template": {
1299
+ "version": "2.0.3",
1300
+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
1301
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
1302
+ "license": "(MIT OR WTFPL)",
1303
+ "engines": {
1304
+ "node": ">=6"
1305
+ }
1306
+ },
1307
+ "node_modules/express": {
1308
+ "version": "5.2.1",
1309
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
1310
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
1311
+ "license": "MIT",
1312
+ "dependencies": {
1313
+ "accepts": "^2.0.0",
1314
+ "body-parser": "^2.2.1",
1315
+ "content-disposition": "^1.0.0",
1316
+ "content-type": "^1.0.5",
1317
+ "cookie": "^0.7.1",
1318
+ "cookie-signature": "^1.2.1",
1319
+ "debug": "^4.4.0",
1320
+ "depd": "^2.0.0",
1321
+ "encodeurl": "^2.0.0",
1322
+ "escape-html": "^1.0.3",
1323
+ "etag": "^1.8.1",
1324
+ "finalhandler": "^2.1.0",
1325
+ "fresh": "^2.0.0",
1326
+ "http-errors": "^2.0.0",
1327
+ "merge-descriptors": "^2.0.0",
1328
+ "mime-types": "^3.0.0",
1329
+ "on-finished": "^2.4.1",
1330
+ "once": "^1.4.0",
1331
+ "parseurl": "^1.3.3",
1332
+ "proxy-addr": "^2.0.7",
1333
+ "qs": "^6.14.0",
1334
+ "range-parser": "^1.2.1",
1335
+ "router": "^2.2.0",
1336
+ "send": "^1.1.0",
1337
+ "serve-static": "^2.2.0",
1338
+ "statuses": "^2.0.1",
1339
+ "type-is": "^2.0.1",
1340
+ "vary": "^1.1.2"
1341
+ },
1342
+ "engines": {
1343
+ "node": ">= 18"
1344
+ },
1345
+ "funding": {
1346
+ "type": "opencollective",
1347
+ "url": "https://opencollective.com/express"
1348
+ }
1349
+ },
1350
+ "node_modules/fast-fifo": {
1351
+ "version": "1.3.2",
1352
+ "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
1353
+ "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
1354
+ "license": "MIT"
1355
+ },
1356
+ "node_modules/fdir": {
1357
+ "version": "6.5.0",
1358
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1359
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1360
+ "license": "MIT",
1361
+ "engines": {
1362
+ "node": ">=12.0.0"
1363
+ },
1364
+ "peerDependencies": {
1365
+ "picomatch": "^3 || ^4"
1366
+ },
1367
+ "peerDependenciesMeta": {
1368
+ "picomatch": {
1369
+ "optional": true
1370
+ }
1371
+ }
1372
+ },
1373
+ "node_modules/finalhandler": {
1374
+ "version": "2.1.1",
1375
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
1376
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
1377
+ "license": "MIT",
1378
+ "dependencies": {
1379
+ "debug": "^4.4.0",
1380
+ "encodeurl": "^2.0.0",
1381
+ "escape-html": "^1.0.3",
1382
+ "on-finished": "^2.4.1",
1383
+ "parseurl": "^1.3.3",
1384
+ "statuses": "^2.0.1"
1385
+ },
1386
+ "engines": {
1387
+ "node": ">= 18.0.0"
1388
+ },
1389
+ "funding": {
1390
+ "type": "opencollective",
1391
+ "url": "https://opencollective.com/express"
1392
+ }
1393
+ },
1394
+ "node_modules/forwarded": {
1395
+ "version": "0.2.0",
1396
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
1397
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
1398
+ "license": "MIT",
1399
+ "engines": {
1400
+ "node": ">= 0.6"
1401
+ }
1402
+ },
1403
+ "node_modules/fresh": {
1404
+ "version": "2.0.0",
1405
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
1406
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
1407
+ "license": "MIT",
1408
+ "engines": {
1409
+ "node": ">= 0.8"
1410
+ }
1411
+ },
1412
+ "node_modules/fs-constants": {
1413
+ "version": "1.0.0",
1414
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
1415
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
1416
+ "license": "MIT"
1417
+ },
1418
+ "node_modules/fs-extra": {
1419
+ "version": "11.3.4",
1420
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.4.tgz",
1421
+ "integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
1422
+ "license": "MIT",
1423
+ "dependencies": {
1424
+ "graceful-fs": "^4.2.0",
1425
+ "jsonfile": "^6.0.1",
1426
+ "universalify": "^2.0.0"
1427
+ },
1428
+ "engines": {
1429
+ "node": ">=14.14"
1430
+ }
1431
+ },
1432
+ "node_modules/function-bind": {
1433
+ "version": "1.1.2",
1434
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1435
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1436
+ "license": "MIT",
1437
+ "funding": {
1438
+ "url": "https://github.com/sponsors/ljharb"
1439
+ }
1440
+ },
1441
+ "node_modules/get-caller-file": {
1442
+ "version": "2.0.5",
1443
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1444
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
1445
+ "license": "ISC",
1446
+ "engines": {
1447
+ "node": "6.* || 8.* || >= 10.*"
1448
+ }
1449
+ },
1450
+ "node_modules/get-intrinsic": {
1451
+ "version": "1.3.0",
1452
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1453
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1454
+ "license": "MIT",
1455
+ "dependencies": {
1456
+ "call-bind-apply-helpers": "^1.0.2",
1457
+ "es-define-property": "^1.0.1",
1458
+ "es-errors": "^1.3.0",
1459
+ "es-object-atoms": "^1.1.1",
1460
+ "function-bind": "^1.1.2",
1461
+ "get-proto": "^1.0.1",
1462
+ "gopd": "^1.2.0",
1463
+ "has-symbols": "^1.1.0",
1464
+ "hasown": "^2.0.2",
1465
+ "math-intrinsics": "^1.1.0"
1466
+ },
1467
+ "engines": {
1468
+ "node": ">= 0.4"
1469
+ },
1470
+ "funding": {
1471
+ "url": "https://github.com/sponsors/ljharb"
1472
+ }
1473
+ },
1474
+ "node_modules/get-proto": {
1475
+ "version": "1.0.1",
1476
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1477
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1478
+ "license": "MIT",
1479
+ "dependencies": {
1480
+ "dunder-proto": "^1.0.1",
1481
+ "es-object-atoms": "^1.0.0"
1482
+ },
1483
+ "engines": {
1484
+ "node": ">= 0.4"
1485
+ }
1486
+ },
1487
+ "node_modules/github-from-package": {
1488
+ "version": "0.0.0",
1489
+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
1490
+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
1491
+ "license": "MIT"
1492
+ },
1493
+ "node_modules/gopd": {
1494
+ "version": "1.2.0",
1495
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1496
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1497
+ "license": "MIT",
1498
+ "engines": {
1499
+ "node": ">= 0.4"
1500
+ },
1501
+ "funding": {
1502
+ "url": "https://github.com/sponsors/ljharb"
1503
+ }
1504
+ },
1505
+ "node_modules/graceful-fs": {
1506
+ "version": "4.2.11",
1507
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1508
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1509
+ "license": "ISC"
1510
+ },
1511
+ "node_modules/has-symbols": {
1512
+ "version": "1.1.0",
1513
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1514
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1515
+ "license": "MIT",
1516
+ "engines": {
1517
+ "node": ">= 0.4"
1518
+ },
1519
+ "funding": {
1520
+ "url": "https://github.com/sponsors/ljharb"
1521
+ }
1522
+ },
1523
+ "node_modules/hasown": {
1524
+ "version": "2.0.3",
1525
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
1526
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
1527
+ "license": "MIT",
1528
+ "dependencies": {
1529
+ "function-bind": "^1.1.2"
1530
+ },
1531
+ "engines": {
1532
+ "node": ">= 0.4"
1533
+ }
1534
+ },
1535
+ "node_modules/http-errors": {
1536
+ "version": "2.0.1",
1537
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
1538
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
1539
+ "license": "MIT",
1540
+ "dependencies": {
1541
+ "depd": "~2.0.0",
1542
+ "inherits": "~2.0.4",
1543
+ "setprototypeof": "~1.2.0",
1544
+ "statuses": "~2.0.2",
1545
+ "toidentifier": "~1.0.1"
1546
+ },
1547
+ "engines": {
1548
+ "node": ">= 0.8"
1549
+ },
1550
+ "funding": {
1551
+ "type": "opencollective",
1552
+ "url": "https://opencollective.com/express"
1553
+ }
1554
+ },
1555
+ "node_modules/https-proxy-agent": {
1556
+ "version": "5.0.1",
1557
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
1558
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
1559
+ "license": "MIT",
1560
+ "dependencies": {
1561
+ "agent-base": "6",
1562
+ "debug": "4"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">= 6"
1566
+ }
1567
+ },
1568
+ "node_modules/iconv-lite": {
1569
+ "version": "0.7.2",
1570
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
1571
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
1572
+ "license": "MIT",
1573
+ "dependencies": {
1574
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1575
+ },
1576
+ "engines": {
1577
+ "node": ">=0.10.0"
1578
+ },
1579
+ "funding": {
1580
+ "type": "opencollective",
1581
+ "url": "https://opencollective.com/express"
1582
+ }
1583
+ },
1584
+ "node_modules/ieee754": {
1585
+ "version": "1.2.1",
1586
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1587
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1588
+ "funding": [
1589
+ {
1590
+ "type": "github",
1591
+ "url": "https://github.com/sponsors/feross"
1592
+ },
1593
+ {
1594
+ "type": "patreon",
1595
+ "url": "https://www.patreon.com/feross"
1596
+ },
1597
+ {
1598
+ "type": "consulting",
1599
+ "url": "https://feross.org/support"
1600
+ }
1601
+ ],
1602
+ "license": "BSD-3-Clause"
1603
+ },
1604
+ "node_modules/inherits": {
1605
+ "version": "2.0.4",
1606
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1607
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1608
+ "license": "ISC"
1609
+ },
1610
+ "node_modules/ini": {
1611
+ "version": "1.3.8",
1612
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
1613
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
1614
+ "license": "ISC"
1615
+ },
1616
+ "node_modules/into-stream": {
1617
+ "version": "9.1.0",
1618
+ "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-9.1.0.tgz",
1619
+ "integrity": "sha512-DRsRnQrbzdFjaQ1oe4C6/EIUymIOEix1qROEJTF9dbMq+M4Zrm6VaLp6SD/B9IsiEjPZuBSnWWFN+udajugdWA==",
1620
+ "license": "MIT",
1621
+ "engines": {
1622
+ "node": ">=20"
1623
+ },
1624
+ "funding": {
1625
+ "url": "https://github.com/sponsors/sindresorhus"
1626
+ }
1627
+ },
1628
+ "node_modules/ipaddr.js": {
1629
+ "version": "1.9.1",
1630
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1631
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
1632
+ "license": "MIT",
1633
+ "engines": {
1634
+ "node": ">= 0.10"
1635
+ }
1636
+ },
1637
+ "node_modules/is-core-module": {
1638
+ "version": "2.16.1",
1639
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
1640
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
1641
+ "license": "MIT",
1642
+ "dependencies": {
1643
+ "hasown": "^2.0.2"
1644
+ },
1645
+ "engines": {
1646
+ "node": ">= 0.4"
1647
+ },
1648
+ "funding": {
1649
+ "url": "https://github.com/sponsors/ljharb"
1650
+ }
1651
+ },
1652
+ "node_modules/is-fullwidth-code-point": {
1653
+ "version": "3.0.0",
1654
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1655
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1656
+ "license": "MIT",
1657
+ "engines": {
1658
+ "node": ">=8"
1659
+ }
1660
+ },
1661
+ "node_modules/is-promise": {
1662
+ "version": "4.0.0",
1663
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
1664
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
1665
+ "license": "MIT"
1666
+ },
1667
+ "node_modules/isarray": {
1668
+ "version": "1.0.0",
1669
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1670
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
1671
+ "license": "MIT"
1672
+ },
1673
+ "node_modules/js-tokens": {
1674
+ "version": "4.0.0",
1675
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1676
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1677
+ "license": "MIT"
1678
+ },
1679
+ "node_modules/jsesc": {
1680
+ "version": "3.1.0",
1681
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1682
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1683
+ "license": "MIT",
1684
+ "bin": {
1685
+ "jsesc": "bin/jsesc"
1686
+ },
1687
+ "engines": {
1688
+ "node": ">=6"
1689
+ }
1690
+ },
1691
+ "node_modules/jsonfile": {
1692
+ "version": "6.2.1",
1693
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
1694
+ "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
1695
+ "license": "MIT",
1696
+ "dependencies": {
1697
+ "universalify": "^2.0.0"
1698
+ },
1699
+ "optionalDependencies": {
1700
+ "graceful-fs": "^4.1.6"
1701
+ }
1702
+ },
1703
+ "node_modules/math-intrinsics": {
1704
+ "version": "1.1.0",
1705
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1706
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1707
+ "license": "MIT",
1708
+ "engines": {
1709
+ "node": ">= 0.4"
1710
+ }
1711
+ },
1712
+ "node_modules/media-typer": {
1713
+ "version": "1.1.0",
1714
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
1715
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
1716
+ "license": "MIT",
1717
+ "engines": {
1718
+ "node": ">= 0.8"
1719
+ }
1720
+ },
1721
+ "node_modules/merge-descriptors": {
1722
+ "version": "2.0.0",
1723
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
1724
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
1725
+ "license": "MIT",
1726
+ "engines": {
1727
+ "node": ">=18"
1728
+ },
1729
+ "funding": {
1730
+ "url": "https://github.com/sponsors/sindresorhus"
1731
+ }
1732
+ },
1733
+ "node_modules/mime-db": {
1734
+ "version": "1.54.0",
1735
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
1736
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
1737
+ "license": "MIT",
1738
+ "engines": {
1739
+ "node": ">= 0.6"
1740
+ }
1741
+ },
1742
+ "node_modules/mime-types": {
1743
+ "version": "3.0.2",
1744
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
1745
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
1746
+ "license": "MIT",
1747
+ "dependencies": {
1748
+ "mime-db": "^1.54.0"
1749
+ },
1750
+ "engines": {
1751
+ "node": ">=18"
1752
+ },
1753
+ "funding": {
1754
+ "type": "opencollective",
1755
+ "url": "https://opencollective.com/express"
1756
+ }
1757
+ },
1758
+ "node_modules/mimic-response": {
1759
+ "version": "3.1.0",
1760
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
1761
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
1762
+ "license": "MIT",
1763
+ "engines": {
1764
+ "node": ">=10"
1765
+ },
1766
+ "funding": {
1767
+ "url": "https://github.com/sponsors/sindresorhus"
1768
+ }
1769
+ },
1770
+ "node_modules/minimist": {
1771
+ "version": "1.2.8",
1772
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
1773
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
1774
+ "license": "MIT",
1775
+ "funding": {
1776
+ "url": "https://github.com/sponsors/ljharb"
1777
+ }
1778
+ },
1779
+ "node_modules/minipass": {
1780
+ "version": "7.1.3",
1781
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
1782
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
1783
+ "license": "BlueOak-1.0.0",
1784
+ "engines": {
1785
+ "node": ">=16 || 14 >=14.17"
1786
+ }
1787
+ },
1788
+ "node_modules/minizlib": {
1789
+ "version": "3.1.0",
1790
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
1791
+ "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
1792
+ "license": "MIT",
1793
+ "dependencies": {
1794
+ "minipass": "^7.1.2"
1795
+ },
1796
+ "engines": {
1797
+ "node": ">= 18"
1798
+ }
1799
+ },
1800
+ "node_modules/mkdirp-classic": {
1801
+ "version": "0.5.3",
1802
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
1803
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
1804
+ "license": "MIT"
1805
+ },
1806
+ "node_modules/ms": {
1807
+ "version": "2.1.3",
1808
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1809
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1810
+ "license": "MIT"
1811
+ },
1812
+ "node_modules/multistream": {
1813
+ "version": "4.1.0",
1814
+ "resolved": "https://registry.npmjs.org/multistream/-/multistream-4.1.0.tgz",
1815
+ "integrity": "sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw==",
1816
+ "funding": [
1817
+ {
1818
+ "type": "github",
1819
+ "url": "https://github.com/sponsors/feross"
1820
+ },
1821
+ {
1822
+ "type": "patreon",
1823
+ "url": "https://www.patreon.com/feross"
1824
+ },
1825
+ {
1826
+ "type": "consulting",
1827
+ "url": "https://feross.org/support"
1828
+ }
1829
+ ],
1830
+ "license": "MIT",
1831
+ "dependencies": {
1832
+ "once": "^1.4.0",
1833
+ "readable-stream": "^3.6.0"
1834
+ }
1835
+ },
1836
+ "node_modules/napi-build-utils": {
1837
+ "version": "2.0.0",
1838
+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
1839
+ "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
1840
+ "license": "MIT"
1841
+ },
1842
+ "node_modules/negotiator": {
1843
+ "version": "1.0.0",
1844
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
1845
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
1846
+ "license": "MIT",
1847
+ "engines": {
1848
+ "node": ">= 0.6"
1849
+ }
1850
+ },
1851
+ "node_modules/node-abi": {
1852
+ "version": "3.90.0",
1853
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.90.0.tgz",
1854
+ "integrity": "sha512-pZNQT7UnYlMwMBy5N1lV5X/YLTbZM5ncytN3xL7CHEzhDN8uVe0u55yaPUJICIJjaCW8NrM5BFdqr7HLweStNA==",
1855
+ "license": "MIT",
1856
+ "dependencies": {
1857
+ "semver": "^7.3.5"
1858
+ },
1859
+ "engines": {
1860
+ "node": ">=10"
1861
+ }
1862
+ },
1863
+ "node_modules/node-fetch": {
1864
+ "version": "2.7.0",
1865
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
1866
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
1867
+ "license": "MIT",
1868
+ "dependencies": {
1869
+ "whatwg-url": "^5.0.0"
1870
+ },
1871
+ "engines": {
1872
+ "node": "4.x || >=6.0.0"
1873
+ },
1874
+ "peerDependencies": {
1875
+ "encoding": "^0.1.0"
1876
+ },
1877
+ "peerDependenciesMeta": {
1878
+ "encoding": {
1879
+ "optional": true
1880
+ }
1881
+ }
1882
+ },
1883
+ "node_modules/node-int64": {
1884
+ "version": "0.4.0",
1885
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
1886
+ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
1887
+ "license": "MIT"
1888
+ },
1889
+ "node_modules/object-inspect": {
1890
+ "version": "1.13.4",
1891
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
1892
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
1893
+ "license": "MIT",
1894
+ "engines": {
1895
+ "node": ">= 0.4"
1896
+ },
1897
+ "funding": {
1898
+ "url": "https://github.com/sponsors/ljharb"
1899
+ }
1900
+ },
1901
+ "node_modules/on-finished": {
1902
+ "version": "2.4.1",
1903
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1904
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1905
+ "license": "MIT",
1906
+ "dependencies": {
1907
+ "ee-first": "1.1.1"
1908
+ },
1909
+ "engines": {
1910
+ "node": ">= 0.8"
1911
+ }
1912
+ },
1913
+ "node_modules/once": {
1914
+ "version": "1.4.0",
1915
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1916
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1917
+ "license": "ISC",
1918
+ "dependencies": {
1919
+ "wrappy": "1"
1920
+ }
1921
+ },
1922
+ "node_modules/parseurl": {
1923
+ "version": "1.3.3",
1924
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1925
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1926
+ "license": "MIT",
1927
+ "engines": {
1928
+ "node": ">= 0.8"
1929
+ }
1930
+ },
1931
+ "node_modules/path-parse": {
1932
+ "version": "1.0.7",
1933
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
1934
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
1935
+ "license": "MIT"
1936
+ },
1937
+ "node_modules/path-to-regexp": {
1938
+ "version": "8.4.2",
1939
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
1940
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
1941
+ "license": "MIT",
1942
+ "funding": {
1943
+ "type": "opencollective",
1944
+ "url": "https://opencollective.com/express"
1945
+ }
1946
+ },
1947
+ "node_modules/picocolors": {
1948
+ "version": "1.1.1",
1949
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1950
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1951
+ "license": "ISC"
1952
+ },
1953
+ "node_modules/picomatch": {
1954
+ "version": "4.0.4",
1955
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
1956
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
1957
+ "license": "MIT",
1958
+ "engines": {
1959
+ "node": ">=12"
1960
+ },
1961
+ "funding": {
1962
+ "url": "https://github.com/sponsors/jonschlinkert"
1963
+ }
1964
+ },
1965
+ "node_modules/postject": {
1966
+ "version": "1.0.0-alpha.6",
1967
+ "resolved": "https://registry.npmjs.org/postject/-/postject-1.0.0-alpha.6.tgz",
1968
+ "integrity": "sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==",
1969
+ "license": "MIT",
1970
+ "dependencies": {
1971
+ "commander": "^9.4.0"
1972
+ },
1973
+ "bin": {
1974
+ "postject": "dist/cli.js"
1975
+ },
1976
+ "engines": {
1977
+ "node": ">=14.0.0"
1978
+ }
1979
+ },
1980
+ "node_modules/prebuild-install": {
1981
+ "version": "7.1.3",
1982
+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
1983
+ "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
1984
+ "deprecated": "No longer maintained. Please contact the author of the relevant native addon; alternatives are available.",
1985
+ "license": "MIT",
1986
+ "dependencies": {
1987
+ "detect-libc": "^2.0.0",
1988
+ "expand-template": "^2.0.3",
1989
+ "github-from-package": "0.0.0",
1990
+ "minimist": "^1.2.3",
1991
+ "mkdirp-classic": "^0.5.3",
1992
+ "napi-build-utils": "^2.0.0",
1993
+ "node-abi": "^3.3.0",
1994
+ "pump": "^3.0.0",
1995
+ "rc": "^1.2.7",
1996
+ "simple-get": "^4.0.0",
1997
+ "tar-fs": "^2.0.0",
1998
+ "tunnel-agent": "^0.6.0"
1999
+ },
2000
+ "bin": {
2001
+ "prebuild-install": "bin.js"
2002
+ },
2003
+ "engines": {
2004
+ "node": ">=10"
2005
+ }
2006
+ },
2007
+ "node_modules/prebuild-install/node_modules/chownr": {
2008
+ "version": "1.1.4",
2009
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
2010
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
2011
+ "license": "ISC"
2012
+ },
2013
+ "node_modules/prebuild-install/node_modules/tar-fs": {
2014
+ "version": "2.1.4",
2015
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
2016
+ "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
2017
+ "license": "MIT",
2018
+ "dependencies": {
2019
+ "chownr": "^1.1.1",
2020
+ "mkdirp-classic": "^0.5.2",
2021
+ "pump": "^3.0.0",
2022
+ "tar-stream": "^2.1.4"
2023
+ }
2024
+ },
2025
+ "node_modules/prebuild-install/node_modules/tar-stream": {
2026
+ "version": "2.2.0",
2027
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
2028
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
2029
+ "license": "MIT",
2030
+ "dependencies": {
2031
+ "bl": "^4.0.3",
2032
+ "end-of-stream": "^1.4.1",
2033
+ "fs-constants": "^1.0.0",
2034
+ "inherits": "^2.0.3",
2035
+ "readable-stream": "^3.1.1"
2036
+ },
2037
+ "engines": {
2038
+ "node": ">=6"
2039
+ }
2040
+ },
2041
+ "node_modules/process-nextick-args": {
2042
+ "version": "2.0.1",
2043
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
2044
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
2045
+ "license": "MIT"
2046
+ },
2047
+ "node_modules/progress": {
2048
+ "version": "2.0.3",
2049
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
2050
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
2051
+ "license": "MIT",
2052
+ "engines": {
2053
+ "node": ">=0.4.0"
2054
+ }
2055
+ },
2056
+ "node_modules/proxy-addr": {
2057
+ "version": "2.0.7",
2058
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
2059
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
2060
+ "license": "MIT",
2061
+ "dependencies": {
2062
+ "forwarded": "0.2.0",
2063
+ "ipaddr.js": "1.9.1"
2064
+ },
2065
+ "engines": {
2066
+ "node": ">= 0.10"
2067
+ }
2068
+ },
2069
+ "node_modules/pump": {
2070
+ "version": "3.0.4",
2071
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
2072
+ "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
2073
+ "license": "MIT",
2074
+ "dependencies": {
2075
+ "end-of-stream": "^1.1.0",
2076
+ "once": "^1.3.1"
2077
+ }
2078
+ },
2079
+ "node_modules/qs": {
2080
+ "version": "6.15.1",
2081
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
2082
+ "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
2083
+ "license": "BSD-3-Clause",
2084
+ "dependencies": {
2085
+ "side-channel": "^1.1.0"
2086
+ },
2087
+ "engines": {
2088
+ "node": ">=0.6"
2089
+ },
2090
+ "funding": {
2091
+ "url": "https://github.com/sponsors/ljharb"
2092
+ }
2093
+ },
2094
+ "node_modules/range-parser": {
2095
+ "version": "1.2.1",
2096
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
2097
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
2098
+ "license": "MIT",
2099
+ "engines": {
2100
+ "node": ">= 0.6"
2101
+ }
2102
+ },
2103
+ "node_modules/raw-body": {
2104
+ "version": "3.0.2",
2105
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
2106
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
2107
+ "license": "MIT",
2108
+ "dependencies": {
2109
+ "bytes": "~3.1.2",
2110
+ "http-errors": "~2.0.1",
2111
+ "iconv-lite": "~0.7.0",
2112
+ "unpipe": "~1.0.0"
2113
+ },
2114
+ "engines": {
2115
+ "node": ">= 0.10"
2116
+ }
2117
+ },
2118
+ "node_modules/rc": {
2119
+ "version": "1.2.8",
2120
+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
2121
+ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
2122
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
2123
+ "dependencies": {
2124
+ "deep-extend": "^0.6.0",
2125
+ "ini": "~1.3.0",
2126
+ "minimist": "^1.2.0",
2127
+ "strip-json-comments": "~2.0.1"
2128
+ },
2129
+ "bin": {
2130
+ "rc": "cli.js"
2131
+ }
2132
+ },
2133
+ "node_modules/readable-stream": {
2134
+ "version": "3.6.2",
2135
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
2136
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
2137
+ "license": "MIT",
2138
+ "dependencies": {
2139
+ "inherits": "^2.0.3",
2140
+ "string_decoder": "^1.1.1",
2141
+ "util-deprecate": "^1.0.1"
2142
+ },
2143
+ "engines": {
2144
+ "node": ">= 6"
2145
+ }
2146
+ },
2147
+ "node_modules/require-directory": {
2148
+ "version": "2.1.1",
2149
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2150
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
2151
+ "license": "MIT",
2152
+ "engines": {
2153
+ "node": ">=0.10.0"
2154
+ }
2155
+ },
2156
+ "node_modules/resolve": {
2157
+ "version": "1.22.12",
2158
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz",
2159
+ "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
2160
+ "license": "MIT",
2161
+ "dependencies": {
2162
+ "es-errors": "^1.3.0",
2163
+ "is-core-module": "^2.16.1",
2164
+ "path-parse": "^1.0.7",
2165
+ "supports-preserve-symlinks-flag": "^1.0.0"
2166
+ },
2167
+ "bin": {
2168
+ "resolve": "bin/resolve"
2169
+ },
2170
+ "engines": {
2171
+ "node": ">= 0.4"
2172
+ },
2173
+ "funding": {
2174
+ "url": "https://github.com/sponsors/ljharb"
2175
+ }
2176
+ },
2177
+ "node_modules/resolve.exports": {
2178
+ "version": "2.0.3",
2179
+ "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
2180
+ "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
2181
+ "license": "MIT",
2182
+ "engines": {
2183
+ "node": ">=10"
2184
+ }
2185
+ },
2186
+ "node_modules/router": {
2187
+ "version": "2.2.0",
2188
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
2189
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
2190
+ "license": "MIT",
2191
+ "dependencies": {
2192
+ "debug": "^4.4.0",
2193
+ "depd": "^2.0.0",
2194
+ "is-promise": "^4.0.0",
2195
+ "parseurl": "^1.3.3",
2196
+ "path-to-regexp": "^8.0.0"
2197
+ },
2198
+ "engines": {
2199
+ "node": ">= 18"
2200
+ }
2201
+ },
2202
+ "node_modules/safe-buffer": {
2203
+ "version": "5.2.1",
2204
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
2205
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
2206
+ "funding": [
2207
+ {
2208
+ "type": "github",
2209
+ "url": "https://github.com/sponsors/feross"
2210
+ },
2211
+ {
2212
+ "type": "patreon",
2213
+ "url": "https://www.patreon.com/feross"
2214
+ },
2215
+ {
2216
+ "type": "consulting",
2217
+ "url": "https://feross.org/support"
2218
+ }
2219
+ ],
2220
+ "license": "MIT"
2221
+ },
2222
+ "node_modules/safer-buffer": {
2223
+ "version": "2.1.2",
2224
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
2225
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
2226
+ "license": "MIT"
2227
+ },
2228
+ "node_modules/semver": {
2229
+ "version": "7.7.4",
2230
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
2231
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
2232
+ "license": "ISC",
2233
+ "bin": {
2234
+ "semver": "bin/semver.js"
2235
+ },
2236
+ "engines": {
2237
+ "node": ">=10"
2238
+ }
2239
+ },
2240
+ "node_modules/send": {
2241
+ "version": "1.2.1",
2242
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
2243
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
2244
+ "license": "MIT",
2245
+ "dependencies": {
2246
+ "debug": "^4.4.3",
2247
+ "encodeurl": "^2.0.0",
2248
+ "escape-html": "^1.0.3",
2249
+ "etag": "^1.8.1",
2250
+ "fresh": "^2.0.0",
2251
+ "http-errors": "^2.0.1",
2252
+ "mime-types": "^3.0.2",
2253
+ "ms": "^2.1.3",
2254
+ "on-finished": "^2.4.1",
2255
+ "range-parser": "^1.2.1",
2256
+ "statuses": "^2.0.2"
2257
+ },
2258
+ "engines": {
2259
+ "node": ">= 18"
2260
+ },
2261
+ "funding": {
2262
+ "type": "opencollective",
2263
+ "url": "https://opencollective.com/express"
2264
+ }
2265
+ },
2266
+ "node_modules/serve-static": {
2267
+ "version": "2.2.1",
2268
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
2269
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
2270
+ "license": "MIT",
2271
+ "dependencies": {
2272
+ "encodeurl": "^2.0.0",
2273
+ "escape-html": "^1.0.3",
2274
+ "parseurl": "^1.3.3",
2275
+ "send": "^1.2.0"
2276
+ },
2277
+ "engines": {
2278
+ "node": ">= 18"
2279
+ },
2280
+ "funding": {
2281
+ "type": "opencollective",
2282
+ "url": "https://opencollective.com/express"
2283
+ }
2284
+ },
2285
+ "node_modules/setprototypeof": {
2286
+ "version": "1.2.0",
2287
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
2288
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
2289
+ "license": "ISC"
2290
+ },
2291
+ "node_modules/side-channel": {
2292
+ "version": "1.1.0",
2293
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
2294
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
2295
+ "license": "MIT",
2296
+ "dependencies": {
2297
+ "es-errors": "^1.3.0",
2298
+ "object-inspect": "^1.13.3",
2299
+ "side-channel-list": "^1.0.0",
2300
+ "side-channel-map": "^1.0.1",
2301
+ "side-channel-weakmap": "^1.0.2"
2302
+ },
2303
+ "engines": {
2304
+ "node": ">= 0.4"
2305
+ },
2306
+ "funding": {
2307
+ "url": "https://github.com/sponsors/ljharb"
2308
+ }
2309
+ },
2310
+ "node_modules/side-channel-list": {
2311
+ "version": "1.0.1",
2312
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
2313
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
2314
+ "license": "MIT",
2315
+ "dependencies": {
2316
+ "es-errors": "^1.3.0",
2317
+ "object-inspect": "^1.13.4"
2318
+ },
2319
+ "engines": {
2320
+ "node": ">= 0.4"
2321
+ },
2322
+ "funding": {
2323
+ "url": "https://github.com/sponsors/ljharb"
2324
+ }
2325
+ },
2326
+ "node_modules/side-channel-map": {
2327
+ "version": "1.0.1",
2328
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
2329
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
2330
+ "license": "MIT",
2331
+ "dependencies": {
2332
+ "call-bound": "^1.0.2",
2333
+ "es-errors": "^1.3.0",
2334
+ "get-intrinsic": "^1.2.5",
2335
+ "object-inspect": "^1.13.3"
2336
+ },
2337
+ "engines": {
2338
+ "node": ">= 0.4"
2339
+ },
2340
+ "funding": {
2341
+ "url": "https://github.com/sponsors/ljharb"
2342
+ }
2343
+ },
2344
+ "node_modules/side-channel-weakmap": {
2345
+ "version": "1.0.2",
2346
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
2347
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
2348
+ "license": "MIT",
2349
+ "dependencies": {
2350
+ "call-bound": "^1.0.2",
2351
+ "es-errors": "^1.3.0",
2352
+ "get-intrinsic": "^1.2.5",
2353
+ "object-inspect": "^1.13.3",
2354
+ "side-channel-map": "^1.0.1"
2355
+ },
2356
+ "engines": {
2357
+ "node": ">= 0.4"
2358
+ },
2359
+ "funding": {
2360
+ "url": "https://github.com/sponsors/ljharb"
2361
+ }
2362
+ },
2363
+ "node_modules/simple-concat": {
2364
+ "version": "1.0.1",
2365
+ "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
2366
+ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
2367
+ "funding": [
2368
+ {
2369
+ "type": "github",
2370
+ "url": "https://github.com/sponsors/feross"
2371
+ },
2372
+ {
2373
+ "type": "patreon",
2374
+ "url": "https://www.patreon.com/feross"
2375
+ },
2376
+ {
2377
+ "type": "consulting",
2378
+ "url": "https://feross.org/support"
2379
+ }
2380
+ ],
2381
+ "license": "MIT"
2382
+ },
2383
+ "node_modules/simple-get": {
2384
+ "version": "4.0.1",
2385
+ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
2386
+ "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
2387
+ "funding": [
2388
+ {
2389
+ "type": "github",
2390
+ "url": "https://github.com/sponsors/feross"
2391
+ },
2392
+ {
2393
+ "type": "patreon",
2394
+ "url": "https://www.patreon.com/feross"
2395
+ },
2396
+ {
2397
+ "type": "consulting",
2398
+ "url": "https://feross.org/support"
2399
+ }
2400
+ ],
2401
+ "license": "MIT",
2402
+ "dependencies": {
2403
+ "decompress-response": "^6.0.0",
2404
+ "once": "^1.3.1",
2405
+ "simple-concat": "^1.0.0"
2406
+ }
2407
+ },
2408
+ "node_modules/statuses": {
2409
+ "version": "2.0.2",
2410
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
2411
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
2412
+ "license": "MIT",
2413
+ "engines": {
2414
+ "node": ">= 0.8"
2415
+ }
2416
+ },
2417
+ "node_modules/stream-meter": {
2418
+ "version": "1.0.4",
2419
+ "resolved": "https://registry.npmjs.org/stream-meter/-/stream-meter-1.0.4.tgz",
2420
+ "integrity": "sha512-4sOEtrbgFotXwnEuzzsQBYEV1elAeFSO8rSGeTwabuX1RRn/kEq9JVH7I0MRBhKVRR0sJkr0M0QCH7yOLf9fhQ==",
2421
+ "license": "MIT",
2422
+ "dependencies": {
2423
+ "readable-stream": "^2.1.4"
2424
+ }
2425
+ },
2426
+ "node_modules/stream-meter/node_modules/readable-stream": {
2427
+ "version": "2.3.8",
2428
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
2429
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
2430
+ "license": "MIT",
2431
+ "dependencies": {
2432
+ "core-util-is": "~1.0.0",
2433
+ "inherits": "~2.0.3",
2434
+ "isarray": "~1.0.0",
2435
+ "process-nextick-args": "~2.0.0",
2436
+ "safe-buffer": "~5.1.1",
2437
+ "string_decoder": "~1.1.1",
2438
+ "util-deprecate": "~1.0.1"
2439
+ }
2440
+ },
2441
+ "node_modules/stream-meter/node_modules/safe-buffer": {
2442
+ "version": "5.1.2",
2443
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
2444
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
2445
+ "license": "MIT"
2446
+ },
2447
+ "node_modules/stream-meter/node_modules/string_decoder": {
2448
+ "version": "1.1.1",
2449
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
2450
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
2451
+ "license": "MIT",
2452
+ "dependencies": {
2453
+ "safe-buffer": "~5.1.0"
2454
+ }
2455
+ },
2456
+ "node_modules/streamx": {
2457
+ "version": "2.25.0",
2458
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz",
2459
+ "integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==",
2460
+ "license": "MIT",
2461
+ "dependencies": {
2462
+ "events-universal": "^1.0.0",
2463
+ "fast-fifo": "^1.3.2",
2464
+ "text-decoder": "^1.1.0"
2465
+ }
2466
+ },
2467
+ "node_modules/string_decoder": {
2468
+ "version": "1.3.0",
2469
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
2470
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
2471
+ "license": "MIT",
2472
+ "dependencies": {
2473
+ "safe-buffer": "~5.2.0"
2474
+ }
2475
+ },
2476
+ "node_modules/string-width": {
2477
+ "version": "4.2.3",
2478
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2479
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2480
+ "license": "MIT",
2481
+ "dependencies": {
2482
+ "emoji-regex": "^8.0.0",
2483
+ "is-fullwidth-code-point": "^3.0.0",
2484
+ "strip-ansi": "^6.0.1"
2485
+ },
2486
+ "engines": {
2487
+ "node": ">=8"
2488
+ }
2489
+ },
2490
+ "node_modules/strip-ansi": {
2491
+ "version": "6.0.1",
2492
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2493
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2494
+ "license": "MIT",
2495
+ "dependencies": {
2496
+ "ansi-regex": "^5.0.1"
2497
+ },
2498
+ "engines": {
2499
+ "node": ">=8"
2500
+ }
2501
+ },
2502
+ "node_modules/strip-json-comments": {
2503
+ "version": "2.0.1",
2504
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
2505
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
2506
+ "license": "MIT",
2507
+ "engines": {
2508
+ "node": ">=0.10.0"
2509
+ }
2510
+ },
2511
+ "node_modules/supports-preserve-symlinks-flag": {
2512
+ "version": "1.0.0",
2513
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
2514
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
2515
+ "license": "MIT",
2516
+ "engines": {
2517
+ "node": ">= 0.4"
2518
+ },
2519
+ "funding": {
2520
+ "url": "https://github.com/sponsors/ljharb"
2521
+ }
2522
+ },
2523
+ "node_modules/tar": {
2524
+ "version": "7.5.13",
2525
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.13.tgz",
2526
+ "integrity": "sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==",
2527
+ "license": "BlueOak-1.0.0",
2528
+ "dependencies": {
2529
+ "@isaacs/fs-minipass": "^4.0.0",
2530
+ "chownr": "^3.0.0",
2531
+ "minipass": "^7.1.2",
2532
+ "minizlib": "^3.1.0",
2533
+ "yallist": "^5.0.0"
2534
+ },
2535
+ "engines": {
2536
+ "node": ">=18"
2537
+ }
2538
+ },
2539
+ "node_modules/tar-fs": {
2540
+ "version": "3.1.2",
2541
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.2.tgz",
2542
+ "integrity": "sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==",
2543
+ "license": "MIT",
2544
+ "dependencies": {
2545
+ "pump": "^3.0.0",
2546
+ "tar-stream": "^3.1.5"
2547
+ },
2548
+ "optionalDependencies": {
2549
+ "bare-fs": "^4.0.1",
2550
+ "bare-path": "^3.0.0"
2551
+ }
2552
+ },
2553
+ "node_modules/tar-stream": {
2554
+ "version": "3.2.0",
2555
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.2.0.tgz",
2556
+ "integrity": "sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==",
2557
+ "license": "MIT",
2558
+ "dependencies": {
2559
+ "b4a": "^1.6.4",
2560
+ "bare-fs": "^4.5.5",
2561
+ "fast-fifo": "^1.2.0",
2562
+ "streamx": "^2.15.0"
2563
+ }
2564
+ },
2565
+ "node_modules/teex": {
2566
+ "version": "1.0.1",
2567
+ "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz",
2568
+ "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==",
2569
+ "license": "MIT",
2570
+ "dependencies": {
2571
+ "streamx": "^2.12.5"
2572
+ }
2573
+ },
2574
+ "node_modules/text-decoder": {
2575
+ "version": "1.2.7",
2576
+ "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz",
2577
+ "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==",
2578
+ "license": "Apache-2.0",
2579
+ "dependencies": {
2580
+ "b4a": "^1.6.4"
2581
+ }
2582
+ },
2583
+ "node_modules/tinyglobby": {
2584
+ "version": "0.2.16",
2585
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
2586
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
2587
+ "license": "MIT",
2588
+ "dependencies": {
2589
+ "fdir": "^6.5.0",
2590
+ "picomatch": "^4.0.4"
2591
+ },
2592
+ "engines": {
2593
+ "node": ">=12.0.0"
2594
+ },
2595
+ "funding": {
2596
+ "url": "https://github.com/sponsors/SuperchupuDev"
2597
+ }
2598
+ },
2599
+ "node_modules/toidentifier": {
2600
+ "version": "1.0.1",
2601
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
2602
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
2603
+ "license": "MIT",
2604
+ "engines": {
2605
+ "node": ">=0.6"
2606
+ }
2607
+ },
2608
+ "node_modules/tr46": {
2609
+ "version": "0.0.3",
2610
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
2611
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
2612
+ "license": "MIT"
2613
+ },
2614
+ "node_modules/tunnel-agent": {
2615
+ "version": "0.6.0",
2616
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
2617
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
2618
+ "license": "Apache-2.0",
2619
+ "dependencies": {
2620
+ "safe-buffer": "^5.0.1"
2621
+ },
2622
+ "engines": {
2623
+ "node": "*"
2624
+ }
2625
+ },
2626
+ "node_modules/type-is": {
2627
+ "version": "2.0.1",
2628
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
2629
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
2630
+ "license": "MIT",
2631
+ "dependencies": {
2632
+ "content-type": "^1.0.5",
2633
+ "media-typer": "^1.1.0",
2634
+ "mime-types": "^3.0.0"
2635
+ },
2636
+ "engines": {
2637
+ "node": ">= 0.6"
2638
+ }
2639
+ },
2640
+ "node_modules/universalify": {
2641
+ "version": "2.0.1",
2642
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
2643
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
2644
+ "license": "MIT",
2645
+ "engines": {
2646
+ "node": ">= 10.0.0"
2647
+ }
2648
+ },
2649
+ "node_modules/unpipe": {
2650
+ "version": "1.0.0",
2651
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
2652
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
2653
+ "license": "MIT",
2654
+ "engines": {
2655
+ "node": ">= 0.8"
2656
+ }
2657
+ },
2658
+ "node_modules/unzipper": {
2659
+ "version": "0.12.3",
2660
+ "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.12.3.tgz",
2661
+ "integrity": "sha512-PZ8hTS+AqcGxsaQntl3IRBw65QrBI6lxzqDEL7IAo/XCEqRTKGfOX56Vea5TH9SZczRVxuzk1re04z/YjuYCJA==",
2662
+ "license": "MIT",
2663
+ "dependencies": {
2664
+ "bluebird": "~3.7.2",
2665
+ "duplexer2": "~0.1.4",
2666
+ "fs-extra": "^11.2.0",
2667
+ "graceful-fs": "^4.2.2",
2668
+ "node-int64": "^0.4.0"
2669
+ }
2670
+ },
2671
+ "node_modules/util-deprecate": {
2672
+ "version": "1.0.2",
2673
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2674
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2675
+ "license": "MIT"
2676
+ },
2677
+ "node_modules/vary": {
2678
+ "version": "1.1.2",
2679
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
2680
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
2681
+ "license": "MIT",
2682
+ "engines": {
2683
+ "node": ">= 0.8"
2684
+ }
2685
+ },
2686
+ "node_modules/webidl-conversions": {
2687
+ "version": "3.0.1",
2688
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
2689
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
2690
+ "license": "BSD-2-Clause"
2691
+ },
2692
+ "node_modules/whatwg-url": {
2693
+ "version": "5.0.0",
2694
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
2695
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
2696
+ "license": "MIT",
2697
+ "dependencies": {
2698
+ "tr46": "~0.0.3",
2699
+ "webidl-conversions": "^3.0.0"
2700
+ }
2701
+ },
2702
+ "node_modules/wrap-ansi": {
2703
+ "version": "7.0.0",
2704
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
2705
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
2706
+ "license": "MIT",
2707
+ "dependencies": {
2708
+ "ansi-styles": "^4.0.0",
2709
+ "string-width": "^4.1.0",
2710
+ "strip-ansi": "^6.0.0"
2711
+ },
2712
+ "engines": {
2713
+ "node": ">=10"
2714
+ },
2715
+ "funding": {
2716
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2717
+ }
2718
+ },
2719
+ "node_modules/wrappy": {
2720
+ "version": "1.0.2",
2721
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2722
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
2723
+ "license": "ISC"
2724
+ },
2725
+ "node_modules/y18n": {
2726
+ "version": "5.0.8",
2727
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
2728
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
2729
+ "license": "ISC",
2730
+ "engines": {
2731
+ "node": ">=10"
2732
+ }
2733
+ },
2734
+ "node_modules/yallist": {
2735
+ "version": "5.0.0",
2736
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
2737
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
2738
+ "license": "BlueOak-1.0.0",
2739
+ "engines": {
2740
+ "node": ">=18"
2741
+ }
2742
+ },
2743
+ "node_modules/yargs": {
2744
+ "version": "16.2.0",
2745
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
2746
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
2747
+ "license": "MIT",
2748
+ "dependencies": {
2749
+ "cliui": "^7.0.2",
2750
+ "escalade": "^3.1.1",
2751
+ "get-caller-file": "^2.0.5",
2752
+ "require-directory": "^2.1.1",
2753
+ "string-width": "^4.2.0",
2754
+ "y18n": "^5.0.5",
2755
+ "yargs-parser": "^20.2.2"
2756
+ },
2757
+ "engines": {
2758
+ "node": ">=10"
2759
+ }
2760
+ },
2761
+ "node_modules/yargs-parser": {
2762
+ "version": "20.2.9",
2763
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
2764
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
2765
+ "license": "ISC",
2766
+ "engines": {
2767
+ "node": ">=10"
2768
+ }
2769
+ }
2770
+ }
2771
+ }