Skip to content

Commit

Permalink
Merge branch 'main' into feat/khcp-13108-ktableview-expandable-rows
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM authored Sep 12, 2024
2 parents 4505507 + e41db18 commit 6f39bb6
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 26 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [9.6.4](https://github.com/Kong/kongponents/compare/v9.6.3...v9.6.4) (2024-09-11)


### Bug Fixes

* **skeleton:** layout shifting due to delayed rendering ([#2383](https://github.com/Kong/kongponents/issues/2383)) ([77c4a20](https://github.com/Kong/kongponents/commit/77c4a204a88c4b223db5744afd1c11638dce41d2))

## [9.6.3](https://github.com/Kong/kongponents/compare/v9.6.2...v9.6.3) (2024-09-11)


Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kong/kongponents",
"version": "9.6.3",
"version": "9.6.4",
"description": "Kong Component library",
"type": "module",
"repository": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"focus-trap": "^7.5.4",
"focus-trap-vue": "^4.0.3",
"nanoid": "^5.0.7",
"sortablejs": "^1.15.2",
"sortablejs": "^1.15.3",
"swrv": "^1.0.4",
"v-calendar": "^3.1.2",
"vue-bind-once": "^0.2.1",
Expand All @@ -79,14 +79,14 @@
"@cypress/vite-dev-server": "^5.2.0",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.7.14",
"@kong-ui-public/sandbox-layout": "^2.1.24",
"@kong-ui-public/sandbox-layout": "^2.1.25",
"@kong/design-tokens": "^1.17.2",
"@kong/eslint-config-kong-ui": "^1.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/stylelint-plugin": "^3.0.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.16.2",
"@types/node": "^20.16.3",
"@types/sortablejs": "^1.15.8",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/compiler-core": "^3.4.38",
Expand Down
42 changes: 21 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/components/KSkeleton/KSkeleton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,12 @@ const props = defineProps({
},
})
const isVisible = ref(false)
const isVisible = ref(props.delayMilliseconds === 0)
onMounted(() => {
if (isVisible.value) {
return
}
setTimeout(() => {
isVisible.value = true
}, props.delayMilliseconds)
Expand Down

0 comments on commit 6f39bb6

Please sign in to comment.