@keshavsoft/kschema-cli 1.12.15 → 1.12.16
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/cli.js +1 -1
- package/bin/v12/commands/tally/steps/locateSource.js +1 -1
- package/bin/v12/commands/tally/template/v5/app.js +2 -2
- package/bin/v12/commands/tally/template/v6/.env +9 -0
- package/bin/v12/commands/tally/template/v6/.env.local +7 -0
- package/bin/v12/commands/tally/template/v6/.vscode/launch.json +12 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Find/controller.js +27 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Find/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Find/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Find/rest.http +1 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Find/service.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Insert/controller.js +24 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Insert/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Insert/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Insert/rest.http +12 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/Insert/service.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/BillsTable/end-points.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/FilterColumns/controller.js +27 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/FilterColumns/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/FilterColumns/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/FilterColumns/rest.http +1 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/FilterColumns/service.js +9 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Insert/controller.js +24 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Insert/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Insert/middleware.js +19 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Insert/rest.http +13 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/Insert/service.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/ItemsTable/end-points.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/ShowAll/controller.js +21 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/ShowAll/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/ShowAll/rest.http +1 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/ShowAll/service.js +9 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/LedgerNames/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/ShowAll/controller.js +21 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/ShowAll/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/ShowAll/rest.http +1 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/ShowAll/service.js +9 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/StockItems/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v6/Api/V1/routes.js +13 -0
- package/bin/v12/commands/tally/template/v6/Api/routes.js +7 -0
- package/bin/v12/commands/tally/template/v6/Config/Schemas/BillsTable.json +165 -0
- package/bin/v12/commands/tally/template/v6/Config/Schemas/ItemsTable.json +200 -0
- package/bin/v12/commands/tally/template/v6/Config/Schemas/LedgerNames.json +60 -0
- package/bin/v12/commands/tally/template/v6/Config/Schemas/StockItems.json +85 -0
- package/bin/v12/commands/tally/template/v6/Config/api.json +8 -0
- package/bin/v12/commands/tally/template/v6/Config/schema.json +8 -0
- package/bin/v12/commands/tally/template/v6/Config/ui.json +8 -0
- package/bin/v12/commands/tally/template/v6/Data/BillsTable.json +1 -0
- package/bin/v12/commands/tally/template/v6/Data/ItemsTable.json +1 -0
- package/bin/v12/commands/tally/template/v6/Data/LedgerNames.json +1 -0
- package/bin/v12/commands/tally/template/v6/Data/StockItems.json +1 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Transform/controller.js +21 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Transform/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Transform/restNew.http +1 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Transform/routes.js +11 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/Transform/service.js +24 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/LedgerNames/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Config/schema.json +3 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Transform/controller.js +21 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Transform/errors.js +11 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Transform/restNew.http +1 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Transform/routes.js +11 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/Transform/service.js +42 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/StockItems/end-points.js +9 -0
- package/bin/v12/commands/tally/template/v6/FromTally/V1/routes.js +11 -0
- package/bin/v12/commands/tally/template/v6/FromTally/routes.js +8 -0
- package/bin/v12/commands/tally/template/v6/Import/Templates/inventory.json +121 -0
- package/bin/v12/commands/tally/template/v6/Import/Templates/ledgers.json +28 -0
- package/bin/v12/commands/tally/template/v6/Import/Templates/main.json +224 -0
- package/bin/v12/commands/tally/template/v6/Import/Templates/template.json +224 -0
- package/bin/v12/commands/tally/template/v6/Import/ledgers.json +17 -0
- package/bin/v12/commands/tally/template/v6/Import/staticVariables.json +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/UI/mountTableUI.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/ai.js +164 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/entry.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V21/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/UI/mountTableUI.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/ai.js +165 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/entry.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V22/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/UI/mountTableOnly.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/UI/mountTableUI.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/ai.js +165 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/entry.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V23/uiClasses.js +22 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTableOnlyWithVersions/V1/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/init.js +61 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/initRender.js +70 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/BuildVertical/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Core/applyMode.js +41 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Core/loadDataFlow.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Core/loadVerticalOnly.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/DataLayer/loadInitialData.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/DomManipulation/start.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/FocusSet/V1/focusSet.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/FocusSet/V2/focusSet.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/HtmlState/start.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/SearchTable/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/buildUrlWithParams.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/createItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/createServices.js +51 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/dataListLoader.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/deleteItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/findItem.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/formSearchParamsFunc.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/getData.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/setupServices.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Services/updateItem.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V1/columnStore.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V1/dataStore.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V1/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V1/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V2/columnStore.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V2/dataStore.js +45 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V2/metaStore.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/TableStore/V2/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/UI/mountTableOnly.js +72 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/UI/mountTableUI.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/UI/mountVertical.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/normalizeConfig.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/prepareColumnsBundle.js +26 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/tableHelpers.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/validateConfig.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/validateEndpoints.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/validateOptions.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/Utils/validateRequired.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/ai.js +165 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/entry.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/tableStore.js +79 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V24/uiClasses.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/CreateHeaderRow/start.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/attachSortHandlers.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/getTHead.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/sortData.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/start.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildHeader/updateHeaderUI.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnly/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +47 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/init.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/initRender.js +97 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTableOnlyWithVersions/V1/start.js +49 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/createInputRow.js +71 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/V3/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildForm/start.js +86 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +20 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +24 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/saveFooterRow.js +72 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildFooterVersions/V3/start.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/init.js +62 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/lockTable.js +17 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/BuildTableVersions/V2/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/initRender.js +118 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/refresh.js +31 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildTotal/start.js +80 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/atThatState.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createCell.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/createRow.js +35 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/highlight.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/inputFunc.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/multiColumn.js +42 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/orchestrator.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/singleColumn.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/AddListeners/tableSearch/start.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom copy.js +27 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildDataLists/addToDom.js +67 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildFirstColumn/TableHeading/start.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V1/createForm.js +65 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/clearFormInputs.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createButton.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createForm.js +44 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/createInputRow.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V2/focusFirstInput.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/clearFormInputs.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/collectFormData.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createButton.js +30 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createForm.js +52 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/createInputRow.js +76 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/V3/focusFirstInput.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/applyProjection.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildForm/start.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V2/start.js +40 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/Utils/validateRow.js +13 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/afterMutation.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/getFooterPayload.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/saveFooterRow.js +69 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildFooterVersions/V3/start.js +43 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/insertCells.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/CreateHeaderRow/start.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/BuildHeaderVersions/V1/start.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/DeleteRow/afterMutation.js +38 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/init.js +54 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V1/start.js +37 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildBody.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/buildRow.js +48 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createDataCell.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createIndexCell.js +8 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createOptionsCell.js +21 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/createRow.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/highlight.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/pureBuildBody.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildBodyVersions/V1/start.js +34 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/clearFooterInputs.js +11 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/DomManipulation/showErrors.js +32 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow copy.js +18 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/Utils/validateRow.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/getFooterPayload.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/saveFooterRow.js +59 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start copy.js +64 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V1/start.js +36 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/assemble.js +6 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createSortIcon.js +25 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createTH.js +12 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createText.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/createWrapper.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/CreateHeaderCell/start.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/appendFooterSaveCell.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterCell.js +15 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/createFooterInput.js +29 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/insertCells.js +14 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/CreateFooterRow/start.js +23 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/DomManipulation/clearErrors.js +7 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/BuildTableVersions/V2/BuildFooterVersions/V2/afterMutation.js +28 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/BuildVertical/afterMutation.js +46 -0
- package/bin/v12/commands/tally/template/v6/Public/KSTableAi/V25/ai.js +165 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/buildMenuItem.js +16 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/createAnchor.js +10 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/createIcon.js +19 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/createLabel.js +9 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/createLi.js +5 -0
- package/bin/v12/commands/tally/template/v6/Public/header/v1/initHeader.js +33 -0
- package/bin/v12/commands/tally/template/v6/app.js +31 -0
- package/bin/v12/commands/tally/template/v6/config.json +4 -0
- package/bin/v12/commands/tally/template/v6/configLoader.js +6 -0
- package/bin/v12/commands/tally/template/v6/package-lock.json +2771 -0
- package/bin/v12/commands/tally/template/v6/package.json +21 -0
- package/bin/v12/commands/tally/template/v6/port.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import fs from "fs";
|
|
2
|
+
import { stockItems } from "@keshavsoft/tallyextract";
|
|
3
|
+
const dataPath = "./Data/StockItems.json";
|
|
4
|
+
|
|
5
|
+
const StartFunc = async () => {
|
|
6
|
+
const dataFromTally = await stockItems();
|
|
7
|
+
console.log("aaaaaa : ", dataFromTally.data.collection[0]);
|
|
8
|
+
|
|
9
|
+
const LocalNewArray = dataFromTally.data.collection.map(element => {
|
|
10
|
+
const gstdetails = element.gstdetails.at(-1);
|
|
11
|
+
let sgstRate;
|
|
12
|
+
let cgstRate;
|
|
13
|
+
|
|
14
|
+
if (gstdetails) {
|
|
15
|
+
const ratedetails = gstdetails.statewisedetails[0].ratedetails;
|
|
16
|
+
const sgst = ratedetails.find(element => element.gstratedutyhead === "SGST/UTGST");
|
|
17
|
+
const cgst = ratedetails.find(element => element.gstratedutyhead === "CGST");
|
|
18
|
+
|
|
19
|
+
sgstRate = sgst?.gstrate;
|
|
20
|
+
cgstRate = cgst?.gstrate;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
return {
|
|
24
|
+
StockItemName: element.metadata.name,
|
|
25
|
+
StockItemReservedName: element.metadata.reservedname,
|
|
26
|
+
StockItemType: element.metadata.type,
|
|
27
|
+
StockParentName: element.parent.value,
|
|
28
|
+
StockCategory: element.category.value,
|
|
29
|
+
StockGstApplicable: element.gstapplicable.value,
|
|
30
|
+
StockGstTypeOfSupply: element.gsttypeofsupply.value,
|
|
31
|
+
StockBaseUnits: element.baseunits.value,
|
|
32
|
+
sgstRate,
|
|
33
|
+
cgstRate
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
fs.writeFileSync(dataPath, JSON.stringify(LocalNewArray));
|
|
38
|
+
|
|
39
|
+
return LocalNewArray.length;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export { StartFunc };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import express from 'express';
|
|
2
|
+
|
|
3
|
+
import { router as routerFromLedgerNames } from "./LedgerNames/end-points.js";
|
|
4
|
+
import { router as routerFromStockItems } from "./StockItems/end-points.js";
|
|
5
|
+
|
|
6
|
+
const router = express.Router();
|
|
7
|
+
|
|
8
|
+
router.use('/LedgerNames', routerFromLedgerNames);
|
|
9
|
+
router.use('/StockItems', routerFromStockItems);
|
|
10
|
+
|
|
11
|
+
export { router };
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"stockitemname": "",
|
|
3
|
+
"gstovrdnisrevchargeappl": "\u0004 Not Applicable",
|
|
4
|
+
"gstovrdntaxability": "Taxable",
|
|
5
|
+
"gstsourcetype": "Stock Item",
|
|
6
|
+
"gstitemsource": "",
|
|
7
|
+
"hsnsourcetype": "Stock Item",
|
|
8
|
+
"hsnitemsource": "",
|
|
9
|
+
"gstovrdntypeofsupply": "Goods",
|
|
10
|
+
"gstrateinferapplicability": "As per Masters/Company",
|
|
11
|
+
"gsthsnname": "540720",
|
|
12
|
+
"gsthsndescription": "Woven Fabric",
|
|
13
|
+
"gsthsninferapplicability": "As per Masters/Company",
|
|
14
|
+
"isdeemedpositive": false,
|
|
15
|
+
"isgstassessablevalueoverridden": false,
|
|
16
|
+
"strdisgstapplicable": false,
|
|
17
|
+
"contentnegispos": false,
|
|
18
|
+
"islastdeemedpositive": false,
|
|
19
|
+
"isautonegate": false,
|
|
20
|
+
"iscustomsclearance": false,
|
|
21
|
+
"istrackcomponent": false,
|
|
22
|
+
"istrackproduction": false,
|
|
23
|
+
"isprimaryitem": false,
|
|
24
|
+
"isscrap": false,
|
|
25
|
+
"rate": "100.00/Nos",
|
|
26
|
+
"amount": "1000.00",
|
|
27
|
+
"actualqty": " 10 Nos",
|
|
28
|
+
"billedqty": " 10 Nos",
|
|
29
|
+
"mrprate": "100.00/Nos",
|
|
30
|
+
"batchallocations": [
|
|
31
|
+
{
|
|
32
|
+
"godownname": "Main Location",
|
|
33
|
+
"batchname": "Primary Batch",
|
|
34
|
+
"indentno": "\u0004 Not Applicable",
|
|
35
|
+
"orderno": "\u0004 Not Applicable",
|
|
36
|
+
"trackingnumber": "\u0004 Not Applicable",
|
|
37
|
+
"dynamiccstiscleared": false,
|
|
38
|
+
"amount": "1000.00",
|
|
39
|
+
"actualqty": " 10 Nos",
|
|
40
|
+
"billedqty": " 10 Nos"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"accountingallocations": [
|
|
44
|
+
{
|
|
45
|
+
"oldauditentryids": [
|
|
46
|
+
{
|
|
47
|
+
"metadata": true,
|
|
48
|
+
"type": "Number"
|
|
49
|
+
},
|
|
50
|
+
"-1"
|
|
51
|
+
],
|
|
52
|
+
"ledgername": "GST SALES",
|
|
53
|
+
"classrate": "100.00000",
|
|
54
|
+
"gstclass": "\u0004 Not Applicable",
|
|
55
|
+
"isdeemedpositive": false,
|
|
56
|
+
"ledgerfromitem": false,
|
|
57
|
+
"removezeroentries": false,
|
|
58
|
+
"ispartyledger": false,
|
|
59
|
+
"gstoverridden": false,
|
|
60
|
+
"isgstassessablevalueoverridden": false,
|
|
61
|
+
"strdisgstapplicable": false,
|
|
62
|
+
"strdgstispartyledger": false,
|
|
63
|
+
"strdgstisdutyledger": false,
|
|
64
|
+
"contentnegispos": false,
|
|
65
|
+
"islastdeemedpositive": false,
|
|
66
|
+
"iscapvattaxaltered": false,
|
|
67
|
+
"iscapvatnotclaimed": false,
|
|
68
|
+
"amount": "1000.00"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"ratedetails": [
|
|
72
|
+
{
|
|
73
|
+
"gstratedutyhead": "CGST",
|
|
74
|
+
"gstratevaluationtype": "Based on Value",
|
|
75
|
+
"gstrate": " 2.50"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"gstratedutyhead": "SGST/UTGST",
|
|
79
|
+
"gstratevaluationtype": "Based on Value",
|
|
80
|
+
"gstrate": " 2.50"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"gstratedutyhead": "IGST",
|
|
84
|
+
"gstratevaluationtype": "Based on Value",
|
|
85
|
+
"gstrate": " 5"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"gstratedutyhead": "Cess",
|
|
89
|
+
"gstratevaluationtype": "\u0004 Not Applicable"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"gstratedutyhead": "State Cess",
|
|
93
|
+
"gstratevaluationtype": "Based on Value"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"ratedetails1": [
|
|
97
|
+
{
|
|
98
|
+
"gstratedutyhead": "CGST",
|
|
99
|
+
"gstratevaluationtype": "Based on Value",
|
|
100
|
+
"gstrate": " 9"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"gstratedutyhead": "SGST/UTGST",
|
|
104
|
+
"gstratevaluationtype": "Based on Value",
|
|
105
|
+
"gstrate": " 9"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"gstratedutyhead": "IGST",
|
|
109
|
+
"gstratevaluationtype": "Based on Value",
|
|
110
|
+
"gstrate": " 18"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"gstratedutyhead": "Cess",
|
|
114
|
+
"gstratevaluationtype": "\u0004 Not Applicable"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"gstratedutyhead": "State Cess",
|
|
118
|
+
"gstratevaluationtype": "Based on Value"
|
|
119
|
+
}
|
|
120
|
+
]
|
|
121
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"oldauditentryids": [
|
|
3
|
+
{
|
|
4
|
+
"metadata": true,
|
|
5
|
+
"type": "Number"
|
|
6
|
+
},
|
|
7
|
+
"-1"
|
|
8
|
+
],
|
|
9
|
+
"roundtype": "\u0004 Not Applicable",
|
|
10
|
+
"ledgername": "SGST Output",
|
|
11
|
+
"methodtype": "GST",
|
|
12
|
+
"gstclass": "\u0004 Not Applicable",
|
|
13
|
+
"isdeemedpositive": false,
|
|
14
|
+
"ledgerfromitem": false,
|
|
15
|
+
"removezeroentries": true,
|
|
16
|
+
"ispartyledger": false,
|
|
17
|
+
"gstoverridden": false,
|
|
18
|
+
"isgstassessablevalueoverridden": false,
|
|
19
|
+
"strdisgstapplicable": false,
|
|
20
|
+
"strdgstispartyledger": false,
|
|
21
|
+
"strdgstisdutyledger": false,
|
|
22
|
+
"contentnegispos": false,
|
|
23
|
+
"islastdeemedpositive": false,
|
|
24
|
+
"iscapvattaxaltered": false,
|
|
25
|
+
"iscapvatnotclaimed": false,
|
|
26
|
+
"amount": "90.00",
|
|
27
|
+
"vatexpamount": "90.00"
|
|
28
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
{
|
|
2
|
+
"static_variables": [
|
|
3
|
+
{
|
|
4
|
+
"name": "svVchImportFormat",
|
|
5
|
+
"value": "json"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"name": "svCurrentCompany",
|
|
9
|
+
"value": "Mani9"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"tallymessage": [
|
|
13
|
+
{
|
|
14
|
+
"metadata": {
|
|
15
|
+
"type": "Voucher",
|
|
16
|
+
"vchtype": "Gst Sales E",
|
|
17
|
+
"action": "Create",
|
|
18
|
+
"objview": "Invoice Voucher View"
|
|
19
|
+
},
|
|
20
|
+
"address": [
|
|
21
|
+
{
|
|
22
|
+
"metadata": true,
|
|
23
|
+
"type": "String"
|
|
24
|
+
},
|
|
25
|
+
"Tallarevu"
|
|
26
|
+
],
|
|
27
|
+
"basicbuyeraddress": [
|
|
28
|
+
{
|
|
29
|
+
"metadata": true,
|
|
30
|
+
"type": "String"
|
|
31
|
+
},
|
|
32
|
+
"Tallarevu"
|
|
33
|
+
],
|
|
34
|
+
"oldauditentryids": [
|
|
35
|
+
{
|
|
36
|
+
"metadata": true,
|
|
37
|
+
"type": "Number"
|
|
38
|
+
},
|
|
39
|
+
"-1"
|
|
40
|
+
],
|
|
41
|
+
"date": "20260320",
|
|
42
|
+
"vchstatusdate": "20260320",
|
|
43
|
+
"gstregistrationtype": "Unregistered/Consumer",
|
|
44
|
+
"vatdealertype": "Regular",
|
|
45
|
+
"statename": "Andhra Pradesh",
|
|
46
|
+
"countryofresidence": "India",
|
|
47
|
+
"placeofsupply": "Andhra Pradesh",
|
|
48
|
+
"vouchertypename": "Gst Sales E",
|
|
49
|
+
"classname": "GST",
|
|
50
|
+
"partyname": "{KeshavSoft}",
|
|
51
|
+
"gstregistration": {
|
|
52
|
+
"value": "Andhra Pradesh Registration",
|
|
53
|
+
"taxtype": "GST",
|
|
54
|
+
"taxregistration": "37ABPPN4785P1ZH"
|
|
55
|
+
},
|
|
56
|
+
"cmpgstin": "37ABPPN4785P1ZH",
|
|
57
|
+
"partyledgername": "{KeshavSoft}",
|
|
58
|
+
"basicbuyername": "{KeshavSoft}",
|
|
59
|
+
"cmpgstregistrationtype": "Regular",
|
|
60
|
+
"partymailingname": "{KeshavSoft}",
|
|
61
|
+
"partypincode": "533001",
|
|
62
|
+
"consigneemailingname": "{KeshavSoft}",
|
|
63
|
+
"consigneepincode": "533001",
|
|
64
|
+
"consigneestatename": "Andhra Pradesh",
|
|
65
|
+
"cmpgststate": "Andhra Pradesh",
|
|
66
|
+
"consigneecountryname": "India",
|
|
67
|
+
"basicbasepartyname": "{KeshavSoft}",
|
|
68
|
+
"numberingstyle": "Auto Retain",
|
|
69
|
+
"cstformissuetype": "\u0004 Not Applicable",
|
|
70
|
+
"cstformrecvtype": "\u0004 Not Applicable",
|
|
71
|
+
"fbtpaymenttype": "Default",
|
|
72
|
+
"persistedview": "Invoice Voucher View",
|
|
73
|
+
"vchstatustaxadjustment": "Default",
|
|
74
|
+
"vchstatusvouchertype": "Gst Sales E",
|
|
75
|
+
"vchstatustaxunit": "Andhra Pradesh Registration",
|
|
76
|
+
"vchgstclass": "\u0004 Not Applicable",
|
|
77
|
+
"vchentrymode": "Item Invoice",
|
|
78
|
+
"diffactualqty": false,
|
|
79
|
+
"ismstfromsync": false,
|
|
80
|
+
"isdeleted": false,
|
|
81
|
+
"issecurityonwhenentered": false,
|
|
82
|
+
"asoriginal": false,
|
|
83
|
+
"audited": false,
|
|
84
|
+
"iscommonparty": false,
|
|
85
|
+
"forjobcosting": false,
|
|
86
|
+
"isoptional": false,
|
|
87
|
+
"effectivedate": "20260320",
|
|
88
|
+
"useforexcise": false,
|
|
89
|
+
"isforjobworkin": false,
|
|
90
|
+
"allowconsumption": false,
|
|
91
|
+
"useforinterest": false,
|
|
92
|
+
"useforgainloss": false,
|
|
93
|
+
"useforgodowntransfer": false,
|
|
94
|
+
"useforcompound": false,
|
|
95
|
+
"useforservicetax": false,
|
|
96
|
+
"isreversechargeapplicable": false,
|
|
97
|
+
"issystem": false,
|
|
98
|
+
"isfetchedonly": false,
|
|
99
|
+
"isgstoverridden": false,
|
|
100
|
+
"iscancelled": false,
|
|
101
|
+
"isonhold": false,
|
|
102
|
+
"issummary": false,
|
|
103
|
+
"isecommercesupply": false,
|
|
104
|
+
"isboenotapplicable": false,
|
|
105
|
+
"isgstsecsevenapplicable": false,
|
|
106
|
+
"ignoreeinvvalidation": false,
|
|
107
|
+
"cmpgstisothterritoryassessee": false,
|
|
108
|
+
"partygstisothterritoryassessee": false,
|
|
109
|
+
"irnjsonexported": false,
|
|
110
|
+
"irncancelled": false,
|
|
111
|
+
"ignoregstconflictinmig": false,
|
|
112
|
+
"isopbaltransaction": false,
|
|
113
|
+
"ignoregstformatvalidation": false,
|
|
114
|
+
"iseligibleforitc": true,
|
|
115
|
+
"ignoregstoptionaluncertain": false,
|
|
116
|
+
"updatesummaryvalues": false,
|
|
117
|
+
"isewaybillapplicable": false,
|
|
118
|
+
"isdeletedretained": false,
|
|
119
|
+
"isnull": false,
|
|
120
|
+
"isexcisevoucher": false,
|
|
121
|
+
"excisetaxoverride": false,
|
|
122
|
+
"usefortaxunittransfer": false,
|
|
123
|
+
"isexer1nopoverwrite": false,
|
|
124
|
+
"isexf2nopoverwrite": false,
|
|
125
|
+
"isexer3nopoverwrite": false,
|
|
126
|
+
"ignoreposvalidation": false,
|
|
127
|
+
"exciseopening": false,
|
|
128
|
+
"useforfinalproduction": false,
|
|
129
|
+
"istdsoverridden": false,
|
|
130
|
+
"istcsoverridden": false,
|
|
131
|
+
"istdstcscashvch": false,
|
|
132
|
+
"includeadvpymtvch": false,
|
|
133
|
+
"issubworkscontract": false,
|
|
134
|
+
"isvatoverridden": false,
|
|
135
|
+
"ignoreorigvchdate": false,
|
|
136
|
+
"isvatpaidatcustoms": false,
|
|
137
|
+
"isdeclaredtocustoms": false,
|
|
138
|
+
"vatadvancepayment": false,
|
|
139
|
+
"vatadvpay": false,
|
|
140
|
+
"iscstdelcaredgoodssales": false,
|
|
141
|
+
"isvatrestaxinv": false,
|
|
142
|
+
"isservicetaxoverridden": false,
|
|
143
|
+
"isisdvoucher": false,
|
|
144
|
+
"isexciseoverridden": false,
|
|
145
|
+
"isexcisesupplyvch": false,
|
|
146
|
+
"gstnotexported": false,
|
|
147
|
+
"ignoregstinvalidation": false,
|
|
148
|
+
"isgstrefund": false,
|
|
149
|
+
"ovrdnewaybillapplicability": false,
|
|
150
|
+
"isvatprincipalaccount": false,
|
|
151
|
+
"vchstatusisvchnumused": false,
|
|
152
|
+
"vchgststatusisincluded": true,
|
|
153
|
+
"vchgststatusisuncertain": false,
|
|
154
|
+
"vchgststatusisexcluded": false,
|
|
155
|
+
"vchgststatusisapplicable": true,
|
|
156
|
+
"vchgststatusisgstr2breconciled": false,
|
|
157
|
+
"vchgststatusisgstr2bonlyinportal": false,
|
|
158
|
+
"vchgststatusisgstr2bonlyinbooks": false,
|
|
159
|
+
"vchgststatusisgstr2bmismatch": false,
|
|
160
|
+
"vchgststatusisgstr2bindiffperiod": false,
|
|
161
|
+
"vchgststatusisreteffdateoverrdn": false,
|
|
162
|
+
"vchgststatusisoverrdn": false,
|
|
163
|
+
"vchgststatusisstatindiffdate": false,
|
|
164
|
+
"vchgststatusisretindiffdate": false,
|
|
165
|
+
"vchgststatusmainsectionexcluded": false,
|
|
166
|
+
"vchgststatusisbranchtransferout": false,
|
|
167
|
+
"vchgststatusissystemsummary": false,
|
|
168
|
+
"vchstatusisunregisteredrcm": false,
|
|
169
|
+
"vchstatusisoptional": false,
|
|
170
|
+
"vchstatusiscancelled": false,
|
|
171
|
+
"vchstatusisdeleted": false,
|
|
172
|
+
"vchstatusisopeningbalance": false,
|
|
173
|
+
"vchstatusisfetchedonly": false,
|
|
174
|
+
"vchgststatusisoptionaluncertain": false,
|
|
175
|
+
"vchstatusisreacceptforhsndone": false,
|
|
176
|
+
"vchstatusisreaccephsnsixonedone": true,
|
|
177
|
+
"paymentlinkhasmultiref": false,
|
|
178
|
+
"isshippingwithinstate": false,
|
|
179
|
+
"isoverseastouristtrans": false,
|
|
180
|
+
"isdesignatedzoneparty": false,
|
|
181
|
+
"hascashflow": false,
|
|
182
|
+
"ispostdated": false,
|
|
183
|
+
"usetrackingnumber": false,
|
|
184
|
+
"isinvoice": true,
|
|
185
|
+
"mfgjournal": false,
|
|
186
|
+
"hasdiscounts": false,
|
|
187
|
+
"aspayslip": false,
|
|
188
|
+
"iscostcentre": false,
|
|
189
|
+
"isstxnonrealizedvch": false,
|
|
190
|
+
"isexcisemanufactureron": false,
|
|
191
|
+
"isblankcheque": false,
|
|
192
|
+
"isvoid": false,
|
|
193
|
+
"orderlinestatus": false,
|
|
194
|
+
"vatisagnstcancsales": false,
|
|
195
|
+
"vatispurcexempted": false,
|
|
196
|
+
"isvatrestaxinvoice": false,
|
|
197
|
+
"vatisassesablecalcvch": false,
|
|
198
|
+
"isvatdutypaid": true,
|
|
199
|
+
"isdeliverysameasconsignee": false,
|
|
200
|
+
"isdispatchsameasconsignor": false,
|
|
201
|
+
"isdeletedvchretained": false,
|
|
202
|
+
"vchonlyaddlinfoupdated": false,
|
|
203
|
+
"changevchmode": false,
|
|
204
|
+
"resetirnqrcode": false,
|
|
205
|
+
"vouchernumberseries": "Default",
|
|
206
|
+
"allinventoryentries": [],
|
|
207
|
+
"ledgerentries": [],
|
|
208
|
+
"gst": [
|
|
209
|
+
{
|
|
210
|
+
"purposetype": "GST",
|
|
211
|
+
"stat": [
|
|
212
|
+
{
|
|
213
|
+
"purposetype": "GST",
|
|
214
|
+
"statkey": "\u0004 Auto Stat Number",
|
|
215
|
+
"isfetchedonly": false,
|
|
216
|
+
"isdeleted": false,
|
|
217
|
+
"tallycontentuser": []
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
{
|
|
2
|
+
"static_variables": [
|
|
3
|
+
{
|
|
4
|
+
"name": "svVchImportFormat",
|
|
5
|
+
"value": "json"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"name": "svCurrentCompany",
|
|
9
|
+
"value": "Mani9"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"tallymessage": [
|
|
13
|
+
{
|
|
14
|
+
"metadata": {
|
|
15
|
+
"type": "Voucher",
|
|
16
|
+
"vchtype": "Gst Sales E",
|
|
17
|
+
"action": "Create",
|
|
18
|
+
"objview": "Invoice Voucher View"
|
|
19
|
+
},
|
|
20
|
+
"address": [
|
|
21
|
+
{
|
|
22
|
+
"metadata": true,
|
|
23
|
+
"type": "String"
|
|
24
|
+
},
|
|
25
|
+
"Tallarevu"
|
|
26
|
+
],
|
|
27
|
+
"basicbuyeraddress": [
|
|
28
|
+
{
|
|
29
|
+
"metadata": true,
|
|
30
|
+
"type": "String"
|
|
31
|
+
},
|
|
32
|
+
"Tallarevu"
|
|
33
|
+
],
|
|
34
|
+
"oldauditentryids": [
|
|
35
|
+
{
|
|
36
|
+
"metadata": true,
|
|
37
|
+
"type": "Number"
|
|
38
|
+
},
|
|
39
|
+
"-1"
|
|
40
|
+
],
|
|
41
|
+
"date": "20260320",
|
|
42
|
+
"vchstatusdate": "20260320",
|
|
43
|
+
"gstregistrationtype": "Unregistered/Consumer",
|
|
44
|
+
"vatdealertype": "Regular",
|
|
45
|
+
"statename": "Andhra Pradesh",
|
|
46
|
+
"countryofresidence": "India",
|
|
47
|
+
"placeofsupply": "Andhra Pradesh",
|
|
48
|
+
"vouchertypename": "Gst Sales E",
|
|
49
|
+
"classname": "GST",
|
|
50
|
+
"partyname": "{KeshavSoft}",
|
|
51
|
+
"gstregistration": {
|
|
52
|
+
"value": "Andhra Pradesh Registration",
|
|
53
|
+
"taxtype": "GST",
|
|
54
|
+
"taxregistration": "37ABPPN4785P1ZH"
|
|
55
|
+
},
|
|
56
|
+
"cmpgstin": "37ABPPN4785P1ZH",
|
|
57
|
+
"partyledgername": "{KeshavSoft}",
|
|
58
|
+
"basicbuyername": "{KeshavSoft}",
|
|
59
|
+
"cmpgstregistrationtype": "Regular",
|
|
60
|
+
"partymailingname": "{KeshavSoft}",
|
|
61
|
+
"partypincode": "533001",
|
|
62
|
+
"consigneemailingname": "{KeshavSoft}",
|
|
63
|
+
"consigneepincode": "533001",
|
|
64
|
+
"consigneestatename": "Andhra Pradesh",
|
|
65
|
+
"cmpgststate": "Andhra Pradesh",
|
|
66
|
+
"consigneecountryname": "India",
|
|
67
|
+
"basicbasepartyname": "{KeshavSoft}",
|
|
68
|
+
"numberingstyle": "Auto Retain",
|
|
69
|
+
"cstformissuetype": "\u0004 Not Applicable",
|
|
70
|
+
"cstformrecvtype": "\u0004 Not Applicable",
|
|
71
|
+
"fbtpaymenttype": "Default",
|
|
72
|
+
"persistedview": "Invoice Voucher View",
|
|
73
|
+
"vchstatustaxadjustment": "Default",
|
|
74
|
+
"vchstatusvouchertype": "Gst Sales E",
|
|
75
|
+
"vchstatustaxunit": "Andhra Pradesh Registration",
|
|
76
|
+
"vchgstclass": "\u0004 Not Applicable",
|
|
77
|
+
"vchentrymode": "Item Invoice",
|
|
78
|
+
"diffactualqty": false,
|
|
79
|
+
"ismstfromsync": false,
|
|
80
|
+
"isdeleted": false,
|
|
81
|
+
"issecurityonwhenentered": false,
|
|
82
|
+
"asoriginal": false,
|
|
83
|
+
"audited": false,
|
|
84
|
+
"iscommonparty": false,
|
|
85
|
+
"forjobcosting": false,
|
|
86
|
+
"isoptional": false,
|
|
87
|
+
"effectivedate": "20260320",
|
|
88
|
+
"useforexcise": false,
|
|
89
|
+
"isforjobworkin": false,
|
|
90
|
+
"allowconsumption": false,
|
|
91
|
+
"useforinterest": false,
|
|
92
|
+
"useforgainloss": false,
|
|
93
|
+
"useforgodowntransfer": false,
|
|
94
|
+
"useforcompound": false,
|
|
95
|
+
"useforservicetax": false,
|
|
96
|
+
"isreversechargeapplicable": false,
|
|
97
|
+
"issystem": false,
|
|
98
|
+
"isfetchedonly": false,
|
|
99
|
+
"isgstoverridden": false,
|
|
100
|
+
"iscancelled": false,
|
|
101
|
+
"isonhold": false,
|
|
102
|
+
"issummary": false,
|
|
103
|
+
"isecommercesupply": false,
|
|
104
|
+
"isboenotapplicable": false,
|
|
105
|
+
"isgstsecsevenapplicable": false,
|
|
106
|
+
"ignoreeinvvalidation": false,
|
|
107
|
+
"cmpgstisothterritoryassessee": false,
|
|
108
|
+
"partygstisothterritoryassessee": false,
|
|
109
|
+
"irnjsonexported": false,
|
|
110
|
+
"irncancelled": false,
|
|
111
|
+
"ignoregstconflictinmig": false,
|
|
112
|
+
"isopbaltransaction": false,
|
|
113
|
+
"ignoregstformatvalidation": false,
|
|
114
|
+
"iseligibleforitc": true,
|
|
115
|
+
"ignoregstoptionaluncertain": false,
|
|
116
|
+
"updatesummaryvalues": false,
|
|
117
|
+
"isewaybillapplicable": false,
|
|
118
|
+
"isdeletedretained": false,
|
|
119
|
+
"isnull": false,
|
|
120
|
+
"isexcisevoucher": false,
|
|
121
|
+
"excisetaxoverride": false,
|
|
122
|
+
"usefortaxunittransfer": false,
|
|
123
|
+
"isexer1nopoverwrite": false,
|
|
124
|
+
"isexf2nopoverwrite": false,
|
|
125
|
+
"isexer3nopoverwrite": false,
|
|
126
|
+
"ignoreposvalidation": false,
|
|
127
|
+
"exciseopening": false,
|
|
128
|
+
"useforfinalproduction": false,
|
|
129
|
+
"istdsoverridden": false,
|
|
130
|
+
"istcsoverridden": false,
|
|
131
|
+
"istdstcscashvch": false,
|
|
132
|
+
"includeadvpymtvch": false,
|
|
133
|
+
"issubworkscontract": false,
|
|
134
|
+
"isvatoverridden": false,
|
|
135
|
+
"ignoreorigvchdate": false,
|
|
136
|
+
"isvatpaidatcustoms": false,
|
|
137
|
+
"isdeclaredtocustoms": false,
|
|
138
|
+
"vatadvancepayment": false,
|
|
139
|
+
"vatadvpay": false,
|
|
140
|
+
"iscstdelcaredgoodssales": false,
|
|
141
|
+
"isvatrestaxinv": false,
|
|
142
|
+
"isservicetaxoverridden": false,
|
|
143
|
+
"isisdvoucher": false,
|
|
144
|
+
"isexciseoverridden": false,
|
|
145
|
+
"isexcisesupplyvch": false,
|
|
146
|
+
"gstnotexported": false,
|
|
147
|
+
"ignoregstinvalidation": false,
|
|
148
|
+
"isgstrefund": false,
|
|
149
|
+
"ovrdnewaybillapplicability": false,
|
|
150
|
+
"isvatprincipalaccount": false,
|
|
151
|
+
"vchstatusisvchnumused": false,
|
|
152
|
+
"vchgststatusisincluded": true,
|
|
153
|
+
"vchgststatusisuncertain": false,
|
|
154
|
+
"vchgststatusisexcluded": false,
|
|
155
|
+
"vchgststatusisapplicable": true,
|
|
156
|
+
"vchgststatusisgstr2breconciled": false,
|
|
157
|
+
"vchgststatusisgstr2bonlyinportal": false,
|
|
158
|
+
"vchgststatusisgstr2bonlyinbooks": false,
|
|
159
|
+
"vchgststatusisgstr2bmismatch": false,
|
|
160
|
+
"vchgststatusisgstr2bindiffperiod": false,
|
|
161
|
+
"vchgststatusisreteffdateoverrdn": false,
|
|
162
|
+
"vchgststatusisoverrdn": false,
|
|
163
|
+
"vchgststatusisstatindiffdate": false,
|
|
164
|
+
"vchgststatusisretindiffdate": false,
|
|
165
|
+
"vchgststatusmainsectionexcluded": false,
|
|
166
|
+
"vchgststatusisbranchtransferout": false,
|
|
167
|
+
"vchgststatusissystemsummary": false,
|
|
168
|
+
"vchstatusisunregisteredrcm": false,
|
|
169
|
+
"vchstatusisoptional": false,
|
|
170
|
+
"vchstatusiscancelled": false,
|
|
171
|
+
"vchstatusisdeleted": false,
|
|
172
|
+
"vchstatusisopeningbalance": false,
|
|
173
|
+
"vchstatusisfetchedonly": false,
|
|
174
|
+
"vchgststatusisoptionaluncertain": false,
|
|
175
|
+
"vchstatusisreacceptforhsndone": false,
|
|
176
|
+
"vchstatusisreaccephsnsixonedone": true,
|
|
177
|
+
"paymentlinkhasmultiref": false,
|
|
178
|
+
"isshippingwithinstate": false,
|
|
179
|
+
"isoverseastouristtrans": false,
|
|
180
|
+
"isdesignatedzoneparty": false,
|
|
181
|
+
"hascashflow": false,
|
|
182
|
+
"ispostdated": false,
|
|
183
|
+
"usetrackingnumber": false,
|
|
184
|
+
"isinvoice": true,
|
|
185
|
+
"mfgjournal": false,
|
|
186
|
+
"hasdiscounts": false,
|
|
187
|
+
"aspayslip": false,
|
|
188
|
+
"iscostcentre": false,
|
|
189
|
+
"isstxnonrealizedvch": false,
|
|
190
|
+
"isexcisemanufactureron": false,
|
|
191
|
+
"isblankcheque": false,
|
|
192
|
+
"isvoid": false,
|
|
193
|
+
"orderlinestatus": false,
|
|
194
|
+
"vatisagnstcancsales": false,
|
|
195
|
+
"vatispurcexempted": false,
|
|
196
|
+
"isvatrestaxinvoice": false,
|
|
197
|
+
"vatisassesablecalcvch": false,
|
|
198
|
+
"isvatdutypaid": true,
|
|
199
|
+
"isdeliverysameasconsignee": false,
|
|
200
|
+
"isdispatchsameasconsignor": false,
|
|
201
|
+
"isdeletedvchretained": false,
|
|
202
|
+
"vchonlyaddlinfoupdated": false,
|
|
203
|
+
"changevchmode": false,
|
|
204
|
+
"resetirnqrcode": false,
|
|
205
|
+
"vouchernumberseries": "Default",
|
|
206
|
+
"allinventoryentries": [],
|
|
207
|
+
"ledgerentries": [],
|
|
208
|
+
"gst": [
|
|
209
|
+
{
|
|
210
|
+
"purposetype": "GST",
|
|
211
|
+
"stat": [
|
|
212
|
+
{
|
|
213
|
+
"purposetype": "GST",
|
|
214
|
+
"statkey": "\u0004 Auto Stat Number",
|
|
215
|
+
"isfetchedonly": false,
|
|
216
|
+
"isdeleted": false,
|
|
217
|
+
"tallycontentuser": []
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
}
|