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.
- package/dist/Avatar.js +4 -0
- package/dist/Button.js +4 -0
- package/dist/CardProfile.d.ts +4 -0
- package/dist/CardProfile.js +5 -0
- package/dist/CheckBox.js +4 -0
- package/dist/DatePicker.d.ts +2 -0
- package/dist/DatePicker.js +5 -0
- package/dist/DialogModal.js +6 -0
- package/dist/DrawerDesktop.js +6 -0
- package/dist/DrawerMobile.js +6 -0
- package/dist/DropZone.d.ts +4 -0
- package/dist/DropZone.js +5 -0
- package/dist/FAButton.js +4 -0
- package/dist/Header.js +4 -0
- package/dist/Icons/Icons.d.ts +1 -1
- package/dist/Icons/Icons.js +1055 -0
- package/dist/Icons.d.ts +4 -0
- package/dist/Icons.js +5 -0
- package/dist/Image.js +4 -0
- package/dist/ImageGallery.js +6 -0
- package/dist/Input.js +4 -0
- package/dist/InputMultiple.d.ts +4 -0
- package/dist/InputMultiple.js +5 -0
- package/dist/LayoutGeneric.js +4 -0
- package/dist/Logo.js +4 -0
- package/dist/Menu.d.ts +4 -0
- package/dist/Menu.js +5 -0
- package/dist/OtpInput.js +4 -0
- package/dist/Pagination.js +4 -0
- package/dist/ProfilePictureUpload.d.ts +4 -0
- package/dist/ProfilePictureUpload.js +5 -0
- package/dist/ProgressBar.js +4 -0
- package/dist/RadioButton.d.ts +4 -0
- package/dist/RadioButton.js +5 -0
- package/dist/SegmentedButton.d.ts +4 -0
- package/dist/SegmentedButton.js +5 -0
- package/dist/Select.js +4 -0
- package/dist/SelectSearch.js +4 -0
- package/dist/Skeleton.d.ts +4 -0
- package/dist/Skeleton.js +5 -0
- package/dist/Spinner.js +4 -0
- package/dist/Steps.d.ts +4 -0
- package/dist/Steps.js +5 -0
- package/dist/SwipeContainer.js +4 -0
- package/dist/Switch.d.ts +4 -0
- package/dist/Switch.js +5 -0
- package/dist/TabLinks.js +4 -0
- package/dist/Table.js +11 -0
- package/dist/TextArea.js +4 -0
- package/dist/Toast.js +5 -0
- package/dist/ToastProvider.js +4 -0
- package/dist/Tooltip.js +4 -0
- package/dist/components/Autocomplete/useAutocomplete.js +143 -0
- package/dist/{Avatar.es.js → components/Avatar/Avatar.js} +28 -33
- package/dist/{Button.es.js → components/Button/Button.js} +55 -55
- package/dist/{CardProfile-BB-IP1MR.js → components/CardProfile/CardProfile.js} +68 -94
- package/dist/{CheckBox.es.js → components/CheckBox/CheckBox.js} +25 -25
- package/dist/components/DatePicker/DatePicker.js +396 -0
- package/dist/components/Dialog/Dialog.js +60 -0
- package/dist/components/Dialog/useDialogControl.js +18 -0
- package/dist/components/Drawer/DrawerDesktop.js +179 -0
- package/dist/components/Drawer/DrawerMobile.js +219 -0
- package/dist/components/Drawer/useDrawerDesktop.js +18 -0
- package/dist/components/Drawer/useDrawerMobile.js +27 -0
- package/dist/components/DropZone/DropZone.js +86 -0
- package/dist/components/DropZone/useFileDropzone.js +24 -0
- package/dist/{FAButton.es.js → components/FAB/FAButton.js} +5 -5
- package/dist/components/Header/Header.js +32 -0
- package/dist/components/Image/GalleryPreview.js +40 -0
- package/dist/{Image.es.js → components/Image/Image.js} +32 -32
- package/dist/components/Image/ImageGallery.js +68 -0
- package/dist/components/Image/LightBox.js +223 -0
- package/dist/{ImageGallery.es.js → components/Image/useImageGallery.js} +0 -2
- package/dist/components/Input/Input.js +219 -0
- package/dist/{InputMultiple.es.js → components/InputMultiple/InputMultiple.js} +91 -91
- package/dist/components/Layout/LayoutGeneric.js +13 -0
- package/dist/components/Logo/Logo.js +9 -0
- package/dist/{Menu.es.js → components/Menu/MenuComposable.js} +11 -11
- package/dist/components/OtpInput/OtpInput.js +112 -0
- package/dist/{Pagination.es.js → components/Pagination/Pagination.js} +32 -32
- package/dist/components/ProfilePictureUpload/ProfilePictureUpload.d.ts +1 -1
- package/dist/{ProfilePictureUpload.es.js → components/ProfilePictureUpload/ProfilePictureUpload.js} +73 -98
- package/dist/components/ProgressBar/ProgressBar.js +70 -0
- package/dist/{RadioButton.es.js → components/RadioButton/RadioButton.js} +35 -35
- package/dist/{SegmentedButton.es.js → components/SegmentedButton/SegmentedButton.js} +37 -37
- package/dist/components/Select/Select.js +1005 -0
- package/dist/components/SelectSearch/SelectSearch.js +101 -0
- package/dist/components/Shared/Chip.js +55 -0
- package/dist/components/Shared/HelperComponent.js +24 -0
- package/dist/components/Sidebar/SecondaryBar/SecondaryBar.js +62 -0
- package/dist/components/Sidebar/SecondaryBar/hooks/useSecondaryBarAnimation.js +59 -0
- package/dist/components/Sidebar/SidebarComposable.js +84 -0
- package/dist/components/Sidebar/components/NavigationLink.js +34 -0
- package/dist/components/Sidebar/components/badge.js +33 -0
- package/dist/components/Sidebar/components/changue-account.js +31 -0
- package/dist/components/Sidebar/components/collapse-button.js +18 -0
- package/dist/components/Sidebar/components/company-logo.js +12 -0
- package/dist/components/Sidebar/components/nav-actions.js +98 -0
- package/dist/components/Sidebar/components/nav-links.js +100 -0
- package/dist/components/Sidebar/context/SidebarContext.js +19 -0
- package/dist/components/Sidebar/hooks/SidebarProvider.js +33 -0
- package/dist/components/Sidebar/hooks/useNavBarActions.js +9 -0
- package/dist/components/Sidebar/hooks/useNavBarCollapse.js +11 -0
- package/dist/components/Sidebar/hooks/useSidebarHook.js +13 -0
- package/dist/components/Sidebar/ui/useNavbarAnimation.js +326 -0
- package/dist/{Skeleton.es.js → components/Skeleton/Skeleton.js} +16 -17
- package/dist/components/Spinner/Spinner.js +52 -0
- package/dist/{Steps.es.js → components/Steps/Steps.js} +61 -61
- package/dist/{SwipeContainer.es.js → components/SwipeContainer/SwipeContainer.js} +68 -68
- package/dist/{Switch.es.js → components/Switch/Switch.js} +17 -17
- package/dist/{TabLinks.es.js → components/TabLinks/TabLinks.js} +11 -11
- package/dist/components/TabSwitch/TabSwitch.js +57 -0
- package/dist/{Table.es.js → components/Table/Table.js} +38 -41
- package/dist/{TextArea.es.js → components/TextArea/TextArea.js} +24 -26
- package/dist/components/Toaster/ToastProvider.js +6 -0
- package/dist/{Toast.es.js → components/Toaster/Toaster.js} +42 -42
- package/dist/components/Tooltip/Tootip.js +62 -0
- package/dist/exports/CardProfile.d.ts +1 -0
- package/dist/exports/DatePicker.d.ts +2 -0
- package/dist/exports/DropZone.d.ts +2 -0
- package/dist/exports/Icons.d.ts +2 -1
- package/dist/exports/InputMultiple.d.ts +2 -0
- package/dist/exports/Menu.d.ts +1 -0
- package/dist/exports/ProfilePictureUpload.d.ts +1 -0
- package/dist/exports/RadioButton.d.ts +2 -0
- package/dist/exports/SegmentedButton.d.ts +2 -0
- package/dist/exports/Skeleton.d.ts +2 -0
- package/dist/exports/Steps.d.ts +1 -0
- package/dist/exports/Switch.d.ts +2 -0
- package/dist/hooks/useClickOutside.js +24 -0
- package/dist/{useDragScroll-CHN9OMwn.js → hooks/useDragScroll.js} +1 -1
- package/dist/hooks/useLabelBackground.js +25 -0
- package/dist/index.d.ts +0 -4
- package/dist/index.js +119 -0
- package/dist/{cn-B6yFEsav.js → lib/cn.js} +2 -2
- package/dist/lib/utils.js +54 -0
- package/dist/node_modules/@date-fns/tz/date/index.js +61 -0
- package/dist/node_modules/@date-fns/tz/date/mini.js +69 -0
- package/dist/node_modules/@date-fns/tz/tzName/index.js +11 -0
- package/dist/node_modules/@date-fns/tz/tzOffset/index.js +22 -0
- package/dist/{index-BOQuZ0gG.js → node_modules/class-variance-authority/dist/index.js} +10 -9
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +7 -0
- package/dist/node_modules/date-fns/_lib/defaultOptions.js +7 -0
- package/dist/node_modules/date-fns/_lib/format/formatters.js +583 -0
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
- package/dist/node_modules/date-fns/_lib/format/longFormatters.js +52 -0
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
- package/dist/node_modules/date-fns/_lib/normalizeDates.js +11 -0
- package/dist/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
- package/dist/node_modules/date-fns/_lib/protectedTokens.js +20 -0
- package/dist/node_modules/date-fns/addDays.js +10 -0
- package/dist/node_modules/date-fns/addMonths.js +20 -0
- package/dist/node_modules/date-fns/addWeeks.js +8 -0
- package/dist/node_modules/date-fns/addYears.js +8 -0
- package/dist/node_modules/date-fns/constants.js +6 -0
- package/dist/node_modules/date-fns/constructFrom.js +8 -0
- package/dist/node_modules/date-fns/differenceInCalendarDays.js +16 -0
- package/dist/node_modules/date-fns/differenceInCalendarMonths.js +13 -0
- package/dist/node_modules/date-fns/eachMonthOfInterval.js +17 -0
- package/dist/node_modules/date-fns/eachYearOfInterval.js +17 -0
- package/dist/node_modules/date-fns/endOfISOWeek.js +8 -0
- package/dist/node_modules/date-fns/endOfMonth.js +9 -0
- package/dist/node_modules/date-fns/endOfWeek.js +10 -0
- package/dist/node_modules/date-fns/endOfYear.js +9 -0
- package/dist/node_modules/date-fns/format.js +58 -0
- package/dist/node_modules/date-fns/getDayOfYear.js +11 -0
- package/dist/node_modules/date-fns/getDaysInMonth.js +10 -0
- package/dist/node_modules/date-fns/getISOWeek.js +12 -0
- package/dist/node_modules/date-fns/getISOWeekYear.js +15 -0
- package/dist/node_modules/date-fns/getMonth.js +8 -0
- package/dist/node_modules/date-fns/getWeek.js +12 -0
- package/dist/node_modules/date-fns/getWeekYear.js +16 -0
- package/dist/node_modules/date-fns/getYear.js +8 -0
- package/dist/node_modules/date-fns/isAfter.js +8 -0
- package/dist/node_modules/date-fns/isBefore.js +8 -0
- package/dist/node_modules/date-fns/isDate.js +7 -0
- package/dist/node_modules/date-fns/isSameDay.js +14 -0
- package/dist/node_modules/date-fns/isSameMonth.js +13 -0
- package/dist/node_modules/date-fns/isSameYear.js +13 -0
- package/dist/node_modules/date-fns/isValid.js +9 -0
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +9 -0
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +18 -0
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +31 -0
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +15 -0
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +70 -0
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -0
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
- package/dist/node_modules/date-fns/locale/en-US.js +21 -0
- package/dist/node_modules/date-fns/locale/es/_lib/formatDistance.js +70 -0
- package/dist/node_modules/date-fns/locale/es/_lib/formatLong.js +33 -0
- package/dist/node_modules/date-fns/locale/es/_lib/formatRelative.js +18 -0
- package/dist/node_modules/date-fns/locale/es/_lib/localize.js +143 -0
- package/dist/node_modules/date-fns/locale/es/_lib/match.js +116 -0
- package/dist/node_modules/date-fns/locale/es.js +21 -0
- package/dist/node_modules/date-fns/max.js +14 -0
- package/dist/node_modules/date-fns/min.js +14 -0
- package/dist/node_modules/date-fns/setMonth.js +13 -0
- package/dist/node_modules/date-fns/setYear.js +10 -0
- package/dist/node_modules/date-fns/startOfDay.js +9 -0
- package/dist/node_modules/date-fns/startOfISOWeek.js +8 -0
- package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -0
- package/dist/node_modules/date-fns/startOfMonth.js +9 -0
- package/dist/node_modules/date-fns/startOfWeek.js +10 -0
- package/dist/node_modules/date-fns/startOfWeekYear.js +12 -0
- package/dist/node_modules/date-fns/startOfYear.js +9 -0
- package/dist/node_modules/date-fns/toDate.js +8 -0
- package/dist/node_modules/input-otp/dist/index.js +194 -0
- package/dist/node_modules/react-day-picker/dist/esm/DayPicker.js +227 -0
- package/dist/node_modules/react-day-picker/dist/esm/UI.js +22 -0
- package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +19 -0
- package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/classes/DateLib.js +147 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Button.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/CaptionLabel.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Chevron.js +18 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Day.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/DayButton.js +10 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Dropdown.js +19 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/DropdownNav.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Footer.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Month.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/MonthCaption.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/MonthGrid.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Months.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Nav.js +27 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Option.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Root.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Select.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Week.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumber.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Weekday.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Weekdays.js +11 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/Weeks.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/components/custom-components.js +54 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/formatters/index.js +18 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +19 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/createGetModifiers.js +42 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +10 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js +16 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getDates.js +21 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getDays.js +10 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +16 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js +13 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js +15 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +10 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js +13 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js +13 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +24 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js +13 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +12 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js +12 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js +12 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +13 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js +11 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeeks.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js +16 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/index.js +26 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +10 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelNav.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelNext.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelPrevious.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +7 -0
- package/dist/node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js +6 -0
- package/dist/node_modules/react-day-picker/dist/esm/selection/useMulti.js +21 -0
- package/dist/node_modules/react-day-picker/dist/esm/selection/useRange.js +18 -0
- package/dist/node_modules/react-day-picker/dist/esm/selection/useSingle.js +15 -0
- package/dist/node_modules/react-day-picker/dist/esm/useAnimation.js +56 -0
- package/dist/node_modules/react-day-picker/dist/esm/useCalendar.js +44 -0
- package/dist/node_modules/react-day-picker/dist/esm/useDayPicker.js +12 -0
- package/dist/node_modules/react-day-picker/dist/esm/useFocus.js +23 -0
- package/dist/node_modules/react-day-picker/dist/esm/useSelection.js +19 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/addToRange.js +32 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +26 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +15 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +28 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +9 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +8 -0
- package/dist/node_modules/react-day-picker/dist/esm/utils/typeguards.js +26 -0
- package/dist/prometeo-design-system.css +1 -1
- package/dist/styles.d.ts +0 -0
- package/dist/useDevice.js +4 -0
- package/package.json +282 -274
- package/src/styles/app.css +1314 -0
- package/src/styles/base.css +1323 -0
- package/src/styles/fonts.css +46 -0
- package/src/styles/palette.css +83 -0
- package/src/styles/utilities.css +1126 -0
- package/dist/CardProfile.es.js +0 -4
- package/dist/DatePicker.es.js +0 -3500
- package/dist/DialogModal.es.js +0 -75
- package/dist/DrawerDesktop.es.js +0 -192
- package/dist/DrawerMobile.es.js +0 -242
- package/dist/DropZone.es.js +0 -86
- package/dist/Header.es.js +0 -32
- package/dist/HelperComponent-D_Cqdf1J.js +0 -24
- package/dist/Icons.es.js +0 -1055
- package/dist/ImageGallery-CjaJ0UCN.js +0 -317
- package/dist/Input-Bdo-Acix.js +0 -240
- package/dist/Input.es.js +0 -4
- package/dist/LayoutGeneric-B6E-yOYJ.js +0 -26
- package/dist/LayoutGeneric.es.js +0 -4
- package/dist/Logo.es.js +0 -9
- package/dist/OtpInput.es.js +0 -301
- package/dist/ProgressBar.es.js +0 -70
- package/dist/Select-D2APaG1z.js +0 -1100
- package/dist/Select.es.js +0 -4
- package/dist/SelectSearch.es.js +0 -237
- package/dist/Spinner.es.js +0 -52
- package/dist/ToastProvider.es.js +0 -6
- package/dist/Tooltip.es.js +0 -62
- package/dist/components/Button/Button_Legacy.d.ts +0 -29
- package/dist/jsx-runtime-ByW6EXIE.js +0 -283
- package/dist/prometeo-design-system.es.js +0 -1008
- /package/dist/{useDevice.es.js → hooks/useDevice.js} +0 -0
package/package.json
CHANGED
|
@@ -1,274 +1,282 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "prometeo-design-system",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "2.8.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"description": "design kit system",
|
|
7
|
-
"main": "dist/prometeo-design-system.umd.js",
|
|
8
|
-
"module": "dist/prometeo-design-system.es.js",
|
|
9
|
-
"types": "dist/index.d.ts",
|
|
10
|
-
"sideEffects":
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
"
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"build
|
|
203
|
-
"
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
"@
|
|
215
|
-
"@
|
|
216
|
-
"@
|
|
217
|
-
"@
|
|
218
|
-
"@
|
|
219
|
-
"@
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"react-
|
|
233
|
-
"react-
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
"
|
|
260
|
-
"react
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "prometeo-design-system",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.8.7",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "design kit system",
|
|
7
|
+
"main": "dist/prometeo-design-system.umd.js",
|
|
8
|
+
"module": "dist/prometeo-design-system.es.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./css": "./src/styles/app.css",
|
|
17
|
+
"./intellisense": "./src/styles/intellisense.css",
|
|
18
|
+
"./Avatar": {
|
|
19
|
+
"types": "./dist/components/Avatar/Avatar.d.ts",
|
|
20
|
+
"import": "./dist/components/Avatar/Avatar.js"
|
|
21
|
+
},
|
|
22
|
+
"./Button": {
|
|
23
|
+
"types": "./dist/components/Button/Button.d.ts",
|
|
24
|
+
"import": "./dist/components/Button/Button.js"
|
|
25
|
+
},
|
|
26
|
+
"./CardProfile": {
|
|
27
|
+
"types": "./dist/components/CardProfile/CardProfile.d.ts",
|
|
28
|
+
"import": "./dist/components/CardProfile/CardProfile.js"
|
|
29
|
+
},
|
|
30
|
+
"./CheckBox": {
|
|
31
|
+
"types": "./dist/components/CheckBox/CheckBox.d.ts",
|
|
32
|
+
"import": "./dist/components/CheckBox/CheckBox.js"
|
|
33
|
+
},
|
|
34
|
+
"./DatePicker": {
|
|
35
|
+
"types": "./dist/components/DatePicker/DatePicker.d.ts",
|
|
36
|
+
"import": "./dist/components/DatePicker/DatePicker.js"
|
|
37
|
+
},
|
|
38
|
+
"./DialogModal": {
|
|
39
|
+
"types": "./dist/components/Dialog/Dialog.d.ts",
|
|
40
|
+
"import": "./dist/components/Dialog/Dialog.js"
|
|
41
|
+
},
|
|
42
|
+
"./DrawerDesktop": {
|
|
43
|
+
"types": "./dist/components/Drawer/DrawerDesktop.d.ts",
|
|
44
|
+
"import": "./dist/components/Drawer/DrawerDesktop.js"
|
|
45
|
+
},
|
|
46
|
+
"./DrawerMobile": {
|
|
47
|
+
"types": "./dist/components/Drawer/DrawerMobile.d.ts",
|
|
48
|
+
"import": "./dist/components/Drawer/DrawerMobile.js"
|
|
49
|
+
},
|
|
50
|
+
"./DropZone": {
|
|
51
|
+
"types": "./dist/components/DropZone/DropZone.d.ts",
|
|
52
|
+
"import": "./dist/components/DropZone/DropZone.js"
|
|
53
|
+
},
|
|
54
|
+
"./FAButton": {
|
|
55
|
+
"types": "./dist/components/FAButton/FAButton.d.ts",
|
|
56
|
+
"import": "./dist/components/FAButton/FAButton.js"
|
|
57
|
+
},
|
|
58
|
+
"./Header": {
|
|
59
|
+
"types": "./dist/components/Header/Header.d.ts",
|
|
60
|
+
"import": "./dist/components/Header/Header.js"
|
|
61
|
+
},
|
|
62
|
+
"./Icons": {
|
|
63
|
+
"types": "./dist/Icons.d.ts",
|
|
64
|
+
"import": "./dist/Icons.js"
|
|
65
|
+
},
|
|
66
|
+
"./Image": {
|
|
67
|
+
"types": "./dist/components/Image/Image.d.ts",
|
|
68
|
+
"import": "./dist/components/Image/Image.js"
|
|
69
|
+
},
|
|
70
|
+
"./ImageGallery": {
|
|
71
|
+
"types": "./dist/components/ImageGallery/ImageGallery.d.ts",
|
|
72
|
+
"import": "./dist/components/ImageGallery/ImageGallery.js"
|
|
73
|
+
},
|
|
74
|
+
"./Input": {
|
|
75
|
+
"types": "./dist/components/Input/Input.d.ts",
|
|
76
|
+
"import": "./dist/components/Input/Input.js"
|
|
77
|
+
},
|
|
78
|
+
"./InputMultiple": {
|
|
79
|
+
"types": "./dist/components/InputMultiple/InputMultiple.d.ts",
|
|
80
|
+
"import": "./dist/components/InputMultiple/InputMultiple.js"
|
|
81
|
+
},
|
|
82
|
+
"./LayoutGeneric": {
|
|
83
|
+
"types": "./dist/components/LayoutGeneric/LayoutGeneric.d.ts",
|
|
84
|
+
"import": "./dist/components/LayoutGeneric/LayoutGeneric.js"
|
|
85
|
+
},
|
|
86
|
+
"./Logo": {
|
|
87
|
+
"types": "./dist/components/Logo/Logo.d.ts",
|
|
88
|
+
"import": "./dist/components/Logo/Logo.js"
|
|
89
|
+
},
|
|
90
|
+
"./Menu": {
|
|
91
|
+
"types": "./dist/components/Menu/Menu.d.ts",
|
|
92
|
+
"import": "./dist/components/Menu/Menu.js"
|
|
93
|
+
},
|
|
94
|
+
"./OtpInput": {
|
|
95
|
+
"types": "./dist/components/OtpInput/OtpInput.d.ts",
|
|
96
|
+
"import": "./dist/components/OtpInput/OtpInput.js"
|
|
97
|
+
},
|
|
98
|
+
"./Pagination": {
|
|
99
|
+
"types": "./dist/components/Pagination/Pagination.d.ts",
|
|
100
|
+
"import": "./dist/components/Pagination/Pagination.js"
|
|
101
|
+
},
|
|
102
|
+
"./ProfilePictureUpload": {
|
|
103
|
+
"types": "./dist/components/ProfilePictureUpload/ProfilePictureUpload.d.ts",
|
|
104
|
+
"import": "./dist/components/ProfilePictureUpload/ProfilePictureUpload.js"
|
|
105
|
+
},
|
|
106
|
+
"./ProgressBar": {
|
|
107
|
+
"types": "./dist/components/ProgressBar/ProgressBar.d.ts",
|
|
108
|
+
"import": "./dist/components/ProgressBar/ProgressBar.js"
|
|
109
|
+
},
|
|
110
|
+
"./RadioButton": {
|
|
111
|
+
"types": "./dist/components/RadioButton/RadioButton.d.ts",
|
|
112
|
+
"import": "./dist/components/RadioButton/RadioButton.js"
|
|
113
|
+
},
|
|
114
|
+
"./SegmentedButton": {
|
|
115
|
+
"types": "./dist/components/SegmentedButton/SegmentedButton.d.ts",
|
|
116
|
+
"import": "./dist/components/SegmentedButton/SegmentedButton.js"
|
|
117
|
+
},
|
|
118
|
+
"./Select": {
|
|
119
|
+
"types": "./dist/components/Select/Select.d.ts",
|
|
120
|
+
"import": "./dist/components/Select/Select.js"
|
|
121
|
+
},
|
|
122
|
+
"./SelectSearch": {
|
|
123
|
+
"types": "./dist/components/SelectSearch/SelectSearch.d.ts",
|
|
124
|
+
"import": "./dist/components/SelectSearch/SelectSearch.js"
|
|
125
|
+
},
|
|
126
|
+
"./Skeleton": {
|
|
127
|
+
"types": "./dist/components/Skeleton/Skeleton.d.ts",
|
|
128
|
+
"import": "./dist/components/Skeleton/Skeleton.js"
|
|
129
|
+
},
|
|
130
|
+
"./Spinner": {
|
|
131
|
+
"types": "./dist/components/Spinner/Spinner.d.ts",
|
|
132
|
+
"import": "./dist/components/Spinner/Spinner.js"
|
|
133
|
+
},
|
|
134
|
+
"./Steps": {
|
|
135
|
+
"types": "./dist/components/Steps/Steps.d.ts",
|
|
136
|
+
"import": "./dist/components/Steps/Steps.js"
|
|
137
|
+
},
|
|
138
|
+
"./SwipeContainer": {
|
|
139
|
+
"types": "./dist/components/SwipeContainer/SwipeContainer.d.ts",
|
|
140
|
+
"import": "./dist/components/SwipeContainer/SwipeContainer.js"
|
|
141
|
+
},
|
|
142
|
+
"./Switch": {
|
|
143
|
+
"types": "./dist/components/Switch/Switch.d.ts",
|
|
144
|
+
"import": "./dist/components/Switch/Switch.js"
|
|
145
|
+
},
|
|
146
|
+
"./TabLinks": {
|
|
147
|
+
"types": "./dist/components/TabLinks/TabLinks.d.ts",
|
|
148
|
+
"import": "./dist/components/TabLinks/TabLinks.js"
|
|
149
|
+
},
|
|
150
|
+
"./Table": {
|
|
151
|
+
"types": "./dist/components/Table/Table.d.ts",
|
|
152
|
+
"import": "./dist/components/Table/Table.js"
|
|
153
|
+
},
|
|
154
|
+
"./TextArea": {
|
|
155
|
+
"types": "./dist/components/TextArea/TextArea.d.ts",
|
|
156
|
+
"import": "./dist/components/TextArea/TextArea.js"
|
|
157
|
+
},
|
|
158
|
+
"./Toast": {
|
|
159
|
+
"types": "./dist/components/Toast/Toast.d.ts",
|
|
160
|
+
"import": "./dist/components/Toast/Toast.js"
|
|
161
|
+
},
|
|
162
|
+
"./ToastProvider": {
|
|
163
|
+
"types": "./dist/components/Toaster/ToastProvider.d.ts",
|
|
164
|
+
"import": "./dist/components/Toaster/ToastProvider.js"
|
|
165
|
+
},
|
|
166
|
+
"./Tooltip": {
|
|
167
|
+
"types": "./dist/components/Tooltip/Tooltip.d.ts",
|
|
168
|
+
"import": "./dist/components/Tooltip/Tooltip.js"
|
|
169
|
+
},
|
|
170
|
+
"./useDevice": {
|
|
171
|
+
"types": "./dist/hooks/useDevice.d.ts",
|
|
172
|
+
"import": "./dist/hooks/useDevice.js"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"files": [
|
|
176
|
+
"dist",
|
|
177
|
+
"README.md",
|
|
178
|
+
"src/styles"
|
|
179
|
+
],
|
|
180
|
+
"keywords": [
|
|
181
|
+
"react",
|
|
182
|
+
"design-system",
|
|
183
|
+
"components",
|
|
184
|
+
"tailwind",
|
|
185
|
+
"framer-motion",
|
|
186
|
+
"typescript",
|
|
187
|
+
"ui-kit"
|
|
188
|
+
],
|
|
189
|
+
"author": "Mat && TM",
|
|
190
|
+
"license": "MIT",
|
|
191
|
+
"repository": {
|
|
192
|
+
"type": "git",
|
|
193
|
+
"url": "https://github.com/your-username/prometeo-design-system.git"
|
|
194
|
+
},
|
|
195
|
+
"homepage": "https://github.com/your-username/prometeo-design-system#readme",
|
|
196
|
+
"bugs": {
|
|
197
|
+
"url": "https://github.com/your-username/prometeo-design-system/issues"
|
|
198
|
+
},
|
|
199
|
+
"scripts": {
|
|
200
|
+
"dev": "vite",
|
|
201
|
+
"build": "node scripts/migrate-utilities.js && tsc -p tsconfig.build.json && vite build",
|
|
202
|
+
"build:mf": "node scripts/migrate-utilities.js && tsc -p tsconfig.build.json && vite build --config vite.mf.config.ts",
|
|
203
|
+
"preview:mf": "vite preview --config vite.mf.config.ts --port 5001",
|
|
204
|
+
"lint": "eslint .",
|
|
205
|
+
"dev:preview": "vite --config vite.preview.config.ts",
|
|
206
|
+
"build:preview": "vite build --config vite.preview.config.ts",
|
|
207
|
+
"preview": "vite preview --config vite.preview.config.ts --port 4173",
|
|
208
|
+
"clean": "rm -rf dist",
|
|
209
|
+
"storybook": "storybook dev -p 6006",
|
|
210
|
+
"build-storybook": "tsc -p tsconfig.storybook.json && storybook build",
|
|
211
|
+
"migrate:utilities": "node scripts/migrate-utilities.js"
|
|
212
|
+
},
|
|
213
|
+
"devDependencies": {
|
|
214
|
+
"@biomejs/biome": "2.2.7",
|
|
215
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
216
|
+
"@eslint/js": "^9.33.0",
|
|
217
|
+
"@gsap/react": "^2.1.2",
|
|
218
|
+
"@originjs/vite-plugin-federation": "^1.4.1",
|
|
219
|
+
"@storybook/addon-docs": "^9.1.3",
|
|
220
|
+
"@storybook/addon-onboarding": "^9.1.3",
|
|
221
|
+
"@storybook/react-vite": "^9.1.3",
|
|
222
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
223
|
+
"@tanstack/react-table": "^8.21.3",
|
|
224
|
+
"@types/node": "^24.3.1",
|
|
225
|
+
"@types/react": "^19.1.10",
|
|
226
|
+
"@types/react-dom": "^19.1.7",
|
|
227
|
+
"@vitejs/plugin-react-swc": "^4.0.0",
|
|
228
|
+
"autoprefixer": "^10.4.21",
|
|
229
|
+
"class-variance-authority": "^0.7.1",
|
|
230
|
+
"clsx": "^2.1.1",
|
|
231
|
+
"eslint": "^9.33.0",
|
|
232
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
233
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
234
|
+
"eslint-plugin-storybook": "^9.1.3",
|
|
235
|
+
"framer-motion": "^12.23.22",
|
|
236
|
+
"globals": "^16.3.0",
|
|
237
|
+
"gsap": "^3.13.0",
|
|
238
|
+
"input-otp": "^1.4.2",
|
|
239
|
+
"react": "^19.0.0",
|
|
240
|
+
"react-day-picker": "^9.11.1",
|
|
241
|
+
"react-dom": "^19.0.0",
|
|
242
|
+
"react-dropzone": "^14.3.8",
|
|
243
|
+
"react-router": "^7.9.3",
|
|
244
|
+
"react-router-dom": "^7.9.3",
|
|
245
|
+
"react-spinners": "^0.17.0",
|
|
246
|
+
"sonner": "^2.0.7",
|
|
247
|
+
"storybook": "^9.1.3",
|
|
248
|
+
"tailwind-merge": "^3.3.1",
|
|
249
|
+
"tailwindcss": "^4.1.12",
|
|
250
|
+
"tw-animate-css": "^1.3.7",
|
|
251
|
+
"typescript": "~5.8.3",
|
|
252
|
+
"typescript-eslint": "^8.39.1",
|
|
253
|
+
"unplugin-fonts": "^1.4.0",
|
|
254
|
+
"use-debounce": "^10.0.6",
|
|
255
|
+
"vite": "^7.1.2",
|
|
256
|
+
"vite-plugin-dts": "^4.5.4"
|
|
257
|
+
},
|
|
258
|
+
"peerDependencies": {
|
|
259
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
260
|
+
"@gsap/react": "^2.0.0",
|
|
261
|
+
"clsx": "^2.0.0",
|
|
262
|
+
"tailwindcss": "^4.1.12",
|
|
263
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
264
|
+
"framer-motion": "^12.0.0",
|
|
265
|
+
"gsap": "^3.12.5",
|
|
266
|
+
"react": "^19.0.0",
|
|
267
|
+
"react-dom": "^19.0.0",
|
|
268
|
+
"react-dropzone": "^14.3.8",
|
|
269
|
+
"react-router": "^7.0.0",
|
|
270
|
+
"react-router-dom": "^7.0.0",
|
|
271
|
+
"react-spinners": "^0.17.0",
|
|
272
|
+
"sonner": "^2.0.7",
|
|
273
|
+
"tailwind-merge": "^3.0.0",
|
|
274
|
+
"use-debounce": "^10.0.0"
|
|
275
|
+
},
|
|
276
|
+
"overrides": {
|
|
277
|
+
"ajv": "^8.17.1",
|
|
278
|
+
"ajv-draft-04": {
|
|
279
|
+
"ajv": "^8.17.1"
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|