hrm_ui_lib 2.0.3 → 2.1.1
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/assets/styles/styles.css +525 -0
- package/assets/styles/styles.scss +3 -1
- package/components/Alert/Alert.js +11 -52
- package/components/Alert/consts.js +12 -14
- package/components/Alert/index.js +1 -52
- package/components/Alert/types.js +1 -1
- package/components/Avatar/Avatar.js +21 -117
- package/components/Avatar/AvatarGroup.js +18 -117
- package/components/Avatar/index.js +2 -64
- package/components/Avatar/types.js +1 -1
- package/components/Badge/Badge.js +5 -22
- package/components/Badge/index.js +1 -6
- package/components/Badge/types.js +1 -1
- package/components/Breadcrumb/Breadcrumb.js +6 -23
- package/components/Breadcrumb/index.js +1 -2
- package/components/Breadcrumb/types.js +1 -1
- package/components/Button/Button.js +29 -52
- package/components/Button/consts.js +12 -14
- package/components/Button/index.js +1 -52
- package/components/Button/types.js +1 -1
- package/components/Checkbox/Checkbox.js +45 -52
- package/components/Checkbox/index.js +1 -52
- package/components/Checkbox/types.js +1 -1
- package/components/Chips/Chips.js +23 -65
- package/components/Chips/consts.js +10 -12
- package/components/Chips/index.js +1 -11
- package/components/Chips/types.js +5 -7
- package/components/Collapse/CollapseGroup/CollapseGroup.js +22 -73
- package/components/Collapse/CollapseItem/CollapseItem.js +11 -86
- package/components/Collapse/index.js +2 -16
- package/components/Collapse/types.js +1 -1
- package/components/Container/Container.js +4 -9
- package/components/Container/index.js +1 -2
- package/components/Container/types.js +1 -1
- package/components/Copy/Copy.js +15 -93
- package/components/Copy/index.js +1 -54
- package/components/Copy/types.js +1 -1
- package/components/Counter/Counter.js +54 -134
- package/components/Counter/index.js +1 -61
- package/components/Counter/types.js +1 -1
- package/components/DatePicker/CustomHeader/CustomHeader.js +16 -191
- package/components/DatePicker/CustomHeader/helpers.js +10 -16
- package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +7 -129
- package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +71 -172
- package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +86 -265
- package/components/DatePicker/RangeDatePicker/index.js +1 -124
- package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +8 -128
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +45 -202
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +44 -206
- package/components/DatePicker/SimpleDatePicker/index.js +1 -123
- package/components/DatePicker/TimePicker/MobileModalContent.js +33 -123
- package/components/DatePicker/TimePicker/TimePicker.js +7 -75
- package/components/DatePicker/TimePicker/TimePickerDesktop.js +42 -128
- package/components/DatePicker/TimePicker/TimePickerMobile.js +27 -125
- package/components/DatePicker/TimePicker/consts.js +5 -8
- package/components/DatePicker/TimePicker/helpers.js +9 -19
- package/components/DatePicker/TimePicker/index.js +1 -70
- package/components/DatePicker/hooks.js +33 -2171
- package/components/DatePicker/index.js +3 -134
- package/components/DatePicker/localization.js +43 -6
- package/components/DatePicker/types.js +5 -7
- package/components/Divider/Divider.js +8 -15
- package/components/Divider/index.js +1 -3
- package/components/Divider/types.js +1 -1
- package/components/Empty/Empty.js +9 -83
- package/components/Empty/index.js +1 -54
- package/components/Empty/types.js +1 -1
- package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +67 -52
- package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +21 -52
- package/components/FileUpload/DropzoneFileUpload/FilePreview.js +23 -52
- package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +30 -52
- package/components/FileUpload/DropzoneFileUpload/helpers.js +79 -52
- package/components/FileUpload/DropzoneFileUpload/index.js +1 -52
- package/components/FileUpload/FileUpload.js +69 -192
- package/components/FileUpload/UploadItems.js +22 -101
- package/components/FileUpload/index.js +3 -61
- package/components/FileUpload/types.js +6 -10
- package/components/FormContainer/FormContainer.js +43 -136
- package/components/FormContainer/index.js +1 -55
- package/components/FormContainer/types.js +1 -1
- package/components/FormField/FormField.js +17 -112
- package/components/FormField/index.js +1 -56
- package/components/FormField/types.js +1 -1
- package/components/Heading/Heading.js +5 -27
- package/components/Heading/index.js +1 -5
- package/components/Heading/types.js +1 -1
- package/components/Image/Image.js +12 -32
- package/components/Image/index.js +1 -2
- package/components/Image/types.js +1 -1
- package/components/Input/Input.js +68 -236
- package/components/Input/index.js +1 -58
- package/components/Input/types.js +1 -1
- package/components/Link/Link.js +14 -40
- package/components/Link/index.js +1 -3
- package/components/Link/types.js +1 -1
- package/components/Menu/Menu.js +47 -161
- package/components/Menu/NestedMenu.js +47 -173
- package/components/Menu/index.js +2 -72
- package/components/Menu/types.js +1 -1
- package/components/Modal/Modal.js +70 -52
- package/components/Modal/ModalConfirmation.js +30 -137
- package/components/Modal/ModalContent.js +10 -52
- package/components/Modal/index.js +2 -53
- package/components/Modal/types.js +1 -1
- package/components/More/More.js +19 -85
- package/components/More/index.js +1 -53
- package/components/More/types.js +1 -1
- package/components/Pagination/Pagination.js +15 -56
- package/components/Pagination/consts.js +5 -7
- package/components/Pagination/index.js +1 -10
- package/components/Pagination/types.js +1 -1
- package/components/Popover/Popover.js +41 -52
- package/components/Popover/PopoverDesktop.js +16 -69
- package/components/Popover/PopoverMobile.js +8 -52
- package/components/Popover/index.js +1 -52
- package/components/Popover/types.js +1 -1
- package/components/Progress/Progress.js +21 -56
- package/components/Progress/index.js +1 -2
- package/components/Progress/types.js +1 -1
- package/components/ProgressStep/ProgressStep.js +9 -38
- package/components/ProgressStep/Step.js +51 -98
- package/components/ProgressStep/consts.js +7 -9
- package/components/ProgressStep/index.js +1 -12
- package/components/ProgressStep/types.js +5 -7
- package/components/Radio/Radio.js +19 -56
- package/components/Radio/RadioGroup.js +21 -111
- package/components/Radio/index.js +2 -55
- package/components/Radio/types.js +1 -1
- package/components/SVGIcons/IconAdd.js +7 -28
- package/components/SVGIcons/IconAddCircle.js +7 -31
- package/components/SVGIcons/IconAddCircleFilled.js +7 -31
- package/components/SVGIcons/IconAddFilled.js +7 -28
- package/components/SVGIcons/IconAlert.js +7 -31
- package/components/SVGIcons/IconAlertBadge.js +7 -31
- package/components/SVGIcons/IconAlertBadgeFilled.js +7 -31
- package/components/SVGIcons/IconAlertFilled.js +7 -31
- package/components/SVGIcons/IconAm.js +6 -57
- package/components/SVGIcons/IconAmd.js +7 -28
- package/components/SVGIcons/IconAmdFilled.js +7 -28
- package/components/SVGIcons/IconApple.js +7 -31
- package/components/SVGIcons/IconArrowDown.js +7 -31
- package/components/SVGIcons/IconArrowDownFilled.js +7 -31
- package/components/SVGIcons/IconArrowDownLeft.js +7 -31
- package/components/SVGIcons/IconArrowDownLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowDownload.js +7 -31
- package/components/SVGIcons/IconArrowDownloadFilled.js +7 -31
- package/components/SVGIcons/IconArrowEnter.js +7 -28
- package/components/SVGIcons/IconArrowEnterFilled.js +7 -28
- package/components/SVGIcons/IconArrowExit.js +7 -28
- package/components/SVGIcons/IconArrowExitFilled.js +7 -28
- package/components/SVGIcons/IconArrowExportLeftToRight.js +7 -31
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +7 -31
- package/components/SVGIcons/IconArrowExportRightToLeft.js +7 -31
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowExportUp.js +7 -31
- package/components/SVGIcons/IconArrowExportUpFilled.js +7 -31
- package/components/SVGIcons/IconArrowImport.js +7 -31
- package/components/SVGIcons/IconArrowImportFilled.js +7 -31
- package/components/SVGIcons/IconArrowLeft.js +7 -31
- package/components/SVGIcons/IconArrowLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowRepeatAll.js +7 -31
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +7 -31
- package/components/SVGIcons/IconArrowReset.js +7 -31
- package/components/SVGIcons/IconArrowResetFilled.js +7 -31
- package/components/SVGIcons/IconArrowRight.js +7 -31
- package/components/SVGIcons/IconArrowRightFilled.js +7 -31
- package/components/SVGIcons/IconArrowSort.js +7 -28
- package/components/SVGIcons/IconArrowSortFilled.js +7 -28
- package/components/SVGIcons/IconArrowSync.js +7 -28
- package/components/SVGIcons/IconArrowSyncFilled.js +7 -28
- package/components/SVGIcons/IconArrowUp.js +7 -31
- package/components/SVGIcons/IconArrowUpFilled.js +7 -31
- package/components/SVGIcons/IconArrowUpLeft.js +7 -31
- package/components/SVGIcons/IconArrowUpLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowUpRight.js +7 -31
- package/components/SVGIcons/IconArrowUpRightFilled.js +7 -31
- package/components/SVGIcons/IconAttach.js +7 -31
- package/components/SVGIcons/IconAttachFilled.js +7 -31
- package/components/SVGIcons/IconBeach.js +7 -28
- package/components/SVGIcons/IconBeachFilled.js +7 -28
- package/components/SVGIcons/IconBook.js +7 -31
- package/components/SVGIcons/IconBookFilled.js +7 -31
- package/components/SVGIcons/IconBookmark.js +7 -31
- package/components/SVGIcons/IconBookmarkFilled.js +7 -31
- package/components/SVGIcons/IconBriefcase.js +7 -31
- package/components/SVGIcons/IconBriefcaseFilled.js +7 -31
- package/components/SVGIcons/IconBuilding.js +7 -54
- package/components/SVGIcons/IconBuildingBank.js +7 -28
- package/components/SVGIcons/IconBuildingBankFilled.js +7 -28
- package/components/SVGIcons/IconBuildingFilled.js +7 -31
- package/components/SVGIcons/IconBulletListAdd.js +7 -31
- package/components/SVGIcons/IconBulletListAddFilled.js +7 -31
- package/components/SVGIcons/IconCalculator.js +7 -31
- package/components/SVGIcons/IconCalculatorFilled.js +7 -31
- package/components/SVGIcons/IconCalendarClock.js +7 -28
- package/components/SVGIcons/IconCalendarClockFilled.js +7 -28
- package/components/SVGIcons/IconCalendarDay.js +7 -31
- package/components/SVGIcons/IconCalendarDayFilled.js +7 -31
- package/components/SVGIcons/IconCalendarEmpty.js +7 -28
- package/components/SVGIcons/IconCalendarLeft.js +7 -28
- package/components/SVGIcons/IconCalendarLeftFilled.js +7 -28
- package/components/SVGIcons/IconCalendarRight.js +7 -28
- package/components/SVGIcons/IconCalendarRightFilled.js +7 -28
- package/components/SVGIcons/IconCall.js +7 -31
- package/components/SVGIcons/IconCallFilled.js +7 -31
- package/components/SVGIcons/IconCard.js +7 -28
- package/components/SVGIcons/IconCardFilled.js +7 -28
- package/components/SVGIcons/IconCaretDown.js +7 -28
- package/components/SVGIcons/IconCaretDownFilled.js +7 -28
- package/components/SVGIcons/IconCaretDownRight.js +7 -28
- package/components/SVGIcons/IconCaretDownRightFilled.js +7 -28
- package/components/SVGIcons/IconCaretLeft.js +7 -28
- package/components/SVGIcons/IconCaretLeftFilled.js +7 -28
- package/components/SVGIcons/IconCaretRight.js +7 -28
- package/components/SVGIcons/IconCaretRightFilled.js +7 -28
- package/components/SVGIcons/IconCaretUp.js +7 -28
- package/components/SVGIcons/IconCaretUpFilled.js +7 -28
- package/components/SVGIcons/IconChat.js +7 -28
- package/components/SVGIcons/IconChatFilled.js +7 -28
- package/components/SVGIcons/IconChatMultiple.js +7 -28
- package/components/SVGIcons/IconChatMultipleFilled.js +7 -28
- package/components/SVGIcons/IconCheckboxArrowRight.js +7 -31
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +7 -31
- package/components/SVGIcons/IconCheckmark.js +7 -28
- package/components/SVGIcons/IconCheckmarkCircle.js +7 -28
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +7 -28
- package/components/SVGIcons/IconCheckmarkFilled.js +7 -28
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +8 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +8 -0
- package/components/SVGIcons/IconChevronDown.js +7 -28
- package/components/SVGIcons/IconChevronDownFilled.js +7 -28
- package/components/SVGIcons/IconChevronLeft.js +7 -28
- package/components/SVGIcons/IconChevronLeftFilled.js +7 -28
- package/components/SVGIcons/IconChevronRight.js +7 -28
- package/components/SVGIcons/IconChevronRightFilled.js +7 -28
- package/components/SVGIcons/IconChevronUp.js +7 -28
- package/components/SVGIcons/IconChevronUpDown.js +7 -31
- package/components/SVGIcons/IconChevronUpDownFilled.js +7 -31
- package/components/SVGIcons/IconChevronUpFilled.js +7 -28
- package/components/SVGIcons/IconClipboardDay.js +7 -28
- package/components/SVGIcons/IconClock.js +7 -31
- package/components/SVGIcons/IconClockDismiss.js +7 -28
- package/components/SVGIcons/IconClockDismissFilled.js +7 -28
- package/components/SVGIcons/IconClockFilled.js +7 -31
- package/components/SVGIcons/IconComment.js +7 -31
- package/components/SVGIcons/IconCommentFilled.js +7 -31
- package/components/SVGIcons/IconContractCard.js +7 -28
- package/components/SVGIcons/IconContractCardFilled.js +7 -28
- package/components/SVGIcons/IconCopy.js +7 -28
- package/components/SVGIcons/IconCopyFilled.js +7 -28
- package/components/SVGIcons/IconCubeTree.js +7 -28
- package/components/SVGIcons/IconCubeTreeFilled.js +7 -31
- package/components/SVGIcons/IconDatabase.js +7 -31
- package/components/SVGIcons/IconDatabaseFilled.js +7 -31
- package/components/SVGIcons/IconDelete.js +7 -28
- package/components/SVGIcons/IconDeleteFilled.js +7 -28
- package/components/SVGIcons/IconDeviceMeetingRoom.js +7 -28
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +7 -28
- package/components/SVGIcons/IconDismiss.js +7 -28
- package/components/SVGIcons/IconDismissCircle.js +7 -31
- package/components/SVGIcons/IconDismissCircleFilled.js +7 -31
- package/components/SVGIcons/IconDismissFilled.js +7 -28
- package/components/SVGIcons/IconDocument.js +7 -28
- package/components/SVGIcons/IconDocumentBulletList.js +7 -31
- package/components/SVGIcons/IconDocumentBulletListFilled.js +7 -31
- package/components/SVGIcons/IconDocumentEdit.js +7 -28
- package/components/SVGIcons/IconDocumentEditFilled.js +7 -28
- package/components/SVGIcons/IconDocumentFilled.js +7 -28
- package/components/SVGIcons/IconDocumentPerson.js +7 -28
- package/components/SVGIcons/IconEdit.js +7 -28
- package/components/SVGIcons/IconEditFilled.js +7 -28
- package/components/SVGIcons/IconErrorCircle.js +7 -28
- package/components/SVGIcons/IconErrorCircleFilled.js +7 -28
- package/components/SVGIcons/IconEur.js +7 -28
- package/components/SVGIcons/IconEurFilled.js +7 -28
- package/components/SVGIcons/IconExpandUpLeft.js +7 -31
- package/components/SVGIcons/IconExpandUpLeftFilled.js +7 -31
- package/components/SVGIcons/IconExpandUpRight.js +7 -31
- package/components/SVGIcons/IconExpandUpRightFilled.js +7 -31
- package/components/SVGIcons/IconEyeOff.js +7 -31
- package/components/SVGIcons/IconEyeOffFilled.js +7 -31
- package/components/SVGIcons/IconEyeOn.js +7 -31
- package/components/SVGIcons/IconEyeOnFilled.js +7 -31
- package/components/SVGIcons/IconFacebook.js +7 -38
- package/components/SVGIcons/IconFilter.js +7 -28
- package/components/SVGIcons/IconFilterFilled.js +7 -28
- package/components/SVGIcons/IconFlag.js +7 -31
- package/components/SVGIcons/IconFlagFilled.js +7 -31
- package/components/SVGIcons/IconFolderLink.js +7 -28
- package/components/SVGIcons/IconFolderLinkFilled.js +7 -28
- package/components/SVGIcons/IconFood.js +7 -28
- package/components/SVGIcons/IconFoodFilled.js +7 -28
- package/components/SVGIcons/IconGb.js +6 -71
- package/components/SVGIcons/IconGlobe.js +7 -28
- package/components/SVGIcons/IconGlobeFilled.js +7 -28
- package/components/SVGIcons/IconGoogle.js +7 -40
- package/components/SVGIcons/IconHandOpenHeart.js +7 -31
- package/components/SVGIcons/IconHandOpenHeartFilled.js +7 -31
- package/components/SVGIcons/IconHeart.js +7 -31
- package/components/SVGIcons/IconHeartFilled.js +7 -31
- package/components/SVGIcons/IconHistory.js +7 -31
- package/components/SVGIcons/IconHistoryFilled.js +7 -31
- package/components/SVGIcons/IconHome.js +7 -31
- package/components/SVGIcons/IconHomeFilled.js +7 -31
- package/components/SVGIcons/IconImage.js +7 -31
- package/components/SVGIcons/IconImageFilled.js +7 -31
- package/components/SVGIcons/IconInfo.js +7 -28
- package/components/SVGIcons/IconInfoFilled.js +7 -28
- package/components/SVGIcons/IconInstagram.js +7 -39
- package/components/SVGIcons/IconKeyReset.js +7 -31
- package/components/SVGIcons/IconKeyResetFilled.js +7 -31
- package/components/SVGIcons/IconLink.js +7 -31
- package/components/SVGIcons/IconLinkFilled.js +7 -31
- package/components/SVGIcons/IconLinkedin.js +7 -31
- package/components/SVGIcons/IconList.js +7 -28
- package/components/SVGIcons/IconListFilled.js +7 -31
- package/components/SVGIcons/IconLocation.js +7 -31
- package/components/SVGIcons/IconLocationFilled.js +7 -31
- package/components/SVGIcons/IconLockClosed.js +7 -31
- package/components/SVGIcons/IconLockClosedFilled.js +7 -31
- package/components/SVGIcons/IconLockOpen.js +7 -31
- package/components/SVGIcons/IconLockOpenFilled.js +7 -31
- package/components/SVGIcons/IconMail.js +7 -31
- package/components/SVGIcons/IconMailAdd.js +7 -31
- package/components/SVGIcons/IconMailAddFilled.js +7 -31
- package/components/SVGIcons/IconMailArrowForward.js +7 -31
- package/components/SVGIcons/IconMailArrowForwardFilled.js +7 -31
- package/components/SVGIcons/IconMailFilled.js +7 -31
- package/components/SVGIcons/IconMailLink.js +7 -31
- package/components/SVGIcons/IconMailLinkFilled.js +7 -31
- package/components/SVGIcons/IconMedium.js +7 -31
- package/components/SVGIcons/IconMore.js +7 -31
- package/components/SVGIcons/IconMoreFilled.js +7 -31
- package/components/SVGIcons/IconMoreVertical.js +7 -31
- package/components/SVGIcons/IconMoreVerticalFilled.js +7 -31
- package/components/SVGIcons/IconNavigation.js +7 -31
- package/components/SVGIcons/IconNavigationFilled.js +7 -31
- package/components/SVGIcons/IconNotebook.js +7 -31
- package/components/SVGIcons/IconNotebookAdd.js +7 -47
- package/components/SVGIcons/IconNotebookAddFilled.js +7 -44
- package/components/SVGIcons/IconNotebookFilled.js +7 -31
- package/components/SVGIcons/IconOnlyEmployee.js +7 -28
- package/components/SVGIcons/IconOpen.js +7 -31
- package/components/SVGIcons/IconOpenFilled.js +7 -31
- package/components/SVGIcons/IconPatient.js +7 -28
- package/components/SVGIcons/IconPatientFilled.js +7 -28
- package/components/SVGIcons/IconPeople.js +7 -28
- package/components/SVGIcons/IconPeopleAdd.js +7 -31
- package/components/SVGIcons/IconPeopleAddFilled.js +7 -31
- package/components/SVGIcons/IconPeopleFilled.js +7 -31
- package/components/SVGIcons/IconPercent.js +7 -33
- package/components/SVGIcons/IconPerson.js +7 -31
- package/components/SVGIcons/IconPersonAccount.js +7 -28
- package/components/SVGIcons/IconPersonAccountFilled.js +7 -28
- package/components/SVGIcons/IconPersonAdd.js +7 -31
- package/components/SVGIcons/IconPersonAddFilled.js +7 -31
- package/components/SVGIcons/IconPersonArrowLeft.js +7 -28
- package/components/SVGIcons/IconPersonArrowLeftFilled.js +7 -28
- package/components/SVGIcons/IconPersonArrowRight.js +7 -28
- package/components/SVGIcons/IconPersonArrowRightFilled.js +7 -28
- package/components/SVGIcons/IconPersonBoard.js +7 -28
- package/components/SVGIcons/IconPersonFilled.js +7 -31
- package/components/SVGIcons/IconPersonMinus.js +7 -28
- package/components/SVGIcons/IconPersonStar.js +7 -31
- package/components/SVGIcons/IconPersonStarFilled.js +7 -31
- package/components/SVGIcons/IconPersonSubtract.js +7 -31
- package/components/SVGIcons/IconPersonSubtractFilled.js +7 -31
- package/components/SVGIcons/IconPhone.js +7 -31
- package/components/SVGIcons/IconPhoneFilled.js +7 -31
- package/components/SVGIcons/IconPlugConnected.js +7 -28
- package/components/SVGIcons/IconPos.js +7 -33
- package/components/SVGIcons/IconPosFilled.js +7 -33
- package/components/SVGIcons/IconProhibited.js +7 -31
- package/components/SVGIcons/IconProhibitedFilled.js +7 -31
- package/components/SVGIcons/IconProjectProduct.js +7 -28
- package/components/SVGIcons/IconQuestion.js +7 -31
- package/components/SVGIcons/IconQuestionFilled.js +7 -31
- package/components/SVGIcons/IconRedo.js +7 -31
- package/components/SVGIcons/IconRedoFilled.js +7 -31
- package/components/SVGIcons/IconRu.js +6 -60
- package/components/SVGIcons/IconRub.js +7 -28
- package/components/SVGIcons/IconRubFilled.js +7 -28
- package/components/SVGIcons/IconSave.js +7 -31
- package/components/SVGIcons/IconSaveFilled.js +7 -31
- package/components/SVGIcons/IconSavings.js +7 -31
- package/components/SVGIcons/IconSavingsFilled.js +7 -31
- package/components/SVGIcons/IconSearch.js +7 -31
- package/components/SVGIcons/IconSearchFilled.js +7 -31
- package/components/SVGIcons/IconSelectAllOff.js +7 -31
- package/components/SVGIcons/IconSelectAllOffFilled.js +7 -31
- package/components/SVGIcons/IconSelectAllOn.js +7 -31
- package/components/SVGIcons/IconSelectAllOnFilled.js +7 -31
- package/components/SVGIcons/IconSend.js +7 -31
- package/components/SVGIcons/IconSendFilled.js +7 -31
- package/components/SVGIcons/IconSettings.js +7 -28
- package/components/SVGIcons/IconSettingsFilled.js +7 -31
- package/components/SVGIcons/IconShare.js +7 -31
- package/components/SVGIcons/IconShareAndroid.js +7 -31
- package/components/SVGIcons/IconShareAndroidFilled.js +7 -31
- package/components/SVGIcons/IconShareFilled.js +7 -31
- package/components/SVGIcons/IconSignOut.js +7 -31
- package/components/SVGIcons/IconSignOutFilled.js +7 -31
- package/components/SVGIcons/IconSpinner.js +7 -31
- package/components/SVGIcons/IconSpinnerFilled.js +7 -31
- package/components/SVGIcons/IconStatus.js +7 -31
- package/components/SVGIcons/IconStatusFilled.js +7 -31
- package/components/SVGIcons/IconSubtract.js +7 -31
- package/components/SVGIcons/IconSubtractCircle.js +7 -31
- package/components/SVGIcons/IconSubtractCircleFilled.js +7 -31
- package/components/SVGIcons/IconSubtractFilled.js +7 -31
- package/components/SVGIcons/IconTableCellEdit.js +7 -35
- package/components/SVGIcons/IconTableCellEditFilled.js +7 -41
- package/components/SVGIcons/IconTelegram.js +7 -40
- package/components/SVGIcons/IconTimer.js +7 -31
- package/components/SVGIcons/IconTimerFilled.js +7 -31
- package/components/SVGIcons/IconTwitter.js +7 -31
- package/components/SVGIcons/IconUndo.js +7 -31
- package/components/SVGIcons/IconUndoFilled.js +7 -31
- package/components/SVGIcons/IconUnitsEmployee.js +7 -28
- package/components/SVGIcons/IconUpload.js +7 -28
- package/components/SVGIcons/IconUsd.js +7 -28
- package/components/SVGIcons/IconUsdFilled.js +7 -28
- package/components/SVGIcons/IconUserMinus.js +7 -31
- package/components/SVGIcons/IconVideo.js +7 -28
- package/components/SVGIcons/IconVideoFilled.js +7 -28
- package/components/SVGIcons/IconWallet.js +7 -31
- package/components/SVGIcons/IconWalletFilled.js +7 -31
- package/components/SVGIcons/IconWarning.js +7 -28
- package/components/SVGIcons/IconWarningFilled.js +7 -28
- package/components/SVGIcons/IconYoutube.js +7 -31
- package/components/SVGIcons/index.d.ts +2 -0
- package/components/SVGIcons/index.js +302 -303
- package/components/SVGIcons/types.js +1 -1
- package/components/Select/ButtonSelect/ButtonSelect.js +42 -195
- package/components/Select/FilterSelect/FilterDropdown.js +14 -95
- package/components/Select/FilterSelect/FilterGroupDropdown.js +18 -82
- package/components/Select/FilterSelect/FilterSelect.js +69 -199
- package/components/Select/MultiSelect/DesktopWrapper.js +18 -55
- package/components/Select/MultiSelect/MobileWrapper.js +12 -77
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +60 -211
- package/components/Select/MultiSelect/MultiSelect.js +66 -244
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +94 -264
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +76 -251
- package/components/Select/MultiSelect/OptionsWrapper.js +64 -175
- package/components/Select/NestedSelect/NestedSelect.js +55 -197
- package/components/Select/ProfileDropdown/index.js +12 -82
- package/components/Select/Select/Select.js +85 -254
- package/components/Select/Select/SelectDesktop/index.js +66 -219
- package/components/Select/Select/SelectMobile/MobileTopContent.js +17 -90
- package/components/Select/Select/SelectMobile/index.js +49 -194
- package/components/Select/Select/helpers.js +8 -9
- package/components/Select/SharedComponents/Actions.js +13 -115
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +8 -43
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +27 -130
- package/components/Select/SharedComponents/ContentTop.js +70 -177
- package/components/Select/SharedComponents/Footer.js +10 -97
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +49 -161
- package/components/Select/SharedComponents/Loading.js +5 -16
- package/components/Select/SharedComponents/index.js +6 -92
- package/components/Select/constants.js +7 -9
- package/components/Select/index.js +6 -114
- package/components/Select/localization.js +28 -30
- package/components/Select/types.js +1 -1
- package/components/SideSheet/Footer/Footer.js +13 -99
- package/components/SideSheet/SideSheet.js +55 -208
- package/components/SideSheet/index.js +1 -56
- package/components/SideSheet/types.js +1 -1
- package/components/Snackbar/Snackbar.js +29 -123
- package/components/Snackbar/consts.js +11 -13
- package/components/Snackbar/index.js +1 -54
- package/components/Snackbar/types.js +1 -1
- package/components/Status/Status.js +16 -51
- package/components/Status/index.js +1 -8
- package/components/Status/types.js +1 -1
- package/components/Stepper/Stepper.js +28 -44
- package/components/Stepper/index.js +1 -3
- package/components/Stepper/types.js +1 -1
- package/components/Switcher/Switcher.js +17 -114
- package/components/Switcher/index.js +1 -55
- package/components/Switcher/types.js +1 -1
- package/components/Tab/Tab.js +18 -35
- package/components/Tab/TabItem.js +11 -52
- package/components/Tab/index.js +1 -11
- package/components/Tab/types.js +1 -1
- package/components/Table/Header.js +19 -121
- package/components/Table/IndeterminateCheckbox.js +13 -76
- package/components/Table/Row.js +16 -92
- package/components/Table/Table.js +60 -160
- package/components/Table/index.js +1 -61
- package/components/Table/types.js +1 -1
- package/components/Table/utils.js +17 -76
- package/components/TableV2/AdvancedPagination.d.ts +8 -0
- package/components/TableV2/AdvancedPagination.js +62 -0
- package/components/TableV2/ColumnHeader.d.ts +9 -0
- package/components/TableV2/ColumnHeader.js +32 -0
- package/components/TableV2/ColumnSettings.d.ts +9 -0
- package/components/TableV2/ColumnSettings.js +33 -0
- package/components/TableV2/IndeterminateCheckbox.d.ts +13 -0
- package/components/TableV2/IndeterminateCheckbox.js +16 -0
- package/components/TableV2/Table.d.ts +3 -0
- package/components/TableV2/Table.js +123 -0
- package/components/TableV2/constants/index.d.ts +6 -0
- package/components/TableV2/constants/index.js +27 -0
- package/components/TableV2/hooks/useTableColumnSettings.d.ts +2 -0
- package/components/TableV2/hooks/useTableColumnSettings.js +17 -0
- package/components/TableV2/hooks/useTableControl.d.ts +11 -0
- package/components/TableV2/hooks/useTableControl.js +182 -0
- package/components/TableV2/index.d.ts +3 -0
- package/components/TableV2/index.js +3 -0
- package/components/TableV2/loadTableSettings.d.ts +2 -0
- package/components/TableV2/loadTableSettings.js +9 -0
- package/components/TableV2/types.d.ts +70 -0
- package/components/TableV2/types.js +1 -0
- package/components/Text/Text.js +5 -34
- package/components/Text/index.js +1 -5
- package/components/Text/types.js +1 -1
- package/components/Textarea/Textarea.js +36 -140
- package/components/Textarea/index.js +1 -56
- package/components/Textarea/types.js +1 -1
- package/components/Tooltip/Tooltip.js +49 -99
- package/components/Tooltip/index.js +1 -18
- package/components/Tooltip/types.js +11 -13
- package/consts/index.js +86 -65
- package/context/FormContextProvider.js +4 -10
- package/context/index.js +2 -5
- package/context/types.js +6 -10
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +4 -12
- package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
- package/helperComponents/CodeBlock/CodeBlock.js +4 -178
- package/helperComponents/CodeBlock/index.js +1 -3
- package/helperComponents/ErrorMessage/ErrorMessage.js +7 -26
- package/helperComponents/ErrorMessage/index.js +1 -8
- package/helperComponents/ErrorMessage/types.js +1 -1
- package/helperComponents/GoToWebPage/GoToWebPage.js +5 -66
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +11 -25
- package/helperComponents/IconDynamicComponent/constants.js +10 -31
- package/helperComponents/IconDynamicComponent/index.js +1 -3
- package/helperComponents/Label/Label.js +8 -28
- package/helperComponents/Label/index.js +1 -6
- package/helperComponents/Label/types.js +1 -1
- package/helperComponents/Loader/Loader.js +4 -14
- package/helperComponents/Loader/index.js +1 -2
- package/helperComponents/Loader/types.js +1 -1
- package/helperComponents/OptionItem/OptionItem.js +27 -148
- package/helperComponents/OptionItem/index.js +1 -64
- package/helperComponents/OptionItem/types.js +1 -1
- package/helperComponents/index.js +6 -65
- package/helpers/check-authorization.js +57 -111
- package/helpers/download-file.js +7 -9
- package/helpers/format-date.js +14 -42
- package/helpers/get-module-prefix.js +3 -5
- package/helpers/index.js +7 -59
- package/helpers/isDeepEqual.js +11 -17
- package/helpers/locale.js +10 -15
- package/helpers/storage.js +17 -18
- package/hooks/index.js +12 -21
- package/hooks/useChangePositionsOnScroll.js +28 -32
- package/hooks/useDispatchEventOnScroll.js +8 -13
- package/hooks/useFormContext.js +3 -8
- package/hooks/useFormProps.js +3 -8
- package/hooks/useGetElemPositions.js +14 -16
- package/hooks/useGetElemSizes.js +11 -13
- package/hooks/useGetHasBottomSpace.js +13 -24
- package/hooks/useGetIsMobile.js +33 -45
- package/hooks/useGetTooltipPosition.js +66 -82
- package/hooks/useGetTooltipStyles.js +45 -87
- package/hooks/useHideBodyScroll.js +25 -34
- package/hooks/useHideOnScroll.js +19 -24
- package/hooks/useOnOutsideClick.js +33 -46
- package/hooks/useScreenSize.js +24 -34
- package/index.d.ts +1 -0
- package/index.js +46 -453
- package/package.json +5 -1
- package/type/file-upload.js +6 -8
- package/type/index.js +4 -4
- package/type/locale.js +12 -14
- package/type/notification.js +7 -9
- package/type/status-code.js +7 -9
- package/utils/helpers.js +63 -77
- /package/{Alert-V_kH4Snn.js → Alert-sShHxUYN.js} +0 -0
package/assets/styles/styles.css
CHANGED
|
@@ -7971,6 +7971,531 @@ body {
|
|
|
7971
7971
|
margin-left: var(--ds-size-16);
|
|
7972
7972
|
}
|
|
7973
7973
|
|
|
7974
|
+
.advanced-table {
|
|
7975
|
+
--ds-table-th-height:var(--ds-size-56);
|
|
7976
|
+
--ds-table-td-height:var(--ds-size-56);
|
|
7977
|
+
--ds-table-th-padding:var(--ds-space-8) var(--ds-space-16);
|
|
7978
|
+
--ds-table-td-padding:var(--ds-space-8) var(--ds-space-16);
|
|
7979
|
+
--ds-table-th-border-color:var(--ds-color-border-quintary);
|
|
7980
|
+
--ds-table-td-border-color:var(--ds-color-border-quintary);
|
|
7981
|
+
--ds-table-td-bg-hover:var(--ds-color-bg-container-lighter);
|
|
7982
|
+
--ds-table-td-bg-selected:var(--grey-40);
|
|
7983
|
+
-webkit-box-direction: normal;
|
|
7984
|
+
-webkit-box-orient: vertical;
|
|
7985
|
+
-moz-box-direction: normal;
|
|
7986
|
+
-moz-box-orient: vertical;
|
|
7987
|
+
border-radius: var(--ds-border-radius-2xl);
|
|
7988
|
+
-webkit-flex-direction: column;
|
|
7989
|
+
-ms-flex-direction: column;
|
|
7990
|
+
flex-direction: column;
|
|
7991
|
+
font-size: var(--font-size-14);
|
|
7992
|
+
height: 100%;
|
|
7993
|
+
position: relative;
|
|
7994
|
+
}
|
|
7995
|
+
|
|
7996
|
+
.advanced-table, .advanced-table__header-wrapper {
|
|
7997
|
+
display: -webkit-box;
|
|
7998
|
+
display: -moz-box;
|
|
7999
|
+
display: -ms-flexbox;
|
|
8000
|
+
display: -webkit-flex;
|
|
8001
|
+
display: flex;
|
|
8002
|
+
}
|
|
8003
|
+
|
|
8004
|
+
.advanced-table__header-wrapper {
|
|
8005
|
+
-webkit-box-align: center;
|
|
8006
|
+
-moz-box-align: center;
|
|
8007
|
+
-ms-flex-align: center;
|
|
8008
|
+
-webkit-align-items: center;
|
|
8009
|
+
align-items: center;
|
|
8010
|
+
background-color: var(--ds-color-bg-white);
|
|
8011
|
+
border-bottom: 1px solid var(--ds-color-border-quintary);
|
|
8012
|
+
border-top-left-radius: var(--ds-border-radius-2xl);
|
|
8013
|
+
border-top-right-radius: var(--ds-border-radius-2xl);
|
|
8014
|
+
height: var(--ds-size-72);
|
|
8015
|
+
padding: 0 var(--ds-space-24);
|
|
8016
|
+
z-index: 3;
|
|
8017
|
+
}
|
|
8018
|
+
|
|
8019
|
+
.advanced-table__collapse-button {
|
|
8020
|
+
margin-right: var(--ds-space-16);
|
|
8021
|
+
}
|
|
8022
|
+
|
|
8023
|
+
.advanced-table__header {
|
|
8024
|
+
-ms-flex-align: center;
|
|
8025
|
+
flex: 1;
|
|
8026
|
+
}
|
|
8027
|
+
|
|
8028
|
+
.advanced-table__footer, .advanced-table__header {
|
|
8029
|
+
-webkit-box-align: center;
|
|
8030
|
+
-moz-box-align: center;
|
|
8031
|
+
-webkit-align-items: center;
|
|
8032
|
+
align-items: center;
|
|
8033
|
+
display: -webkit-box;
|
|
8034
|
+
display: -moz-box;
|
|
8035
|
+
display: -ms-flexbox;
|
|
8036
|
+
display: -webkit-flex;
|
|
8037
|
+
display: flex;
|
|
8038
|
+
}
|
|
8039
|
+
|
|
8040
|
+
.advanced-table__footer {
|
|
8041
|
+
-ms-flex-align: center;
|
|
8042
|
+
background-color: var(--ds-color-bg-white);
|
|
8043
|
+
border-bottom-left-radius: var(--ds-border-radius-2xl);
|
|
8044
|
+
border-bottom-right-radius: var(--ds-border-radius-2xl);
|
|
8045
|
+
border-top: 1px solid var(--ds-color-border-quintary);
|
|
8046
|
+
height: var(--ds-size-64);
|
|
8047
|
+
padding: 0 var(--ds-space-24);
|
|
8048
|
+
z-index: 1;
|
|
8049
|
+
}
|
|
8050
|
+
|
|
8051
|
+
.advanced-table__inner {
|
|
8052
|
+
height: calc(100% - var(--ds-size-72) - var(--ds-size-64));
|
|
8053
|
+
overflow-x: auto;
|
|
8054
|
+
transition: height 0.3s ease-in-out;
|
|
8055
|
+
}
|
|
8056
|
+
|
|
8057
|
+
.advanced-table__inner.is-collapsed {
|
|
8058
|
+
height: 0;
|
|
8059
|
+
overflow: hidden;
|
|
8060
|
+
}
|
|
8061
|
+
|
|
8062
|
+
.advanced-table__thead {
|
|
8063
|
+
background: var(--ds-color-bg-white);
|
|
8064
|
+
position: sticky;
|
|
8065
|
+
top: 0;
|
|
8066
|
+
z-index: 2;
|
|
8067
|
+
}
|
|
8068
|
+
|
|
8069
|
+
.advanced-table .draggable-col {
|
|
8070
|
+
background-color: var(--ds-color-bg-white);
|
|
8071
|
+
border-radius: var(--ds-border-radius-md);
|
|
8072
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
|
8073
|
+
text-align: left;
|
|
8074
|
+
}
|
|
8075
|
+
|
|
8076
|
+
.advanced-table .resize-icon {
|
|
8077
|
+
cursor: col-resize;
|
|
8078
|
+
height: 100%;
|
|
8079
|
+
position: absolute;
|
|
8080
|
+
right: 0;
|
|
8081
|
+
top: 0;
|
|
8082
|
+
width: 20px;
|
|
8083
|
+
}
|
|
8084
|
+
|
|
8085
|
+
.advanced-table .border {
|
|
8086
|
+
border-width: 1px;
|
|
8087
|
+
}
|
|
8088
|
+
|
|
8089
|
+
.advanced-table .w-fit {
|
|
8090
|
+
width: fit-content;
|
|
8091
|
+
}
|
|
8092
|
+
|
|
8093
|
+
.advanced-table .select-none {
|
|
8094
|
+
user-select: none;
|
|
8095
|
+
}
|
|
8096
|
+
|
|
8097
|
+
.advanced-table .touch-none {
|
|
8098
|
+
touch-action: none;
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
.advanced-table .hidden {
|
|
8102
|
+
display: none;
|
|
8103
|
+
}
|
|
8104
|
+
|
|
8105
|
+
.advanced-table .z-10 {
|
|
8106
|
+
z-index: 10;
|
|
8107
|
+
}
|
|
8108
|
+
|
|
8109
|
+
.advanced-table .column-menu {
|
|
8110
|
+
width: 140px;
|
|
8111
|
+
}
|
|
8112
|
+
|
|
8113
|
+
.advanced-table .column-menu div {
|
|
8114
|
+
padding: 5px 12px;
|
|
8115
|
+
}
|
|
8116
|
+
|
|
8117
|
+
.advanced-table .column-menu input {
|
|
8118
|
+
margin-right: 8px;
|
|
8119
|
+
}
|
|
8120
|
+
|
|
8121
|
+
.advanced-table table {
|
|
8122
|
+
border-collapse: separate;
|
|
8123
|
+
border-spacing: 0;
|
|
8124
|
+
max-height: 100%;
|
|
8125
|
+
width: 100%;
|
|
8126
|
+
}
|
|
8127
|
+
|
|
8128
|
+
.advanced-table table thead tr th {
|
|
8129
|
+
border-bottom: 1px solid var(--ds-table-th-border-color);
|
|
8130
|
+
height: var(--ds-table-th-height);
|
|
8131
|
+
padding: var(--ds-table-th-padding);
|
|
8132
|
+
vertical-align: middle;
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8135
|
+
.advanced-table table thead tr th.with-checkbox {
|
|
8136
|
+
max-width: var(--ds-space-48);
|
|
8137
|
+
min-width: auto !important;
|
|
8138
|
+
padding: var(--ds-space-8) var(--ds-space-6) var(--ds-space-8) 22px;
|
|
8139
|
+
width: var(--ds-space-48) !important;
|
|
8140
|
+
}
|
|
8141
|
+
|
|
8142
|
+
.advanced-table table thead tr th.actions-header .resize-icon, .advanced-table table thead tr th.with-checkbox .resize-icon {
|
|
8143
|
+
display: none;
|
|
8144
|
+
}
|
|
8145
|
+
|
|
8146
|
+
.advanced-table table tbody tr td {
|
|
8147
|
+
border-bottom: 1px solid var(--ds-table-td-border-color);
|
|
8148
|
+
height: var(--ds-table-td-height);
|
|
8149
|
+
padding: var(--ds-table-td-padding);
|
|
8150
|
+
vertical-align: middle;
|
|
8151
|
+
}
|
|
8152
|
+
|
|
8153
|
+
.advanced-table table tbody tr td.with-checkbox {
|
|
8154
|
+
max-width: var(--ds-space-48);
|
|
8155
|
+
min-width: auto !important;
|
|
8156
|
+
padding: var(--ds-space-8) var(--ds-space-6) var(--ds-space-8) 22px;
|
|
8157
|
+
width: var(--ds-space-48) !important;
|
|
8158
|
+
}
|
|
8159
|
+
|
|
8160
|
+
.advanced-table table tbody tr td.with-checkbox .actions-list__checkbox {
|
|
8161
|
+
display: none;
|
|
8162
|
+
}
|
|
8163
|
+
|
|
8164
|
+
.advanced-table table tbody tr td.with-checkbox .actions-list__checkbox.active-checkbox {
|
|
8165
|
+
display: -webkit-box;
|
|
8166
|
+
display: -moz-box;
|
|
8167
|
+
display: -ms-flexbox;
|
|
8168
|
+
display: -webkit-flex;
|
|
8169
|
+
display: flex;
|
|
8170
|
+
}
|
|
8171
|
+
|
|
8172
|
+
.advanced-table table tbody tr td:not(.with-checkbox, .action-column) {
|
|
8173
|
+
box-sizing: border-box;
|
|
8174
|
+
padding: var(--ds-space-8) var(--ds-space-16) !important;
|
|
8175
|
+
}
|
|
8176
|
+
|
|
8177
|
+
.advanced-table table tbody tr .action-column {
|
|
8178
|
+
-webkit-box-align: center;
|
|
8179
|
+
-moz-box-align: center;
|
|
8180
|
+
-ms-flex-align: center;
|
|
8181
|
+
-webkit-align-items: center;
|
|
8182
|
+
align-items: center;
|
|
8183
|
+
display: -webkit-box;
|
|
8184
|
+
display: -moz-box;
|
|
8185
|
+
display: -ms-flexbox;
|
|
8186
|
+
display: -webkit-flex;
|
|
8187
|
+
display: flex;
|
|
8188
|
+
min-width: auto !important;
|
|
8189
|
+
padding: var(--ds-space-0);
|
|
8190
|
+
width: 0 !important;
|
|
8191
|
+
}
|
|
8192
|
+
|
|
8193
|
+
.advanced-table table tbody tr:hover td {
|
|
8194
|
+
background-color: var(--ds-table-td-bg-hover);
|
|
8195
|
+
cursor: pointer;
|
|
8196
|
+
}
|
|
8197
|
+
|
|
8198
|
+
.advanced-table table tbody tr:hover .action-column, .advanced-table table tbody tr:hover td .actions-list__checkbox, .advanced-table table tbody tr:hover td .actions-list__right {
|
|
8199
|
+
display: -webkit-box;
|
|
8200
|
+
display: -moz-box;
|
|
8201
|
+
display: -ms-flexbox;
|
|
8202
|
+
display: -webkit-flex;
|
|
8203
|
+
display: flex;
|
|
8204
|
+
}
|
|
8205
|
+
|
|
8206
|
+
.advanced-table table tbody tr:hover .action-column {
|
|
8207
|
+
-webkit-box-align: center;
|
|
8208
|
+
-moz-box-align: center;
|
|
8209
|
+
-ms-flex-align: center;
|
|
8210
|
+
-webkit-align-items: center;
|
|
8211
|
+
align-items: center;
|
|
8212
|
+
padding: var(--ds-space-0);
|
|
8213
|
+
}
|
|
8214
|
+
|
|
8215
|
+
.advanced-table table tbody tr:hover .pinned-cell {
|
|
8216
|
+
background-color: var(--ds-table-td-bg-hover) !important;
|
|
8217
|
+
}
|
|
8218
|
+
|
|
8219
|
+
.advanced-table table tbody tr.selected td, .advanced-table table tbody tr.selected + .advanced-table__expanded-row td {
|
|
8220
|
+
background-color: var(--ds-table-td-bg-selected);
|
|
8221
|
+
}
|
|
8222
|
+
|
|
8223
|
+
.advanced-table table tbody tr.selected .pinned-cell {
|
|
8224
|
+
background-color: var(--ds-table-td-bg-hover) !important;
|
|
8225
|
+
}
|
|
8226
|
+
|
|
8227
|
+
.advanced-table table tbody tr:last-child td {
|
|
8228
|
+
border-bottom: 0;
|
|
8229
|
+
}
|
|
8230
|
+
|
|
8231
|
+
.advanced-table__pagination {
|
|
8232
|
+
-webkit-box-pack: justify;
|
|
8233
|
+
-moz-box-pack: justify;
|
|
8234
|
+
-ms-flex-pack: justify;
|
|
8235
|
+
height: 100%;
|
|
8236
|
+
-webkit-justify-content: space-between;
|
|
8237
|
+
justify-content: space-between;
|
|
8238
|
+
width: 100%;
|
|
8239
|
+
}
|
|
8240
|
+
|
|
8241
|
+
.advanced-table__pagination, .advanced-table__pagination__right {
|
|
8242
|
+
-webkit-box-align: center;
|
|
8243
|
+
-moz-box-align: center;
|
|
8244
|
+
-ms-flex-align: center;
|
|
8245
|
+
-webkit-align-items: center;
|
|
8246
|
+
align-items: center;
|
|
8247
|
+
display: -webkit-box;
|
|
8248
|
+
display: -moz-box;
|
|
8249
|
+
display: -ms-flexbox;
|
|
8250
|
+
display: -webkit-flex;
|
|
8251
|
+
display: flex;
|
|
8252
|
+
}
|
|
8253
|
+
|
|
8254
|
+
.advanced-table__pagination__right {
|
|
8255
|
+
gap: var(--ds-space-24);
|
|
8256
|
+
}
|
|
8257
|
+
|
|
8258
|
+
.advanced-table__pagination__right__input {
|
|
8259
|
+
width: var(--ds-size-48);
|
|
8260
|
+
}
|
|
8261
|
+
|
|
8262
|
+
.advanced-table__pagination__right__input input {
|
|
8263
|
+
text-align: center;
|
|
8264
|
+
}
|
|
8265
|
+
|
|
8266
|
+
.advanced-table__pagination .select {
|
|
8267
|
+
width: 140px;
|
|
8268
|
+
}
|
|
8269
|
+
|
|
8270
|
+
.advanced-table__pagination .select.no-border input {
|
|
8271
|
+
border: 0;
|
|
8272
|
+
}
|
|
8273
|
+
|
|
8274
|
+
.advanced-table__expand-button {
|
|
8275
|
+
flex-shrink: 0;
|
|
8276
|
+
height: var(--ds-size-32);
|
|
8277
|
+
min-width: auto;
|
|
8278
|
+
padding: var(--ds-space-4);
|
|
8279
|
+
width: var(--ds-size-32);
|
|
8280
|
+
}
|
|
8281
|
+
|
|
8282
|
+
.advanced-table__expanded-row td {
|
|
8283
|
+
background-color: inherit;
|
|
8284
|
+
border-bottom: 1px solid var(--ds-table-td-border-color);
|
|
8285
|
+
height: var(--ds-table-td-height);
|
|
8286
|
+
padding: var(--ds-table-td-padding) !important;
|
|
8287
|
+
transition: background-color 0.2s ease;
|
|
8288
|
+
vertical-align: middle;
|
|
8289
|
+
}
|
|
8290
|
+
|
|
8291
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content {
|
|
8292
|
+
background-color: transparent;
|
|
8293
|
+
padding: 0;
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table {
|
|
8297
|
+
border-collapse: separate;
|
|
8298
|
+
border-spacing: 0;
|
|
8299
|
+
width: 100%;
|
|
8300
|
+
}
|
|
8301
|
+
|
|
8302
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td {
|
|
8303
|
+
background-color: transparent;
|
|
8304
|
+
border-bottom: none;
|
|
8305
|
+
height: var(--ds-table-td-height);
|
|
8306
|
+
padding: var(--ds-table-td-padding);
|
|
8307
|
+
vertical-align: middle;
|
|
8308
|
+
}
|
|
8309
|
+
|
|
8310
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.with-checkbox {
|
|
8311
|
+
background-color: inherit;
|
|
8312
|
+
max-width: var(--ds-space-48);
|
|
8313
|
+
min-width: auto !important;
|
|
8314
|
+
padding: var(--ds-space-8) var(--ds-space-40) var(--ds-space-8) 55px !important;
|
|
8315
|
+
width: var(--ds-space-48) !important;
|
|
8316
|
+
}
|
|
8317
|
+
|
|
8318
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.with-checkbox .actions-list__checkbox {
|
|
8319
|
+
display: flex !important;
|
|
8320
|
+
}
|
|
8321
|
+
|
|
8322
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.with-checkbox .indeterminate-checkbox {
|
|
8323
|
+
margin: 0;
|
|
8324
|
+
}
|
|
8325
|
+
|
|
8326
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.pinned-cell {
|
|
8327
|
+
background-color: inherit;
|
|
8328
|
+
position: sticky;
|
|
8329
|
+
z-index: 1;
|
|
8330
|
+
}
|
|
8331
|
+
|
|
8332
|
+
.advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.expand-column {
|
|
8333
|
+
box-sizing: border-box !important;
|
|
8334
|
+
overflow: hidden !important;
|
|
8335
|
+
white-space: nowrap !important;
|
|
8336
|
+
}
|
|
8337
|
+
|
|
8338
|
+
.advanced-table__expanded-row:hover td, .advanced-table__expanded-row:hover td .advanced-table__expanded-content table tbody tr td, .advanced-table__expanded-row:hover td .advanced-table__expanded-content table tbody tr td.with-checkbox {
|
|
8339
|
+
background-color: var(--ds-table-td-bg-hover);
|
|
8340
|
+
}
|
|
8341
|
+
|
|
8342
|
+
tr.selected .advanced-table__expanded-row td, tr.selected .advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td, tr.selected .advanced-table__expanded-row td .advanced-table__expanded-content table tbody tr td.with-checkbox {
|
|
8343
|
+
background-color: var(--ds-table-td-bg-selected);
|
|
8344
|
+
}
|
|
8345
|
+
|
|
8346
|
+
.advanced-table .expand-column {
|
|
8347
|
+
box-sizing: border-box !important;
|
|
8348
|
+
flex: 0 0 50px !important;
|
|
8349
|
+
overflow: hidden !important;
|
|
8350
|
+
padding: var(--ds-space-8) var(--ds-space-6) !important;
|
|
8351
|
+
white-space: nowrap !important;
|
|
8352
|
+
}
|
|
8353
|
+
|
|
8354
|
+
.with-border {
|
|
8355
|
+
border: 1px solid var(--ds-color-border-quintary);
|
|
8356
|
+
}
|
|
8357
|
+
|
|
8358
|
+
.actions-list {
|
|
8359
|
+
display: -webkit-box;
|
|
8360
|
+
display: -moz-box;
|
|
8361
|
+
display: -ms-flexbox;
|
|
8362
|
+
display: -webkit-flex;
|
|
8363
|
+
display: flex;
|
|
8364
|
+
height: 100%;
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8367
|
+
.actions-list, .actions-list__right {
|
|
8368
|
+
-webkit-box-align: center;
|
|
8369
|
+
-moz-box-align: center;
|
|
8370
|
+
-ms-flex-align: center;
|
|
8371
|
+
-webkit-align-items: center;
|
|
8372
|
+
align-items: center;
|
|
8373
|
+
}
|
|
8374
|
+
|
|
8375
|
+
.actions-list__right {
|
|
8376
|
+
background-color: var(--ds-color-bg-container-lighter);
|
|
8377
|
+
bottom: 0;
|
|
8378
|
+
display: none;
|
|
8379
|
+
gap: var(--ds-space-8);
|
|
8380
|
+
left: unset;
|
|
8381
|
+
padding: var(--ds-space-2) var(--ds-space-16);
|
|
8382
|
+
position: absolute;
|
|
8383
|
+
right: 0;
|
|
8384
|
+
top: 0;
|
|
8385
|
+
}
|
|
8386
|
+
|
|
8387
|
+
.actions-list__right:before {
|
|
8388
|
+
background: linear-gradient(90deg, hsla(0, 0%, 97%, 0), #f8f8f8 92.6%);
|
|
8389
|
+
content: "";
|
|
8390
|
+
height: 100%;
|
|
8391
|
+
left: -24px;
|
|
8392
|
+
position: absolute;
|
|
8393
|
+
width: 24px;
|
|
8394
|
+
}
|
|
8395
|
+
|
|
8396
|
+
.settings-menu {
|
|
8397
|
+
border-radius: var(--ds-border-radius-lg);
|
|
8398
|
+
box-shadow: var(--shadow-2);
|
|
8399
|
+
width: 260px;
|
|
8400
|
+
}
|
|
8401
|
+
|
|
8402
|
+
.settings-menu__dropdown {
|
|
8403
|
+
padding: var(--ds-space-6) 0;
|
|
8404
|
+
}
|
|
8405
|
+
|
|
8406
|
+
.settings-menu__dropdown .relative {
|
|
8407
|
+
position: relative;
|
|
8408
|
+
}
|
|
8409
|
+
|
|
8410
|
+
.settings-menu__dropdown .sticky {
|
|
8411
|
+
background: #fff;
|
|
8412
|
+
border-bottom: 1px solid var(--ds-color-border-tertiary) !important;
|
|
8413
|
+
padding: 0 var(--ds-space-16);
|
|
8414
|
+
position: sticky;
|
|
8415
|
+
top: 0;
|
|
8416
|
+
z-index: 1;
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8419
|
+
.settings-menu__dropdown .scrollbar--content {
|
|
8420
|
+
box-sizing: border-box;
|
|
8421
|
+
max-height: 300px;
|
|
8422
|
+
overflow-y: auto;
|
|
8423
|
+
padding: 0 var(--ds-space-16);
|
|
8424
|
+
}
|
|
8425
|
+
|
|
8426
|
+
.settings-menu__dropdown .scrollbar--content::-webkit-scrollbar {
|
|
8427
|
+
display: none;
|
|
8428
|
+
}
|
|
8429
|
+
|
|
8430
|
+
.settings-menu__dropdown__option {
|
|
8431
|
+
border-bottom: 1px solid var(--ds-color-border-tertiary);
|
|
8432
|
+
margin-bottom: var(--ds-space-4);
|
|
8433
|
+
}
|
|
8434
|
+
|
|
8435
|
+
.settings-menu__dropdown__option:last-child {
|
|
8436
|
+
border-bottom: 0;
|
|
8437
|
+
margin-bottom: 0;
|
|
8438
|
+
}
|
|
8439
|
+
|
|
8440
|
+
.settings-menu__dropdown__option .switcher {
|
|
8441
|
+
-webkit-box-align: center;
|
|
8442
|
+
-moz-box-align: center;
|
|
8443
|
+
-ms-flex-align: center;
|
|
8444
|
+
-webkit-align-items: center;
|
|
8445
|
+
align-items: center;
|
|
8446
|
+
height: 36px;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
.settings-menu__dropdown__option .switcher__label {
|
|
8450
|
+
font-size: var(--font-size-12);
|
|
8451
|
+
font-weight: var(--font-weight-400);
|
|
8452
|
+
text-transform: capitalize;
|
|
8453
|
+
}
|
|
8454
|
+
|
|
8455
|
+
@keyframes react-loading-skeleton {
|
|
8456
|
+
to {
|
|
8457
|
+
transform: translateX(100%);
|
|
8458
|
+
}
|
|
8459
|
+
}
|
|
8460
|
+
.react-loading-skeleton {
|
|
8461
|
+
--base-color:#ebebeb;
|
|
8462
|
+
--highlight-color:#f5f5f5;
|
|
8463
|
+
--animation-duration:1.5s;
|
|
8464
|
+
--animation-direction:normal;
|
|
8465
|
+
--pseudo-element-display:block;
|
|
8466
|
+
background-color: var(--base-color);
|
|
8467
|
+
border-radius: 0.25rem;
|
|
8468
|
+
display: inline-flex;
|
|
8469
|
+
line-height: 1;
|
|
8470
|
+
overflow: hidden;
|
|
8471
|
+
position: relative;
|
|
8472
|
+
user-select: none;
|
|
8473
|
+
width: 100%;
|
|
8474
|
+
}
|
|
8475
|
+
|
|
8476
|
+
.react-loading-skeleton:after {
|
|
8477
|
+
animation-direction: var(--animation-direction);
|
|
8478
|
+
animation-duration: var(--animation-duration);
|
|
8479
|
+
animation-iteration-count: infinite;
|
|
8480
|
+
animation-name: react-loading-skeleton;
|
|
8481
|
+
animation-timing-function: ease-in-out;
|
|
8482
|
+
background-image: var(--custom-highlight-background, linear-gradient(90deg, var(--base-color) 0, var(--highlight-color) 50%, var(--base-color) 100%));
|
|
8483
|
+
background-repeat: no-repeat;
|
|
8484
|
+
content: " ";
|
|
8485
|
+
display: var(--pseudo-element-display);
|
|
8486
|
+
height: 100%;
|
|
8487
|
+
left: 0;
|
|
8488
|
+
position: absolute;
|
|
8489
|
+
right: 0;
|
|
8490
|
+
top: 0;
|
|
8491
|
+
transform: translateX(-100%);
|
|
8492
|
+
}
|
|
8493
|
+
|
|
8494
|
+
@media (prefers-reduced-motion) {
|
|
8495
|
+
.react-loading-skeleton {
|
|
8496
|
+
--pseudo-element-display:none;
|
|
8497
|
+
}
|
|
8498
|
+
}
|
|
7974
8499
|
[data-rwp-wrapper] {
|
|
7975
8500
|
align-items: stretch;
|
|
7976
8501
|
display: flex;
|