@ngockhoale/ukit 1.1.6
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/CHANGELOG.md +179 -0
- package/LICENSE +21 -0
- package/README.md +189 -0
- package/bin/ukit +30 -0
- package/manifests/platform.full.yaml +1194 -0
- package/package.json +71 -0
- package/scripts/bug/triage.mjs +37 -0
- package/scripts/index/build-index.mjs +35 -0
- package/scripts/index/query-index.mjs +92 -0
- package/scripts/index/refresh-index.mjs +85 -0
- package/scripts/release/verify-release.mjs +56 -0
- package/src/bug/triageBug.js +123 -0
- package/src/cli/adapters.js +148 -0
- package/src/cli/commands/diff.js +51 -0
- package/src/cli/commands/doctor.js +125 -0
- package/src/cli/commands/indexArgs.js +73 -0
- package/src/cli/commands/indexTools.js +509 -0
- package/src/cli/commands/install.js +293 -0
- package/src/cli/commands/memory.js +126 -0
- package/src/cli/commands/status.js +8 -0
- package/src/cli/commands/uninstall.js +51 -0
- package/src/cli/index.js +109 -0
- package/src/context/detectProjectContext.js +49 -0
- package/src/context/detectProviders.js +12 -0
- package/src/core/applyPlan.js +89 -0
- package/src/core/buildPlan.js +228 -0
- package/src/core/compact/index.js +294 -0
- package/src/core/compact/threshold.js +936 -0
- package/src/core/diffPlan.js +73 -0
- package/src/core/ensureGitignore.js +117 -0
- package/src/core/fileOps.js +188 -0
- package/src/core/memory/hygiene.js +160 -0
- package/src/core/memory/index.js +2 -0
- package/src/core/memory/retrieval.js +476 -0
- package/src/core/memory/store.js +202 -0
- package/src/core/metadata.js +132 -0
- package/src/core/migrateLegacy.js +139 -0
- package/src/core/output/index.js +1309 -0
- package/src/core/paths.js +13 -0
- package/src/core/report.js +17 -0
- package/src/core/router/advisor.js +42 -0
- package/src/core/router/index.js +2 -0
- package/src/core/router/router.js +164 -0
- package/src/core/runInstallPipeline.js +365 -0
- package/src/core/runtimeConfig.js +190 -0
- package/src/core/runtimePaths.js +24 -0
- package/src/core/status.js +186 -0
- package/src/core/token/index.js +328 -0
- package/src/core/uninstall.js +246 -0
- package/src/core/validation/confidence.js +89 -0
- package/src/core/validation/index.js +2 -0
- package/src/core/validation/validator.js +165 -0
- package/src/index/buildIndex.js +1392 -0
- package/src/index/gitHooks.js +109 -0
- package/src/index/importResolution.js +377 -0
- package/src/index/languageTools.js +127 -0
- package/src/index/paths.js +27 -0
- package/src/index/queryIndex.js +637 -0
- package/src/index/relatedTests.js +237 -0
- package/src/index/resolveContext.js +345 -0
- package/src/index/routeCatalog.js +258 -0
- package/src/index/taskRouting.js +677 -0
- package/src/index/verificationPlan.js +437 -0
- package/src/manifest/loadManifest.js +22 -0
- package/src/manifest/selectItems.js +78 -0
- package/src/manifest/validateManifest.js +115 -0
- package/src/render/buildVariables.js +39 -0
- package/src/render/renderTemplate.js +44 -0
- package/src/stack/detectStack.js +213 -0
- package/templates/.claude/agents/bug-debugger.md +57 -0
- package/templates/.claude/agents/feature-implementer.md +55 -0
- package/templates/.claude/config/providers.md +25 -0
- package/templates/.claude/hooks/auto-allow-bash.sh +155 -0
- package/templates/.claude/hooks/auto-prune-bash.sh +75 -0
- package/templates/.claude/hooks/block-dangerous.sh +54 -0
- package/templates/.claude/hooks/compress-output.sh +17 -0
- package/templates/.claude/hooks/protect-files.sh +37 -0
- package/templates/.claude/hooks/reinject-context.sh +28 -0
- package/templates/.claude/hooks/session-start.md +13 -0
- package/templates/.claude/hooks/skill-router.sh +1681 -0
- package/templates/.claude/hooks/verification-guard.sh +271 -0
- package/templates/.claude/settings.json +144 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/mce/mc.xsd +75 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/pack.py +159 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/unpack.py +29 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validate.py +69 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/__init__.py +15 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/base.py +951 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/docx.py +274 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/pptx.py +315 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/redlining.py +279 -0
- package/templates/.claude/skills/backend-api/SKILL.md +26 -0
- package/templates/.claude/skills/canvas-design/LICENSE.txt +202 -0
- package/templates/.claude/skills/canvas-design/SKILL.md +130 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/templates/.claude/skills/code-review/SKILL.md +97 -0
- package/templates/.claude/skills/debugging-toolkit/SKILL.md +156 -0
- package/templates/.claude/skills/delivery/SKILL.md +92 -0
- package/templates/.claude/skills/discover-security/SKILL.md +86 -0
- package/templates/.claude/skills/docker-packaging/SKILL.md +60 -0
- package/templates/.claude/skills/docs-manager/SKILL.md +465 -0
- package/templates/.claude/skills/docs-manager/init-project-docs.sh +70 -0
- package/templates/.claude/skills/docs-manager/templates/README.md.template +50 -0
- package/templates/.claude/skills/docs-manager/templates/agent-roles.md.template +24 -0
- package/templates/.claude/skills/docs-manager/templates/coding-conventions.md.template +28 -0
- package/templates/.claude/skills/docs-manager/templates/memory.md.template +30 -0
- package/templates/.claude/skills/docs-manager/templates/onboarding.md.template +20 -0
- package/templates/.claude/skills/docs-manager/templates/project.md.template +26 -0
- package/templates/.claude/skills/docs-quality/SKILL.md +148 -0
- package/templates/.claude/skills/docx/LICENSE.txt +30 -0
- package/templates/.claude/skills/docx/SKILL.md +197 -0
- package/templates/.claude/skills/docx/docx-js.md +350 -0
- package/templates/.claude/skills/docx/ooxml.md +610 -0
- package/templates/.claude/skills/docx/scripts/__init__.py +1 -0
- package/templates/.claude/skills/docx/scripts/document.py +1276 -0
- package/templates/.claude/skills/docx/scripts/templates/comments.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/people.xml +3 -0
- package/templates/.claude/skills/docx/scripts/utilities.py +374 -0
- package/templates/.claude/skills/duraone/SKILL.md +204 -0
- package/templates/.claude/skills/duraone/references/backend.md +636 -0
- package/templates/.claude/skills/duraone/references/frontend.md +1506 -0
- package/templates/.claude/skills/duraone/references/sql.md +631 -0
- package/templates/.claude/skills/duraone/references/workflow.md +520 -0
- package/templates/.claude/skills/executing-plans/SKILL.md +76 -0
- package/templates/.claude/skills/file-organizer/SKILL.md +433 -0
- package/templates/.claude/skills/frontend/SKILL.md +26 -0
- package/templates/.claude/skills/frontend-design/LICENSE.txt +177 -0
- package/templates/.claude/skills/frontend-design/SKILL.md +42 -0
- package/templates/.claude/skills/frontend-vue/SKILL.md +127 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Box.vue +137 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Button.vue +93 -0
- package/templates/.claude/skills/frontend-vue/components/Control/ButtonBar.vue +29 -0
- package/templates/.claude/skills/frontend-vue/components/Control/ButtonFloat.vue +62 -0
- package/templates/.claude/skills/frontend-vue/components/Control/CheckButton.vue +75 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Checkbox.vue +58 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Datetime.vue +148 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Dropdownlist.vue +156 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Input.vue +106 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Label.vue +38 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Master/BoxColumn.vue +24 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Confirm.vue +33 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Info.vue +32 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/ModalInfo.vue +39 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Reject.vue +64 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Tag.vue +82 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Upload.vue +61 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/Dropdownlist.vue +103 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/PagingBar.vue +108 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/UploadImage.vue +137 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/AG.vue +806 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/AntTable.vue +253 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/CustomDropdownEditor.vue +43 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/CustomDropdownEditorEnable.vue +55 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/HtmlTable.vue +40 -0
- package/templates/.claude/skills/frontend-vue/components/PDFViewer.vue +25 -0
- package/templates/.claude/skills/frontend-vue/components/Panel/FormView.vue +309 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Footer.vue +23 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Header.vue +265 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Sidebar.vue +122 -0
- package/templates/.claude/skills/frontend-vue/components/Template.vue +16 -0
- package/templates/.claude/skills/frontend-vue/components/View/Form.vue +89 -0
- package/templates/.claude/skills/frontend-vue/composables/indexDBStore.js +140 -0
- package/templates/.claude/skills/frontend-vue/composables/masterApi.js +362 -0
- package/templates/.claude/skills/frontend-vue/composables/state.js +578 -0
- package/templates/.claude/skills/frontend-vue/composables/useRequest.js +221 -0
- package/templates/.claude/skills/frontend-vue/composables/useSession.js +179 -0
- package/templates/.claude/skills/frontend-vue/composables/useTranslation.js +54 -0
- package/templates/.claude/skills/frontend-vue/composables/useWebSocket.js +257 -0
- package/templates/.claude/skills/frontend-vue/composables/userObj.js +111 -0
- package/templates/.claude/skills/frontend-vue/composables/utils.js +322 -0
- package/templates/.claude/skills/frontend-vue/reference/composables-example.vue +320 -0
- package/templates/.claude/skills/frontend-vue/reference/form-example.vue +183 -0
- package/templates/.claude/skills/frontend-vue/reference/grid-example.vue +147 -0
- package/templates/.claude/skills/frontend-vue/reference/masterdata-example/[id].vue +106 -0
- package/templates/.claude/skills/frontend-vue/reference/masterdata-example/index.vue +58 -0
- package/templates/.claude/skills/frontend-vue/reference/popup-example.vue +159 -0
- package/templates/.claude/skills/pdf/LICENSE.txt +30 -0
- package/templates/.claude/skills/pdf/SKILL.md +294 -0
- package/templates/.claude/skills/pdf/forms.md +205 -0
- package/templates/.claude/skills/pdf/reference.md +612 -0
- package/templates/.claude/skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/templates/.claude/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/templates/.claude/skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/templates/.claude/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/templates/.claude/skills/pdf/scripts/create_validation_image.py +41 -0
- package/templates/.claude/skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/templates/.claude/skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/templates/.claude/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/templates/.claude/skills/pdf-processing/SKILL.md +107 -0
- package/templates/.claude/skills/pdf-processing-pro/FORMS.md +610 -0
- package/templates/.claude/skills/pdf-processing-pro/OCR.md +137 -0
- package/templates/.claude/skills/pdf-processing-pro/SKILL.md +296 -0
- package/templates/.claude/skills/pdf-processing-pro/TABLES.md +626 -0
- package/templates/.claude/skills/pdf-processing-pro/scripts/analyze_form.py +307 -0
- package/templates/.claude/skills/postgres/SKILL.md +69 -0
- package/templates/.claude/skills/postgres/reference/fn_get_examples.sql +208 -0
- package/templates/.claude/skills/postgres/reference/fn_rpt_examples.sql +239 -0
- package/templates/.claude/skills/postgres/reference/utility_functions.sql +94 -0
- package/templates/.claude/skills/pptx/LICENSE.txt +30 -0
- package/templates/.claude/skills/pptx/SKILL.md +484 -0
- package/templates/.claude/skills/pptx/html2pptx.md +625 -0
- package/templates/.claude/skills/pptx/ooxml.md +427 -0
- package/templates/.claude/skills/pptx/scripts/html2pptx.js +979 -0
- package/templates/.claude/skills/pptx/scripts/inventory.py +1020 -0
- package/templates/.claude/skills/pptx/scripts/rearrange.py +231 -0
- package/templates/.claude/skills/pptx/scripts/replace.py +385 -0
- package/templates/.claude/skills/pptx/scripts/thumbnail.py +450 -0
- package/templates/.claude/skills/repo-maintenance/SKILL.md +97 -0
- package/templates/.claude/skills/research/EXAMPLES.md +434 -0
- package/templates/.claude/skills/research/REFERENCE.md +399 -0
- package/templates/.claude/skills/research/SKILL.md +136 -0
- package/templates/.claude/skills/root-cause-tracing/SKILL.md +174 -0
- package/templates/.claude/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/templates/.claude/skills/sharing-skills/SKILL.md +194 -0
- package/templates/.claude/skills/sql-optimization-patterns/SKILL.md +493 -0
- package/templates/.claude/skills/subagent-driven-development/SKILL.md +189 -0
- package/templates/.claude/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/templates/.claude/skills/systematic-debugging/SKILL.md +295 -0
- package/templates/.claude/skills/systematic-debugging/test-academic.md +14 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/templates/.claude/skills/test-driven-development/SKILL.md +364 -0
- package/templates/.claude/skills/testing-anti-patterns/SKILL.md +302 -0
- package/templates/.claude/skills/testing-quality/SKILL.md +97 -0
- package/templates/.claude/skills/verification-before-completion/SKILL.md +139 -0
- package/templates/.claude/skills/webapp-testing/LICENSE.txt +202 -0
- package/templates/.claude/skills/webapp-testing/SKILL.md +96 -0
- package/templates/.claude/skills/webapp-testing/examples/console_logging.py +35 -0
- package/templates/.claude/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/templates/.claude/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/templates/.claude/skills/webapp-testing/scripts/with_server.py +106 -0
- package/templates/.claude/ukit/index/build-index.mjs +28 -0
- package/templates/.claude/ukit/index/cache-utils.mjs +140 -0
- package/templates/.claude/ukit/index/lib/index-core.mjs +2800 -0
- package/templates/.claude/ukit/index/query-index.mjs +150 -0
- package/templates/.claude/ukit/index/refresh-index.mjs +57 -0
- package/templates/.claude/ukit/index/reset-auto-permissions.mjs +76 -0
- package/templates/.claude/ukit/index/resolve-context.mjs +279 -0
- package/templates/.claude/ukit/index/route-catalog.mjs +258 -0
- package/templates/.claude/ukit/index/route-task.mjs +1994 -0
- package/templates/.claude/ukit/index/triage.mjs +133 -0
- package/templates/.claude/ukit/index/verify-context.mjs +689 -0
- package/templates/.claude/ukit/runtime/compact-threshold.mjs +1013 -0
- package/templates/.claude/ukit/runtime/output-compression.mjs +1340 -0
- package/templates/.claude/ukit/runtime/reinject-context.mjs +874 -0
- package/templates/.claude/ukit/runtime/token-utils.mjs +500 -0
- package/templates/.codex/README.md +83 -0
- package/templates/.codex/settings.json +187 -0
- package/templates/.gitignore +75 -0
- package/templates/AGENTS.md +116 -0
- package/templates/CLAUDE.md +93 -0
- package/templates/adapter-presets/antigravity/README.md +22 -0
- package/templates/adapter-presets/antigravity/rules.md +49 -0
- package/templates/adapter-presets/claude/settings.local.json +42 -0
- package/templates/adapter-presets/codex/settings.local.json +6 -0
- package/templates/adapter-presets/opencode/opencode.template.json +1 -0
- package/templates/docs/BUGFIX.md +20 -0
- package/templates/docs/BUG_INDEX.md +12 -0
- package/templates/docs/BUG_METRICS.md +7 -0
- package/templates/docs/BUG_TEMPLATE.md +13 -0
- package/templates/docs/CODE_MAP.md +35 -0
- package/templates/docs/INSTALL.md +113 -0
- package/templates/docs/MEMORY.md +49 -0
- package/templates/docs/PROJECT.md +50 -0
- package/templates/docs/UKIT_USAGE_GUIDE.md +147 -0
- package/templates/docs/WORKLOG.md +10 -0
- package/templates/ukit/README.md +14 -0
- package/templates/ukit/storage/cache/compact-history.json +3 -0
- package/templates/ukit/storage/cache/compact-pressure.json +1 -0
- package/templates/ukit/storage/cache/output-history.json +3 -0
- package/templates/ukit/storage/cache/prompt-cache.json +3 -0
- package/templates/ukit/storage/config.json +37 -0
- package/templates/ukit/storage/memory/projects/.gitkeep +2 -0
- package/templates/ukit/storage/memory/sessions/.gitkeep +0 -0
- package/templates/ukit/storage/memory/user.json +5 -0
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="row">
|
|
3
|
+
<a-table :ref="ref" :scroll="{ x: 240 }" bordered :dataSource="computed_rows" :columns="computed_columns" :pagination="pagination" :is_checkbox="is_checkbox" @change="handleTableChange">
|
|
4
|
+
<template #customFilterDropdown="{ setSelectedKeys, selectedKeys, confirm, clearFilters, column }">
|
|
5
|
+
<div style="padding: 8px">
|
|
6
|
+
<a-input
|
|
7
|
+
ref="searchInput"
|
|
8
|
+
:placeholder="`Search ${column.dataIndex}`"
|
|
9
|
+
:value="selectedKeys[0]"
|
|
10
|
+
style="width: 188px; margin-bottom: 8px; display: block"
|
|
11
|
+
@change="(e) => setSelectedKeys(e.target.value ? [e.target.value] : [])"
|
|
12
|
+
@pressEnter="handleSearch(selectedKeys, confirm, column.dataIndex)" />
|
|
13
|
+
<a-button type="primary" size="small" style="width: 90px; margin-right: 8px" @click="handleSearch(selectedKeys, confirm, column.dataIndex)"> Search </a-button>
|
|
14
|
+
<a-button size="small" style="width: 90px" @click="handleReset(clearFilters, confirm)"> Reset </a-button>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
<template v-if="is_checkbox" #headerCell="{ column }">
|
|
18
|
+
<template v-if="column.key === 'checkbox'">
|
|
19
|
+
<a-checkbox :checked="is_select_all" @change="selectAll"></a-checkbox>
|
|
20
|
+
</template>
|
|
21
|
+
</template>
|
|
22
|
+
<template #bodyCell="{ column, record }">
|
|
23
|
+
<template v-if="column.key === 'checkbox' && is_checkbox">
|
|
24
|
+
<a-checkbox :checked="record.selected" @change="onSelectChange(record, $event)"></a-checkbox>
|
|
25
|
+
</template>
|
|
26
|
+
<template v-if="column.key === 'edit' && is_edit">
|
|
27
|
+
<button style="'min-width: 108px; background-color:' + color + ';'" class="btn btn-flat btn-small" @click="handleClickEdit(record)">
|
|
28
|
+
<svg style="height: 20px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
29
|
+
<path
|
|
30
|
+
d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z" />
|
|
31
|
+
</svg>
|
|
32
|
+
</button>
|
|
33
|
+
</template>
|
|
34
|
+
<template v-if="column.type === 'date'"> {{ get_date_format(record[column.key]) }} </template>
|
|
35
|
+
</template>
|
|
36
|
+
</a-table>
|
|
37
|
+
<div class="pagination-container mb-5 mt-3">
|
|
38
|
+
<a-button v-if="is_export" type="primary" style="background-color: #2e86c1" size="medium" @click="handleExport()">Excel</a-button>
|
|
39
|
+
<span v-if="export_err_msg !== ''" style="color: red">{{ export_err_msg }}</span>
|
|
40
|
+
<span v-if="pagination.total > 0">
|
|
41
|
+
Total: <span style="font-weight: bold; color: #2e86c1">{{ pagination.total }}</span>
|
|
42
|
+
</span>
|
|
43
|
+
<a-pagination v-if="pagination.total > 0" :current="pagination.current" :total="pagination.total" :pageSize="pagination.pageSize" show-size-changer :page-size-options="pagination.pageSizeOptions" @change="handlePageChange" />
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</template>
|
|
47
|
+
<script>
|
|
48
|
+
import { v4 as uuidv4 } from "uuid";
|
|
49
|
+
// import { utils, writeFile } from "xlsx";
|
|
50
|
+
import dayjs from "dayjs";
|
|
51
|
+
export default {
|
|
52
|
+
computed: {
|
|
53
|
+
computed_columns() {
|
|
54
|
+
for (let i = 0; i < this.columns.length; i++) {
|
|
55
|
+
this.columns[i]["customFilterDropdown"] = true;
|
|
56
|
+
this.columns[i]["onFilter"] = (value, record) => record[this.columns[i]["key"]].toString().trim().toLowerCase().includes(value.toLowerCase().trim());
|
|
57
|
+
this.columns[i]["sorter"] = (a, b) => {
|
|
58
|
+
const valueA = a[this.columns[i]["key"]] ?? 0;
|
|
59
|
+
const valueB = b[this.columns[i]["key"]] ?? 0;
|
|
60
|
+
if (typeof valueA === "number" && typeof valueB === "number") {
|
|
61
|
+
return valueA - valueB;
|
|
62
|
+
} else {
|
|
63
|
+
return String(valueA).localeCompare(String(valueB));
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
let result = this.columns.slice();
|
|
68
|
+
if (this.is_checkbox) {
|
|
69
|
+
result.unshift({
|
|
70
|
+
key: "checkbox",
|
|
71
|
+
dataIndex: "checkbox",
|
|
72
|
+
title: "",
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
if (this.is_edit) {
|
|
76
|
+
result.unshift({
|
|
77
|
+
key: "edit",
|
|
78
|
+
dataIndex: "edit",
|
|
79
|
+
title: "Detail",
|
|
80
|
+
width: 80,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
return result;
|
|
84
|
+
},
|
|
85
|
+
computed_rows() {
|
|
86
|
+
return this.rows.slice();
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
props: {
|
|
90
|
+
rows: {
|
|
91
|
+
type: Array,
|
|
92
|
+
default: () => {
|
|
93
|
+
return [];
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
columns: {
|
|
97
|
+
type: Array,
|
|
98
|
+
default: () => {
|
|
99
|
+
return [];
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
is_checkbox: {
|
|
103
|
+
type: Boolean,
|
|
104
|
+
default: false,
|
|
105
|
+
},
|
|
106
|
+
is_edit: {
|
|
107
|
+
type: Boolean,
|
|
108
|
+
default: true,
|
|
109
|
+
},
|
|
110
|
+
is_export: {
|
|
111
|
+
type: Boolean,
|
|
112
|
+
default: true,
|
|
113
|
+
},
|
|
114
|
+
ref: {
|
|
115
|
+
type: String,
|
|
116
|
+
default: () => {
|
|
117
|
+
return uuidv4();
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
emits: ["onClickDetail", "onClickEdit"],
|
|
122
|
+
methods: {
|
|
123
|
+
resetErrorMsg() {
|
|
124
|
+
this.export_err_msg = "";
|
|
125
|
+
},
|
|
126
|
+
onClickDetail(record) {
|
|
127
|
+
this.$emit("onClickDetail", record);
|
|
128
|
+
},
|
|
129
|
+
handleClickEdit(record) {
|
|
130
|
+
this.$emit("onClickEdit", record);
|
|
131
|
+
},
|
|
132
|
+
handleTableChange(pagination) {
|
|
133
|
+
this.pagination = pagination;
|
|
134
|
+
},
|
|
135
|
+
onSelectChange(record, e) {
|
|
136
|
+
const checked = e.target.checked;
|
|
137
|
+
record.selected = checked;
|
|
138
|
+
this.updateSelectedRows();
|
|
139
|
+
},
|
|
140
|
+
handlePageChange(page, pageSize) {
|
|
141
|
+
this.pagination.current = page;
|
|
142
|
+
this.pagination.pageSize = pageSize;
|
|
143
|
+
// this.$refs[ref].setCurrentPage(page);
|
|
144
|
+
},
|
|
145
|
+
filterArrayToExport(toFilter, attributesToKeep) {
|
|
146
|
+
let filteredArray = toFilter.map((obj) => {
|
|
147
|
+
let filteredObj = {};
|
|
148
|
+
Object.entries(obj).forEach(([key, value]) => {
|
|
149
|
+
if (attributesToKeep.includes(key)) {
|
|
150
|
+
filteredObj[key] = value;
|
|
151
|
+
}
|
|
152
|
+
});
|
|
153
|
+
return filteredObj;
|
|
154
|
+
});
|
|
155
|
+
return filteredArray;
|
|
156
|
+
},
|
|
157
|
+
async handleExport() {
|
|
158
|
+
this.resetErrorMsg();
|
|
159
|
+
if (this.computed_rows.length === 0) {
|
|
160
|
+
this.export_err_msg = t("No data to export");
|
|
161
|
+
return;
|
|
162
|
+
}
|
|
163
|
+
let col_lst = this.columns.map((obj) => obj.dataIndex);
|
|
164
|
+
let to_export = this.filterArrayToExport(this.computed_rows, col_lst);
|
|
165
|
+
const fileName = "exported_data.xlsx";
|
|
166
|
+
// const worksheet = utils.json_to_sheet(to_export);
|
|
167
|
+
// const workbook = utils.book_new();
|
|
168
|
+
// utils.book_append_sheet(workbook, worksheet, "Sheet 1");
|
|
169
|
+
// writeFile(workbook, fileName);
|
|
170
|
+
},
|
|
171
|
+
selectAll(e) {
|
|
172
|
+
const checked = e.target.checked;
|
|
173
|
+
for (let i = 0; i < this.computed_rows.length; i++) {
|
|
174
|
+
this.computed_rows[i].selected = checked;
|
|
175
|
+
}
|
|
176
|
+
this.updateSelectedRows();
|
|
177
|
+
},
|
|
178
|
+
updateSelectedRows() {
|
|
179
|
+
this.selectedRows = this.computed_rows.filter((row) => row.selected);
|
|
180
|
+
},
|
|
181
|
+
handleSearch(selectedKeys, confirm, dataIndex) {
|
|
182
|
+
confirm();
|
|
183
|
+
},
|
|
184
|
+
handleReset(clearFilters, confirm) {
|
|
185
|
+
clearFilters({
|
|
186
|
+
confirm: true,
|
|
187
|
+
});
|
|
188
|
+
confirm();
|
|
189
|
+
},
|
|
190
|
+
get_date_format(record) {
|
|
191
|
+
return dayjs(record).format("DD/MM/YYYY");
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
data() {
|
|
195
|
+
return {
|
|
196
|
+
pagination: {
|
|
197
|
+
current: 1,
|
|
198
|
+
pageSize: 10,
|
|
199
|
+
total: 0,
|
|
200
|
+
pageSizeOptions: ["10", "20", "30", "40"],
|
|
201
|
+
},
|
|
202
|
+
is_select_all: false,
|
|
203
|
+
selectedRows: [],
|
|
204
|
+
export_err_msg: "",
|
|
205
|
+
};
|
|
206
|
+
},
|
|
207
|
+
watch: {
|
|
208
|
+
rows: {
|
|
209
|
+
deep: true,
|
|
210
|
+
handler(newVal) {
|
|
211
|
+
this.pagination.total = this.rows.length;
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
computed_rows() {
|
|
215
|
+
this.resetErrorMsg();
|
|
216
|
+
},
|
|
217
|
+
selectedRows() {
|
|
218
|
+
this.is_select_all = this.selectedRows.length > 0 ? true : false;
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
};
|
|
222
|
+
</script>
|
|
223
|
+
<style>
|
|
224
|
+
.ant-table-thead > tr > th {
|
|
225
|
+
background-color: #fafafa !important;
|
|
226
|
+
}
|
|
227
|
+
table {
|
|
228
|
+
box-shadow: 5px 10px 18px #888888;
|
|
229
|
+
border-radius: 20px;
|
|
230
|
+
border-collapse: collapse;
|
|
231
|
+
}
|
|
232
|
+
.ant-table-filter-trigger {
|
|
233
|
+
color: black !important;
|
|
234
|
+
}
|
|
235
|
+
.ant-table-filter-trigger.active {
|
|
236
|
+
color: #ff2718 !important;
|
|
237
|
+
}
|
|
238
|
+
.ant-table-column-sorter {
|
|
239
|
+
color: black !important;
|
|
240
|
+
}
|
|
241
|
+
.ant-table-column-sorter-up.active,
|
|
242
|
+
.ant-table-column-sorter-down.active {
|
|
243
|
+
color: #ff2718 !important;
|
|
244
|
+
}
|
|
245
|
+
.pagination-container {
|
|
246
|
+
display: flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
justify-content: space-between;
|
|
249
|
+
}
|
|
250
|
+
.ant-table-pagination {
|
|
251
|
+
display: none;
|
|
252
|
+
}
|
|
253
|
+
</style>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="custom-editor">
|
|
3
|
+
<ControlDropdownlist v-model="selectedValue" :list="options" :style="'width: '+params.column.actualWidth+'px;'" />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
props: ["params"],
|
|
10
|
+
data() {
|
|
11
|
+
return {
|
|
12
|
+
selectedValue: this.params.value,
|
|
13
|
+
options: this.params.options || [],
|
|
14
|
+
};
|
|
15
|
+
},
|
|
16
|
+
methods: {
|
|
17
|
+
getValue() {
|
|
18
|
+
return this.selectedValue;
|
|
19
|
+
},
|
|
20
|
+
isPopup() {
|
|
21
|
+
return true;
|
|
22
|
+
},
|
|
23
|
+
onChange() {
|
|
24
|
+
this.params.stopEditing(); // closes editor on change
|
|
25
|
+
},
|
|
26
|
+
onBlur() {
|
|
27
|
+
this.params.stopEditing();
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
watch: {
|
|
31
|
+
selectedValue() {
|
|
32
|
+
this.params.stopEditing();
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
</script>
|
|
37
|
+
|
|
38
|
+
<style scoped>
|
|
39
|
+
.custom-editor {
|
|
40
|
+
margin-top: -41px;
|
|
41
|
+
z-index: 9999;
|
|
42
|
+
}
|
|
43
|
+
</style>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="custom-dropdown-renderer" style="width: 100%; height: 100%">
|
|
3
|
+
<ControlDropdownlist class="cell-value" :disabled="!this.params.can_edit" v-model="selectedValue" :list="options" :style="'width: '+params.column.actualWidth+'px;' " />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
props: ["params"],
|
|
10
|
+
data() {
|
|
11
|
+
return {
|
|
12
|
+
selectedValue: this.params.value,
|
|
13
|
+
options: this.params.options || [],
|
|
14
|
+
};
|
|
15
|
+
},
|
|
16
|
+
watch: {
|
|
17
|
+
selectedValue() {
|
|
18
|
+
if (this.params.node && this.params.column) {
|
|
19
|
+
this.params.node.setDataValue(this.params.column.colId, this.selectedValue);
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
};
|
|
24
|
+
</script>
|
|
25
|
+
|
|
26
|
+
<style>
|
|
27
|
+
.dropdown-cell {
|
|
28
|
+
padding-left: 0 !important;
|
|
29
|
+
padding-right: 0 !important;
|
|
30
|
+
}
|
|
31
|
+
.custom-dropdown-renderer {
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
height: 100%;
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
.cell-value {
|
|
38
|
+
flex: 1;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
text-overflow: ellipsis;
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
}
|
|
43
|
+
.icon-right {
|
|
44
|
+
margin-left: auto;
|
|
45
|
+
color: #a2a0a0;
|
|
46
|
+
margin-top: 11px;
|
|
47
|
+
font-size: 1.2rem;
|
|
48
|
+
}
|
|
49
|
+
.icon-right-with-value {
|
|
50
|
+
margin-left: auto;
|
|
51
|
+
color: #a2a0a0;
|
|
52
|
+
margin-top: 1px;
|
|
53
|
+
font-size: 1.2rem;
|
|
54
|
+
}
|
|
55
|
+
</style>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<table class="table table-striped">
|
|
3
|
+
<thead>
|
|
4
|
+
<tr>
|
|
5
|
+
<th v-for="col in columns" :key="JSON.stringify(col)">
|
|
6
|
+
{{ col["caption"] }}
|
|
7
|
+
</th>
|
|
8
|
+
</tr>
|
|
9
|
+
</thead>
|
|
10
|
+
<tbody>
|
|
11
|
+
<tr v-for="row in rows" :key="JSON.stringify(row)">
|
|
12
|
+
<td v-for="col in columns" :key="JSON.stringify(col)">{{ row[col["field"]] }}</td>
|
|
13
|
+
</tr>
|
|
14
|
+
</tbody>
|
|
15
|
+
</table>
|
|
16
|
+
</template>
|
|
17
|
+
<script>
|
|
18
|
+
export default {
|
|
19
|
+
props: {
|
|
20
|
+
rows: {
|
|
21
|
+
type: Array,
|
|
22
|
+
default: () => {
|
|
23
|
+
return [];
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
columns: {
|
|
27
|
+
type: Array,
|
|
28
|
+
default: () => {
|
|
29
|
+
return [];
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
data() {
|
|
34
|
+
return {
|
|
35
|
+
loading: false,
|
|
36
|
+
key: 0,
|
|
37
|
+
};
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
</script>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<object :data="pdfPath" type="application/pdf" width="100%" :height="screen_height"></object>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
export default {
|
|
7
|
+
name: "PDFViewer",
|
|
8
|
+
props: {
|
|
9
|
+
pdfPath: {
|
|
10
|
+
type: String,
|
|
11
|
+
required: true,
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
data(){
|
|
15
|
+
return {
|
|
16
|
+
screen_height: '100px',
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
mounted() {
|
|
20
|
+
if (process.client) {
|
|
21
|
+
this.screen_height = (window.innerHeight-100).toString()+"px";
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
</script>
|