@ncds/ui-admin 1.6.4-alpha.1 → 1.7.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.
Files changed (868) hide show
  1. package/dist/cjs/assets/scripts/baseBox.js +148 -0
  2. package/dist/cjs/assets/scripts/comboBox.js +188 -0
  3. package/dist/cjs/assets/scripts/datePicker.js +706 -0
  4. package/dist/cjs/assets/scripts/featuredIcon.js +95 -0
  5. package/dist/cjs/assets/scripts/fileInput/const/classNames.js +31 -0
  6. package/dist/cjs/assets/scripts/fileInput/const/index.js +27 -0
  7. package/dist/cjs/assets/scripts/fileInput/const/types.js +13 -0
  8. package/dist/cjs/assets/scripts/fileInput/fileInput.js +79 -0
  9. package/dist/cjs/assets/scripts/fileInput/fileInputModel.js +61 -0
  10. package/dist/cjs/assets/scripts/fileInput/fileInputView.js +147 -0
  11. package/dist/cjs/assets/scripts/fileInput/index.js +44 -0
  12. package/dist/cjs/assets/scripts/imageFileInput/ImageFileInput.js +187 -0
  13. package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +255 -0
  14. package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputView.js +354 -0
  15. package/dist/cjs/assets/scripts/imageFileInput/const/classNames.js +41 -0
  16. package/dist/cjs/assets/scripts/imageFileInput/const/index.js +27 -0
  17. package/dist/cjs/assets/scripts/imageFileInput/const/types.js +13 -0
  18. package/dist/cjs/assets/scripts/imageFileInput/index.js +44 -0
  19. package/dist/cjs/assets/scripts/index.js +30 -0
  20. package/dist/cjs/assets/scripts/modal/Modal.js +116 -0
  21. package/dist/cjs/assets/scripts/modal/ModalActions.js +128 -0
  22. package/dist/cjs/assets/scripts/modal/ModalContent.js +46 -0
  23. package/dist/cjs/assets/scripts/modal/ModalHeader.js +115 -0
  24. package/dist/cjs/assets/scripts/modal/const/classNames.js +41 -0
  25. package/dist/cjs/assets/scripts/modal/const/index.js +27 -0
  26. package/dist/cjs/assets/scripts/modal/const/types.js +5 -0
  27. package/dist/cjs/assets/scripts/modal/index.js +61 -0
  28. package/dist/cjs/assets/scripts/modal/utils/contentUtils.js +35 -0
  29. package/dist/cjs/assets/scripts/notification/FloatingNotification.js +180 -0
  30. package/dist/cjs/assets/scripts/notification/FullWidthNotification.js +120 -0
  31. package/dist/cjs/assets/scripts/notification/MessageNotification.js +146 -0
  32. package/dist/cjs/assets/scripts/notification/Notification.js +116 -0
  33. package/dist/cjs/assets/scripts/notification/const/classNames.js +50 -0
  34. package/dist/cjs/assets/scripts/notification/const/icons.js +45 -0
  35. package/dist/cjs/assets/scripts/notification/const/index.js +87 -0
  36. package/dist/cjs/assets/scripts/notification/const/sizes.js +54 -0
  37. package/dist/cjs/assets/scripts/notification/const/types.js +14 -0
  38. package/dist/cjs/assets/scripts/notification/index.js +92 -0
  39. package/dist/cjs/assets/scripts/notification/utils.js +92 -0
  40. package/dist/cjs/assets/scripts/progress-bar/ProgressBar.js +272 -0
  41. package/dist/cjs/assets/scripts/progress-bar/index.js +12 -0
  42. package/dist/cjs/assets/scripts/selectBox.js +229 -0
  43. package/dist/cjs/assets/scripts/shared/ButtonCloseX.js +46 -0
  44. package/dist/cjs/assets/scripts/tab.js +40 -0
  45. package/dist/cjs/assets/scripts/tag/Tag.js +268 -0
  46. package/dist/cjs/assets/scripts/tag/const/classNames.js +24 -0
  47. package/dist/cjs/assets/scripts/tag/const/index.js +38 -0
  48. package/dist/cjs/assets/scripts/tag/const/sizes.js +13 -0
  49. package/dist/cjs/assets/scripts/tag/const/types.js +5 -0
  50. package/dist/cjs/assets/scripts/tag/index.js +44 -0
  51. package/dist/cjs/assets/scripts/tooltip/Tooltip.js +380 -0
  52. package/dist/cjs/assets/scripts/tooltip/TooltipLayerManager.js +84 -0
  53. package/dist/cjs/assets/scripts/tooltip/const/classNames.js +29 -0
  54. package/dist/cjs/assets/scripts/tooltip/const/constants.js +56 -0
  55. package/dist/cjs/assets/scripts/tooltip/const/icons.js +15 -0
  56. package/dist/cjs/assets/scripts/tooltip/const/index.js +123 -0
  57. package/dist/cjs/assets/scripts/tooltip/const/templates.js +49 -0
  58. package/dist/cjs/assets/scripts/tooltip/const/types.js +5 -0
  59. package/dist/cjs/assets/scripts/tooltip/index.js +57 -0
  60. package/dist/cjs/assets/scripts/tooltip/utils.js +41 -0
  61. package/dist/cjs/assets/scripts/utils/debounce.js +33 -0
  62. package/dist/cjs/assets/scripts/utils/unifiedBox/domRenderer.js +384 -0
  63. package/dist/cjs/assets/scripts/utils/unifiedBox/dropdownModel.js +326 -0
  64. package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxController.js +649 -0
  65. package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +669 -0
  66. package/dist/cjs/src/components/badge/Badge.js +1 -1
  67. package/dist/cjs/src/components/breadcrumb/BreadCrumb.js +1 -1
  68. package/dist/cjs/src/components/button/Button.js +13 -5
  69. package/dist/cjs/src/components/button/ButtonGroup.js +4 -4
  70. package/dist/cjs/src/components/carousel/CarouselArrow.js +2 -2
  71. package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +4 -5
  72. package/dist/cjs/src/components/checkbox/CheckboxInput.js +1 -1
  73. package/dist/cjs/src/components/combobox/ComboBox.js +54 -43
  74. package/dist/cjs/src/components/date-picker/CustomInput.js +3 -1
  75. package/dist/cjs/src/components/date-picker/DatePicker.js +85 -65
  76. package/dist/cjs/src/components/date-picker/RangeDatePicker.js +46 -37
  77. package/dist/cjs/src/components/divider/Divider.js +1 -1
  78. package/dist/cjs/src/components/dot/Dot.js +1 -1
  79. package/dist/cjs/src/components/dropdown/Dropdown.js +3 -2
  80. package/dist/cjs/src/components/featured-icon/FeaturedIcon.js +1 -1
  81. package/dist/cjs/src/components/file-input/FileInput.js +3 -3
  82. package/dist/cjs/src/components/image-file-input/ImageFileInput.js +5 -2
  83. package/dist/cjs/src/components/input/InputBase.js +3 -2
  84. package/dist/cjs/src/components/input/NumberInput.js +1 -1
  85. package/dist/cjs/src/components/notification/index.js +11 -11
  86. package/dist/cjs/src/components/pagination/NavButton.js +3 -1
  87. package/dist/cjs/src/components/pagination/Pagination.js +65 -67
  88. package/dist/cjs/src/components/progress-bar/ProgressBar.js +13 -9
  89. package/dist/cjs/src/components/progress-bar/components/SegmentBar.js +1 -1
  90. package/dist/cjs/src/components/progress-bar/components/SegmentLabels.js +1 -1
  91. package/dist/cjs/src/components/progress-bar/hooks/useProgressBar.js +3 -2
  92. package/dist/cjs/src/components/progress-bar/utils.js +3 -2
  93. package/dist/cjs/src/components/progress-circle/ProgressCircle.js +41 -41
  94. package/dist/cjs/src/components/select/Select.js +2 -2
  95. package/dist/cjs/src/components/selectbox/SelectBox.js +57 -45
  96. package/dist/cjs/src/components/spinner/Spinner.js +5 -4
  97. package/dist/cjs/src/components/spinner/index.js +0 -11
  98. package/dist/cjs/src/components/switch/Switch.js +15 -10
  99. package/dist/cjs/src/components/tab/HorizontalTab.js +8 -5
  100. package/dist/cjs/src/components/tab/TabButton.js +1 -1
  101. package/dist/cjs/src/components/toggle/Toggle.js +13 -15
  102. package/dist/cjs/src/components/tooltip/Tooltip.js +28 -13
  103. package/dist/cjs/src/constant/index.js +8 -8
  104. package/dist/cjs/src/hooks/dropdown/useDropdownKeyboard.js +47 -56
  105. package/dist/cjs/src/hooks/dropdown/useScrollLock.js +26 -19
  106. package/dist/cjs/src/hooks/index.js +4 -4
  107. package/dist/cjs/src/utils/date-picker.js +14 -7
  108. package/dist/cjs/src/utils/dropdown/dropdownUtils.js +6 -8
  109. package/dist/esm/assets/scripts/baseBox.js +143 -0
  110. package/dist/esm/assets/scripts/comboBox.js +183 -0
  111. package/dist/esm/assets/scripts/datePicker.js +699 -0
  112. package/dist/esm/assets/scripts/featuredIcon.js +90 -0
  113. package/dist/esm/assets/scripts/fileInput/const/classNames.js +22 -0
  114. package/dist/esm/assets/scripts/fileInput/const/index.js +2 -0
  115. package/dist/esm/assets/scripts/fileInput/const/types.js +7 -0
  116. package/dist/esm/assets/scripts/fileInput/fileInput.js +74 -0
  117. package/dist/esm/assets/scripts/fileInput/fileInputModel.js +56 -0
  118. package/dist/esm/assets/scripts/fileInput/fileInputView.js +142 -0
  119. package/dist/esm/assets/scripts/fileInput/index.js +9 -0
  120. package/dist/esm/assets/scripts/imageFileInput/ImageFileInput.js +182 -0
  121. package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +250 -0
  122. package/dist/esm/assets/scripts/imageFileInput/ImageFileInputView.js +349 -0
  123. package/dist/esm/assets/scripts/imageFileInput/const/classNames.js +30 -0
  124. package/dist/esm/assets/scripts/imageFileInput/const/index.js +2 -0
  125. package/dist/esm/assets/scripts/imageFileInput/const/types.js +7 -0
  126. package/dist/esm/assets/scripts/imageFileInput/index.js +9 -0
  127. package/dist/esm/assets/scripts/index.js +28 -0
  128. package/dist/esm/assets/scripts/modal/Modal.js +110 -0
  129. package/dist/esm/assets/scripts/modal/ModalActions.js +123 -0
  130. package/dist/esm/assets/scripts/modal/ModalContent.js +41 -0
  131. package/dist/esm/assets/scripts/modal/ModalHeader.js +110 -0
  132. package/dist/esm/assets/scripts/modal/const/classNames.js +31 -0
  133. package/dist/esm/assets/scripts/modal/const/index.js +2 -0
  134. package/dist/esm/assets/scripts/modal/const/types.js +1 -0
  135. package/dist/esm/assets/scripts/modal/index.js +15 -0
  136. package/dist/esm/assets/scripts/modal/utils/contentUtils.js +28 -0
  137. package/dist/esm/assets/scripts/notification/FloatingNotification.js +176 -0
  138. package/dist/esm/assets/scripts/notification/FullWidthNotification.js +115 -0
  139. package/dist/esm/assets/scripts/notification/MessageNotification.js +141 -0
  140. package/dist/esm/assets/scripts/notification/Notification.js +111 -0
  141. package/dist/esm/assets/scripts/notification/const/classNames.js +44 -0
  142. package/dist/esm/assets/scripts/notification/const/icons.js +39 -0
  143. package/dist/esm/assets/scripts/notification/const/index.js +4 -0
  144. package/dist/esm/assets/scripts/notification/const/sizes.js +48 -0
  145. package/dist/esm/assets/scripts/notification/const/types.js +8 -0
  146. package/dist/esm/assets/scripts/notification/index.js +11 -0
  147. package/dist/esm/assets/scripts/notification/utils.js +79 -0
  148. package/dist/esm/assets/scripts/progress-bar/ProgressBar.js +267 -0
  149. package/dist/esm/assets/scripts/progress-bar/index.js +1 -0
  150. package/dist/esm/assets/scripts/selectBox.js +224 -0
  151. package/dist/esm/assets/scripts/shared/ButtonCloseX.js +38 -0
  152. package/dist/esm/assets/scripts/tab.js +35 -0
  153. package/dist/esm/assets/scripts/tag/Tag.js +263 -0
  154. package/dist/esm/assets/scripts/tag/const/classNames.js +16 -0
  155. package/dist/esm/assets/scripts/tag/const/index.js +3 -0
  156. package/dist/esm/assets/scripts/tag/const/sizes.js +7 -0
  157. package/dist/esm/assets/scripts/tag/const/types.js +1 -0
  158. package/dist/esm/assets/scripts/tag/index.js +9 -0
  159. package/dist/esm/assets/scripts/tooltip/Tooltip.js +375 -0
  160. package/dist/esm/assets/scripts/tooltip/TooltipLayerManager.js +79 -0
  161. package/dist/esm/assets/scripts/tooltip/const/classNames.js +23 -0
  162. package/dist/esm/assets/scripts/tooltip/const/constants.js +50 -0
  163. package/dist/esm/assets/scripts/tooltip/const/icons.js +9 -0
  164. package/dist/esm/assets/scripts/tooltip/const/index.js +4 -0
  165. package/dist/esm/assets/scripts/tooltip/const/templates.js +42 -0
  166. package/dist/esm/assets/scripts/tooltip/const/types.js +1 -0
  167. package/dist/esm/assets/scripts/tooltip/index.js +10 -0
  168. package/dist/esm/assets/scripts/tooltip/utils.js +35 -0
  169. package/dist/esm/assets/scripts/utils/debounce.js +27 -0
  170. package/dist/esm/assets/scripts/utils/unifiedBox/domRenderer.js +379 -0
  171. package/dist/esm/assets/scripts/utils/unifiedBox/dropdownModel.js +320 -0
  172. package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxController.js +644 -0
  173. package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +664 -0
  174. package/dist/esm/src/components/badge/Badge.js +4 -3
  175. package/dist/esm/src/components/badge/BadgeGroup.js +3 -2
  176. package/dist/esm/src/components/badge/utils.js +3 -2
  177. package/dist/esm/src/components/breadcrumb/BreadCrumb.js +4 -3
  178. package/dist/esm/src/components/button/Button.js +13 -5
  179. package/dist/esm/src/components/button/ButtonCloseX.js +3 -2
  180. package/dist/esm/src/components/button/ButtonGroup.js +6 -4
  181. package/dist/esm/src/components/carousel/CarouselArrow.js +2 -2
  182. package/dist/esm/src/components/carousel/CarouselNumberGroup.js +4 -5
  183. package/dist/esm/src/components/checkbox/CheckboxInput.js +1 -1
  184. package/dist/esm/src/components/combobox/ComboBox.js +58 -46
  185. package/dist/esm/src/components/date-picker/CustomInput.js +6 -3
  186. package/dist/esm/src/components/date-picker/DatePicker.js +88 -67
  187. package/dist/esm/src/components/date-picker/RangeDatePicker.js +49 -39
  188. package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +3 -2
  189. package/dist/esm/src/components/divider/Divider.js +1 -1
  190. package/dist/esm/src/components/dot/Dot.js +4 -3
  191. package/dist/esm/src/components/dropdown/Dropdown.js +3 -2
  192. package/dist/esm/src/components/empty-state/EmptyState.js +3 -2
  193. package/dist/esm/src/components/featured-icon/FeaturedIcon.js +4 -3
  194. package/dist/esm/src/components/file-input/FileInput.js +3 -3
  195. package/dist/esm/src/components/image-file-input/ImageFileInput.js +6 -3
  196. package/dist/esm/src/components/input/InputBase.js +6 -4
  197. package/dist/esm/src/components/input/NumberInput.js +1 -1
  198. package/dist/esm/src/components/modal/Modal.js +3 -2
  199. package/dist/esm/src/components/notification/FloatingNotification.js +3 -2
  200. package/dist/esm/src/components/notification/FullWidthNotification.js +3 -2
  201. package/dist/esm/src/components/notification/MessageNotification.js +3 -2
  202. package/dist/esm/src/components/notification/Notification.js +3 -2
  203. package/dist/esm/src/components/notification/index.js +2 -2
  204. package/dist/esm/src/components/pagination/NavButton.js +3 -1
  205. package/dist/esm/src/components/pagination/Pagination.js +65 -67
  206. package/dist/esm/src/components/progress-bar/ProgressBar.js +13 -9
  207. package/dist/esm/src/components/progress-bar/components/SegmentBar.js +1 -1
  208. package/dist/esm/src/components/progress-bar/components/SegmentLabels.js +5 -4
  209. package/dist/esm/src/components/progress-bar/hooks/useProgressBar.js +3 -2
  210. package/dist/esm/src/components/progress-bar/utils.js +7 -5
  211. package/dist/esm/src/components/progress-circle/ProgressCircle.js +41 -41
  212. package/dist/esm/src/components/select/Select.js +2 -2
  213. package/dist/esm/src/components/select-dropdown/SelectDropdown.js +3 -2
  214. package/dist/esm/src/components/selectbox/SelectBox.js +61 -48
  215. package/dist/esm/src/components/spinner/Spinner.js +5 -4
  216. package/dist/esm/src/components/spinner/index.js +1 -2
  217. package/dist/esm/src/components/switch/Switch.js +19 -13
  218. package/dist/esm/src/components/tab/HorizontalTab.js +12 -8
  219. package/dist/esm/src/components/tab/TabButton.js +4 -3
  220. package/dist/esm/src/components/tag/Tag.js +3 -2
  221. package/dist/esm/src/components/toggle/Toggle.js +14 -16
  222. package/dist/esm/src/components/tooltip/Tooltip.js +29 -14
  223. package/dist/esm/src/constant/index.js +2 -2
  224. package/dist/esm/src/hooks/dropdown/useDropdownKeyboard.js +47 -56
  225. package/dist/esm/src/hooks/dropdown/useScrollLock.js +26 -19
  226. package/dist/esm/src/hooks/index.js +3 -3
  227. package/dist/esm/src/utils/date-picker.js +14 -7
  228. package/dist/esm/src/utils/dropdown/dropdownUtils.js +6 -8
  229. package/dist/temp/assets/scripts/baseBox.d.ts +55 -0
  230. package/dist/temp/assets/scripts/baseBox.js +144 -0
  231. package/dist/temp/assets/scripts/comboBox.d.ts +60 -0
  232. package/dist/temp/assets/scripts/comboBox.js +163 -0
  233. package/dist/temp/assets/scripts/datePicker.d.ts +86 -0
  234. package/dist/temp/assets/scripts/datePicker.js +706 -0
  235. package/dist/temp/assets/scripts/featuredIcon.d.ts +22 -0
  236. package/dist/temp/assets/scripts/featuredIcon.js +86 -0
  237. package/dist/temp/assets/scripts/fileInput/const/classNames.d.ts +15 -0
  238. package/dist/temp/assets/scripts/fileInput/const/classNames.js +20 -0
  239. package/dist/temp/assets/scripts/fileInput/const/index.d.ts +2 -0
  240. package/dist/temp/assets/scripts/fileInput/const/index.js +2 -0
  241. package/dist/temp/assets/scripts/fileInput/const/types.d.ts +88 -0
  242. package/dist/temp/assets/scripts/fileInput/const/types.js +7 -0
  243. package/dist/temp/assets/scripts/fileInput/fileInput.d.ts +13 -0
  244. package/dist/temp/assets/scripts/fileInput/fileInput.js +75 -0
  245. package/dist/temp/assets/scripts/fileInput/fileInputModel.d.ts +12 -0
  246. package/dist/temp/assets/scripts/fileInput/fileInputModel.js +45 -0
  247. package/dist/temp/assets/scripts/fileInput/fileInputView.d.ts +42 -0
  248. package/dist/temp/assets/scripts/fileInput/fileInputView.js +142 -0
  249. package/dist/temp/assets/scripts/fileInput/index.d.ts +3 -0
  250. package/dist/temp/assets/scripts/fileInput/index.js +9 -0
  251. package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.d.ts +63 -0
  252. package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.js +186 -0
  253. package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +73 -0
  254. package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.js +234 -0
  255. package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.d.ts +79 -0
  256. package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.js +348 -0
  257. package/dist/temp/assets/scripts/imageFileInput/const/classNames.d.ts +19 -0
  258. package/dist/temp/assets/scripts/imageFileInput/const/classNames.js +24 -0
  259. package/dist/temp/assets/scripts/imageFileInput/const/index.d.ts +2 -0
  260. package/dist/temp/assets/scripts/imageFileInput/const/index.js +2 -0
  261. package/dist/temp/assets/scripts/imageFileInput/const/types.d.ts +125 -0
  262. package/dist/temp/assets/scripts/imageFileInput/const/types.js +7 -0
  263. package/dist/temp/assets/scripts/imageFileInput/index.d.ts +3 -0
  264. package/dist/temp/assets/scripts/imageFileInput/index.js +9 -0
  265. package/dist/temp/assets/scripts/index.d.ts +32 -0
  266. package/dist/temp/assets/scripts/index.js +28 -0
  267. package/dist/temp/assets/scripts/modal/Modal.d.ts +27 -0
  268. package/dist/temp/assets/scripts/modal/Modal.js +106 -0
  269. package/dist/temp/assets/scripts/modal/ModalActions.d.ts +18 -0
  270. package/dist/temp/assets/scripts/modal/ModalActions.js +125 -0
  271. package/dist/temp/assets/scripts/modal/ModalContent.d.ts +13 -0
  272. package/dist/temp/assets/scripts/modal/ModalContent.js +41 -0
  273. package/dist/temp/assets/scripts/modal/ModalHeader.d.ts +15 -0
  274. package/dist/temp/assets/scripts/modal/ModalHeader.js +102 -0
  275. package/dist/temp/assets/scripts/modal/const/classNames.d.ts +22 -0
  276. package/dist/temp/assets/scripts/modal/const/classNames.js +23 -0
  277. package/dist/temp/assets/scripts/modal/const/index.d.ts +2 -0
  278. package/dist/temp/assets/scripts/modal/const/index.js +2 -0
  279. package/dist/temp/assets/scripts/modal/const/types.d.ts +61 -0
  280. package/dist/temp/assets/scripts/modal/index.d.ts +7 -0
  281. package/dist/temp/assets/scripts/modal/index.js +15 -0
  282. package/dist/temp/assets/scripts/modal/utils/contentUtils.d.ts +10 -0
  283. package/dist/temp/assets/scripts/modal/utils/contentUtils.js +29 -0
  284. package/dist/temp/assets/scripts/notification/FloatingNotification.d.ts +24 -0
  285. package/dist/temp/assets/scripts/notification/FloatingNotification.js +154 -0
  286. package/dist/temp/assets/scripts/notification/FullWidthNotification.d.ts +21 -0
  287. package/dist/temp/assets/scripts/notification/FullWidthNotification.js +94 -0
  288. package/dist/temp/assets/scripts/notification/MessageNotification.d.ts +22 -0
  289. package/dist/temp/assets/scripts/notification/MessageNotification.js +123 -0
  290. package/dist/temp/assets/scripts/notification/Notification.d.ts +21 -0
  291. package/dist/temp/assets/scripts/notification/Notification.js +108 -0
  292. package/dist/temp/assets/scripts/notification/const/classNames.d.ts +43 -0
  293. package/dist/temp/assets/scripts/notification/const/classNames.js +44 -0
  294. package/dist/temp/assets/scripts/notification/const/icons.d.ts +25 -0
  295. package/dist/temp/assets/scripts/notification/const/icons.js +39 -0
  296. package/dist/temp/assets/scripts/notification/const/index.d.ts +5 -0
  297. package/dist/temp/assets/scripts/notification/const/index.js +4 -0
  298. package/dist/temp/assets/scripts/notification/const/sizes.d.ts +32 -0
  299. package/dist/temp/assets/scripts/notification/const/sizes.js +40 -0
  300. package/dist/temp/assets/scripts/notification/const/types.d.ts +19 -0
  301. package/dist/temp/assets/scripts/notification/const/types.js +8 -0
  302. package/dist/temp/assets/scripts/notification/index.d.ts +7 -0
  303. package/dist/temp/assets/scripts/notification/index.js +11 -0
  304. package/dist/temp/assets/scripts/notification/utils.d.ts +8 -0
  305. package/dist/temp/assets/scripts/notification/utils.js +84 -0
  306. package/dist/temp/assets/scripts/progress-bar/ProgressBar.d.ts +67 -0
  307. package/dist/temp/assets/scripts/progress-bar/ProgressBar.js +258 -0
  308. package/dist/temp/assets/scripts/progress-bar/index.d.ts +1 -0
  309. package/dist/temp/assets/scripts/progress-bar/index.js +1 -0
  310. package/dist/temp/assets/scripts/selectBox.d.ts +50 -0
  311. package/dist/temp/assets/scripts/selectBox.js +194 -0
  312. package/dist/temp/assets/scripts/shared/ButtonCloseX.d.ts +5 -0
  313. package/dist/temp/assets/scripts/shared/ButtonCloseX.js +32 -0
  314. package/dist/temp/assets/scripts/slider.d.ts +41 -0
  315. package/dist/temp/assets/scripts/slider.js +331 -0
  316. package/dist/temp/assets/scripts/tab.d.ts +7 -0
  317. package/dist/temp/assets/scripts/tab.js +35 -0
  318. package/dist/temp/assets/scripts/tag/Tag.d.ts +27 -0
  319. package/dist/temp/assets/scripts/tag/Tag.js +267 -0
  320. package/dist/temp/assets/scripts/tag/const/classNames.d.ts +11 -0
  321. package/dist/temp/assets/scripts/tag/const/classNames.js +12 -0
  322. package/dist/temp/assets/scripts/tag/const/index.d.ts +3 -0
  323. package/dist/temp/assets/scripts/tag/const/index.js +3 -0
  324. package/dist/temp/assets/scripts/tag/const/sizes.d.ts +7 -0
  325. package/dist/temp/assets/scripts/tag/const/sizes.js +7 -0
  326. package/dist/temp/assets/scripts/tag/const/types.d.ts +33 -0
  327. package/dist/temp/assets/scripts/tag/const/types.js +1 -0
  328. package/dist/temp/assets/scripts/tag/index.d.ts +3 -0
  329. package/dist/temp/assets/scripts/tag/index.js +9 -0
  330. package/dist/temp/assets/scripts/tooltip/Tooltip.d.ts +54 -0
  331. package/dist/temp/assets/scripts/tooltip/Tooltip.js +360 -0
  332. package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.d.ts +21 -0
  333. package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.js +74 -0
  334. package/dist/temp/assets/scripts/tooltip/const/classNames.d.ts +17 -0
  335. package/dist/temp/assets/scripts/tooltip/const/classNames.js +23 -0
  336. package/dist/temp/assets/scripts/tooltip/const/constants.d.ts +33 -0
  337. package/dist/temp/assets/scripts/tooltip/const/constants.js +46 -0
  338. package/dist/temp/assets/scripts/tooltip/const/icons.d.ts +4 -0
  339. package/dist/temp/assets/scripts/tooltip/const/icons.js +9 -0
  340. package/dist/temp/assets/scripts/tooltip/const/index.d.ts +5 -0
  341. package/dist/temp/assets/scripts/tooltip/const/index.js +4 -0
  342. package/dist/temp/assets/scripts/tooltip/const/templates.d.ts +16 -0
  343. package/dist/temp/assets/scripts/tooltip/const/templates.js +30 -0
  344. package/dist/temp/assets/scripts/tooltip/const/types.d.ts +14 -0
  345. package/dist/temp/assets/scripts/tooltip/const/types.js +1 -0
  346. package/dist/temp/assets/scripts/tooltip/index.d.ts +6 -0
  347. package/dist/temp/assets/scripts/tooltip/index.js +10 -0
  348. package/dist/temp/assets/scripts/tooltip/utils.d.ts +2 -0
  349. package/dist/temp/assets/scripts/tooltip/utils.js +35 -0
  350. package/dist/temp/assets/scripts/utils/debounce.d.ts +8 -0
  351. package/dist/temp/assets/scripts/utils/debounce.js +27 -0
  352. package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.d.ts +107 -0
  353. package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.js +376 -0
  354. package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +142 -0
  355. package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.js +311 -0
  356. package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +156 -0
  357. package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.js +627 -0
  358. package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +95 -0
  359. package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +559 -0
  360. package/dist/temp/constant/color.d.ts +36 -0
  361. package/dist/temp/constant/color.js +34 -0
  362. package/dist/temp/constant/size.d.ts +1 -0
  363. package/dist/temp/constant/size.js +1 -0
  364. package/dist/temp/index.d.ts +29 -0
  365. package/dist/temp/index.js +29 -0
  366. package/dist/temp/src/components/badge/Badge.d.ts +18 -0
  367. package/dist/temp/src/components/badge/Badge.js +23 -0
  368. package/dist/temp/src/components/badge/BadgeGroup.d.ts +18 -0
  369. package/dist/temp/src/components/badge/BadgeGroup.js +36 -0
  370. package/dist/temp/src/components/badge/index.d.ts +2 -0
  371. package/dist/temp/src/components/badge/index.js +2 -0
  372. package/dist/temp/src/components/badge/utils.d.ts +8 -0
  373. package/dist/temp/src/components/badge/utils.js +17 -0
  374. package/dist/temp/src/components/breadcrumb/BreadCrumb.d.ts +11 -0
  375. package/dist/temp/src/components/breadcrumb/BreadCrumb.js +33 -0
  376. package/dist/temp/src/components/breadcrumb/index.d.ts +1 -0
  377. package/dist/temp/src/components/breadcrumb/index.js +1 -0
  378. package/dist/temp/src/components/button/Button.d.ts +35 -0
  379. package/dist/temp/src/components/button/Button.js +69 -0
  380. package/dist/temp/src/components/button/ButtonCloseX.d.ts +10 -0
  381. package/dist/temp/src/components/button/ButtonCloseX.js +25 -0
  382. package/dist/temp/src/components/button/ButtonGroup.d.ts +311 -0
  383. package/dist/temp/src/components/button/ButtonGroup.js +72 -0
  384. package/dist/temp/src/components/button/ButtonStepper.d.ts +9 -0
  385. package/dist/temp/src/components/button/ButtonStepper.js +6 -0
  386. package/dist/temp/src/components/button/index.d.ts +4 -0
  387. package/dist/temp/src/components/button/index.js +4 -0
  388. package/dist/temp/src/components/carousel/CarouselArrow.d.ts +8 -0
  389. package/dist/temp/src/components/carousel/CarouselArrow.js +24 -0
  390. package/dist/temp/src/components/carousel/CarouselNumberGroup.d.ts +8 -0
  391. package/dist/temp/src/components/carousel/CarouselNumberGroup.js +24 -0
  392. package/dist/temp/src/components/carousel/index.d.ts +2 -0
  393. package/dist/temp/src/components/carousel/index.js +2 -0
  394. package/dist/temp/src/components/checkbox/Checkbox.d.ts +7 -0
  395. package/dist/temp/src/components/checkbox/Checkbox.js +30 -0
  396. package/dist/temp/src/components/checkbox/CheckboxInput.d.ts +9 -0
  397. package/dist/temp/src/components/checkbox/CheckboxInput.js +46 -0
  398. package/dist/temp/src/components/checkbox/index.d.ts +2 -0
  399. package/dist/temp/src/components/checkbox/index.js +2 -0
  400. package/dist/temp/src/components/combobox/ComboBox.d.ts +28 -0
  401. package/dist/temp/src/components/combobox/ComboBox.js +199 -0
  402. package/dist/temp/src/components/combobox/index.d.ts +2 -0
  403. package/dist/temp/src/components/combobox/index.js +1 -0
  404. package/dist/temp/src/components/date-picker/CustomInput.d.ts +10 -0
  405. package/dist/temp/src/components/date-picker/CustomInput.js +34 -0
  406. package/dist/temp/src/components/date-picker/DatePicker.d.ts +24 -0
  407. package/dist/temp/src/components/date-picker/DatePicker.js +326 -0
  408. package/dist/temp/src/components/date-picker/RangeDatePicker.d.ts +26 -0
  409. package/dist/temp/src/components/date-picker/RangeDatePicker.js +117 -0
  410. package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.d.ts +71 -0
  411. package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.js +55 -0
  412. package/dist/temp/src/components/date-picker/index.d.ts +4 -0
  413. package/dist/temp/src/components/date-picker/index.js +4 -0
  414. package/dist/temp/src/components/date-picker/utils.d.ts +2 -0
  415. package/dist/temp/src/components/date-picker/utils.js +8 -0
  416. package/dist/temp/src/components/divider/Divider.d.ts +15 -0
  417. package/dist/temp/src/components/divider/Divider.js +23 -0
  418. package/dist/temp/src/components/divider/index.d.ts +1 -0
  419. package/dist/temp/src/components/divider/index.js +1 -0
  420. package/dist/temp/src/components/dot/Dot.d.ts +24 -0
  421. package/dist/temp/src/components/dot/Dot.js +31 -0
  422. package/dist/temp/src/components/dot/index.d.ts +1 -0
  423. package/dist/temp/src/components/dot/index.js +1 -0
  424. package/dist/temp/src/components/dropdown/Dropdown.d.ts +52 -0
  425. package/dist/temp/src/components/dropdown/Dropdown.js +90 -0
  426. package/dist/temp/src/components/dropdown/index.d.ts +1 -0
  427. package/dist/temp/src/components/dropdown/index.js +1 -0
  428. package/dist/temp/src/components/empty-state/EmptyState.d.ts +14 -0
  429. package/dist/temp/src/components/empty-state/EmptyState.js +33 -0
  430. package/dist/temp/src/components/empty-state/index.d.ts +1 -0
  431. package/dist/temp/src/components/empty-state/index.js +1 -0
  432. package/dist/temp/src/components/featured-icon/FeaturedIcon.d.ts +15 -0
  433. package/dist/temp/src/components/featured-icon/FeaturedIcon.js +36 -0
  434. package/dist/temp/src/components/featured-icon/index.d.ts +1 -0
  435. package/dist/temp/src/components/featured-icon/index.js +1 -0
  436. package/dist/temp/src/components/file-input/FileInput.d.ts +61 -0
  437. package/dist/temp/src/components/file-input/FileInput.js +123 -0
  438. package/dist/temp/src/components/file-input/index.d.ts +1 -0
  439. package/dist/temp/src/components/file-input/index.js +1 -0
  440. package/dist/temp/src/components/image-file-input/ImageFileInput.d.ts +70 -0
  441. package/dist/temp/src/components/image-file-input/ImageFileInput.js +124 -0
  442. package/dist/temp/src/components/image-file-input/components/ImagePreview.d.ts +5 -0
  443. package/dist/temp/src/components/image-file-input/components/ImagePreview.js +18 -0
  444. package/dist/temp/src/components/image-file-input/index.d.ts +1 -0
  445. package/dist/temp/src/components/image-file-input/index.js +1 -0
  446. package/dist/temp/src/components/index.d.ts +33 -0
  447. package/dist/temp/src/components/index.js +32 -0
  448. package/dist/temp/src/components/input/InputBase.d.ts +54 -0
  449. package/dist/temp/src/components/input/InputBase.js +121 -0
  450. package/dist/temp/src/components/input/NumberInput.d.ts +9 -0
  451. package/dist/temp/src/components/input/NumberInput.js +93 -0
  452. package/dist/temp/src/components/input/PasswordInput.d.ts +2 -0
  453. package/dist/temp/src/components/input/PasswordInput.js +51 -0
  454. package/dist/temp/src/components/input/Textarea.d.ts +14 -0
  455. package/dist/temp/src/components/input/Textarea.js +60 -0
  456. package/dist/temp/src/components/input/index.d.ts +4 -0
  457. package/dist/temp/src/components/input/index.js +4 -0
  458. package/dist/temp/src/components/modal/Modal.d.ts +79 -0
  459. package/dist/temp/src/components/modal/Modal.js +101 -0
  460. package/dist/temp/src/components/modal/index.d.ts +1 -0
  461. package/dist/temp/src/components/modal/index.js +1 -0
  462. package/dist/temp/src/components/notification/FloatingNotification.d.ts +37 -0
  463. package/dist/temp/src/components/notification/FloatingNotification.js +79 -0
  464. package/dist/temp/src/components/notification/FullWidthNotification.d.ts +46 -0
  465. package/dist/temp/src/components/notification/FullWidthNotification.js +79 -0
  466. package/dist/temp/src/components/notification/MessageNotification.d.ts +41 -0
  467. package/dist/temp/src/components/notification/MessageNotification.js +57 -0
  468. package/dist/temp/src/components/notification/Notification.d.ts +72 -0
  469. package/dist/temp/src/components/notification/Notification.js +42 -0
  470. package/dist/temp/src/components/notification/index.d.ts +4 -0
  471. package/dist/temp/src/components/notification/index.js +4 -0
  472. package/dist/temp/src/components/pagination/NavButton.d.ts +31 -0
  473. package/dist/temp/src/components/pagination/NavButton.js +66 -0
  474. package/dist/temp/src/components/pagination/Pagination.d.ts +11 -0
  475. package/dist/temp/src/components/pagination/Pagination.js +93 -0
  476. package/dist/temp/src/components/pagination/index.d.ts +2 -0
  477. package/dist/temp/src/components/pagination/index.js +2 -0
  478. package/dist/temp/src/components/progress-bar/ProgressBar.d.ts +2 -0
  479. package/dist/temp/src/components/progress-bar/ProgressBar.js +31 -0
  480. package/dist/temp/src/components/progress-bar/components/SegmentBar.d.ts +7 -0
  481. package/dist/temp/src/components/progress-bar/components/SegmentBar.js +10 -0
  482. package/dist/temp/src/components/progress-bar/components/SegmentLabels.d.ts +15 -0
  483. package/dist/temp/src/components/progress-bar/components/SegmentLabels.js +45 -0
  484. package/dist/temp/src/components/progress-bar/hooks/useProgressBar.d.ts +13 -0
  485. package/dist/temp/src/components/progress-bar/hooks/useProgressBar.js +96 -0
  486. package/dist/temp/src/components/progress-bar/index.d.ts +2 -0
  487. package/dist/temp/src/components/progress-bar/index.js +2 -0
  488. package/dist/temp/src/components/progress-bar/types.d.ts +15 -0
  489. package/dist/temp/src/components/progress-bar/types.js +1 -0
  490. package/dist/temp/src/components/progress-bar/utils.d.ts +13 -0
  491. package/dist/temp/src/components/progress-bar/utils.js +26 -0
  492. package/dist/temp/src/components/progress-circle/ProgressCircle.d.ts +7 -0
  493. package/dist/temp/src/components/progress-circle/ProgressCircle.js +21 -0
  494. package/dist/temp/src/components/progress-circle/index.d.ts +1 -0
  495. package/dist/temp/src/components/progress-circle/index.js +1 -0
  496. package/dist/temp/src/components/radio/Radio.d.ts +7 -0
  497. package/dist/temp/src/components/radio/Radio.js +30 -0
  498. package/dist/temp/src/components/radio/RadioInput.d.ts +8 -0
  499. package/dist/temp/src/components/radio/RadioInput.js +29 -0
  500. package/dist/temp/src/components/radio/index.d.ts +2 -0
  501. package/dist/temp/src/components/radio/index.js +2 -0
  502. package/dist/temp/src/components/select/Select.d.ts +16 -0
  503. package/dist/temp/src/components/select/Select.js +33 -0
  504. package/dist/temp/src/components/select/index.d.ts +1 -0
  505. package/dist/temp/src/components/select/index.js +1 -0
  506. package/dist/temp/src/components/select-dropdown/SelectDropdown.d.ts +29 -0
  507. package/dist/temp/src/components/select-dropdown/SelectDropdown.js +49 -0
  508. package/dist/temp/src/components/select-dropdown/index.d.ts +1 -0
  509. package/dist/temp/src/components/select-dropdown/index.js +1 -0
  510. package/dist/temp/src/components/selectbox/SelectBox.d.ts +27 -0
  511. package/dist/temp/src/components/selectbox/SelectBox.js +163 -0
  512. package/dist/temp/src/components/selectbox/index.d.ts +1 -0
  513. package/dist/temp/src/components/selectbox/index.js +1 -0
  514. package/dist/temp/src/components/shared/hintText/HintText.d.ts +7 -0
  515. package/dist/temp/src/components/shared/hintText/HintText.js +28 -0
  516. package/dist/temp/src/components/shared/hintText/index.d.ts +1 -0
  517. package/dist/temp/src/components/shared/hintText/index.js +1 -0
  518. package/dist/temp/src/components/shared/index.d.ts +2 -0
  519. package/dist/temp/src/components/shared/index.js +2 -0
  520. package/dist/temp/src/components/shared/label/Label.d.ts +7 -0
  521. package/dist/temp/src/components/shared/label/Label.js +28 -0
  522. package/dist/temp/src/components/shared/label/index.d.ts +1 -0
  523. package/dist/temp/src/components/shared/label/index.js +1 -0
  524. package/dist/temp/src/components/slider/Slider.d.ts +14 -0
  525. package/dist/temp/src/components/slider/Slider.js +44 -0
  526. package/dist/temp/src/components/slider/index.d.ts +1 -0
  527. package/dist/temp/src/components/slider/index.js +1 -0
  528. package/dist/temp/src/components/spinner/Spinner.d.ts +9 -0
  529. package/dist/temp/src/components/spinner/Spinner.js +21 -0
  530. package/dist/temp/src/components/spinner/index.d.ts +1 -0
  531. package/dist/temp/src/components/spinner/index.js +1 -0
  532. package/dist/temp/src/components/switch/Switch.d.ts +22 -0
  533. package/dist/temp/src/components/switch/Switch.js +68 -0
  534. package/dist/temp/src/components/switch/index.d.ts +2 -0
  535. package/dist/temp/src/components/switch/index.js +1 -0
  536. package/dist/temp/src/components/tab/HorizontalTab.d.ts +12 -0
  537. package/dist/temp/src/components/tab/HorizontalTab.js +37 -0
  538. package/dist/temp/src/components/tab/TabButton.d.ts +23 -0
  539. package/dist/temp/src/components/tab/TabButton.js +37 -0
  540. package/dist/temp/src/components/tab/VerticalTab.d.ts +9 -0
  541. package/dist/temp/src/components/tab/VerticalTab.js +32 -0
  542. package/dist/temp/src/components/tab/index.d.ts +3 -0
  543. package/dist/temp/src/components/tab/index.js +3 -0
  544. package/dist/temp/src/components/tag/Tag.d.ts +17 -0
  545. package/dist/temp/src/components/tag/Tag.js +110 -0
  546. package/dist/temp/src/components/tag/index.d.ts +1 -0
  547. package/dist/temp/src/components/tag/index.js +1 -0
  548. package/dist/temp/src/components/toggle/Toggle.d.ts +10 -0
  549. package/dist/temp/src/components/toggle/Toggle.js +30 -0
  550. package/dist/temp/src/components/toggle/index.d.ts +1 -0
  551. package/dist/temp/src/components/toggle/index.js +1 -0
  552. package/dist/temp/src/components/tooltip/Tooltip.d.ts +15 -0
  553. package/dist/temp/src/components/tooltip/Tooltip.js +122 -0
  554. package/dist/temp/src/components/tooltip/index.d.ts +1 -0
  555. package/dist/temp/src/components/tooltip/index.js +1 -0
  556. package/dist/temp/src/constant/breakpoint.d.ts +6 -0
  557. package/dist/temp/src/constant/breakpoint.js +6 -0
  558. package/dist/temp/src/constant/date-picker.d.ts +63 -0
  559. package/dist/temp/src/constant/date-picker.js +53 -0
  560. package/dist/temp/src/constant/index.d.ts +2 -0
  561. package/dist/temp/src/constant/index.js +2 -0
  562. package/dist/temp/src/constant/size.d.ts +1 -0
  563. package/dist/temp/src/constant/size.js +1 -0
  564. package/dist/temp/src/hooks/dropdown/index.d.ts +6 -0
  565. package/dist/temp/src/hooks/dropdown/index.js +6 -0
  566. package/dist/temp/src/hooks/dropdown/useDropdown.d.ts +29 -0
  567. package/dist/temp/src/hooks/dropdown/useDropdown.js +84 -0
  568. package/dist/temp/src/hooks/dropdown/useDropdownKeyboard.d.ts +10 -0
  569. package/dist/temp/src/hooks/dropdown/useDropdownKeyboard.js +108 -0
  570. package/dist/temp/src/hooks/dropdown/useDropdownPosition.d.ts +9 -0
  571. package/dist/temp/src/hooks/dropdown/useDropdownPosition.js +18 -0
  572. package/dist/temp/src/hooks/dropdown/useOutsideClick.d.ts +5 -0
  573. package/dist/temp/src/hooks/dropdown/useOutsideClick.js +23 -0
  574. package/dist/temp/src/hooks/dropdown/useScrollLock.d.ts +4 -0
  575. package/dist/temp/src/hooks/dropdown/useScrollLock.js +72 -0
  576. package/dist/temp/src/hooks/dropdown/useWindowResize.d.ts +7 -0
  577. package/dist/temp/src/hooks/dropdown/useWindowResize.js +44 -0
  578. package/dist/temp/src/hooks/index.d.ts +4 -0
  579. package/dist/temp/src/hooks/index.js +6 -0
  580. package/dist/temp/src/hooks/useCallbackRef.d.ts +27 -0
  581. package/dist/temp/src/hooks/useCallbackRef.js +44 -0
  582. package/dist/temp/src/hooks/useMediaQuery.d.ts +5 -0
  583. package/dist/temp/src/hooks/useMediaQuery.js +20 -0
  584. package/dist/temp/src/hooks/useMergeRefs.d.ts +20 -0
  585. package/dist/temp/src/hooks/useMergeRefs.js +31 -0
  586. package/dist/temp/src/types/dropdown/dropdown.d.ts +39 -0
  587. package/dist/temp/src/types/dropdown/dropdown.js +1 -0
  588. package/dist/temp/src/types/dropdown/index.d.ts +2 -0
  589. package/dist/temp/src/types/dropdown/index.js +2 -0
  590. package/dist/temp/src/types/dropdown/option.d.ts +23 -0
  591. package/dist/temp/src/types/dropdown/option.js +1 -0
  592. package/dist/temp/src/types/index.d.ts +2 -0
  593. package/dist/temp/src/types/index.js +2 -0
  594. package/dist/temp/src/types/side-slot.d.ts +25 -0
  595. package/dist/temp/src/types/side-slot.js +1 -0
  596. package/dist/temp/src/utils/date-picker.d.ts +11 -0
  597. package/dist/temp/src/utils/date-picker.js +51 -0
  598. package/dist/temp/src/utils/dropdown/dropdownUtils.d.ts +17 -0
  599. package/dist/temp/src/utils/dropdown/dropdownUtils.js +79 -0
  600. package/dist/temp/src/utils/dropdown/index.d.ts +2 -0
  601. package/dist/temp/src/utils/dropdown/index.js +2 -0
  602. package/dist/temp/src/utils/dropdown/multiSelect.d.ts +31 -0
  603. package/dist/temp/src/utils/dropdown/multiSelect.js +68 -0
  604. package/dist/temp/src/utils/index.d.ts +2 -0
  605. package/dist/temp/src/utils/index.js +4 -0
  606. package/dist/types/assets/scripts/baseBox.d.ts +55 -0
  607. package/dist/types/assets/scripts/comboBox.d.ts +60 -0
  608. package/dist/types/assets/scripts/datePicker.d.ts +86 -0
  609. package/dist/types/assets/scripts/featuredIcon.d.ts +22 -0
  610. package/dist/types/assets/scripts/fileInput/const/classNames.d.ts +15 -0
  611. package/dist/types/assets/scripts/fileInput/const/index.d.ts +2 -0
  612. package/dist/types/assets/scripts/fileInput/const/types.d.ts +88 -0
  613. package/dist/types/assets/scripts/fileInput/fileInput.d.ts +13 -0
  614. package/dist/types/assets/scripts/fileInput/fileInputModel.d.ts +12 -0
  615. package/dist/types/assets/scripts/fileInput/fileInputView.d.ts +42 -0
  616. package/dist/types/assets/scripts/fileInput/index.d.ts +3 -0
  617. package/dist/types/assets/scripts/imageFileInput/ImageFileInput.d.ts +63 -0
  618. package/dist/types/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +73 -0
  619. package/dist/types/assets/scripts/imageFileInput/ImageFileInputView.d.ts +79 -0
  620. package/dist/types/assets/scripts/imageFileInput/const/classNames.d.ts +19 -0
  621. package/dist/types/assets/scripts/imageFileInput/const/index.d.ts +2 -0
  622. package/dist/types/assets/scripts/imageFileInput/const/types.d.ts +125 -0
  623. package/dist/types/assets/scripts/imageFileInput/index.d.ts +3 -0
  624. package/dist/types/assets/scripts/index.d.ts +32 -0
  625. package/dist/types/assets/scripts/modal/Modal.d.ts +27 -0
  626. package/dist/types/assets/scripts/modal/ModalActions.d.ts +18 -0
  627. package/dist/types/assets/scripts/modal/ModalContent.d.ts +13 -0
  628. package/dist/types/assets/scripts/modal/ModalHeader.d.ts +15 -0
  629. package/dist/types/assets/scripts/modal/const/classNames.d.ts +22 -0
  630. package/dist/types/assets/scripts/modal/const/index.d.ts +2 -0
  631. package/dist/types/assets/scripts/modal/const/types.d.ts +61 -0
  632. package/dist/types/assets/scripts/modal/index.d.ts +7 -0
  633. package/dist/types/assets/scripts/modal/utils/contentUtils.d.ts +10 -0
  634. package/dist/types/assets/scripts/notification/FloatingNotification.d.ts +24 -0
  635. package/dist/types/assets/scripts/notification/FullWidthNotification.d.ts +21 -0
  636. package/dist/types/assets/scripts/notification/MessageNotification.d.ts +22 -0
  637. package/dist/types/assets/scripts/notification/Notification.d.ts +21 -0
  638. package/dist/types/assets/scripts/notification/const/classNames.d.ts +43 -0
  639. package/dist/types/assets/scripts/notification/const/icons.d.ts +25 -0
  640. package/dist/types/assets/scripts/notification/const/index.d.ts +5 -0
  641. package/dist/types/assets/scripts/notification/const/sizes.d.ts +32 -0
  642. package/dist/types/assets/scripts/notification/const/types.d.ts +19 -0
  643. package/dist/types/assets/scripts/notification/index.d.ts +7 -0
  644. package/dist/types/assets/scripts/notification/utils.d.ts +8 -0
  645. package/dist/types/assets/scripts/progress-bar/ProgressBar.d.ts +67 -0
  646. package/dist/types/assets/scripts/progress-bar/index.d.ts +1 -0
  647. package/dist/types/assets/scripts/selectBox.d.ts +50 -0
  648. package/dist/types/assets/scripts/shared/ButtonCloseX.d.ts +5 -0
  649. package/dist/types/assets/scripts/slider.d.ts +0 -1
  650. package/dist/types/assets/scripts/tab.d.ts +7 -0
  651. package/dist/types/assets/scripts/tag/Tag.d.ts +27 -0
  652. package/dist/types/assets/scripts/tag/const/classNames.d.ts +11 -0
  653. package/dist/types/assets/scripts/tag/const/index.d.ts +3 -0
  654. package/dist/types/assets/scripts/tag/const/sizes.d.ts +7 -0
  655. package/dist/types/assets/scripts/tag/const/types.d.ts +33 -0
  656. package/dist/types/assets/scripts/tag/index.d.ts +3 -0
  657. package/dist/types/assets/scripts/tooltip/Tooltip.d.ts +54 -0
  658. package/dist/types/assets/scripts/tooltip/TooltipLayerManager.d.ts +21 -0
  659. package/dist/types/assets/scripts/tooltip/const/classNames.d.ts +17 -0
  660. package/dist/types/assets/scripts/tooltip/const/constants.d.ts +33 -0
  661. package/dist/types/assets/scripts/tooltip/const/icons.d.ts +4 -0
  662. package/dist/types/assets/scripts/tooltip/const/index.d.ts +5 -0
  663. package/dist/types/assets/scripts/tooltip/const/templates.d.ts +16 -0
  664. package/dist/types/assets/scripts/tooltip/const/types.d.ts +14 -0
  665. package/dist/types/assets/scripts/tooltip/index.d.ts +6 -0
  666. package/dist/types/assets/scripts/tooltip/utils.d.ts +2 -0
  667. package/dist/types/assets/scripts/utils/debounce.d.ts +8 -0
  668. package/dist/types/assets/scripts/utils/unifiedBox/domRenderer.d.ts +107 -0
  669. package/dist/types/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +142 -0
  670. package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +156 -0
  671. package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +95 -0
  672. package/dist/types/constant/color.d.ts +0 -1
  673. package/dist/types/constant/size.d.ts +0 -1
  674. package/dist/types/index.d.ts +0 -1
  675. package/dist/types/src/components/badge/Badge.d.ts +10 -9
  676. package/dist/types/src/components/badge/BadgeGroup.d.ts +7 -6
  677. package/dist/types/src/components/badge/index.d.ts +0 -1
  678. package/dist/types/src/components/badge/utils.d.ts +4 -3
  679. package/dist/types/src/components/breadcrumb/BreadCrumb.d.ts +5 -4
  680. package/dist/types/src/components/breadcrumb/index.d.ts +0 -1
  681. package/dist/types/src/components/button/Button.d.ts +2 -1
  682. package/dist/types/src/components/button/ButtonCloseX.d.ts +4 -3
  683. package/dist/types/src/components/button/ButtonGroup.d.ts +9 -11
  684. package/dist/types/src/components/button/ButtonStepper.d.ts +1 -2
  685. package/dist/types/src/components/button/index.d.ts +0 -1
  686. package/dist/types/src/components/carousel/CarouselArrow.d.ts +1 -3
  687. package/dist/types/src/components/carousel/CarouselNumberGroup.d.ts +1 -3
  688. package/dist/types/src/components/carousel/index.d.ts +0 -1
  689. package/dist/types/src/components/checkbox/Checkbox.d.ts +2 -3
  690. package/dist/types/src/components/checkbox/CheckboxInput.d.ts +2 -3
  691. package/dist/types/src/components/checkbox/index.d.ts +0 -1
  692. package/dist/types/src/components/combobox/ComboBox.d.ts +7 -6
  693. package/dist/types/src/components/combobox/index.d.ts +1 -2
  694. package/dist/types/src/components/date-picker/CustomInput.d.ts +2 -3
  695. package/dist/types/src/components/date-picker/DatePicker.d.ts +7 -6
  696. package/dist/types/src/components/date-picker/RangeDatePicker.d.ts +6 -5
  697. package/dist/types/src/components/date-picker/RangeDatePickerWithButtons.d.ts +4 -4
  698. package/dist/types/src/components/date-picker/index.d.ts +0 -1
  699. package/dist/types/src/components/date-picker/utils.d.ts +0 -1
  700. package/dist/types/src/components/divider/Divider.d.ts +1 -2
  701. package/dist/types/src/components/divider/index.d.ts +0 -1
  702. package/dist/types/src/components/dot/Dot.d.ts +9 -8
  703. package/dist/types/src/components/dot/index.d.ts +0 -1
  704. package/dist/types/src/components/dropdown/Dropdown.d.ts +0 -1
  705. package/dist/types/src/components/dropdown/index.d.ts +0 -1
  706. package/dist/types/src/components/empty-state/EmptyState.d.ts +5 -5
  707. package/dist/types/src/components/empty-state/index.d.ts +0 -1
  708. package/dist/types/src/components/featured-icon/FeaturedIcon.d.ts +8 -7
  709. package/dist/types/src/components/featured-icon/index.d.ts +0 -1
  710. package/dist/types/src/components/file-input/FileInput.d.ts +0 -1
  711. package/dist/types/src/components/file-input/index.d.ts +0 -1
  712. package/dist/types/src/components/image-file-input/ImageFileInput.d.ts +0 -1
  713. package/dist/types/src/components/image-file-input/components/ImagePreview.d.ts +0 -1
  714. package/dist/types/src/components/image-file-input/index.d.ts +0 -1
  715. package/dist/types/src/components/index.d.ts +1 -2
  716. package/dist/types/src/components/input/InputBase.d.ts +4 -4
  717. package/dist/types/src/components/input/NumberInput.d.ts +1 -2
  718. package/dist/types/src/components/input/PasswordInput.d.ts +1 -2
  719. package/dist/types/src/components/input/Textarea.d.ts +2 -3
  720. package/dist/types/src/components/input/index.d.ts +0 -1
  721. package/dist/types/src/components/modal/Modal.d.ts +13 -12
  722. package/dist/types/src/components/modal/index.d.ts +0 -1
  723. package/dist/types/src/components/notification/FloatingNotification.d.ts +6 -5
  724. package/dist/types/src/components/notification/FullWidthNotification.d.ts +6 -5
  725. package/dist/types/src/components/notification/MessageNotification.d.ts +6 -5
  726. package/dist/types/src/components/notification/Notification.d.ts +11 -10
  727. package/dist/types/src/components/notification/index.d.ts +1 -2
  728. package/dist/types/src/components/pagination/NavButton.d.ts +0 -1
  729. package/dist/types/src/components/pagination/Pagination.d.ts +0 -1
  730. package/dist/types/src/components/pagination/index.d.ts +0 -1
  731. package/dist/types/src/components/progress-bar/ProgressBar.d.ts +0 -1
  732. package/dist/types/src/components/progress-bar/components/SegmentBar.d.ts +0 -1
  733. package/dist/types/src/components/progress-bar/components/SegmentLabels.d.ts +3 -4
  734. package/dist/types/src/components/progress-bar/hooks/useProgressBar.d.ts +1 -2
  735. package/dist/types/src/components/progress-bar/index.d.ts +0 -1
  736. package/dist/types/src/components/progress-bar/types.d.ts +0 -1
  737. package/dist/types/src/components/progress-bar/utils.d.ts +4 -4
  738. package/dist/types/src/components/progress-circle/ProgressCircle.d.ts +0 -1
  739. package/dist/types/src/components/progress-circle/index.d.ts +0 -1
  740. package/dist/types/src/components/radio/Radio.d.ts +2 -3
  741. package/dist/types/src/components/radio/RadioInput.d.ts +2 -3
  742. package/dist/types/src/components/radio/index.d.ts +0 -1
  743. package/dist/types/src/components/select/Select.d.ts +4 -5
  744. package/dist/types/src/components/select/index.d.ts +0 -1
  745. package/dist/types/src/components/select-dropdown/SelectDropdown.d.ts +6 -6
  746. package/dist/types/src/components/select-dropdown/index.d.ts +1 -2
  747. package/dist/types/src/components/selectbox/SelectBox.d.ts +5 -4
  748. package/dist/types/src/components/selectbox/index.d.ts +0 -1
  749. package/dist/types/src/components/shared/hintText/HintText.d.ts +0 -1
  750. package/dist/types/src/components/shared/hintText/index.d.ts +0 -1
  751. package/dist/types/src/components/shared/index.d.ts +0 -1
  752. package/dist/types/src/components/shared/label/Label.d.ts +0 -1
  753. package/dist/types/src/components/shared/label/index.d.ts +0 -1
  754. package/dist/types/src/components/slider/Slider.d.ts +1 -2
  755. package/dist/types/src/components/slider/index.d.ts +0 -1
  756. package/dist/types/src/components/spinner/Spinner.d.ts +1 -2
  757. package/dist/types/src/components/spinner/index.d.ts +0 -2
  758. package/dist/types/src/components/switch/Switch.d.ts +7 -7
  759. package/dist/types/src/components/switch/index.d.ts +1 -2
  760. package/dist/types/src/components/tab/HorizontalTab.d.ts +7 -5
  761. package/dist/types/src/components/tab/TabButton.d.ts +8 -8
  762. package/dist/types/src/components/tab/VerticalTab.d.ts +2 -3
  763. package/dist/types/src/components/tab/index.d.ts +0 -1
  764. package/dist/types/src/components/tag/Tag.d.ts +4 -4
  765. package/dist/types/src/components/tag/index.d.ts +0 -1
  766. package/dist/types/src/components/toggle/Toggle.d.ts +1 -2
  767. package/dist/types/src/components/toggle/index.d.ts +0 -1
  768. package/dist/types/src/components/tooltip/Tooltip.d.ts +0 -1
  769. package/dist/types/src/components/tooltip/index.d.ts +0 -1
  770. package/dist/types/src/constant/breakpoint.d.ts +0 -1
  771. package/dist/types/src/constant/date-picker.d.ts +0 -1
  772. package/dist/types/src/constant/index.d.ts +1 -2
  773. package/dist/types/src/constant/size.d.ts +0 -1
  774. package/dist/types/src/hooks/dropdown/index.d.ts +0 -1
  775. package/dist/types/src/hooks/dropdown/useDropdown.d.ts +1 -2
  776. package/dist/types/src/hooks/dropdown/useDropdownKeyboard.d.ts +2 -3
  777. package/dist/types/src/hooks/dropdown/useDropdownPosition.d.ts +1 -2
  778. package/dist/types/src/hooks/dropdown/useOutsideClick.d.ts +1 -2
  779. package/dist/types/src/hooks/dropdown/useScrollLock.d.ts +0 -1
  780. package/dist/types/src/hooks/dropdown/useWindowResize.d.ts +0 -1
  781. package/dist/types/src/hooks/index.d.ts +1 -2
  782. package/dist/types/src/hooks/useCallbackRef.d.ts +0 -1
  783. package/dist/types/src/hooks/useMediaQuery.d.ts +0 -1
  784. package/dist/types/src/hooks/useMergeRefs.d.ts +1 -2
  785. package/dist/types/src/types/dropdown/dropdown.d.ts +1 -2
  786. package/dist/types/src/types/dropdown/index.d.ts +0 -1
  787. package/dist/types/src/types/dropdown/option.d.ts +0 -1
  788. package/dist/types/src/types/index.d.ts +0 -1
  789. package/dist/types/src/types/side-slot.d.ts +0 -1
  790. package/dist/types/src/utils/date-picker.d.ts +1 -2
  791. package/dist/types/src/utils/dropdown/dropdownUtils.d.ts +2 -3
  792. package/dist/types/src/utils/dropdown/index.d.ts +0 -1
  793. package/dist/types/src/utils/dropdown/multiSelect.d.ts +1 -2
  794. package/dist/types/src/utils/index.d.ts +0 -1
  795. package/dist/ui-admin/assets/styles/style.css +115 -24
  796. package/package.json +50 -77
  797. package/mcp/bin/server.js +0 -67
  798. package/mcp/bin/server.mjs +0 -14
  799. package/mcp/bin/tools/getComponentHtml.d.ts +0 -3
  800. package/mcp/bin/tools/getComponentHtml.js +0 -30
  801. package/mcp/bin/tools/getComponentProps.d.ts +0 -3
  802. package/mcp/bin/tools/getComponentProps.js +0 -16
  803. package/mcp/bin/tools/listComponents.d.ts +0 -3
  804. package/mcp/bin/tools/listComponents.js +0 -15
  805. package/mcp/bin/tools/ping.d.ts +0 -11
  806. package/mcp/bin/tools/ping.js +0 -30
  807. package/mcp/bin/tools/searchComponent.d.ts +0 -3
  808. package/mcp/bin/tools/searchComponent.js +0 -20
  809. package/mcp/bin/tools/validateHtml.d.ts +0 -10
  810. package/mcp/bin/tools/validateHtml.js +0 -142
  811. package/mcp/bin/types.d.ts +0 -28
  812. package/mcp/bin/types.js +0 -5
  813. package/mcp/bin/utils/dataLoader.d.ts +0 -11
  814. package/mcp/bin/utils/dataLoader.js +0 -68
  815. package/mcp/bin/utils/logger.d.ts +0 -18
  816. package/mcp/bin/utils/logger.js +0 -27
  817. package/mcp/bin/utils/response.d.ts +0 -23
  818. package/mcp/bin/utils/response.js +0 -31
  819. package/mcp/bin/version.d.ts +0 -1
  820. package/mcp/bin/version.js +0 -4
  821. package/mcp/data/.gitkeep +0 -0
  822. package/mcp/data/_meta.json +0 -7
  823. package/mcp/data/badge-group.json +0 -73
  824. package/mcp/data/badge.json +0 -86
  825. package/mcp/data/bread-crumb.json +0 -22
  826. package/mcp/data/breadcrumb.json +0 -31
  827. package/mcp/data/button-group.json +0 -65
  828. package/mcp/data/button.json +0 -114
  829. package/mcp/data/carousel-arrow.json +0 -59
  830. package/mcp/data/carousel-number-group.json +0 -57
  831. package/mcp/data/carousel.json +0 -22
  832. package/mcp/data/checkbox.json +0 -31
  833. package/mcp/data/combobox.json +0 -114
  834. package/mcp/data/date-picker.json +0 -77
  835. package/mcp/data/divider.json +0 -56
  836. package/mcp/data/dot.json +0 -55
  837. package/mcp/data/dropdown.json +0 -81
  838. package/mcp/data/empty-state.json +0 -34
  839. package/mcp/data/featured-icon.json +0 -83
  840. package/mcp/data/file-input.json +0 -76
  841. package/mcp/data/horizontal-tab.json +0 -71
  842. package/mcp/data/image-file-input.json +0 -97
  843. package/mcp/data/input.json +0 -104
  844. package/mcp/data/modal.json +0 -85
  845. package/mcp/data/notification.json +0 -116
  846. package/mcp/data/number-input.json +0 -128
  847. package/mcp/data/pagination.json +0 -65
  848. package/mcp/data/password-input.json +0 -47
  849. package/mcp/data/progress-bar.json +0 -51
  850. package/mcp/data/progress-circle.json +0 -54
  851. package/mcp/data/radio.json +0 -31
  852. package/mcp/data/range-date-picker-with-buttons.json +0 -64
  853. package/mcp/data/range-date-picker.json +0 -55
  854. package/mcp/data/select-dropdown.json +0 -32
  855. package/mcp/data/select.json +0 -64
  856. package/mcp/data/selectbox.json +0 -129
  857. package/mcp/data/slider.json +0 -57
  858. package/mcp/data/spinner.json +0 -54
  859. package/mcp/data/switch.json +0 -71
  860. package/mcp/data/tab.json +0 -122
  861. package/mcp/data/tag.json +0 -66
  862. package/mcp/data/textarea.json +0 -88
  863. package/mcp/data/toggle.json +0 -59
  864. package/mcp/data/tooltip.json +0 -123
  865. package/mcp/data/vertical-tab.json +0 -64
  866. package/mcp/templates/.mcp.json.example +0 -8
  867. package/mcp/templates/README.md +0 -31
  868. /package/{mcp/bin/server.d.ts → dist/temp/assets/scripts/modal/const/types.js} +0 -0
@@ -1,11 +1,11 @@
1
- import { ComponentPropsWithoutRef, ReactNode } from 'react';
1
+ import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
2
+ import type { ColorTone } from '../../../constant/color';
2
3
  import type { SlotIconComponent } from '../../types/side-slot';
3
- import { ColorTone } from '../../../constant/color';
4
- import { ButtonTheme } from '../button';
5
- export type NotificationType = 'floating' | 'full-width' | 'message';
6
- export type NotificationColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'info'>;
7
- export type NotificationSize = 'desktop' | 'mobile';
8
- export interface NotificationAction {
4
+ import type { ButtonTheme } from '../button';
5
+ type NotificationType = 'floating' | 'full-width' | 'message';
6
+ type NotificationColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'info'>;
7
+ type NotificationSize = 'desktop' | 'mobile';
8
+ interface NotificationAction {
9
9
  /**
10
10
  * 액션 버튼 텍스트
11
11
  */
@@ -19,7 +19,7 @@ export interface NotificationAction {
19
19
  */
20
20
  hierarchy?: Extract<ButtonTheme, 'text' | 'text-gray'>;
21
21
  }
22
- export interface NotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title'> {
22
+ interface NotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title'> {
23
23
  /**
24
24
  * 알림 유형 (floating: 측면에 표시되는 알림, full-width: 전체 너비 알림)
25
25
  * @default 'floating'
@@ -67,5 +67,6 @@ export interface NotificationProps extends Omit<ComponentPropsWithoutRef<'div'>,
67
67
  */
68
68
  onHidePermanently?: () => void;
69
69
  }
70
- export declare const Notification: import("react").ForwardRefExoticComponent<NotificationProps & import("react").RefAttributes<HTMLDivElement>>;
71
- //# sourceMappingURL=Notification.d.ts.map
70
+ declare const Notification: import("react").ForwardRefExoticComponent<NotificationProps & import("react").RefAttributes<HTMLDivElement>>;
71
+ export type { NotificationType, NotificationColor, NotificationSize, NotificationAction, NotificationProps };
72
+ export { Notification };
@@ -1,5 +1,4 @@
1
- export * from './Notification';
2
1
  export * from './FloatingNotification';
3
2
  export * from './FullWidthNotification';
4
3
  export * from './MessageNotification';
5
- //# sourceMappingURL=index.d.ts.map
4
+ export * from './Notification';
@@ -29,4 +29,3 @@ export declare const NavButton: ({ type, breakPoint, noPrev, noNext, onClick, }:
29
29
  onClick: () => void;
30
30
  }) => import("react/jsx-runtime").JSX.Element;
31
31
  export {};
32
- //# sourceMappingURL=NavButton.d.ts.map
@@ -9,4 +9,3 @@ type PaginationProps = Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'onCl
9
9
  };
10
10
  export declare const Pagination: ({ className, totalCount, itemCountPerPage, pageCount, currentPage, breakPoint, onPageChange, ...restProps }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
11
11
  export {};
12
- //# sourceMappingURL=Pagination.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './NavButton';
2
2
  export * from './Pagination';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type { ProgressBarProps } from './types';
2
2
  export declare const ProgressBar: ({ label, value, segments, showZeroLabel, valueToPercent, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=ProgressBar.d.ts.map
@@ -5,4 +5,3 @@ interface SegmentBarProps {
5
5
  }
6
6
  export declare const SegmentBar: ({ segments, shouldSpaceOut }: SegmentBarProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export {};
8
- //# sourceMappingURL=SegmentBar.d.ts.map
@@ -4,13 +4,12 @@ interface SegmentLabelsProps {
4
4
  segmentCount: number;
5
5
  showZeroLabel?: boolean;
6
6
  }
7
- export declare const SegmentLabels: ({ segments, segmentCount, showZeroLabel }: SegmentLabelsProps) => import("react/jsx-runtime").JSX.Element | null;
7
+ declare const SegmentLabels: ({ segments, segmentCount, showZeroLabel }: SegmentLabelsProps) => import("react/jsx-runtime").JSX.Element | null;
8
8
  interface SingleLabelProps {
9
9
  labelType: ProgressLabel;
10
10
  displayValue: string;
11
11
  totalValue?: number;
12
12
  showZeroLabel?: boolean;
13
13
  }
14
- export declare const SingleLabel: ({ labelType, displayValue, totalValue, showZeroLabel }: SingleLabelProps) => import("react/jsx-runtime").JSX.Element | null;
15
- export {};
16
- //# sourceMappingURL=SegmentLabels.d.ts.map
14
+ declare const SingleLabel: ({ labelType, displayValue, totalValue, showZeroLabel }: SingleLabelProps) => import("react/jsx-runtime").JSX.Element | null;
15
+ export { SegmentLabels, SingleLabel };
@@ -1,4 +1,4 @@
1
- import type { ProgressLabel, ProgressSegment, ProcessedSegment } from '../types';
1
+ import type { ProcessedSegment, ProgressLabel, ProgressSegment } from '../types';
2
2
  interface UseProgressBarResult {
3
3
  totalValue: number;
4
4
  displayValue: string;
@@ -11,4 +11,3 @@ interface UseProgressBarResult {
11
11
  }
12
12
  export declare const useProgressBar: (label?: ProgressLabel, value?: number, segments?: ProgressSegment[], valueToPercent?: boolean) => UseProgressBarResult;
13
13
  export {};
14
- //# sourceMappingURL=useProgressBar.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './ProgressBar';
2
2
  export * from './types';
3
- //# sourceMappingURL=index.d.ts.map
@@ -13,4 +13,3 @@ export interface ProgressBarProps {
13
13
  showZeroLabel?: boolean;
14
14
  valueToPercent?: boolean;
15
15
  }
16
- //# sourceMappingURL=types.d.ts.map
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * 색상 이름을 fill 색상 클래스명으로 변환
3
3
  */
4
- export declare const getFillColorClass: (color?: string) => string;
4
+ declare const getFillColorClass: (color?: string) => string;
5
5
  /**
6
6
  * 색상 이름을 label 색상 클래스명으로 변환
7
7
  */
8
- export declare const getLabelColorClass: (color?: string) => string;
8
+ declare const getLabelColorClass: (color?: string) => string;
9
9
  /**
10
10
  * 값을 0-100 범위로 제한
11
11
  */
12
- export declare const clampValue: (value: number) => number;
13
- //# sourceMappingURL=utils.d.ts.map
12
+ declare const clampValue: (value: number) => number;
13
+ export { getFillColorClass, getLabelColorClass, clampValue };
@@ -5,4 +5,3 @@ export interface ProgressCircleProps {
5
5
  theme?: 'circle' | 'half-circle';
6
6
  }
7
7
  export declare const ProgressCircle: ({ size, label, value, theme }: ProgressCircleProps) => import("react/jsx-runtime").JSX.Element;
8
- //# sourceMappingURL=ProgressCircle.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './ProgressCircle';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,8 +1,7 @@
1
- import { ReactNode } from 'react';
2
- import { RadioInputProps } from './RadioInput';
1
+ import { type ReactNode } from 'react';
2
+ import { type RadioInputProps } from './RadioInput';
3
3
  export interface RadioProps extends Omit<RadioInputProps, 'type'> {
4
4
  text?: ReactNode;
5
5
  supportText?: string;
6
6
  }
7
7
  export declare const Radio: import("react").ForwardRefExoticComponent<RadioProps & import("react").RefAttributes<HTMLInputElement>>;
8
- //# sourceMappingURL=Radio.d.ts.map
@@ -1,9 +1,8 @@
1
- import { ChangeEvent, ComponentPropsWithRef } from 'react';
2
- import { Size } from '../../../constant/size';
1
+ import { type ChangeEvent, type ComponentPropsWithRef } from 'react';
2
+ import type { Size } from '../../../constant/size';
3
3
  export interface RadioInputProps extends Omit<ComponentPropsWithRef<'input'>, 'size' | 'ref'> {
4
4
  size?: Extract<Size, 'xs' | 'sm'>;
5
5
  destructive?: boolean;
6
6
  onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
7
7
  }
8
8
  export declare const RadioInput: import("react").ForwardRefExoticComponent<RadioInputProps & import("react").RefAttributes<HTMLInputElement>>;
9
- //# sourceMappingURL=RadioInput.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './Radio';
2
2
  export * from './RadioInput';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,7 +1,7 @@
1
- import { Size } from '@ncds/ui/constant/size';
2
- import { ComponentPropsWithRef, ReactNode } from 'react';
3
- import { UseFormRegisterReturn } from 'react-hook-form';
4
- import { OptionType } from '../../types/dropdown';
1
+ import { type ComponentPropsWithRef, type ReactNode } from 'react';
2
+ import type { UseFormRegisterReturn } from 'react-hook-form';
3
+ import type { Size } from '../../../constant/size';
4
+ import type { OptionType } from '../../types/dropdown';
5
5
  export interface SelectProps extends Omit<ComponentPropsWithRef<'select'>, 'size'> {
6
6
  placeholder?: string;
7
7
  disabledPlaceholder?: boolean;
@@ -14,4 +14,3 @@ export interface SelectProps extends Omit<ComponentPropsWithRef<'select'>, 'size
14
14
  children?: ReactNode;
15
15
  }
16
16
  export declare const Select: import("react").ForwardRefExoticComponent<Omit<SelectProps, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
17
- //# sourceMappingURL=Select.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './Select';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,7 +1,6 @@
1
- import { ComponentPropsWithRef, ReactNode } from 'react';
2
- import { DropdownDirection, OptionSelectHandler, OptionType, OptionValue } from '../../types/dropdown';
3
- export type { DropdownDirection };
4
- export type SelectDropdownProps = ComponentPropsWithRef<'div'> & {
1
+ import { type ComponentPropsWithRef, type ReactNode } from 'react';
2
+ import type { DropdownDirection, OptionSelectHandler, OptionType, OptionValue } from '../../types/dropdown';
3
+ type SelectDropdownProps = ComponentPropsWithRef<'div'> & {
5
4
  isOpen: boolean;
6
5
  direction?: DropdownDirection;
7
6
  size?: 'xs' | 'sm' | 'md';
@@ -25,5 +24,6 @@ export type SelectDropdownProps = ComponentPropsWithRef<'div'> & {
25
24
  componentType?: 'selectbox' | 'combobox';
26
25
  align?: 'left' | 'right';
27
26
  };
28
- export declare const SelectDropdown: import("react").ForwardRefExoticComponent<Omit<SelectDropdownProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
29
- //# sourceMappingURL=SelectDropdown.d.ts.map
27
+ declare const SelectDropdown: import("react").ForwardRefExoticComponent<Omit<SelectDropdownProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
28
+ export type { DropdownDirection, SelectDropdownProps };
29
+ export { SelectDropdown };
@@ -1,2 +1 @@
1
- export { SelectDropdown, type DropdownDirection, type SelectDropdownProps } from './SelectDropdown';
2
- //# sourceMappingURL=index.d.ts.map
1
+ export { type DropdownDirection, SelectDropdown, type SelectDropdownProps } from './SelectDropdown';
@@ -2,8 +2,8 @@ import { type ComponentPropsWithRef, type ReactNode } from 'react';
2
2
  import type { UseFormRegisterReturn } from 'react-hook-form';
3
3
  import type { Size } from '../../../constant/size';
4
4
  import type { OptionChangeHandler, OptionType, OptionValue } from '../../types/dropdown';
5
- export declare const DEFAULT_MAX_HEIGHT = 275;
6
- export type SelectBoxProps = Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> & {
5
+ declare const DEFAULT_MAX_HEIGHT = 275;
6
+ type SelectBoxProps = Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> & {
7
7
  children?: ReactNode;
8
8
  placeholder?: string;
9
9
  disabledPlaceholder?: boolean;
@@ -22,5 +22,6 @@ export type SelectBoxProps = Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChan
22
22
  onEdit?: () => void;
23
23
  align?: 'left' | 'right';
24
24
  };
25
- export declare const SelectBox: import("react").ForwardRefExoticComponent<Omit<SelectBoxProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
26
- //# sourceMappingURL=SelectBox.d.ts.map
25
+ declare const SelectBox: import("react").ForwardRefExoticComponent<Omit<SelectBoxProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
26
+ export type { SelectBoxProps };
27
+ export { DEFAULT_MAX_HEIGHT, SelectBox };
@@ -1,2 +1 @@
1
1
  export { SelectBox, type SelectBoxProps } from './SelectBox';
2
- //# sourceMappingURL=index.d.ts.map
@@ -5,4 +5,3 @@ interface HintTextProps extends React.HTMLAttributes<HTMLDivElement> {
5
5
  }
6
6
  export declare const HintText: ({ as: Component, children, className, destructive, ...props }: HintTextProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export {};
8
- //# sourceMappingURL=HintText.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './HintText';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './hintText';
2
2
  export * from './label';
3
- //# sourceMappingURL=index.d.ts.map
@@ -5,4 +5,3 @@ interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {
5
5
  }
6
6
  export declare const Label: ({ as: Component, children, className, isRequired, ...props }: LabelProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export {};
8
- //# sourceMappingURL=Label.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './Label';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import { SliderOptions } from '../../../assets/scripts/slider';
1
+ import { type SliderOptions } from '../../../assets/scripts/slider';
2
2
  export type SliderLabelPosition = SliderOptions['labelPosition'];
3
3
  export interface SliderProps {
4
4
  min?: number;
@@ -12,4 +12,3 @@ export interface SliderProps {
12
12
  }
13
13
  export declare const Slider: ({ min, max, step, value, onChange, labelPosition, disabled, className, }: SliderProps) => import("react/jsx-runtime").JSX.Element;
14
14
  export default Slider;
15
- //# sourceMappingURL=Slider.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './Slider';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import { ElementType, ReactNode } from 'react';
1
+ import type { ElementType, ReactNode } from 'react';
2
2
  interface SpinnerProps {
3
3
  as?: ElementType;
4
4
  size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -7,4 +7,3 @@ interface SpinnerProps {
7
7
  }
8
8
  export declare const Spinner: ({ as, size, children, backdrop }: SpinnerProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export {};
10
- //# sourceMappingURL=Spinner.d.ts.map
@@ -1,3 +1 @@
1
1
  export * from './Spinner';
2
- export * from './index';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,11 +1,11 @@
1
- import { ReactNode, Ref } from 'react';
2
- import { Size } from 'ui-admin/constant/size';
1
+ import { type ReactNode, type Ref } from 'react';
2
+ import type { Size } from '../../../constant/size';
3
3
  type SwitchOption = {
4
4
  label: ReactNode;
5
5
  value: string | boolean;
6
6
  };
7
- export type SwitchSize = Extract<Size, 'xxs' | 'xs' | 'sm' | 'md'>;
8
- export type SwitchProps = {
7
+ type SwitchSize = Extract<Size, 'xxs' | 'xs' | 'sm' | 'md'>;
8
+ type SwitchProps = {
9
9
  size?: SwitchSize;
10
10
  left: SwitchOption;
11
11
  right: SwitchOption;
@@ -17,6 +17,6 @@ export type SwitchProps = {
17
17
  className?: string;
18
18
  refs?: [Ref<HTMLInputElement>, Ref<HTMLInputElement>];
19
19
  };
20
- export declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<HTMLInputElement>>;
21
- export {};
22
- //# sourceMappingURL=Switch.d.ts.map
20
+ declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<HTMLInputElement>>;
21
+ export type { SwitchSize, SwitchProps };
22
+ export { Switch };
@@ -1,3 +1,2 @@
1
- export { Switch } from './Switch';
2
1
  export type { SwitchProps } from './Switch';
3
- //# sourceMappingURL=index.d.ts.map
2
+ export { Switch } from './Switch';
@@ -1,10 +1,12 @@
1
- import { TabButtonProps, TabSize, TabType } from './TabButton';
2
- export type HorizontalTabProps = {
1
+ import { type TabButtonProps, type TabSize, type TabType } from './TabButton';
2
+ type HorizontalTabProps = {
3
3
  type?: Exclude<TabType, 'line-vertical'>;
4
4
  size?: TabSize;
5
5
  activeTab?: string;
6
6
  fullWidth?: boolean;
7
- menus?: Array<TabButtonProps>;
7
+ menus?: TabButtonProps[];
8
+ className?: string;
8
9
  };
9
- export declare const HorizontalTab: ({ type, size, activeTab, fullWidth, menus, }: HorizontalTabProps) => import("react/jsx-runtime").JSX.Element;
10
- //# sourceMappingURL=HorizontalTab.d.ts.map
10
+ declare const HorizontalTab: ({ type, size, activeTab, fullWidth, menus, className, }: HorizontalTabProps) => import("react/jsx-runtime").JSX.Element | null;
11
+ export type { HorizontalTabProps };
12
+ export { HorizontalTab };
@@ -1,7 +1,7 @@
1
1
  import type { AnchorHTMLAttributes, ButtonHTMLAttributes, ReactNode } from 'react';
2
2
  import { type BadgeProps } from '../badge/Badge';
3
- export type TabSize = 'sm' | 'md' | 'lg';
4
- export type TabType = 'button-primary' | 'button-white' | 'underline' | 'underline-fill' | 'line-vertical';
3
+ type TabSize = 'sm' | 'md' | 'lg';
4
+ type TabType = 'button-primary' | 'button-white' | 'underline' | 'underline-fill' | 'line-vertical';
5
5
  type BaseTabButtonProps = {
6
6
  id?: string;
7
7
  label?: string;
@@ -12,12 +12,12 @@ type BaseTabButtonProps = {
12
12
  className?: string;
13
13
  children?: ReactNode;
14
14
  };
15
- export type TabButtonAsButtonProps = BaseTabButtonProps & {
15
+ type TabButtonAsButtonProps = BaseTabButtonProps & {
16
16
  onClose?: (id: string) => void;
17
17
  onClick?: (id: string) => void;
18
18
  } & Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onClick'>;
19
- export type TabButtonAsLinkProps = BaseTabButtonProps & AnchorHTMLAttributes<HTMLAnchorElement>;
20
- export type TabButtonProps = TabButtonAsButtonProps | TabButtonAsLinkProps;
21
- export declare const TabButton: ({ id, label, size, tabButtonType, type, isActive, badgeInfo, className, children, ...props }: TabButtonProps) => import("react/jsx-runtime").JSX.Element;
22
- export {};
23
- //# sourceMappingURL=TabButton.d.ts.map
19
+ type TabButtonAsLinkProps = BaseTabButtonProps & AnchorHTMLAttributes<HTMLAnchorElement>;
20
+ type TabButtonProps = TabButtonAsButtonProps | TabButtonAsLinkProps;
21
+ declare const TabButton: ({ id, label, size, tabButtonType, type, isActive, badgeInfo, className, children, ...props }: TabButtonProps) => import("react/jsx-runtime").JSX.Element;
22
+ export type { TabSize, TabType, TabButtonAsButtonProps, TabButtonAsLinkProps, TabButtonProps };
23
+ export { TabButton };
@@ -1,10 +1,9 @@
1
- import { TabButtonProps } from './TabButton';
1
+ import { type TabButtonProps } from './TabButton';
2
2
  export type VerticalTabProps = {
3
3
  type?: 'button-primary' | 'button-white' | 'line-vertical';
4
4
  breakPoint?: 'mobile' | 'pc';
5
5
  activeTab?: string;
6
- menus?: Array<TabButtonProps>;
6
+ menus?: TabButtonProps[];
7
7
  onSelect?: (value: string) => void;
8
8
  };
9
9
  export declare const VerticalTab: ({ type, breakPoint, activeTab, menus, onSelect, }: VerticalTabProps) => import("react/jsx-runtime").JSX.Element;
10
- //# sourceMappingURL=VerticalTab.d.ts.map
@@ -1,4 +1,3 @@
1
1
  export * from './HorizontalTab';
2
2
  export * from './TabButton';
3
3
  export * from './VerticalTab';
4
- //# sourceMappingURL=index.d.ts.map
@@ -11,7 +11,7 @@ interface TagProps {
11
11
  onButtonClick?: MouseEventHandler<HTMLButtonElement>;
12
12
  maxLength?: number;
13
13
  }
14
- export type CalculatedPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
15
- export declare const Tag: ({ size, icon, text, count, close, onButtonClick, maxLength }: TagProps) => import("react/jsx-runtime").JSX.Element;
16
- export {};
17
- //# sourceMappingURL=Tag.d.ts.map
14
+ type CalculatedPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
15
+ declare const Tag: ({ size, icon, text, count, close, onButtonClick, maxLength }: TagProps) => import("react/jsx-runtime").JSX.Element;
16
+ export type { CalculatedPosition };
17
+ export { Tag };
@@ -1,2 +1 @@
1
1
  export * from './Tag';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import { ChangeEvent, ComponentPropsWithRef } from 'react';
1
+ import type { ChangeEvent, ComponentPropsWithRef } from 'react';
2
2
  export interface ToggleProps extends Omit<ComponentPropsWithRef<'input'>, 'size'> {
3
3
  size?: 'sm' | 'md';
4
4
  text?: string;
@@ -8,4 +8,3 @@ export interface ToggleProps extends Omit<ComponentPropsWithRef<'input'>, 'size'
8
8
  className?: string;
9
9
  }
10
10
  export declare const Toggle: ({ size, text, supportText, disabled, onChange, className, ...props }: ToggleProps) => import("react/jsx-runtime").JSX.Element;
11
- //# sourceMappingURL=Toggle.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './Toggle';
2
- //# sourceMappingURL=index.d.ts.map
@@ -13,4 +13,3 @@ interface TooltipProps {
13
13
  }
14
14
  export declare const Tooltip: ({ tooltipType, iconType, position, size, title, content, hideArrow, type, iconColor, iconStyle, className, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
15
15
  export {};
16
- //# sourceMappingURL=Tooltip.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from './Tooltip';
2
- //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,3 @@ export declare const BREAKPOINT: {
4
4
  export declare const MEDIA_QUERY: {
5
5
  readonly mobile: "(max-width: 768px)";
6
6
  };
7
- //# sourceMappingURL=breakpoint.d.ts.map
@@ -61,4 +61,3 @@ export declare const PERIOD_ITEM: {
61
61
  unit: null;
62
62
  };
63
63
  };
64
- //# sourceMappingURL=date-picker.d.ts.map
@@ -1,3 +1,2 @@
1
- export * from './size';
2
1
  export * from './date-picker';
3
- //# sourceMappingURL=index.d.ts.map
2
+ export * from './size';
@@ -1,2 +1 @@
1
1
  export declare const MINIMUM_PC_SIZE = 768;
2
- //# sourceMappingURL=size.d.ts.map
@@ -4,4 +4,3 @@ export { useDropdownPosition } from './useDropdownPosition';
4
4
  export { useOutsideClick } from './useOutsideClick';
5
5
  export { useScrollLock } from './useScrollLock';
6
6
  export { useWindowResize } from './useWindowResize';
7
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import { RefObject } from 'react';
1
+ import { type RefObject } from 'react';
2
2
  interface UseDropdownConfig<T = any> {
3
3
  triggerRef: RefObject<HTMLElement>;
4
4
  dropdownRef?: RefObject<HTMLElement>;
@@ -27,4 +27,3 @@ export declare const useDropdown: <T = any>(config: UseDropdownConfig<T>) => {
27
27
  updatePosition: () => import("../../types").DropdownPositionResult;
28
28
  };
29
29
  export {};
30
- //# sourceMappingURL=useDropdown.d.ts.map
@@ -1,5 +1,5 @@
1
- import { KeyboardEvent } from 'react';
2
- import { DropdownKeyboardConfig } from '../../types/dropdown';
1
+ import { type KeyboardEvent } from 'react';
2
+ import type { DropdownKeyboardConfig } from '../../types/dropdown';
3
3
  /**
4
4
  * 드롭다운 키보드 네비게이션을 위한 커스텀 훅
5
5
  */
@@ -8,4 +8,3 @@ export declare const useDropdownKeyboard: <T = any>(config: DropdownKeyboardConf
8
8
  handleMouseMove: () => void;
9
9
  isKeyboardNavigation: () => boolean;
10
10
  };
11
- //# sourceMappingURL=useDropdownKeyboard.d.ts.map
@@ -1,4 +1,4 @@
1
- import { DropdownDirection, DropdownPositionConfig } from '../../types/dropdown';
1
+ import type { DropdownDirection, DropdownPositionConfig } from '../../types/dropdown';
2
2
  /**
3
3
  * 드롭다운 위치 계산을 위한 커스텀 훅
4
4
  */
@@ -7,4 +7,3 @@ export declare const useDropdownPosition: (config: DropdownPositionConfig) => {
7
7
  updatePosition: () => import("../../types/dropdown").DropdownPositionResult;
8
8
  setDirection: import("react").Dispatch<import("react").SetStateAction<DropdownDirection>>;
9
9
  };
10
- //# sourceMappingURL=useDropdownPosition.d.ts.map
@@ -1,6 +1,5 @@
1
- import { DropdownOutsideClickConfig } from '../../types/dropdown';
1
+ import type { DropdownOutsideClickConfig } from '../../types/dropdown';
2
2
  /**
3
3
  * 외부 클릭 감지를 위한 커스텀 훅
4
4
  */
5
5
  export declare const useOutsideClick: (config: DropdownOutsideClickConfig) => void;
6
- //# sourceMappingURL=useOutsideClick.d.ts.map
@@ -2,4 +2,3 @@
2
2
  * 페이지 스크롤을 잠그는 커스텀 훅 (드롭다운 내부 스크롤은 허용)
3
3
  */
4
4
  export declare const useScrollLock: (isLocked: boolean, dropdownRef?: React.RefObject<HTMLElement>) => void;
5
- //# sourceMappingURL=useScrollLock.d.ts.map
@@ -5,4 +5,3 @@
5
5
  * @param target 관찰할 대상 요소 (기본값: document.body)
6
6
  */
7
7
  export declare const useWindowResize: (callback: () => void, isActive?: boolean, target?: HTMLElement | null) => void;
8
- //# sourceMappingURL=useWindowResize.d.ts.map
@@ -1,5 +1,4 @@
1
+ export * from './dropdown';
1
2
  export { useCallbackRef } from './useCallbackRef';
2
3
  export { useMediaQuery } from './useMediaQuery';
3
4
  export { useMergeRefs } from './useMergeRefs';
4
- export * from './dropdown';
5
- //# sourceMappingURL=index.d.ts.map
@@ -25,4 +25,3 @@
25
25
  * ```
26
26
  */
27
27
  export declare function useCallbackRef<T>(callback: (node: T | null) => (() => void) | void): React.RefCallback<T>;
28
- //# sourceMappingURL=useCallbackRef.d.ts.map
@@ -3,4 +3,3 @@ interface UseMediaQueryOptions {
3
3
  }
4
4
  export declare const useMediaQuery: (query: string, options?: UseMediaQueryOptions) => boolean;
5
5
  export {};
6
- //# sourceMappingURL=useMediaQuery.d.ts.map
@@ -16,6 +16,5 @@ type Ref<T> = React.RefCallback<T> | React.MutableRefObject<T | null> | null | u
16
16
  * });
17
17
  * ```
18
18
  */
19
- export declare function useMergeRefs<T>(refs: Array<Ref<T>>): React.RefCallback<T>;
19
+ export declare function useMergeRefs<T>(refs: Ref<T>[]): React.RefCallback<T>;
20
20
  export {};
21
- //# sourceMappingURL=useMergeRefs.d.ts.map
@@ -1,4 +1,4 @@
1
- import { RefObject } from 'react';
1
+ import type { RefObject } from 'react';
2
2
  export type DropdownDirection = 'up' | 'down';
3
3
  export type DropdownPositionConfig = {
4
4
  triggerRef: RefObject<HTMLElement>;
@@ -37,4 +37,3 @@ export type SelectedTag = {
37
37
  id: string | number;
38
38
  label: string;
39
39
  };
40
- //# sourceMappingURL=dropdown.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './dropdown';
2
2
  export * from './option';
3
- //# sourceMappingURL=index.d.ts.map
@@ -21,4 +21,3 @@ export type OptionChangeHandler = (value: OptionValue) => void;
21
21
  * 옵션 선택 핸들러 타입
22
22
  */
23
23
  export type OptionSelectHandler<T extends OptionType = OptionType> = (option: T) => void;
24
- //# sourceMappingURL=option.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export * from './dropdown';
2
2
  export type * from './side-slot';
3
- //# sourceMappingURL=index.d.ts.map