refactor(dialog): rename DialogScrollContentDemo.vue to DialogScrollBodyDemo.vue for clearance

Closes: #73
This commit is contained in:
hrynevych.romann 2024-01-17 22:37:55 +02:00
parent 8a87967382
commit fa1efdbfa4
4 changed files with 11 additions and 11 deletions

View File

@ -380,12 +380,12 @@ export const Index = {
component: () => import('../src/lib/registry/default/example/DialogDemo.vue').then(m => m.default),
files: ['../src/lib/registry/default/example/DialogDemo.vue'],
},
DialogScrollContentDemo: {
name: 'DialogScrollContentDemo',
DialogScrollBodyDemo: {
name: 'DialogScrollBodyDemo',
type: 'components:example',
registryDependencies: ['button', 'dialog'],
component: () => import('../src/lib/registry/default/example/DialogScrollContentDemo.vue').then(m => m.default),
files: ['../src/lib/registry/default/example/DialogScrollContentDemo.vue'],
component: () => import('../src/lib/registry/default/example/DialogScrollBodyDemo.vue').then(m => m.default),
files: ['../src/lib/registry/default/example/DialogScrollBodyDemo.vue'],
},
DialogScrollOverlayDemo: {
name: 'DialogScrollOverlayDemo',
@ -1278,12 +1278,12 @@ export const Index = {
component: () => import('../src/lib/registry/new-york/example/DialogDemo.vue').then(m => m.default),
files: ['../src/lib/registry/new-york/example/DialogDemo.vue'],
},
DialogScrollContentDemo: {
name: 'DialogScrollContentDemo',
DialogScrollBodyDemo: {
name: 'DialogScrollBodyDemo',
type: 'components:example',
registryDependencies: ['button', 'dialog'],
component: () => import('../src/lib/registry/new-york/example/DialogScrollContentDemo.vue').then(m => m.default),
files: ['../src/lib/registry/new-york/example/DialogScrollContentDemo.vue'],
component: () => import('../src/lib/registry/new-york/example/DialogScrollBodyDemo.vue').then(m => m.default),
files: ['../src/lib/registry/new-york/example/DialogScrollBodyDemo.vue'],
},
DialogScrollOverlayDemo: {
name: 'DialogScrollOverlayDemo',

View File

@ -55,11 +55,11 @@ import {
<ComponentPreview name="DialogCustomCloseButton" />
### Dialog with Scroll Content
### Scroll body
<ComponentPreview name="DialogScrollContentDemo" />
<ComponentPreview name="DialogScrollBodyDemo" />
### Dialog with Scroll Overlay
### Scroll overlay
<ComponentPreview name="DialogScrollOverlayDemo" />