@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.
- package/bin/v12/commands/express/steps/locateSource.js +1 -1
- package/bin/v12/commands/express/template/v5/.env +9 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/LedgerNames.json +60 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/StockItems.json +50 -0
- package/bin/v12/commands/express/template/v5/Public/index.html +129 -0
- package/bin/v12/commands/express/template/v5/app.js +19 -0
- package/bin/v12/commands/express/template/v5/configLoader.js +6 -0
- package/bin/v12/commands/express/template/v5/package-lock.json +834 -0
- package/bin/v12/commands/express/template/v5/package.json +18 -0
- package/bin/v12/commands/express/template/v5/port.js +6 -0
- package/bin/v12/commands/express/template/v5/routes.js +5 -0
- package/bin/v12/commands/express/template/v5/server.js +13 -0
- package/bin/v12/commands/tally/steps/locateSource.js +1 -1
- package/bin/v12/commands/tally/template/v4/.env +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/controller.js +27 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/rest.http +1 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Find/service.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/controller.js +24 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/rest.http +12 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/Insert/service.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/BillsTable/end-points.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/controller.js +27 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/rest.http +1 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/FilterColumns/service.js +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/controller.js +24 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/rest.http +13 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/Insert/service.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/ItemsTable/end-points.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/controller.js +21 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/rest.http +1 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/ShowAll/service.js +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/LedgerNames/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/controller.js +21 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/rest.http +1 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/ShowAll/service.js +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/StockItems/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v4/Api/V1/routes.js +13 -0
- package/bin/v12/commands/tally/template/v4/Api/routes.js +7 -0
- package/bin/v12/commands/tally/template/v4/Config/Schemas/LedgerNames.json +60 -0
- package/bin/v12/commands/tally/template/v4/Config/Schemas/StockItems.json +85 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/controller.js +21 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/restNew.http +1 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/routes.js +11 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/Transform/service.js +24 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/LedgerNames/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/controller.js +21 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/restNew.http +1 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/routes.js +11 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/Transform/service.js +42 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/StockItems/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v4/FromTally/V1/routes.js +11 -0
- package/bin/v12/commands/tally/template/v4/FromTally/routes.js +8 -0
- package/bin/v12/commands/tally/template/v4/Import/Templates/inventory.json +121 -0
- package/bin/v12/commands/tally/template/v4/Import/Templates/ledgers.json +28 -0
- package/bin/v12/commands/tally/template/v4/Import/Templates/main.json +224 -0
- package/bin/v12/commands/tally/template/v4/Import/Templates/template.json +224 -0
- package/bin/v12/commands/tally/template/v4/Import/ledgers.json +17 -0
- package/bin/v12/commands/tally/template/v4/Import/staticVariables.json +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountTableUI.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/ai.js +164 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/entry.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V21/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountTableUI.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/ai.js +165 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/entry.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V22/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountTableUI.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/ai.js +165 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/entry.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V23/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountTableOnly.js +72 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountTableUI.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/ai.js +165 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/entry.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V24/uiClasses.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/start.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildDataListContainer.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildHeaderRow.js +77 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/builders/buildTableShell.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/compose/buildFullUI.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountTableOnly.js +38 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountTableUI.js +28 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/UI/mountVertical.js +36 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/ai.js +165 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/entry.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v4/Public/KSTableAi/V25/uiClasses.js +31 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/For200Res/entryFile.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/entryFile.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status200.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status401.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/status409.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/AfterFetch/url.json +4 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/fetchFuncs.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/getUrl.json +3 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchAsGet/start.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/entryFile.js +11 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status200.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status401.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/status409.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/AfterFetch/url.json +4 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/fetchFuncs.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/getUrl.json +3 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/FetchStockItems/start.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/clickFunc.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/ImportHtmlId/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/LedgersHtmlId/clickFunc.js +101 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/LedgersHtmlId/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/StockItemsHtmlId/clickFunc.js +87 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/StockItemsHtmlId/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildHeader.js +55 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildLedgersMenuItem.js +51 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItem.js +121 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItemV1.js +149 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/buildMenuItemV2.js +66 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/DomContentLoaded/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/FormLoad/start.js +5 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/Index/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Masters/V6/Ledgers/index.html +78 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/buildHeader.js +71 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/buildMenuItem.js +121 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +143 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/DomContentLoaded/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/FormLoad/start.js +5 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/Index/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Create/index.html +79 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/For200Res/entryFile.js +6 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/entryFile.js +24 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status200.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status401.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/status409.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/AfterFetch/url.json +4 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/deleteFunc.js +17 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/getUrl.json +3 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/FetchAsDelete/start.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +89 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/DomContentLoaded/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/FormLoad/start.js +5 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/Index/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/Delete/index.html +141 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/start.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/entryFile.js +12 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status200.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status401.js +23 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/status409.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/AfterFetch/url.json +4 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/fetchFuncs.js +15 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/getUrl.json +3 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/FetchAsGet/start.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/clickFunc.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/AddListeners/toTallyId/start.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/runAfterDomLoad.js +145 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/DomContentLoaded/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/FormLoad/start.js +5 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/Index/start.js +7 -0
- package/bin/v12/commands/tally/template/v4/Public/Tally/Transactions/V3/WithSubTable/index.html +179 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/buildMenuItem.js +16 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/createAnchor.js +10 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/createIcon.js +19 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/createLabel.js +9 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/createLi.js +5 -0
- package/bin/v12/commands/tally/template/v4/Public/header/v1/initHeader.js +33 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForInventory/entryFile.js +24 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForInventory/prepareInventory.js +78 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForLedger/entryFile.js +46 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ForLedger/prepareLedger.js +17 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ReadClientData/entryFile.js +49 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/ReadClientData/items.json +16 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/entryFile.js +17 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/prepareClientData.js +57 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PrepareDataObject/prepareTallyJson/entryFile.js +18 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/PullForeignTableData/entryFile.js +42 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/entryFile.js +26 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/Service/sendToTally.js +16 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/controller.js +23 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/endpoints.js +11 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/errors.js +11 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/restNew.http +1 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/InsertToTally/service.js +42 -0
- package/bin/v12/commands/tally/template/v4/V7/BillsTable/routes.js +7 -0
- package/bin/v12/commands/tally/template/v4/V7/routes.js +8 -0
- package/bin/v12/commands/tally/template/v4/app.js +29 -0
- package/bin/v12/commands/tally/template/v4/configLoader.js +6 -0
- package/bin/v12/commands/tally/template/v4/package-lock.json +2771 -0
- package/bin/v12/commands/tally/template/v4/package.json +21 -0
- package/bin/v12/commands/tally/template/v4/port.js +6 -0
- package/bin/v12/commands/tally/template/v4/routes.js +5 -0
- package/bin/v12/commands/tally/template/v4/server.js +13 -0
- package/package.json +1 -1
- package/bin/v11/commands/express/steps/announce.js +0 -3
- package/bin/v11/commands/express/steps/createProject.js +0 -6
- package/bin/v11/commands/express/steps/decideTemplate.js +0 -3
- package/bin/v11/commands/express/steps/locateDestination.js +0 -5
- package/bin/v11/commands/express/steps/locateSource.js +0 -13
- package/bin/v11/commands/express/template/.env +0 -8
- package/bin/v11/commands/express/template/Config/Schemas/BillsTable.json +0 -166
- package/bin/v11/commands/express/template/Config/Schemas/ItemsTable.json +0 -206
- package/bin/v11/commands/express/template/Config/Schemas/LedgerNames.json +0 -50
- package/bin/v11/commands/express/template/Config/Schemas/StockItems.json +0 -45
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/build.js +0 -6
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/config.js +0 -12
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/main.js +0 -29
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/publish.js +0 -22
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/repo.js +0 -20
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/schema.js +0 -16
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/utils.js +0 -26
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/Builder/version.js +0 -25
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/buildAndCopy.js +0 -166
- package/bin/v11/commands/express/template/ForFrontEnd/NonSecured/latestVersion.js +0 -38
- package/bin/v11/commands/express/template/ForFrontEnd/Secured/buildProtected.js +0 -108
- package/bin/v11/commands/express/template/ForFrontEnd/Secured/latestVersion.js +0 -38
- package/bin/v11/commands/express/template/app.js +0 -33
- package/bin/v11/commands/express/template/package.json +0 -18
- package/bin/v11/commands/express.js +0 -23
- package/bin/v11/commands/generateSamples.js +0 -26
- package/bin/v11/commands/init/steps/announce.js +0 -3
- package/bin/v11/commands/init/steps/createProject.js +0 -6
- package/bin/v11/commands/init/steps/decideTemplate.js +0 -3
- package/bin/v11/commands/init/steps/locateDestination.js +0 -5
- package/bin/v11/commands/init/steps/locateSource.js +0 -13
- package/bin/v11/commands/init/template/Config/Schemas/LedgerNames.json +0 -50
- package/bin/v11/commands/init/template/Config/Schemas/StockItems.json +0 -45
- package/bin/v11/commands/init/template/Data/LedgerNames.json +0 -6
- package/bin/v11/commands/init/template/Data/StockItems.json +0 -45
- package/bin/v11/commands/init/template/app.js +0 -4
- package/bin/v11/commands/init/template/package-lock.json +0 -21
- package/bin/v11/commands/init/template/package.json +0 -14
- package/bin/v11/commands/init/template/read.js +0 -8
- package/bin/v11/commands/init/template/write.js +0 -8
- package/bin/v11/commands/init.js +0 -23
- package/bin/v11/commands/template/baseTemplate.js +0 -11
- package/bin/v11/commands/template/basic/.vscode/launch.json +0 -12
- package/bin/v11/commands/template/basic/Config/Schemas/BillsTable.json +0 -165
- package/bin/v11/commands/template/basic/Config/Schemas/ItemsTable.json +0 -200
- package/bin/v11/commands/template/basic/Config/Schemas/LedgerNames.json +0 -50
- package/bin/v11/commands/template/basic/Config/Schemas/StockItems.json +0 -45
- package/bin/v11/commands/template/basic/Config/api.json +0 -8
- package/bin/v11/commands/template/basic/Config/schema.json +0 -8
- package/bin/v11/commands/template/basic/Config/ui.json +0 -8
- package/bin/v11/commands/template/basic/Data/BillsTable.json +0 -165
- package/bin/v11/commands/template/basic/Data/ItemsTable.json +0 -200
- package/bin/v11/commands/template/basic/Data/LedgerNames.json +0 -6
- package/bin/v11/commands/template/basic/Data/StockItems.json +0 -45
- package/bin/v11/commands/template/basic/app.js +0 -4
- package/bin/v11/commands/template/basic/config.json +0 -4
- package/bin/v11/commands/template/basic/package-lock.json +0 -21
- package/bin/v11/commands/template/basic/package.json +0 -14
- package/bin/v11/commands/template/basic/read.js +0 -8
- package/bin/v11/commands/template/basic/write.js +0 -8
- package/bin/v11/commands/template/express/.env +0 -8
- package/bin/v11/commands/template/express/.vscode/launch.json +0 -12
- package/bin/v11/commands/template/express/Config/Schemas/BillsTable.json +0 -166
- package/bin/v11/commands/template/express/Config/Schemas/ItemsTable.json +0 -206
- package/bin/v11/commands/template/express/Config/Schemas/LedgerNames.json +0 -50
- package/bin/v11/commands/template/express/Config/Schemas/StockItems.json +0 -45
- package/bin/v11/commands/template/express/Config/api.json +0 -8
- package/bin/v11/commands/template/express/Config/schema.json +0 -8
- package/bin/v11/commands/template/express/Config/ui.json +0 -8
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/build.js +0 -6
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/config.js +0 -12
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/main.js +0 -29
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/publish.js +0 -22
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/repo.js +0 -20
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/schema.js +0 -16
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/utils.js +0 -26
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/Builder/version.js +0 -25
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/buildAndCopy.js +0 -166
- package/bin/v11/commands/template/express/ForFrontEnd/NonSecured/latestVersion.js +0 -38
- package/bin/v11/commands/template/express/ForFrontEnd/Secured/buildProtected.js +0 -108
- package/bin/v11/commands/template/express/ForFrontEnd/Secured/latestVersion.js +0 -38
- package/bin/v11/commands/template/express/app.js +0 -33
- package/bin/v11/commands/template/express/config.json +0 -4
- package/bin/v11/commands/template/express/package.json +0 -18
- package/bin/v11/commands/test.js +0 -36
- package/bin/v11/core/parseInput.js +0 -10
- package/bin/v11/core/resolveCommand.js +0 -16
- package/bin/v11/core/resolveFolderName.js +0 -17
- package/bin/v11/core/showUsage.js +0 -42
- package/bin/v11/start.js +0 -22
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/.env.local +0 -0
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/.vscode/launch.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/express/template/v5}/Config/Schemas/BillsTable.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/express/template/v5}/Config/Schemas/ItemsTable.json +0 -0
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/api.json +0 -0
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/schema.json +0 -0
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/Config/ui.json +0 -0
- /package/bin/{v11/commands/express/template → v12/commands/express/template/v5}/config.json +0 -0
- /package/bin/{v11/commands/template/express → v12/commands/tally/template/v4}/.env.local +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/.vscode/launch.json +0 -0
- /package/bin/{v11/commands/init/template/Data → v12/commands/tally/template/v4/Config/Schemas}/BillsTable.json +0 -0
- /package/bin/{v11/commands/init/template/Data → v12/commands/tally/template/v4/Config/Schemas}/ItemsTable.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/api.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/schema.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/Config/ui.json +0 -0
- /package/bin/{v11/commands/init/template → v12/commands/tally/template/v4}/config.json +0 -0
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { CONFIG } from "./config.js";
|
|
4
|
-
|
|
5
|
-
export function readSchemas() {
|
|
6
|
-
const uiJson = fs.readFileSync(CONFIG.SCHEMA_FILE);
|
|
7
|
-
const parsed = JSON.parse(uiJson);
|
|
8
|
-
return parsed.Tables || [];
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export function injectSchema(schemaFile) {
|
|
12
|
-
fs.copyFileSync(
|
|
13
|
-
path.join(CONFIG.SCHEMA_FOLDER, `${schemaFile}.json`),
|
|
14
|
-
path.join(CONFIG.COMMON_REPO_PATH, "schema.json")
|
|
15
|
-
);
|
|
16
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { execSync } from "child_process";
|
|
4
|
-
|
|
5
|
-
export function run(cmd, cwd = process.cwd()) {
|
|
6
|
-
console.log(`> ${cmd}`);
|
|
7
|
-
execSync(cmd, { stdio: "inherit", cwd });
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export function ensureDir(dir) {
|
|
11
|
-
fs.mkdirSync(dir, { recursive: true });
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export function copyRecursive(src, dest) {
|
|
15
|
-
fs.readdirSync(src, { withFileTypes: true }).forEach(entry => {
|
|
16
|
-
const srcPath = path.join(src, entry.name);
|
|
17
|
-
const destPath = path.join(dest, entry.name);
|
|
18
|
-
|
|
19
|
-
if (entry.isDirectory()) {
|
|
20
|
-
ensureDir(destPath);
|
|
21
|
-
copyRecursive(srcPath, destPath);
|
|
22
|
-
} else {
|
|
23
|
-
fs.copyFileSync(srcPath, destPath);
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { CONFIG } from "./config.js";
|
|
4
|
-
import { ensureDir } from "./utils.js";
|
|
5
|
-
|
|
6
|
-
export function getNextVersion() {
|
|
7
|
-
let max = 0;
|
|
8
|
-
|
|
9
|
-
if (fs.existsSync(CONFIG.PUBLIC_DIR)) {
|
|
10
|
-
fs.readdirSync(CONFIG.PUBLIC_DIR, { withFileTypes: true })
|
|
11
|
-
.filter(d => d.isDirectory() && d.name.startsWith(CONFIG.VERSION_PREFIX))
|
|
12
|
-
.forEach(d => {
|
|
13
|
-
const n = parseInt(d.name.replace(CONFIG.VERSION_PREFIX, ""), 10);
|
|
14
|
-
if (!isNaN(n) && n > max) max = n;
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
return `${CONFIG.VERSION_PREFIX}${max + 1}`;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export function createVersionFolder(version) {
|
|
22
|
-
const versionPath = path.join(CONFIG.PUBLIC_DIR, version);
|
|
23
|
-
ensureDir(versionPath);
|
|
24
|
-
return versionPath;
|
|
25
|
-
}
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { execSync } from "child_process";
|
|
4
|
-
|
|
5
|
-
/* ================= CONFIG ================= */
|
|
6
|
-
const CONFIG = {
|
|
7
|
-
PUBLIC_DIR: "Public",
|
|
8
|
-
VERSION_PREFIX: "V",
|
|
9
|
-
SCHEMA_FILE: "ui.json",
|
|
10
|
-
SCHEMA_FOLDER: "Schemas",
|
|
11
|
-
COMMON_REPO: "VoltUiGulpV1",
|
|
12
|
-
COMMON_REPO_GIT: "https://github.com/keshavsoft/VoltUiGulpV1"
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
CONFIG.COMMON_REPO_PATH = path.join("..", CONFIG.COMMON_REPO);
|
|
16
|
-
/* ========================================== */
|
|
17
|
-
|
|
18
|
-
/* ---------- GENERIC ---------- */
|
|
19
|
-
const Utils = {
|
|
20
|
-
run(cmd, cwd = process.cwd()) {
|
|
21
|
-
console.log(`> ${cmd}`);
|
|
22
|
-
execSync(cmd, { stdio: "inherit", cwd });
|
|
23
|
-
},
|
|
24
|
-
|
|
25
|
-
ensureDir(dir) {
|
|
26
|
-
fs.mkdirSync(dir, { recursive: true });
|
|
27
|
-
},
|
|
28
|
-
|
|
29
|
-
copyRecursive(src, dest) {
|
|
30
|
-
fs.readdirSync(src, { withFileTypes: true }).forEach(entry => {
|
|
31
|
-
const srcPath = path.join(src, entry.name);
|
|
32
|
-
const destPath = path.join(dest, entry.name);
|
|
33
|
-
|
|
34
|
-
if (entry.isDirectory()) {
|
|
35
|
-
this.ensureDir(destPath);
|
|
36
|
-
this.copyRecursive(srcPath, destPath);
|
|
37
|
-
} else {
|
|
38
|
-
fs.copyFileSync(srcPath, destPath);
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
/* ---------- VERSION (Release Manager) ---------- */
|
|
45
|
-
const Version = {
|
|
46
|
-
getNext() {
|
|
47
|
-
let max = 0;
|
|
48
|
-
|
|
49
|
-
if (fs.existsSync(CONFIG.PUBLIC_DIR)) {
|
|
50
|
-
fs.readdirSync(CONFIG.PUBLIC_DIR, { withFileTypes: true })
|
|
51
|
-
.filter(d => d.isDirectory() && d.name.startsWith(CONFIG.VERSION_PREFIX))
|
|
52
|
-
.forEach(d => {
|
|
53
|
-
const n = parseInt(d.name.replace(CONFIG.VERSION_PREFIX, ""), 10);
|
|
54
|
-
if (!isNaN(n) && n > max) max = n;
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
return `${CONFIG.VERSION_PREFIX}${max + 1}`;
|
|
59
|
-
},
|
|
60
|
-
|
|
61
|
-
createFolder(version) {
|
|
62
|
-
const versionPath = path.join(CONFIG.PUBLIC_DIR, version);
|
|
63
|
-
Utils.ensureDir(versionPath);
|
|
64
|
-
return versionPath;
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
/* ---------- REPO (Installer) ---------- */
|
|
69
|
-
const Repo = {
|
|
70
|
-
ensureCloned() {
|
|
71
|
-
if (!fs.existsSync(CONFIG.COMMON_REPO_PATH)) {
|
|
72
|
-
console.log(`${CONFIG.COMMON_REPO} not found. Cloning...`);
|
|
73
|
-
Utils.run(`git clone ${CONFIG.COMMON_REPO_GIT} ${CONFIG.COMMON_REPO_PATH}`);
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
|
|
77
|
-
ensureDependencies() {
|
|
78
|
-
if (!fs.existsSync(path.join(CONFIG.COMMON_REPO_PATH, "node_modules"))) {
|
|
79
|
-
console.log("Installing dependencies...");
|
|
80
|
-
Utils.run("npm install", CONFIG.COMMON_REPO_PATH);
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
|
|
84
|
-
copyEnv() {
|
|
85
|
-
if (fs.existsSync(".env")) {
|
|
86
|
-
fs.copyFileSync(".env", path.join(CONFIG.COMMON_REPO_PATH, ".env"));
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
|
|
90
|
-
prepare() {
|
|
91
|
-
this.ensureCloned();
|
|
92
|
-
this.ensureDependencies();
|
|
93
|
-
this.copyEnv();
|
|
94
|
-
}
|
|
95
|
-
};
|
|
96
|
-
|
|
97
|
-
/* ---------- SCHEMA (Data Supplier) ---------- */
|
|
98
|
-
const Schema = {
|
|
99
|
-
readAll() {
|
|
100
|
-
const uiJson = fs.readFileSync(CONFIG.SCHEMA_FILE);
|
|
101
|
-
const parsed = JSON.parse(uiJson);
|
|
102
|
-
return parsed.Tables || [];
|
|
103
|
-
},
|
|
104
|
-
|
|
105
|
-
inject(schemaFile) {
|
|
106
|
-
fs.copyFileSync(
|
|
107
|
-
path.join(CONFIG.SCHEMA_FOLDER, `${schemaFile}.json`),
|
|
108
|
-
path.join(CONFIG.COMMON_REPO_PATH, "schema.json")
|
|
109
|
-
);
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
/* ---------- BUILD (Compiler) ---------- */
|
|
114
|
-
const Build = {
|
|
115
|
-
run() {
|
|
116
|
-
Utils.run("npm run NonSec", CONFIG.COMMON_REPO_PATH);
|
|
117
|
-
}
|
|
118
|
-
};
|
|
119
|
-
|
|
120
|
-
/* ---------- PUBLISH (Deployer) ---------- */
|
|
121
|
-
const Publish = {
|
|
122
|
-
schema(versionPath, schemaFile) {
|
|
123
|
-
const schemaName = path.parse(schemaFile).name;
|
|
124
|
-
const targetDir = path.join(versionPath, schemaName);
|
|
125
|
-
const unProtectedDir = path.join(targetDir, "UnProtected");
|
|
126
|
-
|
|
127
|
-
Utils.ensureDir(unProtectedDir);
|
|
128
|
-
|
|
129
|
-
Utils.copyRecursive(
|
|
130
|
-
path.join(CONFIG.COMMON_REPO_PATH, "dist"),
|
|
131
|
-
unProtectedDir
|
|
132
|
-
);
|
|
133
|
-
|
|
134
|
-
fs.copyFileSync(
|
|
135
|
-
path.join(CONFIG.COMMON_REPO_PATH, "Menu", "index.html"),
|
|
136
|
-
path.join(targetDir, "index.html")
|
|
137
|
-
);
|
|
138
|
-
}
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
/* ---------- ORCHESTRATOR (Boss) ---------- */
|
|
142
|
-
const App = {
|
|
143
|
-
processSchema(versionPath, schemaFile) {
|
|
144
|
-
console.log(`\nProcessing ${schemaFile}`);
|
|
145
|
-
Schema.inject(schemaFile);
|
|
146
|
-
Build.run();
|
|
147
|
-
Publish.schema(versionPath, schemaFile);
|
|
148
|
-
console.log(`Done with ${schemaFile}`);
|
|
149
|
-
},
|
|
150
|
-
|
|
151
|
-
run() {
|
|
152
|
-
const version = Version.getNext();
|
|
153
|
-
console.log("Next Version:", version);
|
|
154
|
-
|
|
155
|
-
const versionPath = Version.createFolder(version);
|
|
156
|
-
|
|
157
|
-
Repo.prepare();
|
|
158
|
-
|
|
159
|
-
const schemas = Schema.readAll();
|
|
160
|
-
schemas.forEach(schema => this.processSchema(versionPath, schema));
|
|
161
|
-
|
|
162
|
-
console.log("\n✔ All schemas processed successfully");
|
|
163
|
-
}
|
|
164
|
-
};
|
|
165
|
-
|
|
166
|
-
App.run();
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
|
|
3
|
-
const PREFIX = "V";
|
|
4
|
-
const ENV_FILE = ".env";
|
|
5
|
-
|
|
6
|
-
/* -------- STEP 1: GET NEXT VERSION -------- */
|
|
7
|
-
const dirs = fs.readdirSync("./", { withFileTypes: true })
|
|
8
|
-
.filter(d => d.isDirectory() && d.name.startsWith(PREFIX));
|
|
9
|
-
|
|
10
|
-
let max = 0;
|
|
11
|
-
|
|
12
|
-
dirs.forEach(d => {
|
|
13
|
-
const num = parseInt(d.name.replace(PREFIX, ""), 10);
|
|
14
|
-
if (!isNaN(num) && num > max) max = num;
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
const latestVersion = `${PREFIX}${max}`;
|
|
18
|
-
console.log("Next Version:", latestVersion);
|
|
19
|
-
|
|
20
|
-
/* -------- STEP 2: UPDATE .env -------- */
|
|
21
|
-
let envContent = "";
|
|
22
|
-
|
|
23
|
-
if (fs.existsSync(ENV_FILE)) {
|
|
24
|
-
envContent = fs.readFileSync(ENV_FILE, "utf8")
|
|
25
|
-
.split("\n")
|
|
26
|
-
.map(line =>
|
|
27
|
-
line.startsWith("VERSION=")
|
|
28
|
-
? `VERSION=${latestVersion}`
|
|
29
|
-
: line
|
|
30
|
-
)
|
|
31
|
-
.join("\n");
|
|
32
|
-
} else {
|
|
33
|
-
envContent = `VERSION=${latestVersion}\n`;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
fs.writeFileSync(ENV_FILE, envContent);
|
|
37
|
-
|
|
38
|
-
console.log(".env updated successfully ✔");
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
|
|
4
|
-
import { execSync } from "child_process";
|
|
5
|
-
|
|
6
|
-
/* ================= CONFIG ================= */
|
|
7
|
-
const PUBLIC_DIR = "Public";
|
|
8
|
-
const VERSION_PREFIX = "V";
|
|
9
|
-
const SCHEMA_DIR = "ui.json";
|
|
10
|
-
const COMMON_REPO = "VoltUiGulpV1";
|
|
11
|
-
const COMMON_REPO_GIT = `https://github.com/keshavsoft/${COMMON_REPO}`;
|
|
12
|
-
const COMMON_REPO_PATH = path.join("..", COMMON_REPO);
|
|
13
|
-
/* ========================================== */
|
|
14
|
-
|
|
15
|
-
function run(cmd, cwd = process.cwd()) {
|
|
16
|
-
console.log(`> ${cmd}`);
|
|
17
|
-
execSync(cmd, { stdio: "inherit", cwd });
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/* ---------- STEP 1: GET NEXT VERSION ---------- */
|
|
21
|
-
let max = 0;
|
|
22
|
-
|
|
23
|
-
if (fs.existsSync(PUBLIC_DIR)) {
|
|
24
|
-
fs.readdirSync(PUBLIC_DIR, { withFileTypes: true })
|
|
25
|
-
.filter(d => d.isDirectory() && d.name.startsWith(VERSION_PREFIX))
|
|
26
|
-
.forEach(d => {
|
|
27
|
-
const n = parseInt(d.name.replace(VERSION_PREFIX, ""), 10);
|
|
28
|
-
if (!isNaN(n) && n > max) max = n;
|
|
29
|
-
});
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
const nextVersion = `${VERSION_PREFIX}${max + 1}`;
|
|
33
|
-
console.log("Next Version:", nextVersion);
|
|
34
|
-
|
|
35
|
-
const versionPath = path.join(PUBLIC_DIR, nextVersion);
|
|
36
|
-
fs.mkdirSync(versionPath, { recursive: true });
|
|
37
|
-
|
|
38
|
-
/* ---------- STEP 2: CLONE COMMON REPO ---------- */
|
|
39
|
-
if (!fs.existsSync(COMMON_REPO_PATH)) {
|
|
40
|
-
console.log(`${COMMON_REPO} not found. Cloning...`);
|
|
41
|
-
run(`git clone ${COMMON_REPO_GIT} ${COMMON_REPO_PATH}`);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/* ---------- STEP 3: INSTALL DEPENDENCIES ---------- */
|
|
45
|
-
if (!fs.existsSync(path.join(COMMON_REPO_PATH, "node_modules"))) {
|
|
46
|
-
console.log("node_modules not found. Running npm install...");
|
|
47
|
-
run("npm install", COMMON_REPO_PATH);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/* ---------- STEP 4: COPY .env ---------- */
|
|
51
|
-
if (fs.existsSync(".env")) {
|
|
52
|
-
fs.copyFileSync(".env", path.join(COMMON_REPO_PATH, ".env"));
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* ---------- STEP 5: PROCESS SCHEMAS ---------- */
|
|
56
|
-
const uiJson = fs.readFileSync(SCHEMA_DIR);
|
|
57
|
-
const uiJsonParsed = JSON.parse(uiJson);
|
|
58
|
-
|
|
59
|
-
uiJsonParsed.Tables.forEach(schemaFile => {
|
|
60
|
-
const schemaName = path.parse(schemaFile).name;
|
|
61
|
-
console.log(`\nProcessing ${schemaFile}`);
|
|
62
|
-
|
|
63
|
-
/* Copy schema */
|
|
64
|
-
fs.copyFileSync(
|
|
65
|
-
path.join("Schemas", `${schemaFile}.json`),
|
|
66
|
-
path.join(COMMON_REPO_PATH, "schema.json")
|
|
67
|
-
);
|
|
68
|
-
|
|
69
|
-
/* Build */
|
|
70
|
-
run("npm run NonSec", COMMON_REPO_PATH);
|
|
71
|
-
|
|
72
|
-
/* Target dirs */
|
|
73
|
-
const targetDir = path.join(versionPath, schemaName);
|
|
74
|
-
const protectedDir = path.join(targetDir, "UnProtected");
|
|
75
|
-
|
|
76
|
-
fs.mkdirSync(protectedDir, { recursive: true });
|
|
77
|
-
|
|
78
|
-
/* Copy dist */
|
|
79
|
-
copyRecursive(
|
|
80
|
-
path.join(COMMON_REPO_PATH, "dist"),
|
|
81
|
-
protectedDir
|
|
82
|
-
);
|
|
83
|
-
|
|
84
|
-
/* Copy menu */
|
|
85
|
-
fs.copyFileSync(
|
|
86
|
-
path.join(COMMON_REPO_PATH, "Menu", "index.html"),
|
|
87
|
-
path.join(targetDir, "index.html")
|
|
88
|
-
);
|
|
89
|
-
|
|
90
|
-
console.log(`Done with ${schemaFile}`);
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
console.log("\n✔ All schemas processed successfully");
|
|
94
|
-
|
|
95
|
-
/* ---------- UTIL ---------- */
|
|
96
|
-
function copyRecursive(src, dest) {
|
|
97
|
-
fs.readdirSync(src, { withFileTypes: true }).forEach(entry => {
|
|
98
|
-
const srcPath = path.join(src, entry.name);
|
|
99
|
-
const destPath = path.join(dest, entry.name);
|
|
100
|
-
|
|
101
|
-
if (entry.isDirectory()) {
|
|
102
|
-
fs.mkdirSync(destPath, { recursive: true });
|
|
103
|
-
copyRecursive(srcPath, destPath);
|
|
104
|
-
} else {
|
|
105
|
-
fs.copyFileSync(srcPath, destPath);
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
};
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
|
|
3
|
-
const PREFIX = "V";
|
|
4
|
-
const ENV_FILE = ".env";
|
|
5
|
-
|
|
6
|
-
/* -------- STEP 1: GET NEXT VERSION -------- */
|
|
7
|
-
const dirs = fs.readdirSync("./", { withFileTypes: true })
|
|
8
|
-
.filter(d => d.isDirectory() && d.name.startsWith(PREFIX));
|
|
9
|
-
|
|
10
|
-
let max = 0;
|
|
11
|
-
|
|
12
|
-
dirs.forEach(d => {
|
|
13
|
-
const num = parseInt(d.name.replace(PREFIX, ""), 10);
|
|
14
|
-
if (!isNaN(num) && num > max) max = num;
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
const latestVersion = `${PREFIX}${max}`;
|
|
18
|
-
console.log("Next Version:", latestVersion);
|
|
19
|
-
|
|
20
|
-
/* -------- STEP 2: UPDATE .env -------- */
|
|
21
|
-
let envContent = "";
|
|
22
|
-
|
|
23
|
-
if (fs.existsSync(ENV_FILE)) {
|
|
24
|
-
envContent = fs.readFileSync(ENV_FILE, "utf8")
|
|
25
|
-
.split("\n")
|
|
26
|
-
.map(line =>
|
|
27
|
-
line.startsWith("VERSION=")
|
|
28
|
-
? `VERSION=${latestVersion}`
|
|
29
|
-
: line
|
|
30
|
-
)
|
|
31
|
-
.join("\n");
|
|
32
|
-
} else {
|
|
33
|
-
envContent = `VERSION=${latestVersion}\n`;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
fs.writeFileSync(ENV_FILE, envContent);
|
|
37
|
-
|
|
38
|
-
console.log(".env updated successfully ✔");
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { kschema } from "@keshavsoft/kschema";
|
|
2
|
-
import consfigJson from './config.json' with { type: 'json' };
|
|
3
|
-
|
|
4
|
-
kschema.loadConfig(consfigJson);
|
|
5
|
-
|
|
6
|
-
import express from 'express';
|
|
7
|
-
import http from 'http';
|
|
8
|
-
|
|
9
|
-
const app = express();
|
|
10
|
-
const server = http.createServer(app);
|
|
11
|
-
|
|
12
|
-
var port = normalizePort(process.env.PORT || 3000);
|
|
13
|
-
|
|
14
|
-
app.use(express.static('Public'));
|
|
15
|
-
|
|
16
|
-
function normalizePort(val) {
|
|
17
|
-
var port = parseInt(val, 10);
|
|
18
|
-
|
|
19
|
-
if (isNaN(port)) {
|
|
20
|
-
return val;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
if (port >= 0) {
|
|
24
|
-
return port;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
return false;
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
server.listen(port, () => {
|
|
31
|
-
console.log(`Example app listening on port ${port}`);
|
|
32
|
-
console.log(`Open here http://localhost:${port}`);
|
|
33
|
-
});
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "KeshavSoft",
|
|
3
|
-
"version": "1.7.1",
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "app.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
-
"start": "node --env-file=.env app.js"
|
|
10
|
-
},
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "ISC",
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@keshavsoft/kschema": "^1.6.1",
|
|
15
|
-
"body-parser": "^2.2.0",
|
|
16
|
-
"express": "^5.1.0"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { decideTemplate } from "./express/steps/decideTemplate.js";
|
|
2
|
-
|
|
3
|
-
import { locateSource } from "./express/steps/locateSource.js";
|
|
4
|
-
import { locateDestination } from "./express/steps/locateDestination.js";
|
|
5
|
-
import { createProject } from "./express/steps/createProject.js";
|
|
6
|
-
import { announce } from "./express/steps/announce.js";
|
|
7
|
-
|
|
8
|
-
import resolveFolderName from "../core/resolveFolderName.js";
|
|
9
|
-
|
|
10
|
-
export default ({ template, folderName }) => {
|
|
11
|
-
const finalTemplate = decideTemplate({ inTemplate: template });
|
|
12
|
-
|
|
13
|
-
const resolvedFolderName = resolveFolderName({
|
|
14
|
-
name: folderName
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
const source = locateSource({ template: finalTemplate });
|
|
18
|
-
const destination = locateDestination({ inResolvedFolderName: resolvedFolderName });
|
|
19
|
-
|
|
20
|
-
createProject({ source, destination });
|
|
21
|
-
|
|
22
|
-
announce({ inResolvedFolderName: resolvedFolderName });
|
|
23
|
-
};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
|
|
4
|
-
import { exampleSchema } from "@keshavsoft/kschema";
|
|
5
|
-
import { baseTemplate } from "./template/baseTemplate.js";
|
|
6
|
-
|
|
7
|
-
export default ({ args }) => {
|
|
8
|
-
const OUTPUT_DIR = path.resolve(process.cwd(), "samples");
|
|
9
|
-
|
|
10
|
-
if (!fs.existsSync(OUTPUT_DIR)) {
|
|
11
|
-
fs.mkdirSync(OUTPUT_DIR, { recursive: true });
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
Object.entries(exampleSchema).forEach(([intent, methods]) => {
|
|
15
|
-
Object.entries(methods).forEach(([key, meta]) => {
|
|
16
|
-
if (Array.isArray(meta)) {
|
|
17
|
-
const finalCode = baseTemplate({
|
|
18
|
-
body: meta.join("\r\n"),
|
|
19
|
-
inTableName: args[0]
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
fs.writeFileSync(path.join(OUTPUT_DIR, `${intent}_${key}.js`), finalCode);
|
|
23
|
-
};
|
|
24
|
-
});
|
|
25
|
-
});
|
|
26
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import path from "path";
|
|
2
|
-
import { fileURLToPath } from "url";
|
|
3
|
-
|
|
4
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
5
|
-
const __dirname = path.dirname(__filename);
|
|
6
|
-
|
|
7
|
-
export const locateSource = () => {
|
|
8
|
-
return path.join(
|
|
9
|
-
__dirname,
|
|
10
|
-
"..",
|
|
11
|
-
"template"
|
|
12
|
-
);
|
|
13
|
-
};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tableName": "LedgerNames",
|
|
3
|
-
"columns": [
|
|
4
|
-
{
|
|
5
|
-
"field": "LedgerName",
|
|
6
|
-
"title": "LedgerName",
|
|
7
|
-
"unique": true,
|
|
8
|
-
"type": "text",
|
|
9
|
-
"isInput": true,
|
|
10
|
-
"isAutoFocus": true,
|
|
11
|
-
"defaultvalue": "KeshavSoft",
|
|
12
|
-
"isConsider": true
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"field": "LedgerParentName",
|
|
16
|
-
"title": "LedgerParentName",
|
|
17
|
-
"type": "text",
|
|
18
|
-
"isInput": true,
|
|
19
|
-
"isConsider": true
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"field": "LedgerType",
|
|
23
|
-
"title": "LedgerType",
|
|
24
|
-
"type": "text",
|
|
25
|
-
"isInput": true,
|
|
26
|
-
"isConsider": true
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"field": "pk",
|
|
30
|
-
"title": "pk",
|
|
31
|
-
"primary": true
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"data": [],
|
|
35
|
-
"Vertical": [],
|
|
36
|
-
"DataTableOptions": {
|
|
37
|
-
"Header": {
|
|
38
|
-
"autoFocus": "LedgerName"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"NonSecured": {
|
|
42
|
-
"SubRoutes": [
|
|
43
|
-
"ShowAll",
|
|
44
|
-
"Insert",
|
|
45
|
-
"Pipe"
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
|
-
"PrimarykeyTableNames": [],
|
|
49
|
-
"PrimarykeyTables": []
|
|
50
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tableName": "StockItems",
|
|
3
|
-
"columns": [
|
|
4
|
-
{
|
|
5
|
-
"field": "StockItemName",
|
|
6
|
-
"title": "StockItemName",
|
|
7
|
-
"unique": true,
|
|
8
|
-
"type": "text",
|
|
9
|
-
"isInput": true,
|
|
10
|
-
"isAutoFocus": true,
|
|
11
|
-
"defaultvalue": "KeshavSoft",
|
|
12
|
-
"isConsider": true
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"field": "StockItemReservedName",
|
|
16
|
-
"title": "StockItemReservedName",
|
|
17
|
-
"type": "text",
|
|
18
|
-
"isInput": true,
|
|
19
|
-
"isConsider": true
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"field": "StockItemType",
|
|
23
|
-
"title": "StockItemType",
|
|
24
|
-
"type": "text",
|
|
25
|
-
"isInput": true,
|
|
26
|
-
"isConsider": true
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"data": [],
|
|
30
|
-
"Vertical": [],
|
|
31
|
-
"DataTableOptions": {
|
|
32
|
-
"Header": {
|
|
33
|
-
"autoFocus": "StockItemName"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"NonSecured": {
|
|
37
|
-
"SubRoutes": [
|
|
38
|
-
"ShowAll",
|
|
39
|
-
"Pipe",
|
|
40
|
-
"Insert"
|
|
41
|
-
]
|
|
42
|
-
},
|
|
43
|
-
"PrimarykeyTableNames": [],
|
|
44
|
-
"PrimarykeyTables": []
|
|
45
|
-
}
|