prometeo-design-system 2.8.4 → 2.8.7

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 (339) hide show
  1. package/dist/Avatar.js +4 -0
  2. package/dist/Button.js +4 -0
  3. package/dist/CardProfile.d.ts +4 -0
  4. package/dist/CardProfile.js +5 -0
  5. package/dist/CheckBox.js +4 -0
  6. package/dist/DatePicker.d.ts +2 -0
  7. package/dist/DatePicker.js +5 -0
  8. package/dist/DialogModal.js +6 -0
  9. package/dist/DrawerDesktop.js +6 -0
  10. package/dist/DrawerMobile.js +6 -0
  11. package/dist/DropZone.d.ts +4 -0
  12. package/dist/DropZone.js +5 -0
  13. package/dist/FAButton.js +4 -0
  14. package/dist/Header.js +4 -0
  15. package/dist/Icons/Icons.d.ts +1 -1
  16. package/dist/Icons/Icons.js +1055 -0
  17. package/dist/Icons.d.ts +4 -0
  18. package/dist/Icons.js +5 -0
  19. package/dist/Image.js +4 -0
  20. package/dist/ImageGallery.js +6 -0
  21. package/dist/Input.js +4 -0
  22. package/dist/InputMultiple.d.ts +4 -0
  23. package/dist/InputMultiple.js +5 -0
  24. package/dist/LayoutGeneric.js +4 -0
  25. package/dist/Logo.js +4 -0
  26. package/dist/Menu.d.ts +4 -0
  27. package/dist/Menu.js +5 -0
  28. package/dist/OtpInput.js +4 -0
  29. package/dist/Pagination.js +4 -0
  30. package/dist/ProfilePictureUpload.d.ts +4 -0
  31. package/dist/ProfilePictureUpload.js +5 -0
  32. package/dist/ProgressBar.js +4 -0
  33. package/dist/RadioButton.d.ts +4 -0
  34. package/dist/RadioButton.js +5 -0
  35. package/dist/SegmentedButton.d.ts +4 -0
  36. package/dist/SegmentedButton.js +5 -0
  37. package/dist/Select.js +4 -0
  38. package/dist/SelectSearch.js +4 -0
  39. package/dist/Skeleton.d.ts +4 -0
  40. package/dist/Skeleton.js +5 -0
  41. package/dist/Spinner.js +4 -0
  42. package/dist/Steps.d.ts +4 -0
  43. package/dist/Steps.js +5 -0
  44. package/dist/SwipeContainer.js +4 -0
  45. package/dist/Switch.d.ts +4 -0
  46. package/dist/Switch.js +5 -0
  47. package/dist/TabLinks.js +4 -0
  48. package/dist/Table.js +11 -0
  49. package/dist/TextArea.js +4 -0
  50. package/dist/Toast.js +5 -0
  51. package/dist/ToastProvider.js +4 -0
  52. package/dist/Tooltip.js +4 -0
  53. package/dist/components/Autocomplete/useAutocomplete.js +143 -0
  54. package/dist/{Avatar.es.js → components/Avatar/Avatar.js} +28 -33
  55. package/dist/{Button.es.js → components/Button/Button.js} +55 -55
  56. package/dist/{CardProfile-BB-IP1MR.js → components/CardProfile/CardProfile.js} +68 -94
  57. package/dist/{CheckBox.es.js → components/CheckBox/CheckBox.js} +25 -25
  58. package/dist/components/DatePicker/DatePicker.js +396 -0
  59. package/dist/components/Dialog/Dialog.js +60 -0
  60. package/dist/components/Dialog/useDialogControl.js +18 -0
  61. package/dist/components/Drawer/DrawerDesktop.js +179 -0
  62. package/dist/components/Drawer/DrawerMobile.js +219 -0
  63. package/dist/components/Drawer/useDrawerDesktop.js +18 -0
  64. package/dist/components/Drawer/useDrawerMobile.js +27 -0
  65. package/dist/components/DropZone/DropZone.js +86 -0
  66. package/dist/components/DropZone/useFileDropzone.js +24 -0
  67. package/dist/{FAButton.es.js → components/FAB/FAButton.js} +5 -5
  68. package/dist/components/Header/Header.js +32 -0
  69. package/dist/components/Image/GalleryPreview.js +40 -0
  70. package/dist/{Image.es.js → components/Image/Image.js} +32 -32
  71. package/dist/components/Image/ImageGallery.js +68 -0
  72. package/dist/components/Image/LightBox.js +223 -0
  73. package/dist/{ImageGallery.es.js → components/Image/useImageGallery.js} +0 -2
  74. package/dist/components/Input/Input.js +219 -0
  75. package/dist/{InputMultiple.es.js → components/InputMultiple/InputMultiple.js} +91 -91
  76. package/dist/components/Layout/LayoutGeneric.js +13 -0
  77. package/dist/components/Logo/Logo.js +9 -0
  78. package/dist/{Menu.es.js → components/Menu/MenuComposable.js} +11 -11
  79. package/dist/components/OtpInput/OtpInput.js +112 -0
  80. package/dist/{Pagination.es.js → components/Pagination/Pagination.js} +32 -32
  81. package/dist/components/ProfilePictureUpload/ProfilePictureUpload.d.ts +1 -1
  82. package/dist/{ProfilePictureUpload.es.js → components/ProfilePictureUpload/ProfilePictureUpload.js} +73 -98
  83. package/dist/components/ProgressBar/ProgressBar.js +70 -0
  84. package/dist/{RadioButton.es.js → components/RadioButton/RadioButton.js} +35 -35
  85. package/dist/{SegmentedButton.es.js → components/SegmentedButton/SegmentedButton.js} +37 -37
  86. package/dist/components/Select/Select.js +1005 -0
  87. package/dist/components/SelectSearch/SelectSearch.js +101 -0
  88. package/dist/components/Shared/Chip.js +55 -0
  89. package/dist/components/Shared/HelperComponent.js +24 -0
  90. package/dist/components/Sidebar/SecondaryBar/SecondaryBar.js +62 -0
  91. package/dist/components/Sidebar/SecondaryBar/hooks/useSecondaryBarAnimation.js +59 -0
  92. package/dist/components/Sidebar/SidebarComposable.js +84 -0
  93. package/dist/components/Sidebar/components/NavigationLink.js +34 -0
  94. package/dist/components/Sidebar/components/badge.js +33 -0
  95. package/dist/components/Sidebar/components/changue-account.js +31 -0
  96. package/dist/components/Sidebar/components/collapse-button.js +18 -0
  97. package/dist/components/Sidebar/components/company-logo.js +12 -0
  98. package/dist/components/Sidebar/components/nav-actions.js +98 -0
  99. package/dist/components/Sidebar/components/nav-links.js +100 -0
  100. package/dist/components/Sidebar/context/SidebarContext.js +19 -0
  101. package/dist/components/Sidebar/hooks/SidebarProvider.js +33 -0
  102. package/dist/components/Sidebar/hooks/useNavBarActions.js +9 -0
  103. package/dist/components/Sidebar/hooks/useNavBarCollapse.js +11 -0
  104. package/dist/components/Sidebar/hooks/useSidebarHook.js +13 -0
  105. package/dist/components/Sidebar/ui/useNavbarAnimation.js +326 -0
  106. package/dist/{Skeleton.es.js → components/Skeleton/Skeleton.js} +16 -17
  107. package/dist/components/Spinner/Spinner.js +52 -0
  108. package/dist/{Steps.es.js → components/Steps/Steps.js} +61 -61
  109. package/dist/{SwipeContainer.es.js → components/SwipeContainer/SwipeContainer.js} +68 -68
  110. package/dist/{Switch.es.js → components/Switch/Switch.js} +17 -17
  111. package/dist/{TabLinks.es.js → components/TabLinks/TabLinks.js} +11 -11
  112. package/dist/components/TabSwitch/TabSwitch.js +57 -0
  113. package/dist/{Table.es.js → components/Table/Table.js} +38 -41
  114. package/dist/{TextArea.es.js → components/TextArea/TextArea.js} +24 -26
  115. package/dist/components/Toaster/ToastProvider.js +6 -0
  116. package/dist/{Toast.es.js → components/Toaster/Toaster.js} +42 -42
  117. package/dist/components/Tooltip/Tootip.js +62 -0
  118. package/dist/exports/CardProfile.d.ts +1 -0
  119. package/dist/exports/DatePicker.d.ts +2 -0
  120. package/dist/exports/DropZone.d.ts +2 -0
  121. package/dist/exports/Icons.d.ts +2 -1
  122. package/dist/exports/InputMultiple.d.ts +2 -0
  123. package/dist/exports/Menu.d.ts +1 -0
  124. package/dist/exports/ProfilePictureUpload.d.ts +1 -0
  125. package/dist/exports/RadioButton.d.ts +2 -0
  126. package/dist/exports/SegmentedButton.d.ts +2 -0
  127. package/dist/exports/Skeleton.d.ts +2 -0
  128. package/dist/exports/Steps.d.ts +1 -0
  129. package/dist/exports/Switch.d.ts +2 -0
  130. package/dist/hooks/useClickOutside.js +24 -0
  131. package/dist/{useDragScroll-CHN9OMwn.js → hooks/useDragScroll.js} +1 -1
  132. package/dist/hooks/useLabelBackground.js +25 -0
  133. package/dist/index.d.ts +0 -4
  134. package/dist/index.js +119 -0
  135. package/dist/{cn-B6yFEsav.js → lib/cn.js} +2 -2
  136. package/dist/lib/utils.js +54 -0
  137. package/dist/node_modules/@date-fns/tz/date/index.js +61 -0
  138. package/dist/node_modules/@date-fns/tz/date/mini.js +69 -0
  139. package/dist/node_modules/@date-fns/tz/tzName/index.js +11 -0
  140. package/dist/node_modules/@date-fns/tz/tzOffset/index.js +22 -0
  141. package/dist/{index-BOQuZ0gG.js → node_modules/class-variance-authority/dist/index.js} +10 -9
  142. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +7 -0
  143. package/dist/node_modules/date-fns/_lib/defaultOptions.js +7 -0
  144. package/dist/node_modules/date-fns/_lib/format/formatters.js +583 -0
  145. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
  146. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +52 -0
  147. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
  148. package/dist/node_modules/date-fns/_lib/normalizeDates.js +11 -0
  149. package/dist/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
  150. package/dist/node_modules/date-fns/_lib/protectedTokens.js +20 -0
  151. package/dist/node_modules/date-fns/addDays.js +10 -0
  152. package/dist/node_modules/date-fns/addMonths.js +20 -0
  153. package/dist/node_modules/date-fns/addWeeks.js +8 -0
  154. package/dist/node_modules/date-fns/addYears.js +8 -0
  155. package/dist/node_modules/date-fns/constants.js +6 -0
  156. package/dist/node_modules/date-fns/constructFrom.js +8 -0
  157. package/dist/node_modules/date-fns/differenceInCalendarDays.js +16 -0
  158. package/dist/node_modules/date-fns/differenceInCalendarMonths.js +13 -0
  159. package/dist/node_modules/date-fns/eachMonthOfInterval.js +17 -0
  160. package/dist/node_modules/date-fns/eachYearOfInterval.js +17 -0
  161. package/dist/node_modules/date-fns/endOfISOWeek.js +8 -0
  162. package/dist/node_modules/date-fns/endOfMonth.js +9 -0
  163. package/dist/node_modules/date-fns/endOfWeek.js +10 -0
  164. package/dist/node_modules/date-fns/endOfYear.js +9 -0
  165. package/dist/node_modules/date-fns/format.js +58 -0
  166. package/dist/node_modules/date-fns/getDayOfYear.js +11 -0
  167. package/dist/node_modules/date-fns/getDaysInMonth.js +10 -0
  168. package/dist/node_modules/date-fns/getISOWeek.js +12 -0
  169. package/dist/node_modules/date-fns/getISOWeekYear.js +15 -0
  170. package/dist/node_modules/date-fns/getMonth.js +8 -0
  171. package/dist/node_modules/date-fns/getWeek.js +12 -0
  172. package/dist/node_modules/date-fns/getWeekYear.js +16 -0
  173. package/dist/node_modules/date-fns/getYear.js +8 -0
  174. package/dist/node_modules/date-fns/isAfter.js +8 -0
  175. package/dist/node_modules/date-fns/isBefore.js +8 -0
  176. package/dist/node_modules/date-fns/isDate.js +7 -0
  177. package/dist/node_modules/date-fns/isSameDay.js +14 -0
  178. package/dist/node_modules/date-fns/isSameMonth.js +13 -0
  179. package/dist/node_modules/date-fns/isSameYear.js +13 -0
  180. package/dist/node_modules/date-fns/isValid.js +9 -0
  181. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +9 -0
  182. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +18 -0
  183. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +31 -0
  184. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +15 -0
  185. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +70 -0
  186. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
  187. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -0
  188. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
  189. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
  190. package/dist/node_modules/date-fns/locale/en-US.js +21 -0
  191. package/dist/node_modules/date-fns/locale/es/_lib/formatDistance.js +70 -0
  192. package/dist/node_modules/date-fns/locale/es/_lib/formatLong.js +33 -0
  193. package/dist/node_modules/date-fns/locale/es/_lib/formatRelative.js +18 -0
  194. package/dist/node_modules/date-fns/locale/es/_lib/localize.js +143 -0
  195. package/dist/node_modules/date-fns/locale/es/_lib/match.js +116 -0
  196. package/dist/node_modules/date-fns/locale/es.js +21 -0
  197. package/dist/node_modules/date-fns/max.js +14 -0
  198. package/dist/node_modules/date-fns/min.js +14 -0
  199. package/dist/node_modules/date-fns/setMonth.js +13 -0
  200. package/dist/node_modules/date-fns/setYear.js +10 -0
  201. package/dist/node_modules/date-fns/startOfDay.js +9 -0
  202. package/dist/node_modules/date-fns/startOfISOWeek.js +8 -0
  203. package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -0
  204. package/dist/node_modules/date-fns/startOfMonth.js +9 -0
  205. package/dist/node_modules/date-fns/startOfWeek.js +10 -0
  206. package/dist/node_modules/date-fns/startOfWeekYear.js +12 -0
  207. package/dist/node_modules/date-fns/startOfYear.js +9 -0
  208. package/dist/node_modules/date-fns/toDate.js +8 -0
  209. package/dist/node_modules/input-otp/dist/index.js +194 -0
  210. package/dist/node_modules/react-day-picker/dist/esm/DayPicker.js +227 -0
  211. package/dist/node_modules/react-day-picker/dist/esm/UI.js +22 -0
  212. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +19 -0
  213. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js +8 -0
  214. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js +8 -0
  215. package/dist/node_modules/react-day-picker/dist/esm/classes/DateLib.js +147 -0
  216. package/dist/node_modules/react-day-picker/dist/esm/components/Button.js +7 -0
  217. package/dist/node_modules/react-day-picker/dist/esm/components/CaptionLabel.js +7 -0
  218. package/dist/node_modules/react-day-picker/dist/esm/components/Chevron.js +18 -0
  219. package/dist/node_modules/react-day-picker/dist/esm/components/Day.js +8 -0
  220. package/dist/node_modules/react-day-picker/dist/esm/components/DayButton.js +10 -0
  221. package/dist/node_modules/react-day-picker/dist/esm/components/Dropdown.js +19 -0
  222. package/dist/node_modules/react-day-picker/dist/esm/components/DropdownNav.js +7 -0
  223. package/dist/node_modules/react-day-picker/dist/esm/components/Footer.js +7 -0
  224. package/dist/node_modules/react-day-picker/dist/esm/components/Month.js +8 -0
  225. package/dist/node_modules/react-day-picker/dist/esm/components/MonthCaption.js +8 -0
  226. package/dist/node_modules/react-day-picker/dist/esm/components/MonthGrid.js +7 -0
  227. package/dist/node_modules/react-day-picker/dist/esm/components/Months.js +7 -0
  228. package/dist/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +9 -0
  229. package/dist/node_modules/react-day-picker/dist/esm/components/Nav.js +27 -0
  230. package/dist/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +9 -0
  231. package/dist/node_modules/react-day-picker/dist/esm/components/Option.js +7 -0
  232. package/dist/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +9 -0
  233. package/dist/node_modules/react-day-picker/dist/esm/components/Root.js +8 -0
  234. package/dist/node_modules/react-day-picker/dist/esm/components/Select.js +7 -0
  235. package/dist/node_modules/react-day-picker/dist/esm/components/Week.js +8 -0
  236. package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumber.js +8 -0
  237. package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js +7 -0
  238. package/dist/node_modules/react-day-picker/dist/esm/components/Weekday.js +7 -0
  239. package/dist/node_modules/react-day-picker/dist/esm/components/Weekdays.js +11 -0
  240. package/dist/node_modules/react-day-picker/dist/esm/components/Weeks.js +7 -0
  241. package/dist/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +9 -0
  242. package/dist/node_modules/react-day-picker/dist/esm/components/custom-components.js +54 -0
  243. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +9 -0
  244. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -0
  245. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +7 -0
  246. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js +7 -0
  247. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js +6 -0
  248. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -0
  249. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +9 -0
  250. package/dist/node_modules/react-day-picker/dist/esm/formatters/index.js +18 -0
  251. package/dist/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +19 -0
  252. package/dist/node_modules/react-day-picker/dist/esm/helpers/createGetModifiers.js +42 -0
  253. package/dist/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +9 -0
  254. package/dist/node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js +7 -0
  255. package/dist/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +7 -0
  256. package/dist/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +10 -0
  257. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js +16 -0
  258. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDates.js +21 -0
  259. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDays.js +10 -0
  260. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +16 -0
  261. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js +13 -0
  262. package/dist/node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js +15 -0
  263. package/dist/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +10 -0
  264. package/dist/node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js +13 -0
  265. package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js +13 -0
  266. package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +24 -0
  267. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js +13 -0
  268. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +12 -0
  269. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js +12 -0
  270. package/dist/node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js +12 -0
  271. package/dist/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +13 -0
  272. package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js +11 -0
  273. package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeeks.js +7 -0
  274. package/dist/node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js +16 -0
  275. package/dist/node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js +7 -0
  276. package/dist/node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js +8 -0
  277. package/dist/node_modules/react-day-picker/dist/esm/labels/index.js +26 -0
  278. package/dist/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +10 -0
  279. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +9 -0
  280. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +8 -0
  281. package/dist/node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js +6 -0
  282. package/dist/node_modules/react-day-picker/dist/esm/labels/labelNav.js +6 -0
  283. package/dist/node_modules/react-day-picker/dist/esm/labels/labelNext.js +6 -0
  284. package/dist/node_modules/react-day-picker/dist/esm/labels/labelPrevious.js +6 -0
  285. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js +6 -0
  286. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js +6 -0
  287. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +7 -0
  288. package/dist/node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js +6 -0
  289. package/dist/node_modules/react-day-picker/dist/esm/selection/useMulti.js +21 -0
  290. package/dist/node_modules/react-day-picker/dist/esm/selection/useRange.js +18 -0
  291. package/dist/node_modules/react-day-picker/dist/esm/selection/useSingle.js +15 -0
  292. package/dist/node_modules/react-day-picker/dist/esm/useAnimation.js +56 -0
  293. package/dist/node_modules/react-day-picker/dist/esm/useCalendar.js +44 -0
  294. package/dist/node_modules/react-day-picker/dist/esm/useDayPicker.js +12 -0
  295. package/dist/node_modules/react-day-picker/dist/esm/useFocus.js +23 -0
  296. package/dist/node_modules/react-day-picker/dist/esm/useSelection.js +19 -0
  297. package/dist/node_modules/react-day-picker/dist/esm/utils/addToRange.js +32 -0
  298. package/dist/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +26 -0
  299. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +15 -0
  300. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +28 -0
  301. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +9 -0
  302. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +8 -0
  303. package/dist/node_modules/react-day-picker/dist/esm/utils/typeguards.js +26 -0
  304. package/dist/prometeo-design-system.css +1 -1
  305. package/dist/styles.d.ts +0 -0
  306. package/dist/useDevice.js +4 -0
  307. package/package.json +282 -274
  308. package/src/styles/app.css +1314 -0
  309. package/src/styles/base.css +1323 -0
  310. package/src/styles/fonts.css +46 -0
  311. package/src/styles/palette.css +83 -0
  312. package/src/styles/utilities.css +1126 -0
  313. package/dist/CardProfile.es.js +0 -4
  314. package/dist/DatePicker.es.js +0 -3500
  315. package/dist/DialogModal.es.js +0 -75
  316. package/dist/DrawerDesktop.es.js +0 -192
  317. package/dist/DrawerMobile.es.js +0 -242
  318. package/dist/DropZone.es.js +0 -86
  319. package/dist/Header.es.js +0 -32
  320. package/dist/HelperComponent-D_Cqdf1J.js +0 -24
  321. package/dist/Icons.es.js +0 -1055
  322. package/dist/ImageGallery-CjaJ0UCN.js +0 -317
  323. package/dist/Input-Bdo-Acix.js +0 -240
  324. package/dist/Input.es.js +0 -4
  325. package/dist/LayoutGeneric-B6E-yOYJ.js +0 -26
  326. package/dist/LayoutGeneric.es.js +0 -4
  327. package/dist/Logo.es.js +0 -9
  328. package/dist/OtpInput.es.js +0 -301
  329. package/dist/ProgressBar.es.js +0 -70
  330. package/dist/Select-D2APaG1z.js +0 -1100
  331. package/dist/Select.es.js +0 -4
  332. package/dist/SelectSearch.es.js +0 -237
  333. package/dist/Spinner.es.js +0 -52
  334. package/dist/ToastProvider.es.js +0 -6
  335. package/dist/Tooltip.es.js +0 -62
  336. package/dist/components/Button/Button_Legacy.d.ts +0 -29
  337. package/dist/jsx-runtime-ByW6EXIE.js +0 -283
  338. package/dist/prometeo-design-system.es.js +0 -1008
  339. /package/dist/{useDevice.es.js → hooks/useDevice.js} +0 -0
@@ -0,0 +1,1314 @@
1
+ @import "./fonts.css";
2
+ @import "tailwindcss";
3
+ @import "./palette.css";
4
+ @import "./utilities.css";
5
+
6
+ * {
7
+ font-family: "Montserrat", sans-serif;
8
+ }
9
+
10
+ body {
11
+ font-family: "Montserrat", sans-serif;
12
+ }
13
+
14
+ /* Prometeo Fonts */
15
+
16
+ @utility prometeo-fonts-display-large {
17
+ font-family: "Montserrat", sans-serif;
18
+ font-weight: 600;
19
+ font-size: 56px;
20
+ line-height: 64px;
21
+ color: var(--black);
22
+ }
23
+
24
+ @utility prometeo-fonts-display-medium {
25
+ font-family: "Montserrat", sans-serif;
26
+ font-weight: 600;
27
+ font-size: 48px;
28
+ line-height: 56px;
29
+ color: var(--black);
30
+ }
31
+
32
+ @utility prometeo-fonts-display-small {
33
+ font-family: "Montserrat", sans-serif;
34
+ font-weight: 600;
35
+ font-size: 36px;
36
+ line-height: 44px;
37
+ color: var(--black);
38
+ }
39
+
40
+ @utility prometeo-fonts-headline-large {
41
+ font-family: "Montserrat", sans-serif;
42
+ font-weight: 700;
43
+ font-size: 32px;
44
+ line-height: 40px;
45
+ color: var(--neutral-100);
46
+ }
47
+
48
+ @utility prometeo-fonts-headline-medium {
49
+ font-family: "Montserrat", sans-serif;
50
+ font-weight: 600;
51
+ font-size: 28px;
52
+ line-height: 32px;
53
+ color: var(--neutral-100);
54
+ }
55
+
56
+ @utility prometeo-fonts-headline-small {
57
+ font-family: "Montserrat", sans-serif;
58
+ font-weight: 600;
59
+ font-size: 24px;
60
+ line-height: 30px;
61
+ color: var(--neutral-100);
62
+ }
63
+
64
+ @utility prometeo-fonts-title-large {
65
+ font-family: "Montserrat", sans-serif;
66
+ font-weight: 700;
67
+ font-size: 24px;
68
+ line-height: 30px;
69
+ color: var(--neutral-100);
70
+ }
71
+
72
+ @utility prometeo-fonts-title-medium {
73
+ font-family: "Montserrat", sans-serif;
74
+ font-weight: 700;
75
+ font-size: 16px;
76
+ line-height: 20px;
77
+ color: var(--neutral-100);
78
+ }
79
+
80
+ @utility prometeo-fonts-title-small {
81
+ font-family: "Montserrat", sans-serif;
82
+ font-weight: 700;
83
+ font-size: 14px;
84
+ line-height: 18px;
85
+ color: var(--neutral-100);
86
+ }
87
+
88
+ @utility prometeo-fonts-body-xlarge {
89
+ font-family: "Montserrat", sans-serif;
90
+ font-weight: 400;
91
+ font-size: 24px;
92
+ line-height: 30px;
93
+ color: var(--neutral-100);
94
+ }
95
+
96
+ @utility prometeo-fonts-body-large {
97
+ font-family: "Montserrat", sans-serif;
98
+ font-weight: 400;
99
+ font-size: 16px;
100
+ line-height: 24px;
101
+ color: var(--neutral-100);
102
+ }
103
+
104
+ @utility prometeo-fonts-body-medium {
105
+ font-family: "Montserrat", sans-serif;
106
+ font-weight: 400;
107
+ font-size: 14px;
108
+ line-height: 18px;
109
+ color: var(--neutral-100);
110
+ }
111
+
112
+ @utility prometeo-fonts-body-small {
113
+ font-family: "Montserrat", sans-serif;
114
+ font-weight: 400;
115
+ font-size: 12px;
116
+ line-height: 14px;
117
+ color: var(--neutral-100);
118
+ }
119
+
120
+ @utility prometeo-fonts-body-xsmall {
121
+ font-family: "Montserrat", sans-serif;
122
+ font-weight: 400;
123
+ font-size: 10px;
124
+ line-height: 12px;
125
+ color: var(--neutral-100);
126
+ }
127
+
128
+ @utility prometeo-fonts-label-xlarge {
129
+ font-family: "Montserrat", sans-serif;
130
+ font-weight: 600;
131
+ font-size: 16px;
132
+ line-height: 20px;
133
+ color: var(--neutral-100);
134
+ }
135
+
136
+ @utility prometeo-fonts-label-large {
137
+ font-family: "Montserrat", sans-serif;
138
+ font-weight: 600;
139
+ font-size: 14px;
140
+ line-height: 18px;
141
+ color: var(--neutral-100);
142
+ }
143
+
144
+ @utility prometeo-fonts-label-medium {
145
+ font-family: "Montserrat", sans-serif;
146
+ font-weight: 600;
147
+ font-size: 12px;
148
+ line-height: 18px;
149
+ color: var(--neutral-100);
150
+ }
151
+ @utility prometeo-fonts-label-small {
152
+ font-family: "Montserrat", sans-serif;
153
+ font-weight: 600;
154
+ font-size: 12px;
155
+ line-height: 14px;
156
+ color: var(--neutral-100);
157
+ }
158
+
159
+ @utility prometeo-fonts-label-xsmall {
160
+ font-family: "Montserrat", sans-serif;
161
+ font-weight: 600;
162
+ font-size: 10px;
163
+ line-height: 12px;
164
+ color: var(--neutral-100);
165
+ }
166
+
167
+ /* <!-- COLORS --> */
168
+
169
+ /* GRADIENTS */
170
+
171
+ @utility prometeo-gradient-bg {
172
+ background: linear-gradient(
173
+ to bottom,
174
+ var(--primary-900),
175
+ var(--primary-950)
176
+ );
177
+ }
178
+
179
+ @utility prometeo-gradient-border {
180
+ border-image: linear-gradient(
181
+ to bottom,
182
+ var(--primary-950) 0%,
183
+ var(--primary-900) 100%
184
+ );
185
+ }
186
+
187
+ /* FOUNDATION --> */
188
+
189
+ @utility text-white-prometeo {
190
+ color: var(--white);
191
+ }
192
+
193
+ @utility text-black-prometeo {
194
+ color: var(--black);
195
+ }
196
+
197
+ /* PRIMARY --> */
198
+
199
+ @utility text-primary {
200
+ color: var(--primary-500);
201
+ }
202
+
203
+ /* PRIMARY DEFAULT */
204
+ @utility text-primary-default {
205
+ color: var(--primary-400);
206
+ }
207
+
208
+ @utility text-primary-default-default {
209
+ color: var(--primary-400);
210
+ }
211
+
212
+ @utility text-primary-default-hover {
213
+ color: var(--primary-500);
214
+ }
215
+
216
+ @utility text-primary-default-pressed {
217
+ color: var(--primary-600);
218
+ }
219
+
220
+ @utility text-primary-default-focused {
221
+ color: var(--primary-600);
222
+ }
223
+
224
+ @utility text-primary-default-disabled {
225
+ color: var(--neutral-800);
226
+ }
227
+
228
+ @utility text-primary-light {
229
+ color: var(--primary-400);
230
+ }
231
+
232
+ @utility text-primary-dark {
233
+ color: var(--primary-600);
234
+ }
235
+
236
+ /* PRIMARY MEDIUM */
237
+
238
+ @utility text-primary-medium-default {
239
+ color: var(--primary-400);
240
+ }
241
+
242
+ @utility text-primary-medium-hover {
243
+ color: var(--primary-300);
244
+ }
245
+
246
+ @utility text-primary-medium-pressed {
247
+ color: var(--primary-200);
248
+ }
249
+
250
+ @utility text-primary-medium-focused {
251
+ color: var(--primary-200);
252
+ }
253
+
254
+ @utility text-primary-medium-disabled {
255
+ color: var(--neutral-800);
256
+ }
257
+
258
+ /* NEUTRAL --> */
259
+
260
+ /* NEUTRAL DEFAULT */
261
+
262
+ @utility text-neutral {
263
+ color: var(--neutral-500);
264
+ }
265
+
266
+ @utility text-label-default {
267
+ color: var(--neutral-400);
268
+ }
269
+
270
+ @utility text-neutral-default-default {
271
+ color: var(--neutral-200);
272
+ }
273
+
274
+ @utility text-neutral-default-hover {
275
+ color: var(--neutral-300);
276
+ }
277
+
278
+ @utility text-neutral-default-pressed {
279
+ color: var(--neutral-400);
280
+ }
281
+
282
+ @utility text-neutral-default-focused {
283
+ color: var(--neutral-400);
284
+ }
285
+
286
+ @utility text-neutral-default-disabled {
287
+ color: var(--neutral-500);
288
+ }
289
+
290
+ /* NEUTRAL STRONG */
291
+ @utility text-neutral-strong {
292
+ color: var(--neutral-100);
293
+ }
294
+
295
+ @utility text-neutral-strong-hover {
296
+ color: var(--neutral-200);
297
+ }
298
+
299
+ @utility text-neutral-strong-pressed {
300
+ color: var(--neutral-300);
301
+ }
302
+
303
+ @utility text-neutral-strong-focused {
304
+ color: var(--neutral-300);
305
+ }
306
+
307
+ @utility text-neutral-strong-disabled {
308
+ color: var(--neutral-500);
309
+ }
310
+
311
+ @utility text-neutral-strong-default {
312
+ color: var(--neutral-100);
313
+ }
314
+
315
+ /* NEUTRAL MEDIUM */
316
+
317
+ @utility text-neutral-medium {
318
+ color: var(--neutral-400);
319
+ }
320
+
321
+ @utility text-neutral-medium-default {
322
+ color: var(--neutral-400);
323
+ }
324
+
325
+ @utility text-neutral-medium-hover {
326
+ color: var(--neutral-500);
327
+ }
328
+
329
+ @utility text-neutral-medium-pressed {
330
+ color: var(--neutral-600);
331
+ }
332
+
333
+ @utility text-neutral-medium-focused {
334
+ color: var(--neutral-600);
335
+ }
336
+
337
+ @utility text-neutral-medium-disabled {
338
+ color: var(--neutral-500);
339
+ }
340
+
341
+ /* NEUTRAL WEAK */
342
+
343
+ @utility text-neutral-weak {
344
+ color: var(--neutral-900);
345
+ }
346
+
347
+ @utility text-neutral-weak-default {
348
+ color: var(--neutral-900);
349
+ }
350
+
351
+ @utility text-neutral-weak-hover {
352
+ color: var(--neutral-800);
353
+ }
354
+
355
+ @utility text-neutral-weak-pressed {
356
+ color: var(--neutral-800);
357
+ }
358
+
359
+ @utility text-neutral-weak-focused {
360
+ color: var(--neutral-800);
361
+ }
362
+
363
+ @utility text-neutral-weak-disabled {
364
+ color: var(--neutral-500);
365
+ }
366
+
367
+ /* TEXT SUCCESS --> */
368
+
369
+ /* SUCCESS DEFAULT */
370
+ @utility text-success {
371
+ color: var(--success-500);
372
+ }
373
+
374
+ @utility text-success-default-default {
375
+ color: var(--success-500);
376
+ }
377
+
378
+ @utility text-success-default-hover {
379
+ color: var(--success-500);
380
+ }
381
+
382
+ @utility text-success-default-pressed {
383
+ color: var(--success-700);
384
+ }
385
+
386
+ @utility text-success-default-focused {
387
+ color: var(--success-500);
388
+ }
389
+
390
+ @utility text-success-default-disabled {
391
+ color: var(--neutral-800);
392
+ }
393
+
394
+ /* TEXT SUCCESS MEDIUM */
395
+
396
+ @utility text-success-medium-default {
397
+ color: var(--success-500);
398
+ }
399
+
400
+ @utility text-success-medium-hover {
401
+ color: var(--success-500);
402
+ }
403
+
404
+ @utility text-success-medium-pressed {
405
+ color: var(--success-500);
406
+ }
407
+
408
+ @utility text-success-medium-focused {
409
+ color: var(--success-500);
410
+ }
411
+
412
+ @utility text-success-medium-disabled {
413
+ color: var(--neutral-800);
414
+ }
415
+
416
+ /* TEXT ERROR --> */
417
+ @utility text-error {
418
+ color: var(--error-500);
419
+ }
420
+
421
+ /* ERROR DEFAULT */
422
+
423
+ @utility text-error-default-default {
424
+ color: var(--error-500);
425
+ }
426
+
427
+ @utility text-error-default-hover {
428
+ color: var(--error-600);
429
+ }
430
+
431
+ @utility text-error-default-pressed {
432
+ color: var(--error-700);
433
+ }
434
+
435
+ @utility text-error-default-focused {
436
+ color: var(--error-700);
437
+ }
438
+
439
+ @utility text-error-default-disabled {
440
+ color: var(--neutral-800);
441
+ }
442
+
443
+ /* ERROR MEDIUM */
444
+ @utility text-error-medium-default {
445
+ color: var(--error-500);
446
+ }
447
+
448
+ @utility text-error-medium-hover {
449
+ color: var(--error-500);
450
+ }
451
+
452
+ @utility text-error-medium-pressed {
453
+ color: var(--error-700);
454
+ }
455
+
456
+ @utility text-error-medium-focused {
457
+ color: var(--error-700);
458
+ }
459
+
460
+ @utility text-error-medium-disabled {
461
+ color: var(--neutral-800);
462
+ }
463
+
464
+ /* ERROR MISC */
465
+
466
+ @utility text-error-light {
467
+ color: var(--error-400);
468
+ }
469
+
470
+ @utility text-error-dark {
471
+ color: var(--error-600);
472
+ }
473
+
474
+ @utility text-error-weak-default {
475
+ color: var(--error-950);
476
+ }
477
+
478
+ /* TEXT WARNING --> */
479
+ /* WARNING DEFAULT */
480
+ @utility text-warning {
481
+ color: var(--warning-500);
482
+ }
483
+
484
+ @utility text-warning-default-default {
485
+ color: var(--warning-500);
486
+ }
487
+
488
+ @utility text-warning-default-hover {
489
+ color: var(--warning-600);
490
+ }
491
+
492
+ @utility text-warning-default-pressed {
493
+ color: var(--warning-700);
494
+ }
495
+
496
+ @utility text-warning-default-focused {
497
+ color: var(--warning-700);
498
+ }
499
+
500
+ @utility text-warning-default-disabled {
501
+ color: var(--neutral-800);
502
+ }
503
+
504
+ /* WARNING MEDIUM */
505
+ @utility text-warning-medium-default {
506
+ color: var(--warning-500);
507
+ }
508
+
509
+ @utility text-warning-medium-hover {
510
+ color: var(--warning-500);
511
+ }
512
+
513
+ @utility text-warning-medium-pressed {
514
+ color: var(--warning-600);
515
+ }
516
+
517
+ @utility text-warning-medium-focused {
518
+ color: var(--warning-600);
519
+ }
520
+
521
+ @utility text-warning-medium-disabled {
522
+ color: var(--neutral-800);
523
+ }
524
+
525
+ /* WARNING MISC */
526
+
527
+ @utility text-warning-light {
528
+ color: var(--warning-400);
529
+ }
530
+
531
+ @utility text-warning-dark {
532
+ color: var(--warning-600);
533
+ }
534
+
535
+ /* PENDING --> */
536
+ @utility text-pending {
537
+ color: var(--pending-500);
538
+ }
539
+
540
+ @utility text-pending-light {
541
+ color: var(--pending-300);
542
+ }
543
+
544
+ /* PROGRESS --> */
545
+ @utility text-progress {
546
+ color: var(--progress-500);
547
+ }
548
+
549
+ @utility text-progress-light {
550
+ color: var(--progress-300);
551
+ }
552
+
553
+ /* <!-- BACKGROUND --> */
554
+ @utility bg-primary {
555
+ background-color: var(--primary-500);
556
+ }
557
+
558
+ @utility bg-primary-default-default {
559
+ background-color: var(--primary-500);
560
+ }
561
+
562
+ @utility bg-primary-default-disabled {
563
+ background-color: var(--neutral-600);
564
+ }
565
+
566
+ @utility bg-primary-default-hover {
567
+ background-color: var(--primary-600);
568
+ }
569
+
570
+ @utility bg-primary-default-pressed {
571
+ background-color: var(--primary-700);
572
+ }
573
+
574
+ @utility bg-primary-default-focused {
575
+ background-color: var(--primary-700);
576
+ }
577
+
578
+ @utility bg-primary-medium-default {
579
+ background-color: var(--primary-200);
580
+ }
581
+
582
+ @utility bg-primary-medium-disabled {
583
+ background-color: var(--neutral-800);
584
+ }
585
+
586
+ @utility bg-primary-light {
587
+ background-color: var(--primary-400);
588
+ }
589
+
590
+ @utility bg-primary-dark {
591
+ background-color: var(--primary-600);
592
+ }
593
+
594
+ /* NEUTRAL --> */
595
+ @utility bg-neutral {
596
+ background-color: var(--neutral-500);
597
+ }
598
+
599
+ @utility bg-neutral-default-default {
600
+ background-color: var(--neutral-900);
601
+ }
602
+
603
+ @utility bg-neutral-default-default-light {
604
+ background-color: var(--neutral-200);
605
+ }
606
+
607
+ @utility bg-neutral-default-pressed {
608
+ background-color: var(--neutral-700);
609
+ }
610
+
611
+ @utility bg-neutral-default-hover {
612
+ background-color: var(--neutral-800);
613
+ }
614
+
615
+ @utility bg-neutral-default-hover-light {
616
+ background-color: var(--neutral-400);
617
+ }
618
+
619
+ @utility bg-neutral-strong {
620
+ background-color: var(--neutral-100);
621
+ }
622
+
623
+ @utility bg-neutral-strong-default {
624
+ background-color: var(--neutral-925);
625
+ }
626
+
627
+ @utility bg-neutral-strong-medium-default {
628
+ background-color: var(--neutral-800);
629
+ }
630
+
631
+ @utility bg-neutral-medium {
632
+ background-color: var(--neutral-400);
633
+ }
634
+
635
+ @utility bg-neutral-medium-default {
636
+ background-color: var(--neutral-800);
637
+ }
638
+
639
+ @utility bg-neutral-medium-hover {
640
+ background-color: var(--neutral-700);
641
+ }
642
+
643
+ @utility bg-neutral-medium-selected {
644
+ background-color: var(--neutral-800);
645
+ }
646
+
647
+ @utility bg-neutral-medium-pressed {
648
+ background-color: var(--neutral-925);
649
+ }
650
+
651
+ @utility bg-neutral-weak {
652
+ background-color: var(--neutral-900);
653
+ }
654
+
655
+ @utility bg-neutral-weak-default {
656
+ background-color: var(--neutral-600);
657
+ }
658
+
659
+ @utility bg-neutral-weak-hover {
660
+ background-color: var(--neutral-500);
661
+ }
662
+
663
+ @utility bg-neutral-weak-focused {
664
+ background-color: var(--neutral-400);
665
+ }
666
+
667
+ @utility bg-surface {
668
+ background-color: var(--neutral-800);
669
+ }
670
+
671
+ @utility bg-surface-elevated {
672
+ background-color: var(--neutral-700);
673
+ }
674
+
675
+ /* SUCCESS --> */
676
+ @utility bg-success {
677
+ background-color: var(--success-500);
678
+ }
679
+
680
+ @utility bg-success-default-default {
681
+ background-color: var(--success-500);
682
+ }
683
+
684
+ @utility bg-success-default-hover {
685
+ background-color: var(--success-600);
686
+ }
687
+
688
+ @utility bg-success-default-pressed {
689
+ background-color: var(--success-700);
690
+ }
691
+
692
+ @utility bg-success-default-focused {
693
+ background-color: var(--success-700);
694
+ }
695
+
696
+ @utility bg-success-medium-default {
697
+ background-color: var(--success-200);
698
+ }
699
+
700
+ @utility bg-success-light {
701
+ background-color: var(--success-400);
702
+ }
703
+
704
+ @utility bg-success-dark {
705
+ background-color: var(--success-600);
706
+ }
707
+
708
+ /* ERROR --> */
709
+ @utility bg-error {
710
+ background-color: var(--error-500);
711
+ }
712
+
713
+ @utility bg-error-default-default {
714
+ background-color: var(--error-500);
715
+ }
716
+
717
+ @utility bg-error-default-hover {
718
+ background-color: var(--error-600);
719
+ }
720
+
721
+ @utility bg-error-default-pressed {
722
+ background-color: var(--error-700);
723
+ }
724
+
725
+ @utility bg-error-medium-default {
726
+ background-color: var(--error-200);
727
+ }
728
+
729
+ @utility bg-error-light {
730
+ background-color: var(--error-400);
731
+ }
732
+
733
+ @utility bg-error-dark {
734
+ background-color: var(--error-600);
735
+ }
736
+
737
+ /* WARNING --> */
738
+ @utility bg-warning {
739
+ background-color: var(--warning-500);
740
+ }
741
+
742
+ @utility bg-warning-default-default {
743
+ background-color: var(--warning-500);
744
+ }
745
+
746
+ @utility bg-warning-default-hover {
747
+ background-color: var(--warning-600);
748
+ }
749
+
750
+ @utility bg-warning-default-pressed {
751
+ background-color: var(--warning-700);
752
+ }
753
+
754
+ @utility bg-warning-medium-default {
755
+ background-color: var(--warning-200);
756
+ }
757
+
758
+ @utility bg-warning-light {
759
+ background-color: var(--warning-400);
760
+ }
761
+
762
+ @utility bg-warning-dark {
763
+ background-color: var(--warning-600);
764
+ }
765
+
766
+ /* <!-- BORDER --> */
767
+ /* PRIMARY --> */
768
+ @utility border-primary {
769
+ border-color: var(--primary-500);
770
+ }
771
+
772
+ @utility border-primary-default-default {
773
+ border-color: var(--primary-400);
774
+ }
775
+
776
+ @utility border-primary-default-hover {
777
+ border-color: var(--primary-500);
778
+ }
779
+
780
+ @utility border-primary-default-focused {
781
+ border-color: var(--primary-600);
782
+ }
783
+
784
+ @utility border-primary-default-pressed {
785
+ border-color: var(--primary-600);
786
+ }
787
+
788
+ @utility border-primary-default-disabled {
789
+ border-color: var(--neutral-700);
790
+ }
791
+
792
+ @utility border-primary-strong-pressed {
793
+ border-color: var(--primary-700);
794
+ }
795
+
796
+ @utility border-primary-light {
797
+ border-color: var(--primary-400);
798
+ }
799
+
800
+ @utility border-primary-medium-default {
801
+ border-color: var(--primary-400);
802
+ }
803
+
804
+ @utility border-primary-medium-pressed {
805
+ border-color: var(--primary-200);
806
+ }
807
+
808
+ @utility border-primary-medium-disabled {
809
+ border-color: var(--neutral-600);
810
+ }
811
+
812
+ @utility border-primary-medium-hover {
813
+ border-color: var(--primary-300);
814
+ }
815
+
816
+ @utility border-primary-medium-pressed {
817
+ border-color: var(--primary-200);
818
+ }
819
+
820
+ /* NEUTRAL --> */
821
+ @utility border-neutral {
822
+ border-color: var(--neutral-500);
823
+ }
824
+
825
+ @utility border-neutral-default-default {
826
+ border-color: var(--neutral-500);
827
+ }
828
+
829
+ @utility border-neutral-default-hover {
830
+ border-color: var(--neutral-400);
831
+ }
832
+
833
+ @utility border-neutral-default-pressed {
834
+ border-color: var(--neutral-500);
835
+ }
836
+
837
+ @utility border-neutral-default-focused {
838
+ border-color: var(--neutral-500);
839
+ }
840
+
841
+ @utility border-neutral-default-disabled {
842
+ border-color: var(--neutral-700);
843
+ }
844
+
845
+ @utility border-neutral-strong-default {
846
+ border-color: var(--neutral-700);
847
+ }
848
+
849
+ @utility border-neutral-strong {
850
+ border-color: var(--neutral-800);
851
+ }
852
+
853
+ @utility border-neutral-default {
854
+ border-color: var(--neutral-900);
855
+ }
856
+
857
+ @utility border-neutral-medium {
858
+ border-color: var(--neutral-600);
859
+ }
860
+
861
+ @utility border-neutral-weak {
862
+ border-color: var(--neutral-700);
863
+ }
864
+
865
+ /* SUCCESS --> */
866
+ @utility border-success {
867
+ border-color: var(--success-500);
868
+ }
869
+
870
+ @utility border-success-default-default {
871
+ border-color: var(--success-500);
872
+ }
873
+
874
+ @utility border-success-default-hover {
875
+ border-color: var(--success-600);
876
+ }
877
+
878
+ @utility border-success-default-pressed {
879
+ border-color: var(--success-700);
880
+ }
881
+
882
+ @utility border-success-default-focused {
883
+ border-color: var(--success-700);
884
+ }
885
+
886
+ @utility border-success-default-disabled {
887
+ border-color: var(--neutral-800);
888
+ }
889
+
890
+ /* ERROR --> */
891
+ @utility border-error {
892
+ border-color: var(--error-500);
893
+ }
894
+
895
+ @utility border-error-default-default {
896
+ border-color: var(--error-500);
897
+ }
898
+
899
+ @utility border-error-default-hover {
900
+ border-color: var(--error-600);
901
+ }
902
+
903
+ @utility border-error-default-pressed {
904
+ border-color: var(--error-700);
905
+ }
906
+
907
+ @utility border-error-default-focused {
908
+ border-color: var(--error-700);
909
+ }
910
+
911
+ @utility border-error-default-disabled {
912
+ border-color: var(--neutral-800);
913
+ }
914
+
915
+ /* WARNING --> */
916
+ @utility border-warning {
917
+ border-color: var(--warning-500);
918
+ }
919
+
920
+ @utility border-warning-default-default {
921
+ border-color: var(--warning-500);
922
+ }
923
+
924
+ @utility border-warning-default-hover {
925
+ border-color: var(--warning-600);
926
+ }
927
+
928
+ @utility border-warning-default-pressed {
929
+ border-color: var(--warning-700);
930
+ }
931
+
932
+ @utility border-warning-default-focused {
933
+ border-color: var(--warning-700);
934
+ }
935
+
936
+ /* ICONS */
937
+
938
+ @utility icon-neutral-default-default {
939
+ color: var(--neutral-500);
940
+ }
941
+
942
+ @utility icon-neutral-medium-default {
943
+ color: var(--neutral-400);
944
+ }
945
+
946
+ @utility icon-neutral-medium-focused {
947
+ color: var(--neutral-600);
948
+ }
949
+
950
+ @utility icon-neutral-strong-default {
951
+ color: var(--neutral-100);
952
+ }
953
+
954
+ @utility icon-neutral-strong-disabled {
955
+ color: var(--neutral-500);
956
+ }
957
+
958
+ /* <!-- WEIGTH --> */
959
+ @utility font-light {
960
+ font-weight: 300;
961
+ }
962
+
963
+ @utility font-normal {
964
+ font-weight: 400;
965
+ }
966
+
967
+ @utility font-medium {
968
+ font-weight: 500;
969
+ }
970
+
971
+ @utility font-semibold {
972
+ font-weight: 600;
973
+ }
974
+
975
+ @utility font-bold {
976
+ font-weight: 700;
977
+ }
978
+
979
+ @utility text-xs-prometeo {
980
+ font-size: 0.875rem;
981
+ /* 14px */
982
+ line-height: 1.25;
983
+ }
984
+
985
+ @utility text-sm-prometeo {
986
+ font-size: 1rem;
987
+ /* 16px */
988
+ line-height: 1.375;
989
+ }
990
+
991
+ @utility text-md-prometeo {
992
+ font-size: 1.125rem;
993
+ /* 18px */
994
+ line-height: 1.375;
995
+ }
996
+
997
+ @utility text-lg-prometeo {
998
+ font-size: 1.25rem;
999
+ /* 20px */
1000
+ line-height: 1.375;
1001
+ }
1002
+
1003
+ @utility text-xl-prometeo {
1004
+ font-size: 1.5rem;
1005
+ /* 24px */
1006
+ line-height: 1.375;
1007
+ }
1008
+
1009
+ /* ESTADOS INTERACTIVOS - Con hover, focus, etc. */
1010
+ @utility bg-primary {
1011
+ background-color: var(--primary-500);
1012
+
1013
+ &:hover {
1014
+ background-color: var(--primary-600);
1015
+ }
1016
+
1017
+ &:active {
1018
+ background-color: var(--primary-700);
1019
+ }
1020
+ }
1021
+
1022
+ @utility bg-success {
1023
+ background-color: var(--success-500);
1024
+
1025
+ &:hover {
1026
+ background-color: var(--success-600);
1027
+ }
1028
+ }
1029
+
1030
+ @utility bg-error {
1031
+ background-color: var(--error-500);
1032
+
1033
+ &:hover {
1034
+ background-color: var(--error-600);
1035
+ }
1036
+ }
1037
+
1038
+ @utility input-base {
1039
+ padding: 0.5rem 0.75rem;
1040
+ border: 1px solid var(--neutral-500);
1041
+ border-radius: 0.375rem;
1042
+ background-color: var(--neutral-800);
1043
+ color: var(--neutral-100);
1044
+
1045
+ &:focus {
1046
+ outline: none;
1047
+ border-color: var(--primary-500);
1048
+ box-shadow: 0 0 0 3px rgba(97, 95, 255, 0.1);
1049
+ }
1050
+ }
1051
+
1052
+ /* RING */
1053
+ /* PRIMARY */
1054
+ @utility ring-primary-default-default {
1055
+ --tw-ring-color: var(--primary-400);
1056
+ }
1057
+
1058
+ @utility ring-primary-default-hover {
1059
+ --tw-ring-color: var(--primary-600);
1060
+ }
1061
+
1062
+ @utility ring-primary-default-pressed {
1063
+ --tw-ring-color: var(--primary-600);
1064
+ }
1065
+
1066
+ @utility ring-primary-default-focused {
1067
+ --tw-ring-color: var(--primary-600);
1068
+ }
1069
+
1070
+ /* SUCCESS */
1071
+ @utility ring-success-default-default {
1072
+ --tw-ring-color: var(--success-500);
1073
+ }
1074
+
1075
+ @utility ring-success-default-hover {
1076
+ --tw-ring-color: var(--success-600);
1077
+ }
1078
+
1079
+ @utility ring-success-default-pressed {
1080
+ --tw-ring-color: var(--success-600);
1081
+ }
1082
+
1083
+ @utility ring-success-default-focused {
1084
+ --tw-ring-color: var(--success-700);
1085
+ }
1086
+
1087
+ /* WARNING */
1088
+ @utility ring-warning-default-default {
1089
+ --tw-ring-color: var(--warning-500);
1090
+ }
1091
+
1092
+ @utility ring-warning-default-hover {
1093
+ --tw-ring-color: var(--warning-600);
1094
+ }
1095
+
1096
+ @utility ring-warning-default-pressed {
1097
+ --tw-ring-color: var(--warning-700);
1098
+ }
1099
+
1100
+ @utility ring-warning-default-focused {
1101
+ --tw-ring-color: var(--warning-700);
1102
+ }
1103
+
1104
+ /* ERROR */
1105
+
1106
+ @utility ring-error-default-default {
1107
+ --tw-ring-color: var(--error-500);
1108
+ }
1109
+
1110
+ @utility ring-error-default-hover {
1111
+ --tw-ring-color: var(--error-600);
1112
+ }
1113
+
1114
+ @utility ring-error-default-pressed {
1115
+ --tw-ring-color: var(--error-700);
1116
+ }
1117
+
1118
+ @utility ring-error-default-focused {
1119
+ --tw-ring-color: var(--error-700);
1120
+ }
1121
+
1122
+ /* SCROLLBAR. */
1123
+ * {
1124
+ --sb-track-color: var(--neutral-800);
1125
+ --sb-thumb-color: var(--primary-400);
1126
+ --sb-size: 10px;
1127
+ }
1128
+
1129
+ *::-webkit-scrollbar {
1130
+ width: var(--sb-size);
1131
+ }
1132
+
1133
+ *::-webkit-scrollbar-track {
1134
+ background: var(--sb-track-color);
1135
+ }
1136
+
1137
+ *::-webkit-scrollbar-thumb {
1138
+ background: var(--sb-thumb-color);
1139
+ border: 3px solid var(--neutral-800);
1140
+ border-radius: 10px;
1141
+ }
1142
+
1143
+ @utility prometeo-scrollbar-thin {
1144
+ --sb-size: 8px !important;
1145
+ --sb-track-color: var(--neutral-800);
1146
+ --sb-thumb-color: var(--primary-400);
1147
+
1148
+ &::-webkit-scrollbar {
1149
+ width: var(--sb-size);
1150
+ height: var(--sb-size);
1151
+ }
1152
+
1153
+ &::-webkit-scrollbar-track {
1154
+ background: var(--sb-track-color);
1155
+ }
1156
+
1157
+ &::-webkit-scrollbar-thumb {
1158
+ background: var(--sb-thumb-color);
1159
+ border: 2px solid var(--sb-track-color);
1160
+ border-radius: 8px;
1161
+ }
1162
+ }
1163
+
1164
+ @utility scrollbar-stable {
1165
+ scrollbar-gutter: stable;
1166
+ }
1167
+
1168
+ @utility prometeo-scrollbar-overlay {
1169
+ --sb-size: 8px;
1170
+ padding-inline-end: var(--sb-size) !important;
1171
+ margin-inline-end: calc(-1 * var(--sb-size)) !important;
1172
+ &::-webkit-scrollbar {
1173
+ width: var(--sb-size);
1174
+ }
1175
+ }
1176
+
1177
+ @utility prometeo-scrollbar-overlay-x {
1178
+ --sb-size: 8px;
1179
+ padding-block-end: var(--sb-size) !important;
1180
+ margin-block-end: calc(-1 * var(--sb-size)) !important;
1181
+ &::-webkit-scrollbar {
1182
+ height: var(--sb-size);
1183
+ }
1184
+ }
1185
+
1186
+ @utility prometeo-scrollbar-none {
1187
+ scrollbar-width: none;
1188
+ -ms-overflow-style: none;
1189
+
1190
+ &::-webkit-scrollbar {
1191
+ width: 0;
1192
+ height: 0;
1193
+ display: none;
1194
+ background: transparent;
1195
+ }
1196
+ }
1197
+
1198
+ @supports not selector(::-webkit-scrollbar) {
1199
+ * {
1200
+ scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
1201
+ }
1202
+ }
1203
+
1204
+ .input-group {
1205
+ position: relative;
1206
+ width: var(--input-width, 100%);
1207
+ }
1208
+
1209
+ .input-field {
1210
+ padding: 12px;
1211
+ border: 1px solid var(--neutral-500);
1212
+ font-size: 16px;
1213
+ transition: all 0.1s ease;
1214
+ border-radius: 8px;
1215
+ box-sizing: border-box;
1216
+ }
1217
+
1218
+ .input-field:focus {
1219
+ border-color: #3b82f6;
1220
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
1221
+ }
1222
+
1223
+ .floating-label {
1224
+ position: absolute;
1225
+ left: 1rem;
1226
+ top: 50%;
1227
+ transform: translateY(-50%);
1228
+ background-color: transparent;
1229
+ padding: 0 0.25rem;
1230
+ font-size: 1rem;
1231
+ color: #9ca3af;
1232
+ pointer-events: none;
1233
+ transition: all 0.3s ease;
1234
+ z-index: 10;
1235
+ }
1236
+
1237
+ .input-field:focus + .floating-label,
1238
+ .input-field.has-value + .floating-label {
1239
+ top: -10px;
1240
+ left: 0px;
1241
+ transform: translateY(-50%);
1242
+ font-size: 0.75rem;
1243
+ color: var(--neutral-400);
1244
+ }
1245
+
1246
+ /* Estilos del dropdown personalizado */
1247
+ .custom-dropdown {
1248
+ position: absolute;
1249
+ top: 100%;
1250
+ left: 0;
1251
+ right: 0;
1252
+ z-index: 50;
1253
+ margin-top: 0.25rem;
1254
+ background-color: transparent;
1255
+ border: 1px solid var(--neutral-400);
1256
+ border-radius: 0.375rem;
1257
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
1258
+ max-height: 240px;
1259
+ overflow-y: auto;
1260
+ }
1261
+
1262
+ /* Estilos para cada opción */
1263
+ .custom-option {
1264
+ display: flex;
1265
+ align-items: center;
1266
+ padding: 0.75rem 1rem;
1267
+ cursor: pointer;
1268
+ transition: background-color 0.2s ease;
1269
+ color: white;
1270
+ border-bottom: 1px solid #374151;
1271
+ }
1272
+
1273
+ .custom-option:last-child {
1274
+ border-bottom: none;
1275
+ }
1276
+
1277
+ .custom-option:hover {
1278
+ background-color: #374151;
1279
+ }
1280
+
1281
+ .custom-option.selected {
1282
+ background-color: #1e40af;
1283
+ }
1284
+
1285
+ .custom-option.selected:hover {
1286
+ background-color: #1d4ed8;
1287
+ }
1288
+
1289
+ /* Checkbox para múltiple selección */
1290
+ .option-checkbox {
1291
+ margin-right: 0.75rem;
1292
+ accent-color: #3b82f6;
1293
+ }
1294
+
1295
+ /* Punto de estado/color */
1296
+ .status-dot {
1297
+ width: 12px;
1298
+ height: 12px;
1299
+ border-radius: 50%;
1300
+ margin-right: 0.75rem;
1301
+ flex-shrink: 0;
1302
+ }
1303
+
1304
+ @keyframes cursor-intermitent {
1305
+ 0% {
1306
+ opacity: 1;
1307
+ }
1308
+ 50% {
1309
+ opacity: 0;
1310
+ }
1311
+ 100% {
1312
+ opacity: 1;
1313
+ }
1314
+ }