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

View File

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