diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..6c754afeb --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: [zernonia] diff --git a/.histoire/package.json b/.histoire/package.json index 0cf080516..73b53094c 100644 --- a/.histoire/package.json +++ b/.histoire/package.json @@ -24,7 +24,7 @@ "autoprefixer": "^10.4.14", "eslint": "^8.43.0", "histoire": "^0.16.2", - "postcss": "^8.4.26", + "postcss": "^8.4.31", "tailwindcss": "^3.3.3", "vite": "^4.3.9", "vue": "^3.3.4" diff --git a/docs/.vitepress/contributors.ts b/docs/.vitepress/contributors.ts index 67906690e..bcfa617af 100644 --- a/docs/.vitepress/contributors.ts +++ b/docs/.vitepress/contributors.ts @@ -50,6 +50,7 @@ const plainTeamMembers: CoreTeam[] = [ github: 'zernonia', twitter: 'zernonia', desc: 'Core team member of Radix Vue', + sponsor: 'https://github.com/sponsors/zernonia', }, { avatar: contributorsAvatars.khairulhaaziq, diff --git a/docs/content/components/dialog.md b/docs/content/components/dialog.md index 6a00a1245..d8856a4c6 100644 --- a/docs/content/components/dialog.md +++ b/docs/content/components/dialog.md @@ -226,7 +226,29 @@ Contains content to be rendered in the open dialog Event handler called when the escape key is down. It can be prevented by calling event.preventDefault. `, - } + }, + { + name: '@pointerDownOutside', + type: '(event: PointerDownOutsideEvent) => void', + typeSimple: 'function', + description: ` + + Event handler called when a pointer event occurs outside the bounds of the component. It can be prevented by calling event.preventDefault. + + `, + }, + { + name: '@interactOutside', + type: '(event: FocusEvent | MouseEvent | TouchEvent) => void', + typeSimple: 'function', + description: ` + + Event handler called when an interaction (pointer or focus event) + happens outside the bounds of the component. It can be prevented by + calling event.preventDefault. + + `, + }, ]" /> diff --git a/packages/radix-vue/src/Accordion/AccordionContent.vue b/packages/radix-vue/src/Accordion/AccordionContent.vue index 467d3e142..556ed4e12 100644 --- a/packages/radix-vue/src/Accordion/AccordionContent.vue +++ b/packages/radix-vue/src/Accordion/AccordionContent.vue @@ -1,29 +1,28 @@