@ncds/ui-admin 0.0.34 → 0.0.35

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 (644) hide show
  1. package/dist/cjs/assets/scripts/datePicker.js +248 -0
  2. package/dist/cjs/assets/scripts/index.js +10 -0
  3. package/dist/cjs/assets/scripts/slider.js +332 -0
  4. package/dist/cjs/assets/scripts/tab.js +40 -0
  5. package/dist/cjs/constant/color.js +38 -0
  6. package/dist/cjs/constant/size.js +5 -0
  7. package/dist/cjs/index.js +313 -0
  8. package/dist/cjs/src/components/badge/Badge.js +52 -0
  9. package/dist/cjs/src/components/badge/BadgeGroup.js +62 -0
  10. package/dist/cjs/src/components/badge/index.js +27 -0
  11. package/dist/cjs/src/components/badge/utils.js +33 -0
  12. package/dist/cjs/src/components/breadcrumb/BreadCrumb.js +67 -0
  13. package/dist/cjs/src/components/breadcrumb/index.js +16 -0
  14. package/dist/cjs/src/components/button/Button.js +127 -0
  15. package/dist/cjs/src/components/button/ButtonCloseX.js +44 -0
  16. package/dist/cjs/src/components/button/ButtonGroup.js +121 -0
  17. package/dist/cjs/src/components/button/index.js +27 -0
  18. package/dist/cjs/src/components/carousel/CarouselArrow.js +41 -0
  19. package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +46 -0
  20. package/dist/cjs/src/components/carousel/index.js +27 -0
  21. package/dist/cjs/src/components/checkbox/Checkbox.js +70 -0
  22. package/dist/cjs/src/components/checkbox/CheckboxInput.js +96 -0
  23. package/dist/cjs/src/components/checkbox/index.js +27 -0
  24. package/dist/cjs/src/components/date-picker/DatePicker.js +86 -0
  25. package/dist/cjs/src/components/date-picker/RangeDatePicker.js +137 -0
  26. package/dist/cjs/src/components/date-picker/RangeDatePickerWithButtons.js +92 -0
  27. package/dist/cjs/src/components/date-picker/index.js +49 -0
  28. package/dist/cjs/src/components/date-picker/utils.js +18 -0
  29. package/dist/cjs/src/components/divider/Divider.js +47 -0
  30. package/dist/cjs/src/components/divider/index.js +16 -0
  31. package/dist/cjs/src/components/dot/Dot.js +41 -0
  32. package/dist/cjs/src/components/dot/index.js +16 -0
  33. package/dist/cjs/src/components/dropdown/Dropdown.js +206 -0
  34. package/dist/cjs/src/components/dropdown/index.js +16 -0
  35. package/dist/cjs/src/components/empty-state/EmptyState.js +58 -0
  36. package/dist/cjs/src/components/empty-state/index.js +16 -0
  37. package/dist/cjs/src/components/featured-icon/FeaturedIcon.js +62 -0
  38. package/dist/cjs/src/components/featured-icon/index.js +16 -0
  39. package/dist/cjs/src/components/index.js +291 -0
  40. package/dist/cjs/src/components/input/InputBase.js +184 -0
  41. package/dist/cjs/src/components/input/PasswordInput.js +94 -0
  42. package/dist/cjs/src/components/input/Textarea.js +115 -0
  43. package/dist/cjs/src/components/input/index.js +38 -0
  44. package/dist/cjs/src/components/modal/Modal.js +194 -0
  45. package/dist/cjs/src/components/modal/index.js +16 -0
  46. package/dist/cjs/src/components/notification/FloatingNotification.js +108 -0
  47. package/dist/cjs/src/components/notification/FullWidthNotification.js +119 -0
  48. package/dist/cjs/src/components/notification/Notification.js +45 -0
  49. package/dist/cjs/src/components/notification/index.js +38 -0
  50. package/dist/cjs/src/components/pagination/NavButton.js +93 -0
  51. package/dist/cjs/src/components/pagination/Pagination.js +161 -0
  52. package/dist/cjs/src/components/pagination/index.js +27 -0
  53. package/dist/cjs/src/components/progress-bar/ProgressBar.js +57 -0
  54. package/dist/cjs/src/components/progress-bar/index.js +16 -0
  55. package/dist/cjs/src/components/progress-circle/ProgressCircle.js +121 -0
  56. package/dist/cjs/src/components/progress-circle/index.js +16 -0
  57. package/dist/cjs/src/components/radio/Radio.js +65 -0
  58. package/dist/cjs/src/components/radio/RadioInput.js +50 -0
  59. package/dist/cjs/src/components/radio/index.js +27 -0
  60. package/dist/cjs/src/components/select/Select.js +98 -0
  61. package/dist/cjs/src/components/select/index.js +16 -0
  62. package/dist/cjs/src/components/shared/hintText/HintText.js +43 -0
  63. package/dist/cjs/src/components/shared/hintText/index.js +16 -0
  64. package/dist/cjs/src/components/shared/index.js +27 -0
  65. package/dist/cjs/src/components/shared/label/Label.js +43 -0
  66. package/dist/cjs/src/components/shared/label/index.js +16 -0
  67. package/dist/cjs/src/components/slider/Slider.js +64 -0
  68. package/dist/cjs/src/components/slider/index.js +16 -0
  69. package/dist/cjs/src/components/spinner/Spinner.js +53 -0
  70. package/dist/cjs/src/components/spinner/index.js +27 -0
  71. package/dist/cjs/src/components/tab/HorizontalTab.js +77 -0
  72. package/dist/cjs/src/components/tab/TabButton.js +76 -0
  73. package/dist/cjs/src/components/tab/VerticalTab.js +75 -0
  74. package/dist/cjs/src/components/tab/index.js +38 -0
  75. package/dist/cjs/src/components/tag/Tag.js +78 -0
  76. package/dist/cjs/src/components/tag/index.js +16 -0
  77. package/dist/cjs/src/components/toggle/Toggle.js +74 -0
  78. package/dist/cjs/src/components/toggle/index.js +16 -0
  79. package/dist/cjs/src/components/tooltip/Tooltip.js +74 -0
  80. package/dist/cjs/src/components/tooltip/index.js +16 -0
  81. package/dist/cjs/src/constant/breakpoint.js +12 -0
  82. package/dist/cjs/src/constant/date-picker.js +63 -0
  83. package/dist/cjs/src/constant/index.js +27 -0
  84. package/dist/cjs/src/constant/size.js +7 -0
  85. package/dist/cjs/src/hooks/useMediaQuery.js +29 -0
  86. package/dist/cjs/src/utils/date-picker.js +26 -0
  87. package/dist/esm/assets/scripts/datePicker.js +243 -0
  88. package/dist/{temp → esm}/assets/scripts/index.js +4 -4
  89. package/dist/esm/assets/scripts/slider.js +327 -0
  90. package/dist/esm/assets/scripts/tab.js +35 -0
  91. package/dist/esm/constant/color.js +32 -0
  92. package/dist/esm/constant/size.js +1 -0
  93. package/dist/{temp → esm}/index.js +1 -1
  94. package/dist/esm/src/components/badge/Badge.js +44 -0
  95. package/dist/esm/src/components/badge/BadgeGroup.js +54 -0
  96. package/dist/esm/src/components/badge/index.js +2 -0
  97. package/dist/esm/src/components/badge/utils.js +25 -0
  98. package/dist/esm/src/components/breadcrumb/BreadCrumb.js +59 -0
  99. package/dist/esm/src/components/breadcrumb/index.js +1 -0
  100. package/dist/esm/src/components/button/Button.js +120 -0
  101. package/dist/esm/src/components/button/ButtonCloseX.js +36 -0
  102. package/dist/esm/src/components/button/ButtonGroup.js +111 -0
  103. package/dist/esm/src/components/button/index.js +2 -0
  104. package/dist/esm/src/components/carousel/CarouselArrow.js +33 -0
  105. package/dist/esm/src/components/carousel/CarouselNumberGroup.js +38 -0
  106. package/dist/esm/src/components/carousel/index.js +2 -0
  107. package/dist/esm/src/components/checkbox/Checkbox.js +62 -0
  108. package/dist/esm/src/components/checkbox/CheckboxInput.js +89 -0
  109. package/dist/esm/src/components/checkbox/index.js +2 -0
  110. package/dist/esm/src/components/date-picker/DatePicker.js +79 -0
  111. package/dist/esm/src/components/date-picker/RangeDatePicker.js +130 -0
  112. package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +85 -0
  113. package/dist/{temp → esm}/src/components/date-picker/index.js +1 -1
  114. package/dist/esm/src/components/date-picker/utils.js +10 -0
  115. package/dist/esm/src/components/divider/Divider.js +40 -0
  116. package/dist/esm/src/components/divider/index.js +1 -0
  117. package/dist/esm/src/components/dot/Dot.js +34 -0
  118. package/dist/esm/src/components/dot/index.js +1 -0
  119. package/dist/esm/src/components/dropdown/Dropdown.js +198 -0
  120. package/dist/esm/src/components/dropdown/index.js +1 -0
  121. package/dist/esm/src/components/empty-state/EmptyState.js +51 -0
  122. package/dist/esm/src/components/empty-state/index.js +1 -0
  123. package/dist/esm/src/components/featured-icon/FeaturedIcon.js +55 -0
  124. package/dist/esm/src/components/featured-icon/index.js +1 -0
  125. package/dist/{temp → esm}/src/components/index.js +1 -1
  126. package/dist/esm/src/components/input/InputBase.js +177 -0
  127. package/dist/esm/src/components/input/PasswordInput.js +87 -0
  128. package/dist/esm/src/components/input/Textarea.js +108 -0
  129. package/dist/{temp → esm}/src/components/input/index.js +1 -1
  130. package/dist/esm/src/components/modal/Modal.js +186 -0
  131. package/dist/esm/src/components/modal/index.js +1 -0
  132. package/dist/esm/src/components/notification/FloatingNotification.js +101 -0
  133. package/dist/esm/src/components/notification/FullWidthNotification.js +112 -0
  134. package/dist/esm/src/components/notification/Notification.js +39 -0
  135. package/dist/{temp → esm}/src/components/notification/index.js +1 -1
  136. package/dist/esm/src/components/pagination/NavButton.js +86 -0
  137. package/dist/esm/src/components/pagination/Pagination.js +153 -0
  138. package/dist/esm/src/components/pagination/index.js +2 -0
  139. package/dist/esm/src/components/progress-bar/ProgressBar.js +50 -0
  140. package/dist/esm/src/components/progress-bar/index.js +1 -0
  141. package/dist/esm/src/components/progress-circle/ProgressCircle.js +114 -0
  142. package/dist/esm/src/components/progress-circle/index.js +1 -0
  143. package/dist/esm/src/components/radio/Radio.js +57 -0
  144. package/dist/esm/src/components/radio/RadioInput.js +43 -0
  145. package/dist/esm/src/components/radio/index.js +2 -0
  146. package/dist/esm/src/components/select/Select.js +91 -0
  147. package/dist/esm/src/components/select/index.js +1 -0
  148. package/dist/esm/src/components/shared/hintText/HintText.js +35 -0
  149. package/dist/esm/src/components/shared/hintText/index.js +1 -0
  150. package/dist/{temp → esm}/src/components/shared/index.js +1 -1
  151. package/dist/esm/src/components/shared/label/Label.js +35 -0
  152. package/dist/esm/src/components/shared/label/index.js +1 -0
  153. package/dist/esm/src/components/slider/Slider.js +57 -0
  154. package/dist/esm/src/components/slider/index.js +1 -0
  155. package/dist/esm/src/components/spinner/Spinner.js +45 -0
  156. package/dist/{temp → esm}/src/components/spinner/index.js +1 -1
  157. package/dist/esm/src/components/tab/HorizontalTab.js +69 -0
  158. package/dist/esm/src/components/tab/TabButton.js +68 -0
  159. package/dist/esm/src/components/tab/VerticalTab.js +67 -0
  160. package/dist/{temp → esm}/src/components/tab/index.js +1 -1
  161. package/dist/esm/src/components/tag/Tag.js +70 -0
  162. package/dist/esm/src/components/tag/index.js +1 -0
  163. package/dist/esm/src/components/toggle/Toggle.js +66 -0
  164. package/dist/esm/src/components/toggle/index.js +1 -0
  165. package/dist/esm/src/components/tooltip/Tooltip.js +66 -0
  166. package/dist/esm/src/components/tooltip/index.js +1 -0
  167. package/dist/esm/src/constant/breakpoint.js +6 -0
  168. package/dist/esm/src/constant/date-picker.js +57 -0
  169. package/dist/esm/src/constant/index.js +2 -0
  170. package/dist/esm/src/constant/size.js +1 -0
  171. package/dist/esm/src/hooks/useMediaQuery.js +22 -0
  172. package/dist/esm/src/utils/date-picker.js +17 -0
  173. package/dist/{temp → types}/src/components/date-picker/DatePicker.d.ts +0 -1
  174. package/dist/{temp → types}/src/components/date-picker/RangeDatePicker.d.ts +0 -1
  175. package/dist/{temp → types}/src/components/dropdown/Dropdown.d.ts +0 -1
  176. package/dist/{temp → types}/src/components/input/PasswordInput.d.ts +0 -1
  177. package/dist/{temp → types}/src/components/shared/hintText/HintText.d.ts +0 -1
  178. package/dist/{temp → types}/src/components/shared/label/Label.d.ts +0 -1
  179. package/dist/ui-admin/assets/images/sprite.png +0 -0
  180. package/dist/ui-admin/assets/styles/style.css +3653 -0
  181. package/package.json +1 -1
  182. package/dist/temp/assets/scripts/datePicker.d.ts.map +0 -1
  183. package/dist/temp/assets/scripts/datePicker.js +0 -232
  184. package/dist/temp/assets/scripts/index.d.ts.map +0 -1
  185. package/dist/temp/assets/scripts/slider.d.ts.map +0 -1
  186. package/dist/temp/assets/scripts/slider.js +0 -331
  187. package/dist/temp/assets/scripts/tab.d.ts.map +0 -1
  188. package/dist/temp/assets/scripts/tab.js +0 -35
  189. package/dist/temp/constant/color.d.ts.map +0 -1
  190. package/dist/temp/constant/color.js +0 -32
  191. package/dist/temp/constant/size.d.ts.map +0 -1
  192. package/dist/temp/constant/size.js +0 -1
  193. package/dist/temp/docusaurus/docusaurus.config.d.ts +0 -4
  194. package/dist/temp/docusaurus/docusaurus.config.d.ts.map +0 -1
  195. package/dist/temp/docusaurus/docusaurus.config.js +0 -300
  196. package/dist/temp/docusaurus/sidebars.d.ts +0 -14
  197. package/dist/temp/docusaurus/sidebars.d.ts.map +0 -1
  198. package/dist/temp/docusaurus/sidebars.js +0 -104
  199. package/dist/temp/docusaurus/src/components/Badge.d.ts +0 -2
  200. package/dist/temp/docusaurus/src/components/Badge.d.ts.map +0 -1
  201. package/dist/temp/docusaurus/src/components/Badge.js +0 -1
  202. package/dist/temp/docusaurus/src/components/BadgeGroup.d.ts +0 -2
  203. package/dist/temp/docusaurus/src/components/BadgeGroup.d.ts.map +0 -1
  204. package/dist/temp/docusaurus/src/components/BadgeGroup.js +0 -1
  205. package/dist/temp/docusaurus/src/components/BreadCrumb.d.ts +0 -3
  206. package/dist/temp/docusaurus/src/components/BreadCrumb.d.ts.map +0 -1
  207. package/dist/temp/docusaurus/src/components/BreadCrumb.js +0 -2
  208. package/dist/temp/docusaurus/src/components/Button.d.ts +0 -2
  209. package/dist/temp/docusaurus/src/components/Button.d.ts.map +0 -1
  210. package/dist/temp/docusaurus/src/components/Button.js +0 -1
  211. package/dist/temp/docusaurus/src/components/ButtonGroup.d.ts +0 -2
  212. package/dist/temp/docusaurus/src/components/ButtonGroup.d.ts.map +0 -1
  213. package/dist/temp/docusaurus/src/components/ButtonGroup.js +0 -1
  214. package/dist/temp/docusaurus/src/components/CarouselArrow.d.ts +0 -2
  215. package/dist/temp/docusaurus/src/components/CarouselArrow.d.ts.map +0 -1
  216. package/dist/temp/docusaurus/src/components/CarouselArrow.js +0 -1
  217. package/dist/temp/docusaurus/src/components/CarouselNumberGroup.d.ts +0 -2
  218. package/dist/temp/docusaurus/src/components/CarouselNumberGroup.d.ts.map +0 -1
  219. package/dist/temp/docusaurus/src/components/CarouselNumberGroup.js +0 -1
  220. package/dist/temp/docusaurus/src/components/Checkbox.d.ts +0 -4
  221. package/dist/temp/docusaurus/src/components/Checkbox.d.ts.map +0 -1
  222. package/dist/temp/docusaurus/src/components/Checkbox.js +0 -20
  223. package/dist/temp/docusaurus/src/components/CodeTabs/index.d.ts +0 -10
  224. package/dist/temp/docusaurus/src/components/CodeTabs/index.d.ts.map +0 -1
  225. package/dist/temp/docusaurus/src/components/CodeTabs/index.js +0 -143
  226. package/dist/temp/docusaurus/src/components/ColorSwatch.d.ts +0 -9
  227. package/dist/temp/docusaurus/src/components/ColorSwatch.d.ts.map +0 -1
  228. package/dist/temp/docusaurus/src/components/ColorSwatch.js +0 -37
  229. package/dist/temp/docusaurus/src/components/DatePicker.d.ts +0 -2
  230. package/dist/temp/docusaurus/src/components/DatePicker.d.ts.map +0 -1
  231. package/dist/temp/docusaurus/src/components/DatePicker.js +0 -1
  232. package/dist/temp/docusaurus/src/components/Divider.d.ts +0 -3
  233. package/dist/temp/docusaurus/src/components/Divider.d.ts.map +0 -1
  234. package/dist/temp/docusaurus/src/components/Divider.js +0 -2
  235. package/dist/temp/docusaurus/src/components/Dot.d.ts +0 -3
  236. package/dist/temp/docusaurus/src/components/Dot.d.ts.map +0 -1
  237. package/dist/temp/docusaurus/src/components/Dot.js +0 -1
  238. package/dist/temp/docusaurus/src/components/Dropdown.d.ts +0 -4
  239. package/dist/temp/docusaurus/src/components/Dropdown.d.ts.map +0 -1
  240. package/dist/temp/docusaurus/src/components/Dropdown.js +0 -20
  241. package/dist/temp/docusaurus/src/components/EmptyState.d.ts +0 -2
  242. package/dist/temp/docusaurus/src/components/EmptyState.d.ts.map +0 -1
  243. package/dist/temp/docusaurus/src/components/EmptyState.js +0 -1
  244. package/dist/temp/docusaurus/src/components/ExampleCode/index.d.ts +0 -9
  245. package/dist/temp/docusaurus/src/components/ExampleCode/index.d.ts.map +0 -1
  246. package/dist/temp/docusaurus/src/components/ExampleCode/index.js +0 -30
  247. package/dist/temp/docusaurus/src/components/ExampleContainer/index.d.ts +0 -8
  248. package/dist/temp/docusaurus/src/components/ExampleContainer/index.d.ts.map +0 -1
  249. package/dist/temp/docusaurus/src/components/ExampleContainer/index.js +0 -30
  250. package/dist/temp/docusaurus/src/components/FeaturedIcon.d.ts +0 -2
  251. package/dist/temp/docusaurus/src/components/FeaturedIcon.d.ts.map +0 -1
  252. package/dist/temp/docusaurus/src/components/FeaturedIcon.js +0 -1
  253. package/dist/temp/docusaurus/src/components/HorizontalTab.d.ts +0 -3
  254. package/dist/temp/docusaurus/src/components/HorizontalTab.d.ts.map +0 -1
  255. package/dist/temp/docusaurus/src/components/HorizontalTab.js +0 -2
  256. package/dist/temp/docusaurus/src/components/IconList.d.ts +0 -2
  257. package/dist/temp/docusaurus/src/components/IconList.d.ts.map +0 -1
  258. package/dist/temp/docusaurus/src/components/IconList.js +0 -1588
  259. package/dist/temp/docusaurus/src/components/Input.d.ts +0 -4
  260. package/dist/temp/docusaurus/src/components/Input.d.ts.map +0 -1
  261. package/dist/temp/docusaurus/src/components/Input.js +0 -3
  262. package/dist/temp/docusaurus/src/components/InteractiveExample/index.d.ts +0 -19
  263. package/dist/temp/docusaurus/src/components/InteractiveExample/index.d.ts.map +0 -1
  264. package/dist/temp/docusaurus/src/components/InteractiveExample/index.js +0 -174
  265. package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.d.ts +0 -46
  266. package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.d.ts.map +0 -1
  267. package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.js +0 -211
  268. package/dist/temp/docusaurus/src/components/Modal.d.ts +0 -8
  269. package/dist/temp/docusaurus/src/components/Modal.d.ts.map +0 -1
  270. package/dist/temp/docusaurus/src/components/Modal.js +0 -30
  271. package/dist/temp/docusaurus/src/components/Notification.d.ts +0 -2
  272. package/dist/temp/docusaurus/src/components/Notification.d.ts.map +0 -1
  273. package/dist/temp/docusaurus/src/components/Notification.js +0 -1
  274. package/dist/temp/docusaurus/src/components/PaginationExample.d.ts +0 -2
  275. package/dist/temp/docusaurus/src/components/PaginationExample.d.ts.map +0 -1
  276. package/dist/temp/docusaurus/src/components/PaginationExample.js +0 -1
  277. package/dist/temp/docusaurus/src/components/ProgressBar.d.ts +0 -3
  278. package/dist/temp/docusaurus/src/components/ProgressBar.d.ts.map +0 -1
  279. package/dist/temp/docusaurus/src/components/ProgressBar.js +0 -2
  280. package/dist/temp/docusaurus/src/components/ProgressCircle.d.ts +0 -3
  281. package/dist/temp/docusaurus/src/components/ProgressCircle.d.ts.map +0 -1
  282. package/dist/temp/docusaurus/src/components/ProgressCircle.js +0 -2
  283. package/dist/temp/docusaurus/src/components/Radio.d.ts +0 -4
  284. package/dist/temp/docusaurus/src/components/Radio.d.ts.map +0 -1
  285. package/dist/temp/docusaurus/src/components/Radio.js +0 -20
  286. package/dist/temp/docusaurus/src/components/RangeDatePicker.d.ts +0 -2
  287. package/dist/temp/docusaurus/src/components/RangeDatePicker.d.ts.map +0 -1
  288. package/dist/temp/docusaurus/src/components/RangeDatePicker.js +0 -1
  289. package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.d.ts +0 -2
  290. package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.d.ts.map +0 -1
  291. package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.js +0 -1
  292. package/dist/temp/docusaurus/src/components/Select.d.ts +0 -4
  293. package/dist/temp/docusaurus/src/components/Select.d.ts.map +0 -1
  294. package/dist/temp/docusaurus/src/components/Select.js +0 -17
  295. package/dist/temp/docusaurus/src/components/Slider.d.ts +0 -3
  296. package/dist/temp/docusaurus/src/components/Slider.d.ts.map +0 -1
  297. package/dist/temp/docusaurus/src/components/Slider.js +0 -1
  298. package/dist/temp/docusaurus/src/components/Spinner.d.ts +0 -2
  299. package/dist/temp/docusaurus/src/components/Spinner.d.ts.map +0 -1
  300. package/dist/temp/docusaurus/src/components/Spinner.js +0 -1
  301. package/dist/temp/docusaurus/src/components/Table.d.ts +0 -43
  302. package/dist/temp/docusaurus/src/components/Table.d.ts.map +0 -1
  303. package/dist/temp/docusaurus/src/components/Table.js +0 -56
  304. package/dist/temp/docusaurus/src/components/Tabs.d.ts +0 -27
  305. package/dist/temp/docusaurus/src/components/Tabs.d.ts.map +0 -1
  306. package/dist/temp/docusaurus/src/components/Tabs.js +0 -49
  307. package/dist/temp/docusaurus/src/components/Tag.d.ts +0 -2
  308. package/dist/temp/docusaurus/src/components/Tag.d.ts.map +0 -1
  309. package/dist/temp/docusaurus/src/components/Tag.js +0 -16
  310. package/dist/temp/docusaurus/src/components/Toggle.d.ts +0 -2
  311. package/dist/temp/docusaurus/src/components/Toggle.d.ts.map +0 -1
  312. package/dist/temp/docusaurus/src/components/Toggle.js +0 -19
  313. package/dist/temp/docusaurus/src/components/TooltipExample.d.ts +0 -2
  314. package/dist/temp/docusaurus/src/components/TooltipExample.d.ts.map +0 -1
  315. package/dist/temp/docusaurus/src/components/TooltipExample.js +0 -1
  316. package/dist/temp/docusaurus/src/components/VerticalTab.d.ts +0 -3
  317. package/dist/temp/docusaurus/src/components/VerticalTab.d.ts.map +0 -1
  318. package/dist/temp/docusaurus/src/components/VerticalTab.js +0 -2
  319. package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.d.ts +0 -2
  320. package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.d.ts.map +0 -1
  321. package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.js +0 -46
  322. package/dist/temp/docusaurus/src/components/demos/DividerDemo.d.ts +0 -9
  323. package/dist/temp/docusaurus/src/components/demos/DividerDemo.d.ts.map +0 -1
  324. package/dist/temp/docusaurus/src/components/demos/DividerDemo.js +0 -40
  325. package/dist/temp/docusaurus/src/components/demos/DotDemo.d.ts +0 -5
  326. package/dist/temp/docusaurus/src/components/demos/DotDemo.d.ts.map +0 -1
  327. package/dist/temp/docusaurus/src/components/demos/DotDemo.js +0 -17
  328. package/dist/temp/docusaurus/src/components/demos/DropdownDemo.d.ts +0 -19
  329. package/dist/temp/docusaurus/src/components/demos/DropdownDemo.d.ts.map +0 -1
  330. package/dist/temp/docusaurus/src/components/demos/DropdownDemo.js +0 -89
  331. package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.d.ts +0 -9
  332. package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.d.ts.map +0 -1
  333. package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.js +0 -6
  334. package/dist/temp/docusaurus/src/components/demos/ModalDemo.d.ts +0 -27
  335. package/dist/temp/docusaurus/src/components/demos/ModalDemo.d.ts.map +0 -1
  336. package/dist/temp/docusaurus/src/components/demos/ModalDemo.js +0 -51
  337. package/dist/temp/docusaurus/src/components/demos/NotificationDemo.d.ts +0 -48
  338. package/dist/temp/docusaurus/src/components/demos/NotificationDemo.d.ts.map +0 -1
  339. package/dist/temp/docusaurus/src/components/demos/NotificationDemo.js +0 -77
  340. package/dist/temp/docusaurus/src/components/demos/SliderDemo.d.ts +0 -18
  341. package/dist/temp/docusaurus/src/components/demos/SliderDemo.d.ts.map +0 -1
  342. package/dist/temp/docusaurus/src/components/demos/SliderDemo.js +0 -24
  343. package/dist/temp/docusaurus/src/components/demos/index.d.ts +0 -8
  344. package/dist/temp/docusaurus/src/components/demos/index.d.ts.map +0 -1
  345. package/dist/temp/docusaurus/src/components/demos/index.js +0 -7
  346. package/dist/temp/docusaurus/src/components/index.d.ts +0 -2
  347. package/dist/temp/docusaurus/src/components/index.d.ts.map +0 -1
  348. package/dist/temp/docusaurus/src/components/index.js +0 -2
  349. package/dist/temp/docusaurus/src/pages/index.d.ts +0 -4
  350. package/dist/temp/docusaurus/src/pages/index.d.ts.map +0 -1
  351. package/dist/temp/docusaurus/src/pages/index.js +0 -10
  352. package/dist/temp/docusaurus/src/step-guide-example/BasicExample.d.ts +0 -3
  353. package/dist/temp/docusaurus/src/step-guide-example/BasicExample.d.ts.map +0 -1
  354. package/dist/temp/docusaurus/src/step-guide-example/BasicExample.js +0 -47
  355. package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.d.ts +0 -3
  356. package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.d.ts.map +0 -1
  357. package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.js +0 -48
  358. package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.d.ts +0 -3
  359. package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.d.ts.map +0 -1
  360. package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.js +0 -50
  361. package/dist/temp/docusaurus/src/step-guide-example/EndCallback.d.ts +0 -3
  362. package/dist/temp/docusaurus/src/step-guide-example/EndCallback.d.ts.map +0 -1
  363. package/dist/temp/docusaurus/src/step-guide-example/EndCallback.js +0 -62
  364. package/dist/temp/docusaurus/src/step-guide-example/GoToStep.d.ts +0 -3
  365. package/dist/temp/docusaurus/src/step-guide-example/GoToStep.d.ts.map +0 -1
  366. package/dist/temp/docusaurus/src/step-guide-example/GoToStep.js +0 -65
  367. package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.d.ts +0 -3
  368. package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.d.ts.map +0 -1
  369. package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.js +0 -63
  370. package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.d.ts +0 -3
  371. package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.d.ts.map +0 -1
  372. package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.js +0 -48
  373. package/dist/temp/docusaurus/src/step-guide-example/PositionExample.d.ts +0 -3
  374. package/dist/temp/docusaurus/src/step-guide-example/PositionExample.d.ts.map +0 -1
  375. package/dist/temp/docusaurus/src/step-guide-example/PositionExample.js +0 -52
  376. package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.d.ts +0 -3
  377. package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.d.ts.map +0 -1
  378. package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.js +0 -52
  379. package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.d.ts +0 -3
  380. package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.d.ts.map +0 -1
  381. package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.js +0 -54
  382. package/dist/temp/docusaurus/src/step-guide-example/StepCount.d.ts +0 -3
  383. package/dist/temp/docusaurus/src/step-guide-example/StepCount.d.ts.map +0 -1
  384. package/dist/temp/docusaurus/src/step-guide-example/StepCount.js +0 -65
  385. package/dist/temp/docusaurus/src/step-guide-example/UseHtml.d.ts +0 -3
  386. package/dist/temp/docusaurus/src/step-guide-example/UseHtml.d.ts.map +0 -1
  387. package/dist/temp/docusaurus/src/step-guide-example/UseHtml.js +0 -46
  388. package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.d.ts +0 -7
  389. package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.d.ts.map +0 -1
  390. package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.js +0 -21
  391. package/dist/temp/docusaurus/src/step-guide-example/util/index.d.ts +0 -5
  392. package/dist/temp/docusaurus/src/step-guide-example/util/index.d.ts.map +0 -1
  393. package/dist/temp/docusaurus/src/step-guide-example/util/index.js +0 -16
  394. package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.d.ts +0 -6
  395. package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.d.ts.map +0 -1
  396. package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.js +0 -46
  397. package/dist/temp/docusaurus/src/theme/BlogSidebar/index.d.ts +0 -6
  398. package/dist/temp/docusaurus/src/theme/BlogSidebar/index.d.ts.map +0 -1
  399. package/dist/temp/docusaurus/src/theme/BlogSidebar/index.js +0 -30
  400. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.d.ts +0 -3
  401. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.d.ts.map +0 -1
  402. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.js +0 -25
  403. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.d.ts +0 -4
  404. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.d.ts.map +0 -1
  405. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.js +0 -20
  406. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.d.ts +0 -3
  407. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.d.ts.map +0 -1
  408. package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.js +0 -46
  409. package/dist/temp/docusaurus/src/utils/html.d.ts +0 -3
  410. package/dist/temp/docusaurus/src/utils/html.d.ts.map +0 -1
  411. package/dist/temp/docusaurus/src/utils/html.js +0 -100
  412. package/dist/temp/index.d.ts.map +0 -1
  413. package/dist/temp/src/components/badge/Badge.d.ts.map +0 -1
  414. package/dist/temp/src/components/badge/Badge.js +0 -22
  415. package/dist/temp/src/components/badge/BadgeGroup.d.ts.map +0 -1
  416. package/dist/temp/src/components/badge/BadgeGroup.js +0 -31
  417. package/dist/temp/src/components/badge/index.d.ts.map +0 -1
  418. package/dist/temp/src/components/badge/index.js +0 -2
  419. package/dist/temp/src/components/badge/utils.d.ts.map +0 -1
  420. package/dist/temp/src/components/badge/utils.js +0 -16
  421. package/dist/temp/src/components/breadcrumb/BreadCrumb.d.ts.map +0 -1
  422. package/dist/temp/src/components/breadcrumb/BreadCrumb.js +0 -30
  423. package/dist/temp/src/components/breadcrumb/index.d.ts.map +0 -1
  424. package/dist/temp/src/components/breadcrumb/index.js +0 -1
  425. package/dist/temp/src/components/button/Button.d.ts.map +0 -1
  426. package/dist/temp/src/components/button/Button.js +0 -89
  427. package/dist/temp/src/components/button/ButtonCloseX.d.ts.map +0 -1
  428. package/dist/temp/src/components/button/ButtonCloseX.js +0 -24
  429. package/dist/temp/src/components/button/ButtonGroup.d.ts.map +0 -1
  430. package/dist/temp/src/components/button/ButtonGroup.js +0 -71
  431. package/dist/temp/src/components/button/index.d.ts.map +0 -1
  432. package/dist/temp/src/components/button/index.js +0 -2
  433. package/dist/temp/src/components/carousel/CarouselArrow.d.ts.map +0 -1
  434. package/dist/temp/src/components/carousel/CarouselArrow.js +0 -23
  435. package/dist/temp/src/components/carousel/CarouselNumberGroup.d.ts.map +0 -1
  436. package/dist/temp/src/components/carousel/CarouselNumberGroup.js +0 -23
  437. package/dist/temp/src/components/carousel/index.d.ts.map +0 -1
  438. package/dist/temp/src/components/carousel/index.js +0 -2
  439. package/dist/temp/src/components/checkbox/Checkbox.d.ts.map +0 -1
  440. package/dist/temp/src/components/checkbox/Checkbox.js +0 -29
  441. package/dist/temp/src/components/checkbox/CheckboxInput.d.ts.map +0 -1
  442. package/dist/temp/src/components/checkbox/CheckboxInput.js +0 -37
  443. package/dist/temp/src/components/checkbox/index.d.ts.map +0 -1
  444. package/dist/temp/src/components/checkbox/index.js +0 -2
  445. package/dist/temp/src/components/date-picker/DatePicker.d.ts.map +0 -1
  446. package/dist/temp/src/components/date-picker/DatePicker.js +0 -39
  447. package/dist/temp/src/components/date-picker/RangeDatePicker.d.ts.map +0 -1
  448. package/dist/temp/src/components/date-picker/RangeDatePicker.js +0 -127
  449. package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.d.ts.map +0 -1
  450. package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.js +0 -46
  451. package/dist/temp/src/components/date-picker/index.d.ts.map +0 -1
  452. package/dist/temp/src/components/date-picker/utils.d.ts.map +0 -1
  453. package/dist/temp/src/components/date-picker/utils.js +0 -8
  454. package/dist/temp/src/components/divider/Divider.d.ts.map +0 -1
  455. package/dist/temp/src/components/divider/Divider.js +0 -24
  456. package/dist/temp/src/components/divider/index.d.ts.map +0 -1
  457. package/dist/temp/src/components/divider/index.js +0 -1
  458. package/dist/temp/src/components/dot/Dot.d.ts.map +0 -1
  459. package/dist/temp/src/components/dot/Dot.js +0 -30
  460. package/dist/temp/src/components/dot/index.d.ts.map +0 -1
  461. package/dist/temp/src/components/dot/index.js +0 -1
  462. package/dist/temp/src/components/dropdown/Dropdown.d.ts.map +0 -1
  463. package/dist/temp/src/components/dropdown/Dropdown.js +0 -82
  464. package/dist/temp/src/components/dropdown/index.d.ts.map +0 -1
  465. package/dist/temp/src/components/dropdown/index.js +0 -1
  466. package/dist/temp/src/components/empty-state/EmptyState.d.ts.map +0 -1
  467. package/dist/temp/src/components/empty-state/EmptyState.js +0 -32
  468. package/dist/temp/src/components/empty-state/index.d.ts.map +0 -1
  469. package/dist/temp/src/components/empty-state/index.js +0 -1
  470. package/dist/temp/src/components/featured-icon/FeaturedIcon.d.ts.map +0 -1
  471. package/dist/temp/src/components/featured-icon/FeaturedIcon.js +0 -36
  472. package/dist/temp/src/components/featured-icon/index.d.ts.map +0 -1
  473. package/dist/temp/src/components/featured-icon/index.js +0 -1
  474. package/dist/temp/src/components/index.d.ts.map +0 -1
  475. package/dist/temp/src/components/input/InputBase.d.ts.map +0 -1
  476. package/dist/temp/src/components/input/InputBase.js +0 -91
  477. package/dist/temp/src/components/input/PasswordInput.d.ts.map +0 -1
  478. package/dist/temp/src/components/input/PasswordInput.js +0 -75
  479. package/dist/temp/src/components/input/Textarea.d.ts.map +0 -1
  480. package/dist/temp/src/components/input/Textarea.js +0 -60
  481. package/dist/temp/src/components/input/index.d.ts.map +0 -1
  482. package/dist/temp/src/components/modal/Modal.d.ts.map +0 -1
  483. package/dist/temp/src/components/modal/Modal.js +0 -100
  484. package/dist/temp/src/components/modal/index.d.ts.map +0 -1
  485. package/dist/temp/src/components/modal/index.js +0 -1
  486. package/dist/temp/src/components/notification/FloatingNotification.d.ts.map +0 -1
  487. package/dist/temp/src/components/notification/FloatingNotification.js +0 -50
  488. package/dist/temp/src/components/notification/FullWidthNotification.d.ts.map +0 -1
  489. package/dist/temp/src/components/notification/FullWidthNotification.js +0 -47
  490. package/dist/temp/src/components/notification/Notification.d.ts.map +0 -1
  491. package/dist/temp/src/components/notification/Notification.js +0 -31
  492. package/dist/temp/src/components/notification/index.d.ts.map +0 -1
  493. package/dist/temp/src/components/pagination/NavButton.d.ts.map +0 -1
  494. package/dist/temp/src/components/pagination/NavButton.js +0 -66
  495. package/dist/temp/src/components/pagination/Pagination.d.ts.map +0 -1
  496. package/dist/temp/src/components/pagination/Pagination.js +0 -97
  497. package/dist/temp/src/components/pagination/index.d.ts.map +0 -1
  498. package/dist/temp/src/components/pagination/index.js +0 -2
  499. package/dist/temp/src/components/progress-bar/ProgressBar.d.ts.map +0 -1
  500. package/dist/temp/src/components/progress-bar/ProgressBar.js +0 -25
  501. package/dist/temp/src/components/progress-bar/index.d.ts.map +0 -1
  502. package/dist/temp/src/components/progress-bar/index.js +0 -1
  503. package/dist/temp/src/components/progress-circle/ProgressCircle.d.ts.map +0 -1
  504. package/dist/temp/src/components/progress-circle/ProgressCircle.js +0 -22
  505. package/dist/temp/src/components/progress-circle/index.d.ts.map +0 -1
  506. package/dist/temp/src/components/progress-circle/index.js +0 -1
  507. package/dist/temp/src/components/radio/Radio.d.ts.map +0 -1
  508. package/dist/temp/src/components/radio/Radio.js +0 -29
  509. package/dist/temp/src/components/radio/RadioInput.d.ts.map +0 -1
  510. package/dist/temp/src/components/radio/RadioInput.js +0 -29
  511. package/dist/temp/src/components/radio/index.d.ts.map +0 -1
  512. package/dist/temp/src/components/radio/index.js +0 -2
  513. package/dist/temp/src/components/select/Select.d.ts.map +0 -1
  514. package/dist/temp/src/components/select/Select.js +0 -38
  515. package/dist/temp/src/components/select/index.d.ts.map +0 -1
  516. package/dist/temp/src/components/select/index.js +0 -1
  517. package/dist/temp/src/components/shared/hintText/HintText.d.ts.map +0 -1
  518. package/dist/temp/src/components/shared/hintText/HintText.js +0 -28
  519. package/dist/temp/src/components/shared/hintText/index.d.ts.map +0 -1
  520. package/dist/temp/src/components/shared/hintText/index.js +0 -1
  521. package/dist/temp/src/components/shared/index.d.ts.map +0 -1
  522. package/dist/temp/src/components/shared/label/Label.d.ts.map +0 -1
  523. package/dist/temp/src/components/shared/label/Label.js +0 -28
  524. package/dist/temp/src/components/shared/label/index.d.ts.map +0 -1
  525. package/dist/temp/src/components/shared/label/index.js +0 -1
  526. package/dist/temp/src/components/slider/Slider.d.ts.map +0 -1
  527. package/dist/temp/src/components/slider/Slider.js +0 -44
  528. package/dist/temp/src/components/slider/index.d.ts.map +0 -1
  529. package/dist/temp/src/components/slider/index.js +0 -1
  530. package/dist/temp/src/components/spinner/Spinner.d.ts.map +0 -1
  531. package/dist/temp/src/components/spinner/Spinner.js +0 -21
  532. package/dist/temp/src/components/spinner/index.d.ts.map +0 -1
  533. package/dist/temp/src/components/tab/HorizontalTab.d.ts.map +0 -1
  534. package/dist/temp/src/components/tab/HorizontalTab.js +0 -44
  535. package/dist/temp/src/components/tab/TabButton.d.ts.map +0 -1
  536. package/dist/temp/src/components/tab/TabButton.js +0 -38
  537. package/dist/temp/src/components/tab/VerticalTab.d.ts.map +0 -1
  538. package/dist/temp/src/components/tab/VerticalTab.js +0 -39
  539. package/dist/temp/src/components/tab/index.d.ts.map +0 -1
  540. package/dist/temp/src/components/tag/Tag.d.ts.map +0 -1
  541. package/dist/temp/src/components/tag/Tag.js +0 -34
  542. package/dist/temp/src/components/tag/index.d.ts.map +0 -1
  543. package/dist/temp/src/components/tag/index.js +0 -1
  544. package/dist/temp/src/components/toggle/Toggle.d.ts.map +0 -1
  545. package/dist/temp/src/components/toggle/Toggle.js +0 -30
  546. package/dist/temp/src/components/toggle/index.d.ts.map +0 -1
  547. package/dist/temp/src/components/toggle/index.js +0 -1
  548. package/dist/temp/src/components/tooltip/Tooltip.d.ts.map +0 -1
  549. package/dist/temp/src/components/tooltip/Tooltip.js +0 -23
  550. package/dist/temp/src/components/tooltip/index.d.ts.map +0 -1
  551. package/dist/temp/src/components/tooltip/index.js +0 -1
  552. package/dist/temp/src/constant/breakpoint.d.ts.map +0 -1
  553. package/dist/temp/src/constant/breakpoint.js +0 -6
  554. package/dist/temp/src/constant/date-picker.d.ts.map +0 -1
  555. package/dist/temp/src/constant/date-picker.js +0 -53
  556. package/dist/temp/src/constant/index.d.ts.map +0 -1
  557. package/dist/temp/src/constant/index.js +0 -2
  558. package/dist/temp/src/constant/size.d.ts.map +0 -1
  559. package/dist/temp/src/constant/size.js +0 -1
  560. package/dist/temp/src/hooks/useMediaQuery.d.ts.map +0 -1
  561. package/dist/temp/src/hooks/useMediaQuery.js +0 -20
  562. package/dist/temp/src/utils/date-picker.d.ts.map +0 -1
  563. package/dist/temp/src/utils/date-picker.js +0 -12
  564. package/dist/temp/tsconfig.tsbuildinfo +0 -1
  565. /package/dist/{temp → types}/assets/scripts/datePicker.d.ts +0 -0
  566. /package/dist/{temp → types}/assets/scripts/index.d.ts +0 -0
  567. /package/dist/{temp → types}/assets/scripts/slider.d.ts +0 -0
  568. /package/dist/{temp → types}/assets/scripts/tab.d.ts +0 -0
  569. /package/dist/{temp → types}/constant/color.d.ts +0 -0
  570. /package/dist/{temp → types}/constant/size.d.ts +0 -0
  571. /package/dist/{temp → types}/index.d.ts +0 -0
  572. /package/dist/{temp → types}/src/components/badge/Badge.d.ts +0 -0
  573. /package/dist/{temp → types}/src/components/badge/BadgeGroup.d.ts +0 -0
  574. /package/dist/{temp → types}/src/components/badge/index.d.ts +0 -0
  575. /package/dist/{temp → types}/src/components/badge/utils.d.ts +0 -0
  576. /package/dist/{temp → types}/src/components/breadcrumb/BreadCrumb.d.ts +0 -0
  577. /package/dist/{temp → types}/src/components/breadcrumb/index.d.ts +0 -0
  578. /package/dist/{temp → types}/src/components/button/Button.d.ts +0 -0
  579. /package/dist/{temp → types}/src/components/button/ButtonCloseX.d.ts +0 -0
  580. /package/dist/{temp → types}/src/components/button/ButtonGroup.d.ts +0 -0
  581. /package/dist/{temp → types}/src/components/button/index.d.ts +0 -0
  582. /package/dist/{temp → types}/src/components/carousel/CarouselArrow.d.ts +0 -0
  583. /package/dist/{temp → types}/src/components/carousel/CarouselNumberGroup.d.ts +0 -0
  584. /package/dist/{temp → types}/src/components/carousel/index.d.ts +0 -0
  585. /package/dist/{temp → types}/src/components/checkbox/Checkbox.d.ts +0 -0
  586. /package/dist/{temp → types}/src/components/checkbox/CheckboxInput.d.ts +0 -0
  587. /package/dist/{temp → types}/src/components/checkbox/index.d.ts +0 -0
  588. /package/dist/{temp → types}/src/components/date-picker/RangeDatePickerWithButtons.d.ts +0 -0
  589. /package/dist/{temp → types}/src/components/date-picker/index.d.ts +0 -0
  590. /package/dist/{temp → types}/src/components/date-picker/utils.d.ts +0 -0
  591. /package/dist/{temp → types}/src/components/divider/Divider.d.ts +0 -0
  592. /package/dist/{temp → types}/src/components/divider/index.d.ts +0 -0
  593. /package/dist/{temp → types}/src/components/dot/Dot.d.ts +0 -0
  594. /package/dist/{temp → types}/src/components/dot/index.d.ts +0 -0
  595. /package/dist/{temp → types}/src/components/dropdown/index.d.ts +0 -0
  596. /package/dist/{temp → types}/src/components/empty-state/EmptyState.d.ts +0 -0
  597. /package/dist/{temp → types}/src/components/empty-state/index.d.ts +0 -0
  598. /package/dist/{temp → types}/src/components/featured-icon/FeaturedIcon.d.ts +0 -0
  599. /package/dist/{temp → types}/src/components/featured-icon/index.d.ts +0 -0
  600. /package/dist/{temp → types}/src/components/index.d.ts +0 -0
  601. /package/dist/{temp → types}/src/components/input/InputBase.d.ts +0 -0
  602. /package/dist/{temp → types}/src/components/input/Textarea.d.ts +0 -0
  603. /package/dist/{temp → types}/src/components/input/index.d.ts +0 -0
  604. /package/dist/{temp → types}/src/components/modal/Modal.d.ts +0 -0
  605. /package/dist/{temp → types}/src/components/modal/index.d.ts +0 -0
  606. /package/dist/{temp → types}/src/components/notification/FloatingNotification.d.ts +0 -0
  607. /package/dist/{temp → types}/src/components/notification/FullWidthNotification.d.ts +0 -0
  608. /package/dist/{temp → types}/src/components/notification/Notification.d.ts +0 -0
  609. /package/dist/{temp → types}/src/components/notification/index.d.ts +0 -0
  610. /package/dist/{temp → types}/src/components/pagination/NavButton.d.ts +0 -0
  611. /package/dist/{temp → types}/src/components/pagination/Pagination.d.ts +0 -0
  612. /package/dist/{temp → types}/src/components/pagination/index.d.ts +0 -0
  613. /package/dist/{temp → types}/src/components/progress-bar/ProgressBar.d.ts +0 -0
  614. /package/dist/{temp → types}/src/components/progress-bar/index.d.ts +0 -0
  615. /package/dist/{temp → types}/src/components/progress-circle/ProgressCircle.d.ts +0 -0
  616. /package/dist/{temp → types}/src/components/progress-circle/index.d.ts +0 -0
  617. /package/dist/{temp → types}/src/components/radio/Radio.d.ts +0 -0
  618. /package/dist/{temp → types}/src/components/radio/RadioInput.d.ts +0 -0
  619. /package/dist/{temp → types}/src/components/radio/index.d.ts +0 -0
  620. /package/dist/{temp → types}/src/components/select/Select.d.ts +0 -0
  621. /package/dist/{temp → types}/src/components/select/index.d.ts +0 -0
  622. /package/dist/{temp → types}/src/components/shared/hintText/index.d.ts +0 -0
  623. /package/dist/{temp → types}/src/components/shared/index.d.ts +0 -0
  624. /package/dist/{temp → types}/src/components/shared/label/index.d.ts +0 -0
  625. /package/dist/{temp → types}/src/components/slider/Slider.d.ts +0 -0
  626. /package/dist/{temp → types}/src/components/slider/index.d.ts +0 -0
  627. /package/dist/{temp → types}/src/components/spinner/Spinner.d.ts +0 -0
  628. /package/dist/{temp → types}/src/components/spinner/index.d.ts +0 -0
  629. /package/dist/{temp → types}/src/components/tab/HorizontalTab.d.ts +0 -0
  630. /package/dist/{temp → types}/src/components/tab/TabButton.d.ts +0 -0
  631. /package/dist/{temp → types}/src/components/tab/VerticalTab.d.ts +0 -0
  632. /package/dist/{temp → types}/src/components/tab/index.d.ts +0 -0
  633. /package/dist/{temp → types}/src/components/tag/Tag.d.ts +0 -0
  634. /package/dist/{temp → types}/src/components/tag/index.d.ts +0 -0
  635. /package/dist/{temp → types}/src/components/toggle/Toggle.d.ts +0 -0
  636. /package/dist/{temp → types}/src/components/toggle/index.d.ts +0 -0
  637. /package/dist/{temp → types}/src/components/tooltip/Tooltip.d.ts +0 -0
  638. /package/dist/{temp → types}/src/components/tooltip/index.d.ts +0 -0
  639. /package/dist/{temp → types}/src/constant/breakpoint.d.ts +0 -0
  640. /package/dist/{temp → types}/src/constant/date-picker.d.ts +0 -0
  641. /package/dist/{temp → types}/src/constant/index.d.ts +0 -0
  642. /package/dist/{temp → types}/src/constant/size.d.ts +0 -0
  643. /package/dist/{temp → types}/src/hooks/useMediaQuery.d.ts +0 -0
  644. /package/dist/{temp → types}/src/utils/date-picker.d.ts +0 -0
@@ -0,0 +1,121 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ProgressCircle = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var __assign = void 0 && (void 0).__assign || function () {
9
+ __assign = Object.assign || function (t) {
10
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
11
+ s = arguments[i];
12
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
13
+ }
14
+ return t;
15
+ };
16
+ return __assign.apply(this, arguments);
17
+ };
18
+ var ProgressCircle = function (_a) {
19
+ var size = _a.size,
20
+ label = _a.label,
21
+ value = _a.value,
22
+ _b = _a.theme,
23
+ theme = _b === void 0 ? 'circle' : _b;
24
+ var limitedValue = Math.min(Math.max(0, value), 100);
25
+ if (theme === 'circle') {
26
+ return (0, _jsxRuntime.jsxs)("div", __assign({
27
+ className: "ncua-progress-circle ncua-progress-circle-".concat(size, " ncua-progress-circle-").concat(theme)
28
+ }, {
29
+ children: [(0, _jsxRuntime.jsxs)("div", __assign({
30
+ className: "ncua-progress-circle__content"
31
+ }, {
32
+ children: [(0, _jsxRuntime.jsxs)("svg", __assign({
33
+ className: "ncua-progress-circle__svg",
34
+ viewBox: "0 0 100 100"
35
+ }, {
36
+ children: [(0, _jsxRuntime.jsx)("circle", {
37
+ className: "ncua-progress-circle__background",
38
+ cx: "50",
39
+ cy: "50",
40
+ r: "45",
41
+ strokeWidth: "10",
42
+ fill: "none"
43
+ }), (0, _jsxRuntime.jsx)("circle", {
44
+ className: "ncua-progress-circle__progress",
45
+ cx: "50",
46
+ cy: "50",
47
+ r: "45",
48
+ strokeWidth: "10",
49
+ fill: "none",
50
+ strokeDasharray: "var(--circle-circumference)",
51
+ strokeDashoffset: "calc(var(--circle-circumference) * (1 - ".concat(limitedValue, " / 100))"),
52
+ transform: "rotate(-90 50 50)",
53
+ strokeLinecap: "round"
54
+ })]
55
+ })), (0, _jsxRuntime.jsxs)("div", __assign({
56
+ className: "ncua-progress-circle__label-container"
57
+ }, {
58
+ children: [size !== 'xxs' && label && (0, _jsxRuntime.jsx)("div", __assign({
59
+ className: "ncua-progress-circle__label-text"
60
+ }, {
61
+ children: label
62
+ })), (0, _jsxRuntime.jsx)("div", __assign({
63
+ className: "ncua-progress-circle__label"
64
+ }, {
65
+ children: "".concat(limitedValue, "%")
66
+ }))]
67
+ }))]
68
+ })), size === 'xxs' && label && (0, _jsxRuntime.jsx)("div", __assign({
69
+ className: "ncua-progress-circle__outside-label"
70
+ }, {
71
+ children: label
72
+ }))]
73
+ }));
74
+ } else {
75
+ return (0, _jsxRuntime.jsxs)("div", __assign({
76
+ className: "ncua-progress-circle ncua-progress-circle-".concat(size, " ncua-progress-circle-").concat(theme)
77
+ }, {
78
+ children: [(0, _jsxRuntime.jsxs)("div", __assign({
79
+ className: "ncua-progress-circle__content"
80
+ }, {
81
+ children: [(0, _jsxRuntime.jsxs)("svg", __assign({
82
+ className: "ncua-progress-circle__svg",
83
+ viewBox: "0 0 100 50"
84
+ }, {
85
+ children: [(0, _jsxRuntime.jsx)("path", {
86
+ className: "ncua-progress-circle__background",
87
+ d: "M 5 50 A 45 45 0 0 1 95 50",
88
+ strokeWidth: "10",
89
+ fill: "none",
90
+ strokeLinecap: "round"
91
+ }), (0, _jsxRuntime.jsx)("path", {
92
+ className: "ncua-progress-circle__progress",
93
+ d: "M 5 50 A 45 45 0 0 1 95 50",
94
+ strokeWidth: "10",
95
+ fill: "none",
96
+ strokeDasharray: "var(--half-circle-circumference)",
97
+ strokeDashoffset: "calc(var(--half-circle-circumference) * (1 - ".concat(limitedValue, " / 100))"),
98
+ strokeLinecap: "round"
99
+ })]
100
+ })), (0, _jsxRuntime.jsxs)("div", __assign({
101
+ className: "ncua-progress-circle__label-container"
102
+ }, {
103
+ children: [size !== 'xxs' && label && (0, _jsxRuntime.jsx)("div", __assign({
104
+ className: "ncua-progress-circle__label-text"
105
+ }, {
106
+ children: label
107
+ })), (0, _jsxRuntime.jsx)("div", __assign({
108
+ className: "ncua-progress-circle__label"
109
+ }, {
110
+ children: "".concat(limitedValue, "%")
111
+ }))]
112
+ }))]
113
+ })), size === 'xxs' && label && (0, _jsxRuntime.jsx)("div", __assign({
114
+ className: "ncua-progress-circle__outside-label"
115
+ }, {
116
+ children: label
117
+ }))]
118
+ }));
119
+ }
120
+ };
121
+ exports.ProgressCircle = ProgressCircle;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _ProgressCircle = require("./ProgressCircle");
7
+ Object.keys(_ProgressCircle).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _ProgressCircle[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _ProgressCircle[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Radio = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ var _RadioInput = require("./RadioInput");
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ var __assign = void 0 && (void 0).__assign || function () {
12
+ __assign = Object.assign || function (t) {
13
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
14
+ s = arguments[i];
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
16
+ }
17
+ return t;
18
+ };
19
+ return __assign.apply(this, arguments);
20
+ };
21
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
22
+ var t = {};
23
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
24
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
25
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
26
+ }
27
+ return t;
28
+ };
29
+ var Radio = function (_a) {
30
+ var _b = _a.size,
31
+ size = _b === void 0 ? 'sm' : _b,
32
+ text = _a.text,
33
+ supportText = _a.supportText,
34
+ disabled = _a.disabled,
35
+ checked = _a.checked,
36
+ className = _a.className,
37
+ radioRef = _a.radioRef,
38
+ onChange = _a.onChange,
39
+ props = __rest(_a, ["size", "text", "supportText", "disabled", "checked", "className", "radioRef", "onChange"]);
40
+ return (0, _jsxRuntime.jsxs)("label", __assign({
41
+ className: (0, _classnames.default)('ncua-radio-field', "ncua-radio-field--".concat(size), {
42
+ 'has-text': text
43
+ }, className)
44
+ }, {
45
+ children: [(0, _jsxRuntime.jsx)(_RadioInput.RadioInput, __assign({
46
+ size: size,
47
+ ref: radioRef,
48
+ checked: checked,
49
+ disabled: disabled,
50
+ onChange: onChange,
51
+ className: "ncua-radio-field__input"
52
+ }, props)), (0, _jsxRuntime.jsxs)("span", {
53
+ children: [text && (0, _jsxRuntime.jsx)("span", __assign({
54
+ className: "ncua-radio-field__text"
55
+ }, {
56
+ children: text
57
+ })), supportText && (0, _jsxRuntime.jsx)("span", __assign({
58
+ className: "ncua-radio-field__support-text"
59
+ }, {
60
+ children: supportText
61
+ }))]
62
+ })]
63
+ }));
64
+ };
65
+ exports.Radio = Radio;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.RadioInput = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ var _react = require("react");
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ var __assign = void 0 && (void 0).__assign || function () {
12
+ __assign = Object.assign || function (t) {
13
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
14
+ s = arguments[i];
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
16
+ }
17
+ return t;
18
+ };
19
+ return __assign.apply(this, arguments);
20
+ };
21
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
22
+ var t = {};
23
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
24
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
25
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
26
+ }
27
+ return t;
28
+ };
29
+ var RadioInput = exports.RadioInput = /*#__PURE__*/(0, _react.forwardRef)(function (_a, ref) {
30
+ var _b = _a.size,
31
+ size = _b === void 0 ? 'sm' : _b,
32
+ disabled = _a.disabled,
33
+ className = _a.className,
34
+ _c = _a.destructive,
35
+ destructive = _c === void 0 ? false : _c,
36
+ onChange = _a.onChange,
37
+ props = __rest(_a, ["size", "disabled", "className", "destructive", "onChange"]);
38
+ return (0, _jsxRuntime.jsx)("span", __assign({
39
+ className: (0, _classnames.default)('ncua-radio-input', "ncua-radio-input--".concat(size), {
40
+ destructive: destructive
41
+ }, className)
42
+ }, {
43
+ children: (0, _jsxRuntime.jsx)("input", __assign({
44
+ type: "radio",
45
+ ref: ref,
46
+ onChange: onChange,
47
+ disabled: disabled
48
+ }, props))
49
+ }));
50
+ });
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Radio = require("./Radio");
7
+ Object.keys(_Radio).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Radio[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Radio[key];
14
+ }
15
+ });
16
+ });
17
+ var _RadioInput = require("./RadioInput");
18
+ Object.keys(_RadioInput).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _RadioInput[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _RadioInput[key];
25
+ }
26
+ });
27
+ });
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Select = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _uiAdminIcon = _interopRequireDefault(require("@ncds/ui-admin-icon"));
9
+ var _classnames = _interopRequireDefault(require("classnames"));
10
+ var _react = require("react");
11
+ var _HintText = require("../shared/hintText/HintText");
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
+ var __assign = void 0 && (void 0).__assign || function () {
14
+ __assign = Object.assign || function (t) {
15
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
16
+ s = arguments[i];
17
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
18
+ }
19
+ return t;
20
+ };
21
+ return __assign.apply(this, arguments);
22
+ };
23
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
24
+ var t = {};
25
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
26
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
27
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
28
+ }
29
+ return t;
30
+ };
31
+ /**
32
+ * 현재 icon 속성은 현재 디자인 시스템에 존재하지 않으니 사용하지 않는 것을 권장합니다.
33
+ */
34
+ var Select = exports.Select = /*#__PURE__*/(0, _react.forwardRef)(function (_a, ref) {
35
+ var icon = _a.icon,
36
+ placeholder = _a.placeholder,
37
+ _b = _a.disabledPlaceholder,
38
+ disabledPlaceholder = _b === void 0 ? false : _b,
39
+ id = _a.id,
40
+ className = _a.className,
41
+ hintText = _a.hintText,
42
+ children = _a.children,
43
+ _c = _a.size,
44
+ size = _c === void 0 ? 'md' : _c,
45
+ _d = _a.type,
46
+ type = _d === void 0 ? 'default' : _d,
47
+ _e = _a.destructive,
48
+ destructive = _e === void 0 ? false : _e,
49
+ value = _a.value,
50
+ optionItems = _a.optionItems,
51
+ register = _a.register,
52
+ props = __rest(_a, ["icon", "placeholder", "disabledPlaceholder", "id", "className", "hintText", "children", "size", "type", "destructive", "value", "optionItems", "register"]);
53
+ return (0, _jsxRuntime.jsxs)("div", __assign({
54
+ className: (0, _classnames.default)('ncua-select', {
55
+ destructive: destructive,
56
+ 'ncua-select--simple': type === 'simple'
57
+ }, className)
58
+ }, {
59
+ children: [(0, _jsxRuntime.jsxs)("div", __assign({
60
+ className: (0, _classnames.default)('ncua-select__content', "ncua-select--".concat(size))
61
+ }, {
62
+ children: [icon ? (0, _jsxRuntime.jsx)("span", __assign({
63
+ className: "ncua-select__icon"
64
+ }, {
65
+ children: (0, _jsxRuntime.jsx)(_uiAdminIcon.default, {
66
+ name: icon.icon,
67
+ width: icon.size,
68
+ height: icon.size,
69
+ color: icon.color
70
+ })
71
+ })) : (0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {}), (0, _jsxRuntime.jsxs)("select", __assign({
72
+ value: value,
73
+ ref: ref,
74
+ id: id,
75
+ className: (0, _classnames.default)('ncua-select__tag', className)
76
+ }, register, props, {
77
+ children: [placeholder && (0, _jsxRuntime.jsx)("option", __assign({
78
+ value: "",
79
+ selected: true,
80
+ disabled: disabledPlaceholder
81
+ }, {
82
+ children: placeholder
83
+ })), optionItems && optionItems.map(function (item, index) {
84
+ return (0, _jsxRuntime.jsx)("option", __assign({
85
+ value: item.id
86
+ }, {
87
+ children: item.label
88
+ }), "option-".concat(index));
89
+ }), children]
90
+ }))]
91
+ })), hintText && (0, _jsxRuntime.jsx)(_HintText.HintText, __assign({
92
+ destructive: destructive,
93
+ className: "ncua-hint-text"
94
+ }, {
95
+ children: hintText
96
+ }))]
97
+ }));
98
+ });
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Select = require("./Select");
7
+ Object.keys(_Select).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Select[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Select[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.HintText = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
+ var __assign = void 0 && (void 0).__assign || function () {
11
+ __assign = Object.assign || function (t) {
12
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
13
+ s = arguments[i];
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
15
+ }
16
+ return t;
17
+ };
18
+ return __assign.apply(this, arguments);
19
+ };
20
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
21
+ var t = {};
22
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
23
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
24
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
25
+ }
26
+ return t;
27
+ };
28
+ var HintText = function (_a) {
29
+ var _b = _a.as,
30
+ Component = _b === void 0 ? 'p' : _b,
31
+ children = _a.children,
32
+ className = _a.className,
33
+ destructive = _a.destructive,
34
+ props = __rest(_a, ["as", "children", "className", "destructive"]);
35
+ return (0, _jsxRuntime.jsx)(Component, __assign({
36
+ className: (0, _classnames.default)('ncua-hint-text', {
37
+ destructive: destructive
38
+ }, className)
39
+ }, props, {
40
+ children: children
41
+ }));
42
+ };
43
+ exports.HintText = HintText;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _HintText = require("./HintText");
7
+ Object.keys(_HintText).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _HintText[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _HintText[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _hintText = require("./hintText");
7
+ Object.keys(_hintText).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _hintText[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _hintText[key];
14
+ }
15
+ });
16
+ });
17
+ var _label = require("./label");
18
+ Object.keys(_label).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _label[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _label[key];
25
+ }
26
+ });
27
+ });
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Label = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
+ var __assign = void 0 && (void 0).__assign || function () {
11
+ __assign = Object.assign || function (t) {
12
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
13
+ s = arguments[i];
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
15
+ }
16
+ return t;
17
+ };
18
+ return __assign.apply(this, arguments);
19
+ };
20
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
21
+ var t = {};
22
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
23
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
24
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
25
+ }
26
+ return t;
27
+ };
28
+ var Label = function (_a) {
29
+ var _b = _a.as,
30
+ Component = _b === void 0 ? 'label' : _b,
31
+ children = _a.children,
32
+ className = _a.className,
33
+ isRequired = _a.isRequired,
34
+ props = __rest(_a, ["as", "children", "className", "isRequired"]);
35
+ return (0, _jsxRuntime.jsx)(Component, __assign({
36
+ className: (0, _classnames.default)('ncua-label', {
37
+ 'is-required': isRequired
38
+ }, className)
39
+ }, props, {
40
+ children: children
41
+ }));
42
+ };
43
+ exports.Label = Label;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Label = require("./Label");
7
+ Object.keys(_Label).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Label[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Label[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Slider = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _react = require("react");
9
+ var _slider = require("../../../assets/scripts/slider");
10
+ var Slider = function (_a) {
11
+ var _b = _a.min,
12
+ min = _b === void 0 ? 0 : _b,
13
+ _c = _a.max,
14
+ max = _c === void 0 ? 100 : _c,
15
+ _d = _a.step,
16
+ step = _d === void 0 ? 1 : _d,
17
+ _e = _a.value,
18
+ value = _e === void 0 ? 0 : _e,
19
+ onChange = _a.onChange,
20
+ labelPosition = _a.labelPosition,
21
+ _f = _a.disabled,
22
+ disabled = _f === void 0 ? false : _f,
23
+ className = _a.className;
24
+ var containerRef = (0, _react.useRef)(null);
25
+ var sliderInstanceRef = (0, _react.useRef)(null);
26
+ (0, _react.useEffect)(function () {
27
+ if (!containerRef.current) return;
28
+ sliderInstanceRef.current = new _slider.Slider(containerRef.current, {
29
+ min: min,
30
+ max: max,
31
+ step: step,
32
+ value: value,
33
+ onChange: onChange,
34
+ labelPosition: labelPosition,
35
+ disabled: disabled
36
+ });
37
+ return function () {
38
+ if (sliderInstanceRef.current) {
39
+ sliderInstanceRef.current.destroy();
40
+ sliderInstanceRef.current = null;
41
+ }
42
+ };
43
+ }, [typeof value, onChange, min, max, step, labelPosition]);
44
+ (0, _react.useEffect)(function () {
45
+ if (sliderInstanceRef.current) {
46
+ sliderInstanceRef.current.setValue(value);
47
+ }
48
+ }, [sliderInstanceRef, value]);
49
+ (0, _react.useEffect)(function () {
50
+ if (sliderInstanceRef.current) {
51
+ if (disabled) {
52
+ sliderInstanceRef.current.disable();
53
+ } else {
54
+ sliderInstanceRef.current.enable();
55
+ }
56
+ }
57
+ }, [disabled]);
58
+ return (0, _jsxRuntime.jsx)("div", {
59
+ ref: containerRef,
60
+ className: "ncua-slider ".concat(className || '')
61
+ });
62
+ };
63
+ exports.Slider = Slider;
64
+ var _default = exports.default = Slider;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Slider = require("./Slider");
7
+ Object.keys(_Slider).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Slider[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Slider[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Spinner = void 0;
7
+ var _jsxRuntime = require("react/jsx-runtime");
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
+ var __assign = void 0 && (void 0).__assign || function () {
11
+ __assign = Object.assign || function (t) {
12
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
13
+ s = arguments[i];
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
15
+ }
16
+ return t;
17
+ };
18
+ return __assign.apply(this, arguments);
19
+ };
20
+ var RenderText = function (_a) {
21
+ var _b = _a.as,
22
+ Component = _b === void 0 ? 'p' : _b,
23
+ children = _a.children;
24
+ return (0, _jsxRuntime.jsx)(Component, __assign({
25
+ className: "ncua-spinner__text"
26
+ }, {
27
+ children: children
28
+ }));
29
+ };
30
+ var Spinner = function (_a) {
31
+ var _b = _a.as,
32
+ as = _b === void 0 ? 'p' : _b,
33
+ _c = _a.size,
34
+ size = _c === void 0 ? 'md' : _c,
35
+ children = _a.children,
36
+ _d = _a.backdrop,
37
+ backdrop = _d === void 0 ? false : _d;
38
+ return (0, _jsxRuntime.jsx)("div", __assign({
39
+ className: (0, _classnames.default)('ncua-spinner', "ncua-spinner--".concat(size), {
40
+ 'ncua-spinner--backdrop': backdrop
41
+ })
42
+ }, {
43
+ children: (0, _jsxRuntime.jsx)("div", __assign({
44
+ className: "ncua-spinner__content"
45
+ }, {
46
+ children: children && (0, _jsxRuntime.jsx)(RenderText, {
47
+ as: as,
48
+ children: children
49
+ })
50
+ }))
51
+ }));
52
+ };
53
+ exports.Spinner = Spinner;