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