@weing-dev/ui-kit-primitive 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/eslint.config.js +29 -0
- package/index.html +13 -0
- package/package.json +75 -0
- package/public/static/icon/Add.svg +1 -0
- package/public/static/icon/ApprovalInactive.svg +1 -0
- package/public/static/icon/ArrowRight.svg +5 -0
- package/public/static/icon/Cancle Filled.svg +1 -0
- package/public/static/icon/Cancle.svg +1 -0
- package/public/static/icon/Cart Filled.svg +1 -0
- package/public/static/icon/Cart.svg +1 -0
- package/public/static/icon/Check.svg +1 -0
- package/public/static/icon/CheckBoxRound.svg +3 -0
- package/public/static/icon/Company.svg +1 -0
- package/public/static/icon/DragHandle.svg +1 -0
- package/public/static/icon/Eco.svg +1 -0
- package/public/static/icon/EditSquare.svg +1 -0
- package/public/static/icon/Error Filled.svg +1 -0
- package/public/static/icon/Error.svg +1 -0
- package/public/static/icon/File Upload.svg +1 -0
- package/public/static/icon/FilecheckInactive.svg +1 -0
- package/public/static/icon/Go Before.svg +1 -0
- package/public/static/icon/Go Next.svg +1 -0
- package/public/static/icon/Hamburger Menu.svg +1 -0
- package/public/static/icon/ImagecheckPlay.svg +4 -0
- package/public/static/icon/Kakao Talk.svg +1 -0
- package/public/static/icon/Minus.svg +1 -0
- package/public/static/icon/Naver Blog.svg +1 -0
- package/public/static/icon/Naver.svg +1 -0
- package/public/static/icon/OrderApprove.svg +1 -0
- package/public/static/icon/OrderInactive.svg +1 -0
- package/public/static/icon/OrderPlay.svg +1 -0
- package/public/static/icon/PayApprove.svg +1 -0
- package/public/static/icon/PayInactive.svg +1 -0
- package/public/static/icon/PrintInactive.svg +1 -0
- package/public/static/icon/PrintPlay.svg +1 -0
- package/public/static/icon/Search.svg +1 -0
- package/public/static/icon/ShippingDone.svg +1 -0
- package/public/static/icon/Support Agent.svg +1 -0
- package/public/static/icon/Task.svg +1 -0
- package/public/static/icon/User.svg +1 -0
- package/public/static/icon/Warning Filled.svg +1 -0
- package/public/static/icon/Warning.svg +1 -0
- package/public/static/icon/add_a_photo.svg +3 -0
- package/public/static/icon/attach_file.svg +1 -0
- package/public/static/icon/check_circle.svg +1 -0
- package/public/static/icon/close.svg +1 -0
- package/public/static/icon/download.svg +1 -0
- package/public/static/icon/expand all.svg +1 -0
- package/public/static/icon/expand_less.svg +1 -0
- package/public/static/icon/expand_more.svg +1 -0
- package/public/static/icon/factory.svg +1 -0
- package/public/static/icon/inventory.svg +1 -0
- package/public/static/icon/listAll.svg +1 -0
- package/public/static/icon/local_shipping.svg +1 -0
- package/public/static/icon/logout.svg +1 -0
- package/public/static/icon/menu.svg +1 -0
- package/public/static/icon/mode_edit.svg +4 -0
- package/public/static/icon/more.svg +1 -0
- package/public/static/icon/outward.svg +1 -0
- package/public/static/icon/personcard.svg +1 -0
- package/public/static/icon/product.svg +1 -0
- package/public/static/icon/settings.svg +1 -0
- package/public/static/icon/swap_vert.svg +3 -0
- package/public/static/icon/upload.svg +1 -0
- package/public/static/icon/warning_amber.svg +3 -0
- package/public/static/image/Thumbnail.png +0 -0
- package/public/vite.svg +1 -0
- package/public/weing_logo_final.png +0 -0
- package/scripts/icons/setIcon.cjs +151 -0
- package/scripts/icons/svg-template.cjs +18 -0
- package/scripts/icons/svgo-config.json +9 -0
- package/scripts/icons/svgr-config.json +16 -0
- package/src/@types/color.d.ts +51 -0
- package/src/@types/common.d.ts +6 -0
- package/src/@types/extends/react.extends.d.ts +7 -0
- package/src/@types/quill-image-resize-module-react/index.d.ts +1 -0
- package/src/App.css +0 -0
- package/src/App.tsx +84 -0
- package/src/assets/react.svg +1 -0
- package/src/components/Accordion/Accordion.context.tsx +62 -0
- package/src/components/Accordion/Accordion.module.scss +163 -0
- package/src/components/Accordion/Accordion.tsx +242 -0
- package/src/components/Accordion/README.md +408 -0
- package/src/components/Accordion/images/as_trigger.gif +0 -0
- package/src/components/Accordion/images/closed.png +0 -0
- package/src/components/Accordion/images/open.png +0 -0
- package/src/components/Accordion/images/thumbnail1.png +0 -0
- package/src/components/Accordion/images/thumbnail2.png +0 -0
- package/src/components/Accordion/images/thumbnail3.png +0 -0
- package/src/components/Avatar/Avatar.module.scss +47 -0
- package/src/components/Avatar/Avatar.tsx +230 -0
- package/src/components/Avatar/README.md +333 -0
- package/src/components/Badge/Badge.module.scss +49 -0
- package/src/components/Badge/Badge.tsx +87 -0
- package/src/components/Badge/README.md +223 -0
- package/src/components/BarCode/BarCode.module.scss +0 -0
- package/src/components/BarCode/BarCode.tsx +153 -0
- package/src/components/Breadcrumb/Breadcrumb.module.scss +36 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +114 -0
- package/src/components/Breadcrumb/README.md +339 -0
- package/src/components/Button/Button.colors.tsx +322 -0
- package/src/components/Button/Button.context.tsx +47 -0
- package/src/components/Button/Button.module.scss +156 -0
- package/src/components/Button/Button.tsx +190 -0
- package/src/components/Button/Button.type.ts +11 -0
- package/src/components/Calendar/Calendar.context.tsx +138 -0
- package/src/components/Calendar/Calendar.module.scss +116 -0
- package/src/components/Calendar/Calendar.tsx +440 -0
- package/src/components/Calendar/dayjs.util.ts +312 -0
- package/src/components/Cascader/Cacader.data.ts +1185 -0
- package/src/components/Cascader/Cascader.context.tsx +61 -0
- package/src/components/Cascader/Cascader.hook.ts +502 -0
- package/src/components/Cascader/Cascader.module.scss +143 -0
- package/src/components/Cascader/Cascader.tsx +281 -0
- package/src/components/Cascader/README.md +735 -0
- package/src/components/Chart/Chart.module.scss +0 -0
- package/src/components/Chart/Chart.tsx +230 -0
- package/src/components/Chart/README.md +85 -0
- package/src/components/Chart/images/barChart.png +0 -0
- package/src/components/Chips/Chips.colors.tsx +185 -0
- package/src/components/Chips/Chips.module.scss +49 -0
- package/src/components/Chips/Chips.tsx +78 -0
- package/src/components/Comment/Comment.module.scss +14 -0
- package/src/components/Comment/Comment.tsx +105 -0
- package/src/components/Dialog/Dialog.module.scss +0 -0
- package/src/components/Dialog/Dialog.tsx +12 -0
- package/src/components/Divider/Divider.module.scss +12 -0
- package/src/components/Divider/Divider.tsx +33 -0
- package/src/components/Editor/Editor.context.tsx +12 -0
- package/src/components/Editor/Editor.module.scss +40 -0
- package/src/components/Editor/Editor.tsx +174 -0
- package/src/components/Form/CheckBox/CheckBox.context.tsx +56 -0
- package/src/components/Form/CheckBox/CheckBox.module.scss +81 -0
- package/src/components/Form/CheckBox/CheckBox.tsx +196 -0
- package/src/components/Form/CheckBox/Checkbox.colors.tsx +42 -0
- package/src/components/Form/Dropdown/Dropdown.colors.tsx +125 -0
- package/src/components/Form/Dropdown/Dropdown.context.tsx +62 -0
- package/src/components/Form/Dropdown/Dropdown.module.scss +133 -0
- package/src/components/Form/Dropdown/Dropdown.tsx +404 -0
- package/src/components/Form/OTPInput/OTPInput.context.tsx +104 -0
- package/src/components/Form/OTPInput/OTPInput.module.scss +22 -0
- package/src/components/Form/OTPInput/OTPInput.tsx +67 -0
- package/src/components/Form/Radio/Radio.colors.tsx +42 -0
- package/src/components/Form/Radio/Radio.context.tsx +40 -0
- package/src/components/Form/Radio/Radio.module.scss +61 -0
- package/src/components/Form/Radio/Radio.tsx +174 -0
- package/src/components/Form/Switch/Switch.colors.tsx +42 -0
- package/src/components/Form/Switch/Switch.context.tsx +50 -0
- package/src/components/Form/Switch/Switch.module.scss +53 -0
- package/src/components/Form/Switch/Switch.tsx +151 -0
- package/src/components/Form/TextArea/TextArea.colors.tsx +76 -0
- package/src/components/Form/TextArea/TextArea.context.tsx +97 -0
- package/src/components/Form/TextArea/TextArea.module.scss +138 -0
- package/src/components/Form/TextArea/TextArea.tsx +246 -0
- package/src/components/Form/TextInput/TextInput.colors.tsx +76 -0
- package/src/components/Form/TextInput/TextInput.context.tsx +106 -0
- package/src/components/Form/TextInput/TextInput.module.scss +160 -0
- package/src/components/Form/TextInput/TextInput.tsx +225 -0
- package/src/components/GlobalStyle/GlobalStyle.tsx +20 -0
- package/src/components/HelperText/HelperText.module.scss +28 -0
- package/src/components/HelperText/HelperText.tsx +130 -0
- package/src/components/Icon/Icon.tsx +29 -0
- package/src/components/Icons/Add.tsx +20 -0
- package/src/components/Icons/AddAPhoto.tsx +21 -0
- package/src/components/Icons/ApprovalInactive.tsx +26 -0
- package/src/components/Icons/ArrowRight.tsx +24 -0
- package/src/components/Icons/AttachFile.tsx +20 -0
- package/src/components/Icons/Cancle.tsx +20 -0
- package/src/components/Icons/CancleFilled.tsx +20 -0
- package/src/components/Icons/Cart.tsx +20 -0
- package/src/components/Icons/CartFilled.tsx +20 -0
- package/src/components/Icons/Check.tsx +20 -0
- package/src/components/Icons/CheckBoxRound.tsx +21 -0
- package/src/components/Icons/CheckCircle.tsx +35 -0
- package/src/components/Icons/Close.tsx +20 -0
- package/src/components/Icons/Company.tsx +20 -0
- package/src/components/Icons/Download.tsx +20 -0
- package/src/components/Icons/DragHandle.tsx +20 -0
- package/src/components/Icons/Eco.tsx +20 -0
- package/src/components/Icons/EditSquare.tsx +20 -0
- package/src/components/Icons/Error.tsx +20 -0
- package/src/components/Icons/ErrorFilled.tsx +20 -0
- package/src/components/Icons/ExpandAll.tsx +20 -0
- package/src/components/Icons/ExpandLess.tsx +20 -0
- package/src/components/Icons/ExpandMore.tsx +20 -0
- package/src/components/Icons/Factory.tsx +20 -0
- package/src/components/Icons/FileUpload.tsx +20 -0
- package/src/components/Icons/FilecheckInactive.tsx +22 -0
- package/src/components/Icons/GoBefore.tsx +20 -0
- package/src/components/Icons/GoNext.tsx +20 -0
- package/src/components/Icons/HamburgerMenu.tsx +20 -0
- package/src/components/Icons/ImagecheckPlay.tsx +27 -0
- package/src/components/Icons/Inventory.tsx +20 -0
- package/src/components/Icons/KakaoTalk.tsx +22 -0
- package/src/components/Icons/ListAll.tsx +20 -0
- package/src/components/Icons/LocalShipping.tsx +20 -0
- package/src/components/Icons/Logout.tsx +20 -0
- package/src/components/Icons/Menu.tsx +20 -0
- package/src/components/Icons/Minus.tsx +18 -0
- package/src/components/Icons/ModeEdit.tsx +25 -0
- package/src/components/Icons/More.tsx +20 -0
- package/src/components/Icons/Naver.tsx +20 -0
- package/src/components/Icons/NaverBlog.tsx +22 -0
- package/src/components/Icons/OrderApprove.tsx +20 -0
- package/src/components/Icons/OrderInactive.tsx +20 -0
- package/src/components/Icons/OrderPlay.tsx +20 -0
- package/src/components/Icons/Outward.tsx +20 -0
- package/src/components/Icons/PayApprove.tsx +24 -0
- package/src/components/Icons/PayInactive.tsx +24 -0
- package/src/components/Icons/Personcard.tsx +20 -0
- package/src/components/Icons/PrintInactive.tsx +24 -0
- package/src/components/Icons/PrintPlay.tsx +24 -0
- package/src/components/Icons/Product.tsx +20 -0
- package/src/components/Icons/Search.tsx +20 -0
- package/src/components/Icons/Settings.tsx +20 -0
- package/src/components/Icons/ShippingDone.tsx +20 -0
- package/src/components/Icons/SupportAgent.tsx +20 -0
- package/src/components/Icons/SwapVert.tsx +21 -0
- package/src/components/Icons/Task.tsx +20 -0
- package/src/components/Icons/Upload.tsx +20 -0
- package/src/components/Icons/User.tsx +20 -0
- package/src/components/Icons/Warning.tsx +20 -0
- package/src/components/Icons/WarningAmber.tsx +21 -0
- package/src/components/Icons/WarningFilled.tsx +20 -0
- package/src/components/Icons/index.ts +62 -0
- package/src/components/LNB/LNB.context.tsx +32 -0
- package/src/components/LNB/LNB.module.scss +99 -0
- package/src/components/LNB/LNB.tsx +190 -0
- package/src/components/LNB/README.md +411 -0
- package/src/components/LNB/makeNavigation.ts +51 -0
- package/src/components/LNB/navigation.d.ts +15 -0
- package/src/components/LNB/navigation.json +211 -0
- package/src/components/Label/Label.colors.tsx +241 -0
- package/src/components/Label/Label.module.scss +31 -0
- package/src/components/Label/Label.tsx +54 -0
- package/src/components/LazyImage/LazyImage.module.scss +6 -0
- package/src/components/LazyImage/LazyImage.tsx +107 -0
- package/src/components/List/List.module.scss +81 -0
- package/src/components/List/List.tsx +91 -0
- package/src/components/List/README.md +87 -0
- package/src/components/MobilePicker/MobilePicker.context.tsx +22 -0
- package/src/components/MobilePicker/MobilePicker.module.scss +57 -0
- package/src/components/MobilePicker/MobilePicker.tsx +336 -0
- package/src/components/MobilePicker/README.md +159 -0
- package/src/components/Modal/Modal.tsx +77 -0
- package/src/components/Modal/README.md +130 -0
- package/src/components/Pagination/Pagination.colors.tsx +85 -0
- package/src/components/Pagination/Pagination.context.tsx +28 -0
- package/src/components/Pagination/Pagination.module.scss +60 -0
- package/src/components/Pagination/Pagination.tsx +234 -0
- package/src/components/Popup/Popup.context.tsx +15 -0
- package/src/components/Popup/Popup.module.scss +53 -0
- package/src/components/Popup/Popup.tsx +116 -0
- package/src/components/Popup/README.md +170 -0
- package/src/components/QRCode/QRCode.module.scss +2 -0
- package/src/components/QRCode/QRCode.tsx +61 -0
- package/src/components/ScrollCalendar/ScrollCalendar.context.tsx +26 -0
- package/src/components/ScrollCalendar/ScrollCalendar.module.scss +42 -0
- package/src/components/ScrollCalendar/ScrollCalendar.tsx +448 -0
- package/src/components/ScrollSpy/README.md +62 -0
- package/src/components/ScrollSpy/ScrollSpy.tsx +130 -0
- package/src/components/Sheet/README.md +92 -0
- package/src/components/Sheet/Sheet.context.tsx +23 -0
- package/src/components/Sheet/Sheet.module.scss +68 -0
- package/src/components/Sheet/Sheet.tsx +146 -0
- package/src/components/Slider/README.md +639 -0
- package/src/components/Slider/Slider.backup.tsx +477 -0
- package/src/components/Slider/Slider.context.tsx +67 -0
- package/src/components/Slider/Slider.module.scss +123 -0
- package/src/components/Slider/Slider.tsx +467 -0
- package/src/components/Stepper/README.md +320 -0
- package/src/components/Stepper/Stepper.context.tsx +49 -0
- package/src/components/Stepper/Stepper.module.scss +163 -0
- package/src/components/Stepper/Stepper.tsx +219 -0
- package/src/components/Tab/Tab.colors.tsx +54 -0
- package/src/components/Tab/Tab.context.tsx +64 -0
- package/src/components/Tab/Tab.module.scss +239 -0
- package/src/components/Tab/Tab.tsx +123 -0
- package/src/components/Tab/cx.ts +6 -0
- package/src/components/Table/README.md +162 -0
- package/src/components/Table/Table.context.tsx +23 -0
- package/src/components/Table/Table.hook.ts +51 -0
- package/src/components/Table/Table.module.scss +83 -0
- package/src/components/Table/Table.tsx +147 -0
- package/src/components/Thumbnail/README.md +302 -0
- package/src/components/Thumbnail/Thumbnail.context.tsx +42 -0
- package/src/components/Thumbnail/Thumbnail.module.scss +149 -0
- package/src/components/Thumbnail/Thumbnail.tsx +391 -0
- package/src/components/TimeInput/README.md +118 -0
- package/src/components/TimeInput/TimeInput.colors.tsx +76 -0
- package/src/components/TimeInput/TimeInput.context.tsx +58 -0
- package/src/components/TimeInput/TimeInput.module.scss +211 -0
- package/src/components/TimeInput/TimeInput.tsx +411 -0
- package/src/components/WeeklyCalendar/WeeklyCalendar.context.tsx +88 -0
- package/src/components/WeeklyCalendar/WeeklyCalendar.module.scss +225 -0
- package/src/components/WeeklyCalendar/WeeklyCalendar.tsx +772 -0
- package/src/components/WeeklyCalendar/dayjs.util.ts +336 -0
- package/src/components/WeeklyCalendar/weeklyCalendar.util.ts +583 -0
- package/src/components/WisywygEditor/Quill/Editor.tsx +148 -0
- package/src/constant/locale.constant.ts +6 -0
- package/src/globals.scss +80 -0
- package/src/hooks/useColorScheme.tsx +48 -0
- package/src/hooks/useElementRect.tsx +128 -0
- package/src/hooks/useIntersectionObserver.tsx +33 -0
- package/src/index.css +17 -0
- package/src/index.ts +187 -0
- package/src/main.tsx +10 -0
- package/src/styles/_fontSize.mixin.scss +57 -0
- package/src/styles/_fontWeight.mixin.scss +15 -0
- package/src/styles/_lineHeight.mixin.scss +57 -0
- package/src/styles/_scrollbar.mixin.scss +49 -0
- package/src/styles/baseColor.ts +297 -0
- package/src/styles/color.ts +272 -0
- package/src/styles/color2.ts +200 -0
- package/src/styles/scrollbar.README.md +72 -0
- package/src/styles/typography.scss +170 -0
- package/src/utils/aws.util.ts +180 -0
- package/src/utils/common.utill.ts +45 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.app.json +24 -0
- package/tsconfig.json +29 -0
- package/tsconfig.node.json +10 -0
- package/tsconfig.node.tsbuildinfo +1 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/vite.config.d.ts +2 -0
- package/vite.config.js +47 -0
- package/vite.config.ts +50 -0
|
@@ -0,0 +1,1185 @@
|
|
|
1
|
+
import type { CascaderOption } from "./Cascader";
|
|
2
|
+
|
|
3
|
+
export const defaultOptions: CascaderOption[] = [
|
|
4
|
+
{
|
|
5
|
+
id: "korea",
|
|
6
|
+
label: "한국",
|
|
7
|
+
children: [
|
|
8
|
+
{
|
|
9
|
+
id: "seoul",
|
|
10
|
+
label: "서울",
|
|
11
|
+
children: [
|
|
12
|
+
{
|
|
13
|
+
id: "gangnam",
|
|
14
|
+
label: "강남구",
|
|
15
|
+
children: [
|
|
16
|
+
{
|
|
17
|
+
id: "gangnam-gu",
|
|
18
|
+
label: "강남구",
|
|
19
|
+
children: [
|
|
20
|
+
{
|
|
21
|
+
id: "yeoksam",
|
|
22
|
+
label: "역삼동",
|
|
23
|
+
children: [
|
|
24
|
+
{ id: "yeoksam1", label: "역삼1동" },
|
|
25
|
+
{ id: "yeoksam2", label: "역삼2동" },
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
id: "nonhyeon",
|
|
30
|
+
label: "논현동",
|
|
31
|
+
children: [
|
|
32
|
+
{ id: "nonhyeon1", label: "논현1동" },
|
|
33
|
+
{ id: "nonhyeon2", label: "논현2동" },
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: "gangnam-gun",
|
|
40
|
+
label: "강남군",
|
|
41
|
+
children: [
|
|
42
|
+
{
|
|
43
|
+
id: "samsung",
|
|
44
|
+
label: "삼성동",
|
|
45
|
+
children: [
|
|
46
|
+
{ id: "samsung1", label: "삼성1동" },
|
|
47
|
+
{ id: "samsung2", label: "삼성2동" },
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
id: "apgujeong",
|
|
54
|
+
label: "압구정동",
|
|
55
|
+
children: [
|
|
56
|
+
{ id: "apgujeong1", label: "압구정1동" },
|
|
57
|
+
{ id: "apgujeong2", label: "압구정2동" },
|
|
58
|
+
],
|
|
59
|
+
},
|
|
60
|
+
{ id: "cheongdam", label: "청담동" },
|
|
61
|
+
{ id: "samseong", label: "삼성동" },
|
|
62
|
+
],
|
|
63
|
+
},
|
|
64
|
+
{ id: "seocho", label: "서초구" },
|
|
65
|
+
{ id: "mapo", label: "마포구" },
|
|
66
|
+
{ id: "jongno", label: "종로구" },
|
|
67
|
+
{ id: "songpa", label: "송파구" },
|
|
68
|
+
{ id: "gangdong", label: "강동구" },
|
|
69
|
+
{ id: "nowon", label: "노원구" },
|
|
70
|
+
{ id: "gwangjin", label: "광진구" },
|
|
71
|
+
],
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
id: "busan",
|
|
75
|
+
label: "부산",
|
|
76
|
+
children: [
|
|
77
|
+
{
|
|
78
|
+
id: "gwangsan",
|
|
79
|
+
label: "광산구",
|
|
80
|
+
children: [
|
|
81
|
+
{
|
|
82
|
+
id: "songjeong",
|
|
83
|
+
label: "송정동",
|
|
84
|
+
children: [
|
|
85
|
+
{ id: "songjeong1", label: "송정1동" },
|
|
86
|
+
{ id: "songjeong2", label: "송정2동" },
|
|
87
|
+
],
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
},
|
|
91
|
+
{ id: "gijang", label: "기장군" },
|
|
92
|
+
{ id: "yeonje", label: "연제구" },
|
|
93
|
+
{ id: "namgu", label: "남구" },
|
|
94
|
+
{ id: "saha", label: "사하구" },
|
|
95
|
+
{ id: "suyeong", label: "수영구" },
|
|
96
|
+
{ id: "haeundae", label: "해운대구" },
|
|
97
|
+
{ id: "dongrae", label: "동래구" },
|
|
98
|
+
{ id: "busanjin", label: "부산진구" },
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
{ id: "incheon", label: "인천" },
|
|
102
|
+
{ id: "gwangju", label: "광주" },
|
|
103
|
+
{
|
|
104
|
+
id: "daegu",
|
|
105
|
+
label: "대구",
|
|
106
|
+
children: [
|
|
107
|
+
{
|
|
108
|
+
id: "daegu-gu",
|
|
109
|
+
label: "대구구",
|
|
110
|
+
children: [
|
|
111
|
+
{
|
|
112
|
+
id: "jung-gu",
|
|
113
|
+
label: "중구",
|
|
114
|
+
children: [
|
|
115
|
+
{
|
|
116
|
+
id: "dongseong",
|
|
117
|
+
label: "동성로",
|
|
118
|
+
children: [
|
|
119
|
+
{ id: "dongseong1", label: "동성로1가" },
|
|
120
|
+
{ id: "dongseong2", label: "동성로2가" },
|
|
121
|
+
],
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
},
|
|
125
|
+
],
|
|
126
|
+
},
|
|
127
|
+
{ id: "daegu-gun", label: "대구군" },
|
|
128
|
+
{ id: "daegu-seogu", label: "서구" },
|
|
129
|
+
{ id: "daegu-suseong", label: "수성구" },
|
|
130
|
+
{ id: "daegu-bukgu", label: "북구" },
|
|
131
|
+
{ id: "daegu-donggu", label: "동구" },
|
|
132
|
+
{ id: "daegu-yeongdong", label: "영동군" },
|
|
133
|
+
{ id: "daegu-dalseo", label: "달서구" },
|
|
134
|
+
{ id: "daegu-dalseong", label: "달성군" },
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
id: "japan",
|
|
141
|
+
label: "일본",
|
|
142
|
+
children: [
|
|
143
|
+
{
|
|
144
|
+
id: "tokyo",
|
|
145
|
+
label: "도쿄",
|
|
146
|
+
children: [
|
|
147
|
+
{
|
|
148
|
+
id: "yokohama",
|
|
149
|
+
label: "요코하마",
|
|
150
|
+
children: [
|
|
151
|
+
{
|
|
152
|
+
id: "minato-mirai",
|
|
153
|
+
label: "미나토미라이",
|
|
154
|
+
children: [
|
|
155
|
+
{
|
|
156
|
+
id: "landmark-tower",
|
|
157
|
+
label: "랜드마크 타워",
|
|
158
|
+
children: [
|
|
159
|
+
{ id: "sky-garden", label: "전망대" },
|
|
160
|
+
{ id: "shopping-mall", label: "쇼핑몰" },
|
|
161
|
+
],
|
|
162
|
+
},
|
|
163
|
+
],
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
},
|
|
167
|
+
{ id: "shibuya", label: "渋谷区" },
|
|
168
|
+
{ id: "shinjuku", label: "新宿区" },
|
|
169
|
+
{ id: "harajuku", label: "原宿" },
|
|
170
|
+
{ id: "akihabara", label: "秋葉原" },
|
|
171
|
+
],
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
id: "osaka",
|
|
175
|
+
label: "오사카",
|
|
176
|
+
children: [
|
|
177
|
+
{ id: "umeda", label: "우메다" },
|
|
178
|
+
{ id: "namba", label: "난바" },
|
|
179
|
+
{ id: "shinsaibashi", label: "신사이바시" },
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
id: "china",
|
|
186
|
+
label: "중국",
|
|
187
|
+
children: [
|
|
188
|
+
{
|
|
189
|
+
id: "beijing",
|
|
190
|
+
label: "베이징",
|
|
191
|
+
children: [
|
|
192
|
+
{ id: "forbidden-city", label: "자금성" },
|
|
193
|
+
{ id: "great-wall", label: "만리장성" },
|
|
194
|
+
{ id: "tiananmen", label: "천안문" },
|
|
195
|
+
],
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
id: "shanghai",
|
|
199
|
+
label: "상하이",
|
|
200
|
+
children: [
|
|
201
|
+
{ id: "the-bund", label: "외탄" },
|
|
202
|
+
{ id: "nanjing-road", label: "남경로" },
|
|
203
|
+
{ id: "pudong", label: "포동" },
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
id: "usa",
|
|
210
|
+
label: "미국",
|
|
211
|
+
children: [
|
|
212
|
+
{
|
|
213
|
+
id: "new-york",
|
|
214
|
+
label: "뉴욕",
|
|
215
|
+
children: [
|
|
216
|
+
{
|
|
217
|
+
id: "manhattan",
|
|
218
|
+
label: "맨해튼",
|
|
219
|
+
children: [
|
|
220
|
+
{
|
|
221
|
+
id: "central-park",
|
|
222
|
+
label: "센트럴파크",
|
|
223
|
+
children: [
|
|
224
|
+
{
|
|
225
|
+
id: "zoo",
|
|
226
|
+
label: "동물원",
|
|
227
|
+
children: [
|
|
228
|
+
{ id: "penguin-house", label: "펭귄하우스" },
|
|
229
|
+
{ id: "lion-den", label: "사자굴" },
|
|
230
|
+
],
|
|
231
|
+
},
|
|
232
|
+
],
|
|
233
|
+
},
|
|
234
|
+
],
|
|
235
|
+
},
|
|
236
|
+
{ id: "brooklyn", label: "브루클린" },
|
|
237
|
+
{ id: "queens", label: "퀸즈" },
|
|
238
|
+
{ id: "bronx", label: "브롱크스" },
|
|
239
|
+
],
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
id: "california",
|
|
243
|
+
label: "캘리포니아",
|
|
244
|
+
children: [
|
|
245
|
+
{ id: "los-angeles", label: "로스앤젤레스" },
|
|
246
|
+
{ id: "san-francisco", label: "샌프란시스코" },
|
|
247
|
+
{ id: "san-diego", label: "샌디에고" },
|
|
248
|
+
],
|
|
249
|
+
},
|
|
250
|
+
],
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
id: "france",
|
|
254
|
+
label: "프랑스",
|
|
255
|
+
children: [
|
|
256
|
+
{
|
|
257
|
+
id: "paris",
|
|
258
|
+
label: "파리",
|
|
259
|
+
children: [
|
|
260
|
+
{ id: "eiffel", label: "에펠탑" },
|
|
261
|
+
{ id: "louvre", label: "루브르" },
|
|
262
|
+
{ id: "notre-dame", label: "노트르담" },
|
|
263
|
+
],
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
id: "marseille",
|
|
267
|
+
label: "마르세유",
|
|
268
|
+
children: [
|
|
269
|
+
{ id: "vieux-port", label: "구항" },
|
|
270
|
+
{ id: "notre-dame-garde", label: "노트르담 드 라 가르드" },
|
|
271
|
+
],
|
|
272
|
+
},
|
|
273
|
+
],
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
id: "italy",
|
|
277
|
+
label: "이탈리아",
|
|
278
|
+
children: [
|
|
279
|
+
{
|
|
280
|
+
id: "rome",
|
|
281
|
+
label: "로마",
|
|
282
|
+
children: [
|
|
283
|
+
{ id: "colosseum", label: "콜로세움" },
|
|
284
|
+
{ id: "vatican", label: "바티칸" },
|
|
285
|
+
{ id: "trevi-fountain", label: "트레비 분수" },
|
|
286
|
+
],
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
id: "venice",
|
|
290
|
+
label: "베네치아",
|
|
291
|
+
children: [
|
|
292
|
+
{ id: "san-marco", label: "산 마르코 광장" },
|
|
293
|
+
{ id: "rialto", label: "리알토 다리" },
|
|
294
|
+
],
|
|
295
|
+
},
|
|
296
|
+
],
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
id: "thailand",
|
|
300
|
+
label: "태국",
|
|
301
|
+
children: [
|
|
302
|
+
{
|
|
303
|
+
id: "bangkok",
|
|
304
|
+
label: "방콕",
|
|
305
|
+
children: [
|
|
306
|
+
{ id: "grand-palace", label: "왕궁" },
|
|
307
|
+
{ id: "wat-phra", label: "왓 프라깨우" },
|
|
308
|
+
{ id: "khao-san", label: "카오산 로드" },
|
|
309
|
+
],
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
id: "phuket",
|
|
313
|
+
label: "푸켓",
|
|
314
|
+
children: [
|
|
315
|
+
{ id: "patong", label: "파통 비치" },
|
|
316
|
+
{ id: "phi-phi", label: "피피 섬" },
|
|
317
|
+
],
|
|
318
|
+
},
|
|
319
|
+
],
|
|
320
|
+
},
|
|
321
|
+
];
|
|
322
|
+
|
|
323
|
+
export const disabledOptions: CascaderOption[] = [
|
|
324
|
+
{
|
|
325
|
+
id: "korea",
|
|
326
|
+
label: "한국",
|
|
327
|
+
children: [
|
|
328
|
+
{
|
|
329
|
+
id: "seoul",
|
|
330
|
+
label: "서울",
|
|
331
|
+
disabled: true, // 서울 전체를 disabled 처리
|
|
332
|
+
children: [
|
|
333
|
+
{
|
|
334
|
+
id: "gangnam",
|
|
335
|
+
label: "강남구",
|
|
336
|
+
children: [
|
|
337
|
+
{ id: "gangnam-gu", label: "강남구" },
|
|
338
|
+
{ id: "gangnam-gun", label: "강남군" },
|
|
339
|
+
],
|
|
340
|
+
},
|
|
341
|
+
{ id: "seocho", label: "서초구" },
|
|
342
|
+
{ id: "mapo", label: "마포구" },
|
|
343
|
+
{ id: "jongno", label: "종로구" },
|
|
344
|
+
{ id: "songpa", label: "송파구" },
|
|
345
|
+
],
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
id: "busan",
|
|
349
|
+
label: "부산",
|
|
350
|
+
children: [
|
|
351
|
+
{ id: "gwangsan", label: "광산구" },
|
|
352
|
+
{ id: "gijang", label: "기장군", disabled: true }, // 기장군만 disabled 처리
|
|
353
|
+
{ id: "yeonje", label: "연제구" },
|
|
354
|
+
{ id: "namgu", label: "남구" },
|
|
355
|
+
{ id: "saha", label: "사하구" },
|
|
356
|
+
{ id: "suyeong", label: "수영구" },
|
|
357
|
+
],
|
|
358
|
+
},
|
|
359
|
+
{ id: "incheon", label: "인천" },
|
|
360
|
+
{ id: "gwangju", label: "광주" },
|
|
361
|
+
{
|
|
362
|
+
id: "daegu",
|
|
363
|
+
label: "대구",
|
|
364
|
+
children: [
|
|
365
|
+
{ id: "daegu-gu", label: "대구구" },
|
|
366
|
+
{ id: "daegu-gun", label: "대구군" },
|
|
367
|
+
{ id: "daegu-seogu", label: "서구" },
|
|
368
|
+
{ id: "daegu-suseong", label: "수성구" },
|
|
369
|
+
{ id: "daegu-bukgu", label: "북구" },
|
|
370
|
+
{ id: "daegu-donggu", label: "동구" },
|
|
371
|
+
{ id: "daegu-yeongdong", label: "영동군" },
|
|
372
|
+
],
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
id: "daejeon",
|
|
376
|
+
label: "대전",
|
|
377
|
+
children: [
|
|
378
|
+
{ id: "daejeon-gu", label: "대전구" },
|
|
379
|
+
{ id: "daejeon-gun", label: "대전군" },
|
|
380
|
+
{ id: "daejeon-seogu", label: "서구" },
|
|
381
|
+
{ id: "daejeon-suseong", label: "수성구" },
|
|
382
|
+
{ id: "daejeon-bukgu", label: "북구" },
|
|
383
|
+
{ id: "daejeon-donggu", label: "동구" },
|
|
384
|
+
{ id: "daejeon-yeongdong", label: "영동군" },
|
|
385
|
+
],
|
|
386
|
+
},
|
|
387
|
+
{ id: "ulsan", label: "울산" },
|
|
388
|
+
{ id: "gyeonggi", label: "경기" },
|
|
389
|
+
{
|
|
390
|
+
id: "jeju",
|
|
391
|
+
label: "제주도",
|
|
392
|
+
children: [
|
|
393
|
+
{ id: "jeju-gu", label: "제주시" },
|
|
394
|
+
{ id: "jeju-gun", label: "제주군" },
|
|
395
|
+
{ id: "jeju-seogu", label: "서귀포시" },
|
|
396
|
+
{ id: "jeju-seogwipo", label: "서귀포시" },
|
|
397
|
+
],
|
|
398
|
+
},
|
|
399
|
+
],
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
id: "japan",
|
|
403
|
+
label: "일본",
|
|
404
|
+
children: [
|
|
405
|
+
{
|
|
406
|
+
id: "tokyo",
|
|
407
|
+
label: "도쿄",
|
|
408
|
+
children: [
|
|
409
|
+
{ id: "yokohama", label: "요코하마", disabled: true }, // 요코하마 disabled 처리
|
|
410
|
+
{ id: "shibuya", label: "渋谷区" },
|
|
411
|
+
],
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
id: "osaka",
|
|
415
|
+
label: "오사카",
|
|
416
|
+
children: [],
|
|
417
|
+
},
|
|
418
|
+
],
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
id: "china",
|
|
422
|
+
label: "중국",
|
|
423
|
+
disabled: true, // 중국 전체를 disabled 처리
|
|
424
|
+
children: [
|
|
425
|
+
{
|
|
426
|
+
id: "beijing",
|
|
427
|
+
label: "베이징",
|
|
428
|
+
children: [],
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
id: "shanghai",
|
|
432
|
+
label: "상하이",
|
|
433
|
+
children: [],
|
|
434
|
+
},
|
|
435
|
+
],
|
|
436
|
+
},
|
|
437
|
+
];
|
|
438
|
+
|
|
439
|
+
export const titleViewOptions: CascaderOption[] = [
|
|
440
|
+
{
|
|
441
|
+
id: "country",
|
|
442
|
+
label: "나라",
|
|
443
|
+
role: "title",
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
id: "korea",
|
|
447
|
+
label: "한국",
|
|
448
|
+
children: [
|
|
449
|
+
{
|
|
450
|
+
id: "seoul",
|
|
451
|
+
label: "서울",
|
|
452
|
+
children: [
|
|
453
|
+
{
|
|
454
|
+
id: "gangnam",
|
|
455
|
+
label: "강남구",
|
|
456
|
+
children: [
|
|
457
|
+
{ id: "gangnam-gu", label: "강남구" },
|
|
458
|
+
{ id: "gangnam-gun", label: "강남군" },
|
|
459
|
+
],
|
|
460
|
+
},
|
|
461
|
+
{ id: "seocho", label: "서초구" },
|
|
462
|
+
{ id: "mapo", label: "마포구" },
|
|
463
|
+
{ id: "jongno", label: "종로구" },
|
|
464
|
+
{ id: "songpa", label: "송파구" },
|
|
465
|
+
],
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
id: "busan",
|
|
469
|
+
label: "부산",
|
|
470
|
+
children: [
|
|
471
|
+
{ id: "gwangsan", label: "광산구" },
|
|
472
|
+
{ id: "gijang", label: "기장군" },
|
|
473
|
+
{ id: "yeonje", label: "연제구" },
|
|
474
|
+
{ id: "namgu", label: "남구" },
|
|
475
|
+
{ id: "saha", label: "사하구" },
|
|
476
|
+
{ id: "suyeong", label: "수영구" },
|
|
477
|
+
],
|
|
478
|
+
},
|
|
479
|
+
{ id: "incheon", label: "인천" },
|
|
480
|
+
{ id: "gwangju", label: "광주" },
|
|
481
|
+
{
|
|
482
|
+
id: "daegu",
|
|
483
|
+
label: "대구",
|
|
484
|
+
children: [
|
|
485
|
+
{ id: "daegu-gu", label: "대구구" },
|
|
486
|
+
{ id: "daegu-gun", label: "대구군" },
|
|
487
|
+
{ id: "daegu-seogu", label: "서구" },
|
|
488
|
+
{ id: "daegu-suseong", label: "수성구" },
|
|
489
|
+
{ id: "daegu-bukgu", label: "북구" },
|
|
490
|
+
{ id: "daegu-donggu", label: "동구" },
|
|
491
|
+
{ id: "daegu-yeongdong", label: "영동군" },
|
|
492
|
+
],
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
id: "daejeon",
|
|
496
|
+
label: "대전",
|
|
497
|
+
children: [
|
|
498
|
+
{ id: "daejeon-gu", label: "대전구" },
|
|
499
|
+
{ id: "daejeon-gun", label: "대전군" },
|
|
500
|
+
{ id: "daejeon-seogu", label: "서구" },
|
|
501
|
+
{ id: "daejeon-suseong", label: "수성구" },
|
|
502
|
+
{ id: "daejeon-bukgu", label: "북구" },
|
|
503
|
+
{ id: "daejeon-donggu", label: "동구" },
|
|
504
|
+
{ id: "daejeon-yeongdong", label: "영동군" },
|
|
505
|
+
],
|
|
506
|
+
},
|
|
507
|
+
{ id: "ulsan", label: "울산" },
|
|
508
|
+
{ id: "gyeonggi", label: "경기" },
|
|
509
|
+
{
|
|
510
|
+
id: "jeju",
|
|
511
|
+
label: "제주도",
|
|
512
|
+
children: [
|
|
513
|
+
{ id: "jeju-gu", label: "제주시" },
|
|
514
|
+
{ id: "jeju-gun", label: "제주군" },
|
|
515
|
+
{ id: "jeju-seogu", label: "서귀포시" },
|
|
516
|
+
{ id: "jeju-seogwipo", label: "서귀포시" },
|
|
517
|
+
],
|
|
518
|
+
},
|
|
519
|
+
],
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
id: "japan",
|
|
523
|
+
label: "일본",
|
|
524
|
+
children: [
|
|
525
|
+
{
|
|
526
|
+
id: "tokyo",
|
|
527
|
+
label: "도쿄",
|
|
528
|
+
children: [
|
|
529
|
+
{ id: "yokohama", label: "요코하마" },
|
|
530
|
+
{ id: "shibuya", label: "渋谷区" },
|
|
531
|
+
],
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
id: "osaka",
|
|
535
|
+
label: "오사카",
|
|
536
|
+
children: [],
|
|
537
|
+
},
|
|
538
|
+
],
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
id: "china",
|
|
542
|
+
label: "중국",
|
|
543
|
+
disabled: true, // 중국 전체를 disabled 처리
|
|
544
|
+
children: [
|
|
545
|
+
{
|
|
546
|
+
id: "beijing",
|
|
547
|
+
label: "베이징",
|
|
548
|
+
children: [],
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
id: "shanghai",
|
|
552
|
+
label: "상하이",
|
|
553
|
+
children: [],
|
|
554
|
+
},
|
|
555
|
+
],
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
id: "food",
|
|
559
|
+
label: "음식",
|
|
560
|
+
role: "title",
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
id: "korean-food",
|
|
564
|
+
label: "한식",
|
|
565
|
+
children: [
|
|
566
|
+
{
|
|
567
|
+
id: "korean-main",
|
|
568
|
+
label: "메인 요리",
|
|
569
|
+
children: [
|
|
570
|
+
{ id: "bibimbap", label: "비빔밥" },
|
|
571
|
+
{ id: "bulgogi", label: "불고기" },
|
|
572
|
+
{ id: "kimchi-stew", label: "김치찌개" },
|
|
573
|
+
],
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
id: "korean-side",
|
|
577
|
+
label: "반찬",
|
|
578
|
+
children: [
|
|
579
|
+
{ id: "kimchi", label: "김치" },
|
|
580
|
+
{ id: "namul", label: "나물" },
|
|
581
|
+
{ id: "jeon", label: "전" },
|
|
582
|
+
],
|
|
583
|
+
},
|
|
584
|
+
],
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
id: "japanese-food",
|
|
588
|
+
label: "일식",
|
|
589
|
+
children: [
|
|
590
|
+
{
|
|
591
|
+
id: "sushi",
|
|
592
|
+
label: "스시/롤",
|
|
593
|
+
children: [
|
|
594
|
+
{ id: "nigiri", label: "니기리" },
|
|
595
|
+
{ id: "maki", label: "마키" },
|
|
596
|
+
{ id: "chirashi", label: "치라시" },
|
|
597
|
+
],
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
id: "japanese-noodle",
|
|
601
|
+
label: "면류",
|
|
602
|
+
children: [
|
|
603
|
+
{ id: "ramen", label: "라멘" },
|
|
604
|
+
{ id: "udon", label: "우동" },
|
|
605
|
+
{ id: "soba", label: "소바" },
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
],
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
id: "chinese-food",
|
|
612
|
+
label: "중식",
|
|
613
|
+
children: [
|
|
614
|
+
{
|
|
615
|
+
id: "chinese-main",
|
|
616
|
+
label: "메인 요리",
|
|
617
|
+
children: [
|
|
618
|
+
{ id: "mapo-tofu", label: "마파두부" },
|
|
619
|
+
{ id: "kungpao-chicken", label: "궁보계정" },
|
|
620
|
+
{ id: "jajangmyeon", label: "짜장면" },
|
|
621
|
+
],
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
id: "chinese-dim-sum",
|
|
625
|
+
label: "딤섬",
|
|
626
|
+
children: [
|
|
627
|
+
{ id: "xiaolongbao", label: "샤오롱바오" },
|
|
628
|
+
{ id: "shumai", label: "슈마이" },
|
|
629
|
+
{ id: "hargow", label: "하카우" },
|
|
630
|
+
],
|
|
631
|
+
},
|
|
632
|
+
],
|
|
633
|
+
},
|
|
634
|
+
];
|
|
635
|
+
|
|
636
|
+
export const dividerViewOptions: CascaderOption[] = [
|
|
637
|
+
{
|
|
638
|
+
id: "korea",
|
|
639
|
+
label: "한국",
|
|
640
|
+
children: [
|
|
641
|
+
{
|
|
642
|
+
id: "seoul",
|
|
643
|
+
label: "서울",
|
|
644
|
+
children: [
|
|
645
|
+
{
|
|
646
|
+
id: "gangnam",
|
|
647
|
+
label: "강남구",
|
|
648
|
+
children: [
|
|
649
|
+
{ id: "gangnam-gu", label: "강남구" },
|
|
650
|
+
{ id: "gangnam-gun", label: "강남군" },
|
|
651
|
+
],
|
|
652
|
+
},
|
|
653
|
+
{ id: "seocho", label: "서초구" },
|
|
654
|
+
{
|
|
655
|
+
id: "",
|
|
656
|
+
label: "",
|
|
657
|
+
role: "divider",
|
|
658
|
+
},
|
|
659
|
+
{ id: "mapo", label: "마포구" },
|
|
660
|
+
{ id: "jongno", label: "종로구" },
|
|
661
|
+
{ id: "songpa", label: "송파구" },
|
|
662
|
+
],
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
id: "busan",
|
|
666
|
+
label: "부산",
|
|
667
|
+
children: [
|
|
668
|
+
{ id: "gwangsan", label: "광산구" },
|
|
669
|
+
{ id: "gijang", label: "기장군" },
|
|
670
|
+
{ id: "yeonje", label: "연제구" },
|
|
671
|
+
{
|
|
672
|
+
id: "",
|
|
673
|
+
label: "",
|
|
674
|
+
role: "divider",
|
|
675
|
+
},
|
|
676
|
+
{ id: "namgu", label: "남구" },
|
|
677
|
+
{ id: "saha", label: "사하구" },
|
|
678
|
+
{ id: "suyeong", label: "수영구" },
|
|
679
|
+
],
|
|
680
|
+
},
|
|
681
|
+
{ id: "incheon", label: "인천" },
|
|
682
|
+
{ id: "gwangju", label: "광주" },
|
|
683
|
+
{
|
|
684
|
+
id: "daegu",
|
|
685
|
+
label: "대구",
|
|
686
|
+
children: [
|
|
687
|
+
{ id: "daegu-gu", label: "대구구" },
|
|
688
|
+
{ id: "daegu-gun", label: "대구군" },
|
|
689
|
+
{ id: "daegu-seogu", label: "서구" },
|
|
690
|
+
{ id: "daegu-suseong", label: "수성구" },
|
|
691
|
+
{ id: "daegu-bukgu", label: "북구" },
|
|
692
|
+
{ id: "daegu-donggu", label: "동구" },
|
|
693
|
+
{ id: "daegu-yeongdong", label: "영동군" },
|
|
694
|
+
],
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
id: "daejeon",
|
|
698
|
+
label: "대전",
|
|
699
|
+
children: [
|
|
700
|
+
{ id: "daejeon-gu", label: "대전구" },
|
|
701
|
+
{ id: "daejeon-gun", label: "대전군" },
|
|
702
|
+
{ id: "daejeon-seogu", label: "서구" },
|
|
703
|
+
{
|
|
704
|
+
id: "",
|
|
705
|
+
label: "",
|
|
706
|
+
role: "divider",
|
|
707
|
+
},
|
|
708
|
+
{ id: "daejeon-suseong", label: "수성구" },
|
|
709
|
+
{ id: "daejeon-bukgu", label: "북구" },
|
|
710
|
+
{ id: "daejeon-donggu", label: "동구" },
|
|
711
|
+
{ id: "daejeon-yeongdong", label: "영동군" },
|
|
712
|
+
],
|
|
713
|
+
},
|
|
714
|
+
{ id: "ulsan", label: "울산" },
|
|
715
|
+
{ id: "gyeonggi", label: "경기" },
|
|
716
|
+
{
|
|
717
|
+
id: "jeju",
|
|
718
|
+
label: "제주도",
|
|
719
|
+
children: [
|
|
720
|
+
{ id: "jeju-gu", label: "제주시" },
|
|
721
|
+
{ id: "jeju-gun", label: "제주군" },
|
|
722
|
+
{
|
|
723
|
+
id: "",
|
|
724
|
+
label: "",
|
|
725
|
+
role: "divider",
|
|
726
|
+
},
|
|
727
|
+
{ id: "jeju-seogu", label: "서귀포시" },
|
|
728
|
+
{ id: "jeju-seogwipo", label: "서귀포시" },
|
|
729
|
+
],
|
|
730
|
+
},
|
|
731
|
+
],
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
id: "japan",
|
|
735
|
+
label: "일본",
|
|
736
|
+
children: [
|
|
737
|
+
{
|
|
738
|
+
id: "tokyo",
|
|
739
|
+
label: "도쿄",
|
|
740
|
+
children: [
|
|
741
|
+
{ id: "yokohama", label: "요코하마" },
|
|
742
|
+
{ id: "shibuya", label: "渋谷区" },
|
|
743
|
+
],
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
id: "osaka",
|
|
747
|
+
label: "오사카",
|
|
748
|
+
children: [],
|
|
749
|
+
},
|
|
750
|
+
],
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
id: "china",
|
|
754
|
+
label: "중국",
|
|
755
|
+
children: [
|
|
756
|
+
{
|
|
757
|
+
id: "beijing",
|
|
758
|
+
label: "베이징",
|
|
759
|
+
children: [],
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
id: "shanghai",
|
|
763
|
+
label: "상하이",
|
|
764
|
+
children: [],
|
|
765
|
+
},
|
|
766
|
+
],
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
id: "",
|
|
770
|
+
label: "",
|
|
771
|
+
role: "divider",
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
id: "korean-food",
|
|
775
|
+
label: "한식",
|
|
776
|
+
children: [
|
|
777
|
+
{
|
|
778
|
+
id: "korean-main",
|
|
779
|
+
label: "메인 요리",
|
|
780
|
+
children: [
|
|
781
|
+
{ id: "bibimbap", label: "비빔밥" },
|
|
782
|
+
{ id: "bulgogi", label: "불고기" },
|
|
783
|
+
{ id: "kimchi-stew", label: "김치찌개" },
|
|
784
|
+
],
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
id: "korean-side",
|
|
788
|
+
label: "반찬",
|
|
789
|
+
children: [
|
|
790
|
+
{ id: "kimchi", label: "김치" },
|
|
791
|
+
{ id: "namul", label: "나물" },
|
|
792
|
+
{ id: "jeon", label: "전" },
|
|
793
|
+
],
|
|
794
|
+
},
|
|
795
|
+
],
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
id: "japanese-food",
|
|
799
|
+
label: "일식",
|
|
800
|
+
children: [
|
|
801
|
+
{
|
|
802
|
+
id: "sushi",
|
|
803
|
+
label: "스시/롤",
|
|
804
|
+
children: [
|
|
805
|
+
{ id: "nigiri", label: "니기리" },
|
|
806
|
+
{ id: "maki", label: "마키" },
|
|
807
|
+
{ id: "chirashi", label: "치라시" },
|
|
808
|
+
],
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
id: "japanese-noodle",
|
|
812
|
+
label: "면류",
|
|
813
|
+
children: [
|
|
814
|
+
{ id: "ramen", label: "라멘" },
|
|
815
|
+
{ id: "udon", label: "우동" },
|
|
816
|
+
{ id: "soba", label: "소바" },
|
|
817
|
+
],
|
|
818
|
+
},
|
|
819
|
+
],
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
id: "chinese-food",
|
|
823
|
+
label: "중식",
|
|
824
|
+
children: [
|
|
825
|
+
{
|
|
826
|
+
id: "chinese-main",
|
|
827
|
+
label: "메인 요리",
|
|
828
|
+
children: [
|
|
829
|
+
{ id: "mapo-tofu", label: "마파두부" },
|
|
830
|
+
{ id: "kungpao-chicken", label: "궁보계정" },
|
|
831
|
+
{ id: "jajangmyeon", label: "짜장면" },
|
|
832
|
+
],
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
id: "chinese-dim-sum",
|
|
836
|
+
label: "딤섬",
|
|
837
|
+
children: [
|
|
838
|
+
{ id: "xiaolongbao", label: "샤오롱바오" },
|
|
839
|
+
{ id: "shumai", label: "슈마이" },
|
|
840
|
+
{ id: "hargow", label: "하카우" },
|
|
841
|
+
],
|
|
842
|
+
},
|
|
843
|
+
],
|
|
844
|
+
},
|
|
845
|
+
];
|
|
846
|
+
|
|
847
|
+
export const CustomizedCascaderOptions: CascaderOption[] = [
|
|
848
|
+
{
|
|
849
|
+
id: "seoul",
|
|
850
|
+
label: "서울특별시",
|
|
851
|
+
themeColor: "#ae1932",
|
|
852
|
+
children: [
|
|
853
|
+
{ id: "gangnam", label: "강남구" },
|
|
854
|
+
{ id: "gangdong", label: "강동구" },
|
|
855
|
+
{ id: "gangbuk", label: "강북구" },
|
|
856
|
+
{ id: "gangseo", label: "강서구" },
|
|
857
|
+
{ id: "gwanak", label: "관악구" },
|
|
858
|
+
{ id: "gwangjin", label: "광진구" },
|
|
859
|
+
{ id: "guro", label: "구로구" },
|
|
860
|
+
{ id: "geumcheon", label: "금천구" },
|
|
861
|
+
{ id: "nowon", label: "노원구" },
|
|
862
|
+
{ id: "dobong", label: "도봉구" },
|
|
863
|
+
{ id: "dongdaemun", label: "동대문구" },
|
|
864
|
+
{ id: "dongjak", label: "동작구" },
|
|
865
|
+
{ id: "mapo", label: "마포구" },
|
|
866
|
+
{ id: "seodaemun", label: "서대문구" },
|
|
867
|
+
{ id: "seocho", label: "서초구" },
|
|
868
|
+
{ id: "seongdong", label: "성동구" },
|
|
869
|
+
{ id: "seongbuk", label: "성북구" },
|
|
870
|
+
{ id: "songpa", label: "송파구" },
|
|
871
|
+
{ id: "yangcheon", label: "양천구" },
|
|
872
|
+
{ id: "yeongdeungpo", label: "영등포구" },
|
|
873
|
+
{ id: "yongsan", label: "용산구" },
|
|
874
|
+
{ id: "eunpyeong", label: "은평구" },
|
|
875
|
+
{ id: "jongno", label: "종로구" },
|
|
876
|
+
{ id: "jung-gu-seoul", label: "중구" },
|
|
877
|
+
{ id: "jungnang", label: "중랑구" },
|
|
878
|
+
],
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
id: "busan",
|
|
882
|
+
label: "부산광역시",
|
|
883
|
+
themeColor: "#005bac",
|
|
884
|
+
children: [
|
|
885
|
+
{ id: "gangseo-busan", label: "강서구" },
|
|
886
|
+
{ id: "geumjeong", label: "금정구" },
|
|
887
|
+
{ id: "gijang", label: "기장군" },
|
|
888
|
+
{ id: "nam-gu-busan", label: "남구" },
|
|
889
|
+
{ id: "dong-gu-busan", label: "동구" },
|
|
890
|
+
{ id: "dongnae", label: "동래구" },
|
|
891
|
+
{ id: "busanjin", label: "부산진구" },
|
|
892
|
+
{ id: "buk-gu-busan", label: "북구" },
|
|
893
|
+
{ id: "sasang", label: "사상구" },
|
|
894
|
+
{ id: "saha", label: "사하구" },
|
|
895
|
+
{ id: "seo-gu-busan", label: "서구" },
|
|
896
|
+
{ id: "suyeong", label: "수영구" },
|
|
897
|
+
{ id: "yeonje", label: "연제구" },
|
|
898
|
+
{ id: "yeongdo", label: "영도구" },
|
|
899
|
+
{ id: "jung-gu-busan", label: "중구" },
|
|
900
|
+
{ id: "haeundae", label: "해운대구" },
|
|
901
|
+
],
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
id: "daegu",
|
|
905
|
+
label: "대구광역시",
|
|
906
|
+
themeColor: "#008837",
|
|
907
|
+
children: [
|
|
908
|
+
{ id: "nam-gu-daegu", label: "남구" },
|
|
909
|
+
{ id: "dalseo", label: "달서구" },
|
|
910
|
+
{ id: "dalseong", label: "달성군" },
|
|
911
|
+
{ id: "dong-gu-daegu", label: "동구" },
|
|
912
|
+
{ id: "buk-gu-daegu", label: "북구" },
|
|
913
|
+
{ id: "seo-gu-daegu", label: "서구" },
|
|
914
|
+
{ id: "suseong", label: "수성구" },
|
|
915
|
+
{ id: "jung-gu-daegu", label: "중구" },
|
|
916
|
+
],
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
id: "incheon",
|
|
920
|
+
label: "인천광역시",
|
|
921
|
+
themeColor: "#0079c1",
|
|
922
|
+
children: [
|
|
923
|
+
{ id: "ganghwa", label: "강화군" },
|
|
924
|
+
{ id: "gyeyang", label: "계양구" },
|
|
925
|
+
{ id: "namdong", label: "남동구" },
|
|
926
|
+
{ id: "dong-gu-incheon", label: "동구" },
|
|
927
|
+
{ id: "michuhol", label: "미추홀구" },
|
|
928
|
+
{ id: "bupyeong", label: "부평구" },
|
|
929
|
+
{ id: "seo-gu-incheon", label: "서구" },
|
|
930
|
+
{ id: "yeonsu", label: "연수구" },
|
|
931
|
+
{ id: "ongjin", label: "옹진군" },
|
|
932
|
+
{ id: "jung-gu-incheon", label: "중구" },
|
|
933
|
+
],
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
id: "gwangju",
|
|
937
|
+
label: "광주광역시",
|
|
938
|
+
themeColor: "#ef4123",
|
|
939
|
+
children: [
|
|
940
|
+
{ id: "gwangsan", label: "광산구" },
|
|
941
|
+
{ id: "nam-gu-gwangju", label: "남구" },
|
|
942
|
+
{ id: "dong-gu-gwangju", label: "동구" },
|
|
943
|
+
{ id: "buk-gu-gwangju", label: "북구" },
|
|
944
|
+
{ id: "seo-gu-gwangju", label: "서구" },
|
|
945
|
+
],
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
id: "daejeon",
|
|
949
|
+
label: "대전광역시",
|
|
950
|
+
themeColor: "#00ae4d",
|
|
951
|
+
children: [
|
|
952
|
+
{ id: "daedeok", label: "대덕구" },
|
|
953
|
+
{ id: "dong-gu-daejeon", label: "동구" },
|
|
954
|
+
{ id: "seo-gu-daejeon", label: "서구" },
|
|
955
|
+
{ id: "yuseong", label: "유성구" },
|
|
956
|
+
{ id: "jung-gu-daejeon", label: "중구" },
|
|
957
|
+
],
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
id: "ulsan",
|
|
961
|
+
label: "울산광역시",
|
|
962
|
+
themeColor: "#008c95",
|
|
963
|
+
children: [
|
|
964
|
+
{ id: "nam-gu-ulsan", label: "남구" },
|
|
965
|
+
{ id: "dong-gu-ulsan", label: "동구" },
|
|
966
|
+
{ id: "buk-gu-ulsan", label: "북구" },
|
|
967
|
+
{ id: "ulju", label: "울주군" },
|
|
968
|
+
{ id: "jung-gu-ulsan", label: "중구" },
|
|
969
|
+
],
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
id: "sejong",
|
|
973
|
+
label: "세종특별자치시",
|
|
974
|
+
themeColor: "#01a0c6",
|
|
975
|
+
children: [{ id: "sejong-si", label: "세종시" }],
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
id: "gyeonggi",
|
|
979
|
+
label: "경기도",
|
|
980
|
+
themeColor: "#2f9638",
|
|
981
|
+
children: [
|
|
982
|
+
{ id: "gapyeong", label: "가평군" },
|
|
983
|
+
{ id: "goyang", label: "고양시" },
|
|
984
|
+
{ id: "gwacheon", label: "과천시" },
|
|
985
|
+
{ id: "gwangmyeong", label: "광명시" },
|
|
986
|
+
{ id: "gwangju-gyeonggi", label: "광주시" },
|
|
987
|
+
{ id: "guri", label: "구리시" },
|
|
988
|
+
{ id: "gunpo", label: "군포시" },
|
|
989
|
+
{ id: "gimpo", label: "김포시" },
|
|
990
|
+
{ id: "namyangju", label: "남양주시" },
|
|
991
|
+
{ id: "dongducheon", label: "동두천시" },
|
|
992
|
+
{ id: "bucheon", label: "부천시" },
|
|
993
|
+
{ id: "seongnam", label: "성남시" },
|
|
994
|
+
{ id: "suwon", label: "수원시" },
|
|
995
|
+
{ id: "siheung", label: "시흥시" },
|
|
996
|
+
{ id: "ansan", label: "안산시" },
|
|
997
|
+
{ id: "anseong", label: "안성시" },
|
|
998
|
+
{ id: "anyang", label: "안양시" },
|
|
999
|
+
{ id: "yangju", label: "양주시" },
|
|
1000
|
+
{ id: "yangpyeong", label: "양평군" },
|
|
1001
|
+
{ id: "yeoju", label: "여주시" },
|
|
1002
|
+
{ id: "yeoncheon", label: "연천군" },
|
|
1003
|
+
{ id: "osan", label: "오산시" },
|
|
1004
|
+
{ id: "yongin", label: "용인시" },
|
|
1005
|
+
{ id: "uiwang", label: "의왕시" },
|
|
1006
|
+
{ id: "uijeongbu", label: "의정부시" },
|
|
1007
|
+
{ id: "icheon", label: "이천시" },
|
|
1008
|
+
{ id: "paju", label: "파주시" },
|
|
1009
|
+
{ id: "pyeongtaek", label: "평택시" },
|
|
1010
|
+
{ id: "pocheon", label: "포천시" },
|
|
1011
|
+
{ id: "hanam", label: "하남시" },
|
|
1012
|
+
{ id: "hwaseong", label: "화성시" },
|
|
1013
|
+
],
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
id: "gangwon",
|
|
1017
|
+
label: "강원도",
|
|
1018
|
+
children: [
|
|
1019
|
+
{ id: "gangneung", label: "강릉시" },
|
|
1020
|
+
{ id: "goseong-gangwon", label: "고성군" },
|
|
1021
|
+
{ id: "donghae", label: "동해시" },
|
|
1022
|
+
{ id: "samcheok", label: "삼척시" },
|
|
1023
|
+
{ id: "sokcho", label: "속초시" },
|
|
1024
|
+
{ id: "yanggu", label: "양구군" },
|
|
1025
|
+
{ id: "yangyang", label: "양양군" },
|
|
1026
|
+
{ id: "yeongwol", label: "영월군" },
|
|
1027
|
+
{ id: "wonju", label: "원주시" },
|
|
1028
|
+
{ id: "inje", label: "인제군" },
|
|
1029
|
+
{ id: "jeongseon", label: "정선군" },
|
|
1030
|
+
{ id: "cheorwon", label: "철원군" },
|
|
1031
|
+
{ id: "chuncheon", label: "춘천시" },
|
|
1032
|
+
{ id: "taebaek", label: "태백시" },
|
|
1033
|
+
{ id: "pyeongchang", label: "평창군" },
|
|
1034
|
+
{ id: "hongcheon", label: "홍천군" },
|
|
1035
|
+
{ id: "hwacheon", label: "화천군" },
|
|
1036
|
+
{ id: "hoengseong", label: "횡성군" },
|
|
1037
|
+
],
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
id: "chungbuk",
|
|
1041
|
+
label: "충청북도",
|
|
1042
|
+
children: [
|
|
1043
|
+
{ id: "goesan", label: "괴산군" },
|
|
1044
|
+
{ id: "danyang", label: "단양군" },
|
|
1045
|
+
{ id: "boeun", label: "보은군" },
|
|
1046
|
+
{ id: "yeongdong", label: "영동군" },
|
|
1047
|
+
{ id: "okcheon", label: "옥천군" },
|
|
1048
|
+
{ id: "eumseong", label: "음성군" },
|
|
1049
|
+
{ id: "jecheon", label: "제천시" },
|
|
1050
|
+
{ id: "jincheon", label: "진천군" },
|
|
1051
|
+
{ id: "cheongju", label: "청주시" },
|
|
1052
|
+
{ id: "chungju", label: "충주시" },
|
|
1053
|
+
],
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
id: "chungnam",
|
|
1057
|
+
label: "충청남도",
|
|
1058
|
+
children: [
|
|
1059
|
+
{ id: "gyeryong", label: "계룡시" },
|
|
1060
|
+
{ id: "gongju", label: "공주시" },
|
|
1061
|
+
{ id: "geumsan", label: "금산군" },
|
|
1062
|
+
{ id: "nonsan", label: "논산시" },
|
|
1063
|
+
{ id: "dangjin", label: "당진시" },
|
|
1064
|
+
{ id: "boryeong", label: "보령시" },
|
|
1065
|
+
{ id: "buyeo", label: "부여군" },
|
|
1066
|
+
{ id: "seosan", label: "서산시" },
|
|
1067
|
+
{ id: "seocheon", label: "서천군" },
|
|
1068
|
+
{ id: "asan", label: "아산시" },
|
|
1069
|
+
{ id: "yesan", label: "예산군" },
|
|
1070
|
+
{ id: "cheonan", label: "천안시" },
|
|
1071
|
+
{ id: "cheongyang", label: "청양군" },
|
|
1072
|
+
{ id: "taean", label: "태안군" },
|
|
1073
|
+
{ id: "hongseong", label: "홍성군" },
|
|
1074
|
+
],
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
id: "jeonbuk",
|
|
1078
|
+
label: "전라북도",
|
|
1079
|
+
children: [
|
|
1080
|
+
{ id: "gochang", label: "고창군" },
|
|
1081
|
+
{ id: "gunsan", label: "군산시" },
|
|
1082
|
+
{ id: "gimje", label: "김제시" },
|
|
1083
|
+
{ id: "namwon", label: "남원시" },
|
|
1084
|
+
{ id: "muju", label: "무주군" },
|
|
1085
|
+
{ id: "buan", label: "부안군" },
|
|
1086
|
+
{ id: "sunchang", label: "순창군" },
|
|
1087
|
+
{ id: "wanju", label: "완주군" },
|
|
1088
|
+
{ id: "iksan", label: "익산시" },
|
|
1089
|
+
{ id: "imsil", label: "임실군" },
|
|
1090
|
+
{ id: "jangsu", label: "장수군" },
|
|
1091
|
+
{ id: "jeonju", label: "전주시" },
|
|
1092
|
+
{ id: "jeongeup", label: "정읍시" },
|
|
1093
|
+
{ id: "jinan", label: "진안군" },
|
|
1094
|
+
],
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
id: "jeonnam",
|
|
1098
|
+
label: "전라남도",
|
|
1099
|
+
children: [
|
|
1100
|
+
{ id: "gangjin", label: "강진군" },
|
|
1101
|
+
{ id: "goheung", label: "고흥군" },
|
|
1102
|
+
{ id: "gokseong", label: "곡성군" },
|
|
1103
|
+
{ id: "gwangyang", label: "광양시" },
|
|
1104
|
+
{ id: "gurye", label: "구례군" },
|
|
1105
|
+
{ id: "naju", label: "나주시" },
|
|
1106
|
+
{ id: "damyang", label: "담양군" },
|
|
1107
|
+
{ id: "mokpo", label: "목포시" },
|
|
1108
|
+
{ id: "muan", label: "무안군" },
|
|
1109
|
+
{ id: "boseong", label: "보성군" },
|
|
1110
|
+
{ id: "suncheon", label: "순천시" },
|
|
1111
|
+
{ id: "sinan", label: "신안군" },
|
|
1112
|
+
{ id: "yeosu", label: "여수시" },
|
|
1113
|
+
{ id: "yeonggwang", label: "영광군" },
|
|
1114
|
+
{ id: "yeongam", label: "영암군" },
|
|
1115
|
+
{ id: "wando", label: "완도군" },
|
|
1116
|
+
{ id: "jangseong", label: "장성군" },
|
|
1117
|
+
{ id: "jangheung", label: "장흥군" },
|
|
1118
|
+
{ id: "jindo", label: "진도군" },
|
|
1119
|
+
{ id: "hampyeong", label: "함평군" },
|
|
1120
|
+
{ id: "haenam", label: "해남군" },
|
|
1121
|
+
{ id: "hwasun", label: "화순군" },
|
|
1122
|
+
],
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
id: "gyeongbuk",
|
|
1126
|
+
label: "경상북도",
|
|
1127
|
+
children: [
|
|
1128
|
+
{ id: "gyeongsan", label: "경산시" },
|
|
1129
|
+
{ id: "gyeongju", label: "경주시" },
|
|
1130
|
+
{ id: "goryeong", label: "고령군" },
|
|
1131
|
+
{ id: "gumi", label: "구미시" },
|
|
1132
|
+
{ id: "gunwi", label: "군위군" },
|
|
1133
|
+
{ id: "gimcheon", label: "김천시" },
|
|
1134
|
+
{ id: "mungyeong", label: "문경시" },
|
|
1135
|
+
{ id: "bonghwa", label: "봉화군" },
|
|
1136
|
+
{ id: "sangju", label: "상주시" },
|
|
1137
|
+
{ id: "seongju", label: "성주군" },
|
|
1138
|
+
{ id: "andong", label: "안동시" },
|
|
1139
|
+
{ id: "yeongdeok", label: "영덕군" },
|
|
1140
|
+
{ id: "yeongyang", label: "영양군" },
|
|
1141
|
+
{ id: "yeongju", label: "영주시" },
|
|
1142
|
+
{ id: "yeongcheon", label: "영천시" },
|
|
1143
|
+
{ id: "yecheon", label: "예천군" },
|
|
1144
|
+
{ id: "ulleung", label: "울릉군" },
|
|
1145
|
+
{ id: "uljin", label: "울진군" },
|
|
1146
|
+
{ id: "uiseong", label: "의성군" },
|
|
1147
|
+
{ id: "cheongdo", label: "청도군" },
|
|
1148
|
+
{ id: "cheongsong", label: "청송군" },
|
|
1149
|
+
{ id: "chilgok", label: "칠곡군" },
|
|
1150
|
+
{ id: "pohang", label: "포항시" },
|
|
1151
|
+
],
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
id: "gyeongnam",
|
|
1155
|
+
label: "경상남도",
|
|
1156
|
+
children: [
|
|
1157
|
+
{ id: "geoje", label: "거제시" },
|
|
1158
|
+
{ id: "geochang", label: "거창군" },
|
|
1159
|
+
{ id: "goseong-gyeongnam", label: "고성군" },
|
|
1160
|
+
{ id: "gimhae", label: "김해시" },
|
|
1161
|
+
{ id: "namhae", label: "남해군" },
|
|
1162
|
+
{ id: "miryang", label: "밀양시" },
|
|
1163
|
+
{ id: "sacheon", label: "사천시" },
|
|
1164
|
+
{ id: "sancheong", label: "산청군" },
|
|
1165
|
+
{ id: "yangsan", label: "양산시" },
|
|
1166
|
+
{ id: "uiryeong", label: "의령군" },
|
|
1167
|
+
{ id: "jinju", label: "진주시" },
|
|
1168
|
+
{ id: "changnyeong", label: "창녕군" },
|
|
1169
|
+
{ id: "changwon", label: "창원시" },
|
|
1170
|
+
{ id: "tongyeong", label: "통영시" },
|
|
1171
|
+
{ id: "hadong", label: "하동군" },
|
|
1172
|
+
{ id: "haman", label: "함안군" },
|
|
1173
|
+
{ id: "hamyang", label: "함양군" },
|
|
1174
|
+
{ id: "hapcheon", label: "합천군" },
|
|
1175
|
+
],
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
id: "jeju",
|
|
1179
|
+
label: "제주특별자치도",
|
|
1180
|
+
children: [
|
|
1181
|
+
{ id: "seogwipo", label: "서귀포시" },
|
|
1182
|
+
{ id: "jeju-si", label: "제주시" },
|
|
1183
|
+
],
|
|
1184
|
+
},
|
|
1185
|
+
];
|