@@ -26,6 +26,10 @@ export const componentConfig = {
2626 name : "text" ,
2727 filePath : "packages/ui/Text/Text.tsx" ,
2828 } ,
29+ dialog : {
30+ name : "dialog" ,
31+ filePath : "packages/ui/Dialog/Dialog.tsx" ,
32+ } ,
2933 } ,
3034 examples : {
3135 "accordion-style-default" : {
@@ -148,5 +152,31 @@ export const componentConfig = {
148152 filePath : "preview/components/tab-style-default.tsx" ,
149153 preview : lazy ( ( ) => import ( "@/preview/components/tab-style-default" ) ) ,
150154 } ,
155+ "dialog-style-default" : {
156+ name : "dialog-style-default" ,
157+ filePath : "preview/components/dialog-style-default.tsx" ,
158+ preview : lazy ( ( ) => import ( "@/preview/components/dialog-style-default" ) ) ,
159+ } ,
160+ "dialog-style-with-footer" : {
161+ name : "dialog-style-with-footer" ,
162+ filePath : "preview/components/dialog-style-with-footer.tsx" ,
163+ preview : lazy (
164+ ( ) => import ( "@/preview/components/dialog-style-with-footer" )
165+ ) ,
166+ } ,
167+ "dialog-style-width-variant" : {
168+ name : "dialog-style-width-variant" ,
169+ filePath : "preview/components/dialog-style-width-variant.tsx" ,
170+ preview : lazy (
171+ ( ) => import ( "@/preview/components/dialog-style-width-variant" )
172+ ) ,
173+ } ,
174+ "dialog-style-with-form" : {
175+ name : "dialog-style-with-form" ,
176+ filePath : "preview/components/dialog-style-with-form.tsx" ,
177+ preview : lazy (
178+ ( ) => import ( "@/preview/components/dialog-style-with-form" )
179+ ) ,
180+ } ,
151181 } ,
152182} ;
0 commit comments