├── .buckconfig ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ ├── android-build-deploy.yml │ ├── apple_app_store_publish.yml │ ├── apple_testflight_publish.yml │ └── lint.yml ├── .gitignore ├── .node-version ├── .prettierrc ├── .ruby-version ├── .watchmanconfig ├── .yarn └── releases │ └── yarn-1.22.19.cjs ├── .yarnrc ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── android ├── app │ ├── HolidailyProd.keystore.gpg │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── holidayly │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Nunito-Bold.ttf │ │ │ ├── Nunito-ExtraBold.ttf │ │ │ ├── Nunito-Italic-VariableFont_wght.ttf │ │ │ ├── Nunito-Regular.ttf │ │ │ └── Nunito-SemiBold.ttf │ │ ├── java │ │ └── com │ │ │ └── holidayly │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── SoftInputModeModule.java │ │ │ ├── SoftInputModePackage.java │ │ │ ├── SplashActivity.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ ├── background_splash.xml │ │ └── icon.png │ │ ├── ic_launcher-web.png │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_launcher_round.xml │ │ │ └── icon.png │ │ ├── mipmap-ldpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── apple-app-site-association ├── assetlinks.json ├── babel.config.js ├── fastlane ├── .env.example ├── Fastfile ├── Pluginfile ├── README.md └── report.xml ├── i18n.ts ├── index.js ├── ios ├── .xcode.env ├── BridgeHeader.swift ├── Holidayly-Bridging-Header.h ├── Holidayly-tvOS │ └── Info.plist ├── Holidayly-tvOSTests │ └── Info.plist ├── Holidayly.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Holidayly-tvOS.xcscheme │ │ └── Holidayly.xcscheme ├── Holidayly.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Holidayly │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Holidayly.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── appstore.png │ │ ├── Contents.json │ │ └── SplashIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── Vector (1).png │ │ │ ├── Vector (2).png │ │ │ └── Vector.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HolidaylyTests │ ├── HolidaylyTests.m │ └── Info.plist ├── OneSignalNotificationServiceExtension │ ├── Info.plist │ ├── NotificationService.swift │ └── OneSignalNotificationServiceExtension.entitlements ├── Podfile └── Podfile.lock ├── jest-setup.js ├── jest └── util.tsx ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── Main.tsx ├── assets │ ├── Character.svg │ ├── Illustration_error_cone.png │ ├── Illustration_error_sunglasses.png │ ├── Logo.png │ ├── ManLogo.png │ ├── Slider_Illustration-1_2@.png │ ├── Slider_Illustration-2_2@.png │ ├── Slider_Illustration-3_2@.png │ ├── Slider_Illustration-4_2@.png │ ├── Splash_screen.png │ ├── User_Picture_Placeholder.png │ ├── backgroundPlant1.svg │ ├── backgroundPlant2.svg │ ├── circle-bg.svg │ ├── fonts │ │ ├── Nunito-Bold.ttf │ │ ├── Nunito-ExtraBold.ttf │ │ ├── Nunito-Italic-VariableFont_wght.ttf │ │ ├── Nunito-Regular.ttf │ │ └── Nunito-SemiBold.ttf │ └── icons │ │ ├── CheckmarkIcon.tsx │ │ ├── ClockIcon.tsx │ │ ├── MessageIcon.tsx │ │ ├── PalmTreeIcon.tsx │ │ ├── QuestionIcon.tsx │ │ ├── SearchIcon.tsx │ │ ├── SendArrow.svg │ │ ├── addMessage.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrowDown.svg │ │ ├── arrowUp.svg │ │ ├── backArrow.svg │ │ ├── calendar.svg │ │ ├── checkCircle.svg │ │ ├── circle-cross.svg │ │ ├── icon-accept.svg │ │ ├── icon-add.svg │ │ ├── icon-apple.svg │ │ ├── icon-arrow-back-big.svg │ │ ├── icon-arrow-up.svg │ │ ├── icon-attachment-small.svg │ │ ├── icon-avatar-minus.svg │ │ ├── icon-back-white.svg │ │ ├── icon-back.svg │ │ ├── icon-back2.svg │ │ ├── icon-bell.svg │ │ ├── icon-bin.svg │ │ ├── icon-budget.svg │ │ ├── icon-button-tick.svg │ │ ├── icon-calendar.svg │ │ ├── icon-camera.svg │ │ ├── icon-check.svg │ │ ├── icon-circle-cross.svg │ │ ├── icon-close.svg │ │ ├── icon-close2.svg │ │ ├── icon-comment.svg │ │ ├── icon-delete.svg │ │ ├── icon-dots.svg │ │ ├── icon-dots2.svg │ │ ├── icon-edit.svg │ │ ├── icon-edit2.svg │ │ ├── icon-employees.svg │ │ ├── icon-exclamation-mark.svg │ │ ├── icon-feed.svg │ │ ├── icon-file.svg │ │ ├── icon-filter.svg │ │ ├── icon-gallery-2.svg │ │ ├── icon-gallery.svg │ │ ├── icon-geolocation.svg │ │ ├── icon-google.svg │ │ ├── icon-history.svg │ │ ├── icon-home.svg │ │ ├── icon-info.svg │ │ ├── icon-info2.svg │ │ ├── icon-key.svg │ │ ├── icon-log-out.svg │ │ ├── icon-mail.svg │ │ ├── icon-map-location.svg │ │ ├── icon-message-small.svg │ │ ├── icon-message.svg │ │ ├── icon-palm.svg │ │ ├── icon-paperplane-large.svg │ │ ├── icon-paperplane.svg │ │ ├── icon-password-invisible.svg │ │ ├── icon-past-request-clock.svg │ │ ├── icon-pencil.svg │ │ ├── icon-people.svg │ │ ├── icon-pill-small.svg │ │ ├── icon-pill.svg │ │ ├── icon-pin.svg │ │ ├── icon-plane.svg │ │ ├── icon-plus-small.svg │ │ ├── icon-plus.svg │ │ ├── icon-profile-placeholder.svg │ │ ├── icon-profile.svg │ │ ├── icon-reaction.svg │ │ ├── icon-search.svg │ │ ├── icon-settings.svg │ │ ├── icon-shield-check.svg │ │ ├── icon-sick-leave.svg │ │ ├── icon-slack.svg │ │ ├── icon-smartphone.svg │ │ ├── icon-spinner.svg │ │ ├── icon-star.svg │ │ ├── icon-stats.svg │ │ ├── icon-suitcase.svg │ │ ├── icon-swipe-down.svg │ │ ├── icon-swipe-left.svg │ │ ├── icon-swipe-up.svg │ │ ├── icon-togglePassword.svg │ │ ├── icon-trash.svg │ │ ├── icon-vector.svg │ │ ├── info-icon.png │ │ ├── palm.svg │ │ ├── paperclip.svg │ │ ├── paperclipOrange.svg │ │ ├── pill.svg │ │ └── success-icon.png ├── components │ ├── ActionModal.tsx │ ├── AddButton.tsx │ ├── Alert.tsx │ ├── AnimatedBar.tsx │ ├── AnimatedBox.tsx │ ├── Avatar.tsx │ ├── BottomModal.tsx │ ├── CalendarComponents │ │ ├── CalendarDay.tsx │ │ ├── CalendarDayDots.tsx │ │ ├── CalendarDayMain.tsx │ │ ├── CalendarHeader.tsx │ │ ├── CalendarTypes.ts │ │ ├── ExplandableCalendarTheme.ts │ │ ├── NewCalendar.tsx │ │ └── WeekCalendar.tsx │ ├── CalendarList.tsx │ ├── ChangesSavedModal.tsx │ ├── Checkbox.tsx │ ├── Checkmark.tsx │ ├── CheckmarkButton.tsx │ ├── CircleStatusIcon.tsx │ ├── Confetti.tsx │ ├── ConfirmationModal.tsx │ ├── Container.tsx │ ├── CustomButton.tsx │ ├── CustomInput.tsx │ ├── CustomModal.tsx │ ├── DrawerBackArrow.tsx │ ├── DropdownWithRadio.tsx │ ├── EditPictureModal.tsx │ ├── EditPictureModalButtons.tsx │ ├── ExpandableCalendar.tsx │ ├── ExpandingText.tsx │ ├── FormInput.tsx │ ├── Gallery │ │ ├── Gallery.tsx │ │ └── GalleryItem.tsx │ ├── InputButton.tsx │ ├── InputEditIcon.tsx │ ├── InputSearchIcon.tsx │ ├── Loader.tsx │ ├── LoadingModal.tsx │ ├── LocationInfo.tsx │ ├── MaskedInput.tsx │ ├── MessageInput.tsx │ ├── MessageInputModal.tsx │ ├── ModalHandleIndicator.tsx │ ├── ModalHeader.tsx │ ├── OptionsModal.tsx │ ├── ProgressBar.tsx │ ├── ProgressDot.tsx │ ├── RadioInput.tsx │ ├── RecoveryCodeInput.tsx │ ├── RecoveryPasswordBar.tsx │ ├── RequestDetails │ │ ├── Photo.tsx │ │ ├── RequestAttachments.tsx │ │ ├── RequestDetails.tsx │ │ ├── RequestDetailsHeader.tsx │ │ ├── RequestFooter.tsx │ │ └── SeeRequest.tsx │ ├── RequestVacationBar.tsx │ ├── SafeAreaWrapper.tsx │ ├── SkeletonLoader │ │ ├── SkeletonLoader.tsx │ │ └── useSkeletonLoader.ts │ ├── SliderContent.tsx │ ├── Submit.tsx │ ├── SwipeableModal.tsx │ ├── SwipeableModalHeader.tsx │ ├── SwipeableModalRegular.tsx │ ├── TertiaryButton.tsx │ ├── TextLink.tsx │ ├── ToggleButton.tsx │ ├── UploadAttachmentModal.tsx │ ├── dragAndDrop │ │ ├── Config.tsx │ │ ├── Item.tsx │ │ ├── SortableList.test.tsx │ │ └── SortableList.tsx │ ├── notifications │ │ ├── InfoModal.tsx │ │ └── SuccessModal.tsx │ └── tests │ │ └── checkmarkButton.test.tsx ├── contexts │ ├── CalendarContext.tsx │ ├── CalendarProvider.tsx │ ├── CreatePostContext.tsx │ ├── CreatePostProvider.tsx │ ├── ModalProvider.tsx │ ├── RequestsContext.tsx │ ├── RequestsProvider.tsx │ ├── TeamsContext.tsx │ ├── TeamsProvider.tsx │ ├── UserContext.tsx │ ├── UserProvider.tsx │ ├── UserSettingsContext.tsx │ └── UserSettingsProvider.tsx ├── data-access │ ├── API.ts │ ├── QueryKeys.ts │ ├── mutations │ │ ├── useAddPost.ts │ │ ├── useAddReactionsComment.ts │ │ ├── useCreateDayoffRequest.ts │ │ ├── useCreateTempUser.ts │ │ ├── useEditUser.ts │ │ └── useMarkNotificationAsSeen.ts │ ├── queries │ │ ├── useFeedPostsData.ts │ │ ├── useFetchNotifications.ts │ │ ├── useFetchUserData.ts │ │ ├── useFetchUserRequests.ts │ │ ├── useFetchUserStats.ts │ │ └── useOrganizationData.ts │ └── queryClient.ts ├── hooks │ ├── context-hooks │ │ ├── useCalendarContext.tsx │ │ ├── useCreatePostContext.ts │ │ ├── useRequestsContext.ts │ │ ├── useTeamsContext.ts │ │ ├── useUserContext.ts │ │ └── useUserSettingsContext.ts │ ├── memoization │ │ └── useMemoizedNonNullValue.ts │ ├── style-hooks │ │ ├── useCalendarStyles.ts │ │ └── useModalStyles.ts │ ├── useAsyncEffect.ts │ ├── useBackHandler.ts │ ├── useBackgroundEffect.ts │ ├── useBooleanState.ts │ ├── useCombinedRefs.ts │ ├── useDebounce.ts │ ├── useDropdownAnimation.ts │ ├── useGetHolidayRequests.ts │ ├── useInitDemoUserTeams.ts │ ├── useKeyboard.ts │ ├── useLanguage.tsx │ ├── useLocation.ts │ ├── useOneSignal.ts │ ├── usePrevScreenBackHandler.ts │ ├── useSearch.ts │ ├── useSetStatusBarStyle.ts │ ├── useSiriListeners.ts │ ├── useSoftInputMode.ts │ └── useWithConfirmation.tsx ├── mock-api │ ├── factories │ │ ├── genRequestDetails.ts │ │ ├── requestFactory.test.ts │ │ ├── requestFactory.ts │ │ └── userFactory.ts │ ├── models │ │ ├── HttpError.ts │ │ ├── index.ts │ │ ├── miragePostTypes.ts │ │ └── mirageTypes.ts │ ├── routes │ │ ├── dayOffRequest.ts │ │ ├── notifications.ts │ │ ├── organization.ts │ │ ├── post.ts │ │ ├── stats.ts │ │ └── user.ts │ ├── seeds │ │ ├── notificationSources.ts │ │ ├── organizationSeed.ts │ │ └── postsSeed.ts │ ├── server.ts │ └── utils │ │ ├── general.ts │ │ ├── payloadService.ts │ │ └── requireAuth.ts ├── modules │ └── SoftInputMode.ts ├── navigation │ ├── AppStackNavigation.tsx │ ├── AuthStackNavigation.tsx │ ├── BottomNavComponents │ │ ├── NavigationDot.tsx │ │ ├── TabsHandler.tsx │ │ └── TabsUi.tsx │ ├── BottomTabNavigator.tsx │ ├── BudgetNavigation.tsx │ ├── CalendarNavigator.tsx │ ├── CreatePostNavigation.tsx │ ├── DashboardNavigation.tsx │ ├── DrawerComponents │ │ ├── CustomDrawerContent.tsx │ │ ├── DrawerHeader.tsx │ │ ├── DrawerItem.tsx │ │ └── Logout.tsx │ ├── DrawerNavigator.tsx │ ├── Presets │ │ └── StackNavigatorPresets.ts │ ├── ProfileNavigation.tsx │ ├── RequestsNavigation.tsx │ ├── SwipeableScreen.tsx │ ├── index.tsx │ ├── service │ │ ├── swipeableScreenUtils.tsx │ │ └── tabsBorderRadius.ts │ ├── types.ts │ └── universalLinking.ts ├── screens │ ├── about │ │ ├── About.tsx │ │ └── components │ │ │ ├── AboutDescription.tsx │ │ │ ├── AboutHeader.tsx │ │ │ ├── AboutLinks.tsx │ │ │ ├── PrivacyPolicy.tsx │ │ │ └── PrivacyPolicyContent.tsx │ ├── budget │ │ ├── Budget.tsx │ │ ├── PtoPolicy.tsx │ │ └── components │ │ │ ├── Policies.tsx │ │ │ ├── PolicyHeader.tsx │ │ │ ├── PolicySection.tsx │ │ │ └── Section.tsx │ ├── calendar │ │ ├── Calendar.tsx │ │ ├── __tests__ │ │ │ ├── getDaysInMonth.test.ts │ │ │ └── getSlicedDate.test.ts │ │ ├── components │ │ │ ├── CalendarButton.tsx │ │ │ ├── CalendarModal.tsx │ │ │ ├── CategoriesSlider.tsx │ │ │ ├── DateInputs.tsx │ │ │ ├── DayEvent.tsx │ │ │ ├── DayInfo.tsx │ │ │ ├── DayWeekend.tsx │ │ │ ├── EventsList.tsx │ │ │ └── GoUpDownButton.tsx │ │ ├── getMonthsWithoutRequests.ts │ │ ├── useCalendarData.ts │ │ ├── useTeamCategories.ts │ │ └── utils.ts │ ├── createPost │ │ ├── CreatePost.tsx │ │ ├── CreatePostForm │ │ │ ├── CreatePostForm.tsx │ │ │ ├── LocationForm.tsx │ │ │ ├── ModalLocationList.tsx │ │ │ ├── PostFormBody.tsx │ │ │ ├── PostFormFooter │ │ │ │ ├── FooterButton.tsx │ │ │ │ └── PostFormFooter.tsx │ │ │ ├── PostFormHeader.tsx │ │ │ ├── SearchBar.tsx │ │ │ └── usePostFormReducer.ts │ │ └── types.ts │ ├── dashboard │ │ ├── Dashboard.tsx │ │ ├── DashboardTeam.tsx │ │ ├── DashboardTeamMember.tsx │ │ ├── Notifications.tsx │ │ ├── components │ │ │ ├── Carousel.tsx │ │ │ ├── CarouselElement.tsx │ │ │ ├── DashboardHeader.tsx │ │ │ ├── HolidayTag.tsx │ │ │ ├── JoinFirstTeam.tsx │ │ │ ├── MateElement.tsx │ │ │ ├── MateHeader.tsx │ │ │ ├── MateHoliday.tsx │ │ │ ├── MateHolidayDetail.tsx │ │ │ ├── Notification.tsx │ │ │ ├── NotificationContent.tsx │ │ │ ├── NotificationThumbnail.tsx │ │ │ ├── NotificationsBell.tsx │ │ │ ├── NotificationsList.tsx │ │ │ ├── NotificationsSection.tsx │ │ │ ├── OtherMateElement.tsx │ │ │ ├── SortableTeams.tsx │ │ │ ├── SwipeableNotification.tsx │ │ │ ├── TeamElement.tsx │ │ │ ├── TeamHeader.tsx │ │ │ └── TeamSection.tsx │ │ └── helpers │ │ │ ├── notificationNavHandler.tsx │ │ │ └── temporaryData.tsx │ ├── editProfile │ │ ├── EditProfile.tsx │ │ ├── components │ │ │ ├── ProfileColor.tsx │ │ │ ├── ProfileColorExpandableArea.tsx │ │ │ ├── ProfileDetails.tsx │ │ │ ├── ProfilePicture.tsx │ │ │ ├── SubscribeNewTeam.tsx │ │ │ ├── TeamSubscriptions.tsx │ │ │ ├── TeamSubscriptions │ │ │ │ ├── ActiveSubscriptions.tsx │ │ │ │ ├── AddSubsriptionsButton.tsx │ │ │ │ ├── SaveSubscriptions.tsx │ │ │ │ ├── SearchBar.tsx │ │ │ │ ├── SearchHeader.tsx │ │ │ │ ├── SearchResults.tsx │ │ │ │ └── SearchTeams.tsx │ │ │ └── bubblePicker │ │ │ │ ├── AnimatedBubble.tsx │ │ │ │ ├── Bubble.tsx │ │ │ │ ├── BubbleContainer.tsx │ │ │ │ ├── BubbleContainerButtons.tsx │ │ │ │ ├── BubbleContainerHeader.tsx │ │ │ │ ├── BubbleHelper.ts │ │ │ │ ├── Checkmark.tsx │ │ │ │ └── useBubbles.ts │ │ └── helpers │ │ │ └── teamSubscriptionHelper.ts │ ├── employees │ │ └── components │ │ │ ├── EmployeeBox.tsx │ │ │ ├── EmployeeBoxButtons.tsx │ │ │ ├── EmployeeTypes.ts │ │ │ └── FilterBox.tsx │ ├── feed │ │ ├── Feed.tsx │ │ ├── components │ │ │ ├── Bubble │ │ │ │ ├── Bubble.tsx │ │ │ │ ├── MoreLessBubble.tsx │ │ │ │ └── ReactionBubble.tsx │ │ │ ├── Comment │ │ │ │ └── Comment.tsx │ │ │ ├── CommentBox │ │ │ │ ├── CommentBox.tsx │ │ │ │ └── CommentBoxBtn.tsx │ │ │ ├── FeedHeader │ │ │ │ └── FeedHeader.tsx │ │ │ ├── FeedPost │ │ │ │ ├── FeedPost.tsx │ │ │ │ ├── FeedPostBody.tsx │ │ │ │ ├── FeedPostFooter.tsx │ │ │ │ └── FeedPostHeader.tsx │ │ │ ├── FeedPostHeaderInfo │ │ │ │ └── FeedPostHeaderInfo.tsx │ │ │ └── FooterBar │ │ │ │ ├── FooterBar.tsx │ │ │ │ └── FooterBarContent.tsx │ │ └── useFeedModals.ts │ ├── forgotPassword │ │ └── components │ │ │ ├── ForgotPasswordErrorModal.tsx │ │ │ └── PasswordResetErrors.tsx │ ├── gallery │ │ └── GalleryScreen.tsx │ ├── newPassword │ │ └── components │ │ │ ├── PasswordUpdatedModal.tsx │ │ │ └── UpdateModalChildren.tsx │ ├── panel │ │ └── Panel.tsx │ ├── requestVacation │ │ ├── RequestVacation.tsx │ │ ├── components │ │ │ ├── Additionals.tsx │ │ │ ├── BadStateController.tsx │ │ │ ├── CalendarHeader.tsx │ │ │ ├── CalendarRequestVacation.tsx │ │ │ ├── Details.tsx │ │ │ ├── FormRequestVacation.tsx │ │ │ ├── MaxSickDays.tsx │ │ │ ├── NotEnoughPTO.tsx │ │ │ ├── RequestSentModal.tsx │ │ │ ├── RequestVacationHeader.tsx │ │ │ ├── RequestVacationHeaderText.tsx │ │ │ ├── RequestVacationSteps.tsx │ │ │ ├── SelectPeriodModal.tsx │ │ │ ├── SickTime.tsx │ │ │ ├── SubmitButton.tsx │ │ │ ├── SummaryRequestVacation.tsx │ │ │ ├── SummaryRequestVacation │ │ │ │ ├── SicktimeAndMessage.tsx │ │ │ │ └── SummaryRequestVacationHeader.tsx │ │ │ ├── ValidationModal.tsx │ │ │ └── additionals │ │ │ │ ├── AddMore.tsx │ │ │ │ ├── AttachmentIcon.tsx │ │ │ │ ├── Attachments.tsx │ │ │ │ └── Message.tsx │ │ └── contexts │ │ │ └── RequestVacationContext.tsx │ ├── settings │ │ ├── Settings.tsx │ │ ├── components │ │ │ ├── BiometricPasscode.tsx │ │ │ ├── DarkModeSwitch.tsx │ │ │ ├── Language.tsx │ │ │ └── Siri.tsx │ │ └── hooks │ │ │ └── useLangAnimation.ts │ ├── signup │ │ ├── Signup.tsx │ │ └── components │ │ │ ├── SignupButtons.tsx │ │ │ ├── SignupTitleAndLogo.tsx │ │ │ └── SingupLoginBox.tsx │ ├── signupEmail │ │ └── components │ │ │ ├── PendingAccountConfirmationModal.tsx │ │ │ └── SecondRegisterDialogBox.tsx │ ├── slider │ │ └── Slider.tsx │ ├── stats │ │ ├── Stats.tsx │ │ ├── StatsAndRequests.tsx │ │ └── components │ │ │ ├── AdditionalsIcons.tsx │ │ │ ├── HeaderIcon.tsx │ │ │ ├── Request.tsx │ │ │ ├── SectionHeader.tsx │ │ │ └── StatusIcon.tsx │ └── welcome │ │ ├── Welcome.tsx │ │ └── components │ │ ├── AboutModal.tsx │ │ ├── ShowPrivacyPolicyButton.tsx │ │ ├── TeamsModal.tsx │ │ └── WelcomeTopBar.tsx ├── services │ └── analytics.ts ├── types │ ├── ColorPickerTypes.ts │ ├── DayInfoProps.ts │ ├── HolidayRequestMonthType.ts │ ├── confirmationModalProps.ts │ ├── env.d.ts │ ├── globals.d.ts │ ├── index.d.ts │ ├── react-i18n.d.ts │ └── types.d.ts └── utils │ ├── GestureRecognizer.tsx │ ├── checkIfPasswordsMatch.ts │ ├── createAlert.ts │ ├── dates.ts │ ├── dayOffUtils.ts │ ├── deviceSizes.ts │ ├── doesMonthInCalendarHasSixRows.ts │ ├── eventMap.ts │ ├── formatDate.ts │ ├── functions.ts │ ├── genMarkedDates.ts │ ├── generateInputErrors.ts │ ├── generateUUID.ts │ ├── getBottomTabIcon.tsx │ ├── getDrawerIcon.tsx │ ├── getInitialCalendarHeight.ts │ ├── getNextMonthRequests.ts │ ├── getRandomValue.ts │ ├── getUserTeamId.ts │ ├── getUsersWithoutDuplicates.ts │ ├── getWeekendDays.ts │ ├── groupArrayByKey.ts │ ├── groupRequestsToMonths.ts │ ├── layout.ts │ ├── linkWithFallback.ts │ ├── localStorage.ts │ ├── locale.ts │ ├── manipulation.ts │ ├── mergeRequestsArrays.ts │ ├── mocks │ ├── teamsMocks.ts │ └── userMocks.ts │ ├── notifications │ └── notificationsConfig.tsx │ ├── pluralizeWord.ts │ ├── randomFromRange.ts │ ├── regex.ts │ ├── role.ts │ ├── siriShortcuts.ts │ ├── sleep.ts │ ├── sortByDate.ts │ ├── splitName.ts │ ├── tests │ ├── MockGlobalProviders.tsx │ ├── MockedNavigator.tsx │ ├── calendar │ │ ├── EventsList.test.ts │ │ └── holidayRequests.test.ts │ ├── dates.test.ts │ ├── editProfile │ │ └── userData.test.tsx │ ├── function.test.ts │ ├── genMarkedDates.test.ts │ ├── randomFromRange.test.ts │ ├── splitName.test.ts │ └── teamSubscriptionHelper.test.ts │ ├── theme │ ├── colors.ts │ ├── index.ts │ ├── shadows.ts │ ├── textVariants.ts │ └── themeBase.ts │ ├── useGetActiveRouteName.ts │ └── userDetails.ts ├── translations ├── en.json └── pl.json ├── tsconfig.json ├── wdyr.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.buckconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/workflows/android-build-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.github/workflows/android-build-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/apple_app_store_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.github/workflows/apple_app_store_publish.yml -------------------------------------------------------------------------------- /.github/workflows/apple_testflight_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.github/workflows/apple_testflight_publish.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@twgdev/prettier-config" -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.19.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.yarn/releases/yarn-1.22.19.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/.yarnrc -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/README.md -------------------------------------------------------------------------------- /android/app/HolidailyProd.keystore.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/HolidailyProd.keystore.gpg -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/holidayly/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/debug/java/com/holidayly/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/assets/fonts/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/assets/fonts/Nunito-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/assets/fonts/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/SoftInputModeModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/SoftInputModeModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/SoftInputModePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/SoftInputModePackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/holidayly/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/java/com/holidayly/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-hdpi/mipmap-anydpi-v26/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/app.json -------------------------------------------------------------------------------- /apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/apple-app-site-association -------------------------------------------------------------------------------- /assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/assetlinks.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/babel.config.js -------------------------------------------------------------------------------- /fastlane/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/fastlane/.env.example -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/fastlane/report.xml -------------------------------------------------------------------------------- /i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/i18n.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/BridgeHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/BridgeHeader.swift -------------------------------------------------------------------------------- /ios/Holidayly-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Holidayly-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Holidayly-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/Holidayly.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Holidayly.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Holidayly.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Holidayly.xcodeproj/xcshareddata/xcschemes/Holidayly-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcodeproj/xcshareddata/xcschemes/Holidayly-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/Holidayly.xcodeproj/xcshareddata/xcschemes/Holidayly.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcodeproj/xcshareddata/xcschemes/Holidayly.xcscheme -------------------------------------------------------------------------------- /ios/Holidayly.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Holidayly.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Holidayly.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Holidayly/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/AppDelegate.h -------------------------------------------------------------------------------- /ios/Holidayly/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/AppDelegate.mm -------------------------------------------------------------------------------- /ios/Holidayly/Holidayly.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Holidayly.entitlements -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/SplashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/SplashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector (1).png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector (2).png -------------------------------------------------------------------------------- /ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Images.xcassets/SplashIcon.imageset/Vector.png -------------------------------------------------------------------------------- /ios/Holidayly/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/Info.plist -------------------------------------------------------------------------------- /ios/Holidayly/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Holidayly/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Holidayly/main.m -------------------------------------------------------------------------------- /ios/HolidaylyTests/HolidaylyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/HolidaylyTests/HolidaylyTests.m -------------------------------------------------------------------------------- /ios/HolidaylyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/HolidaylyTests/Info.plist -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/OneSignalNotificationServiceExtension/Info.plist -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/OneSignalNotificationServiceExtension/NotificationService.swift -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/jest/util.tsx -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/Main.tsx -------------------------------------------------------------------------------- /src/assets/Character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Character.svg -------------------------------------------------------------------------------- /src/assets/Illustration_error_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Illustration_error_cone.png -------------------------------------------------------------------------------- /src/assets/Illustration_error_sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Illustration_error_sunglasses.png -------------------------------------------------------------------------------- /src/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Logo.png -------------------------------------------------------------------------------- /src/assets/ManLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/ManLogo.png -------------------------------------------------------------------------------- /src/assets/Slider_Illustration-1_2@.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Slider_Illustration-1_2@.png -------------------------------------------------------------------------------- /src/assets/Slider_Illustration-2_2@.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Slider_Illustration-2_2@.png -------------------------------------------------------------------------------- /src/assets/Slider_Illustration-3_2@.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Slider_Illustration-3_2@.png -------------------------------------------------------------------------------- /src/assets/Slider_Illustration-4_2@.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Slider_Illustration-4_2@.png -------------------------------------------------------------------------------- /src/assets/Splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/Splash_screen.png -------------------------------------------------------------------------------- /src/assets/User_Picture_Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/User_Picture_Placeholder.png -------------------------------------------------------------------------------- /src/assets/backgroundPlant1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/backgroundPlant1.svg -------------------------------------------------------------------------------- /src/assets/backgroundPlant2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/backgroundPlant2.svg -------------------------------------------------------------------------------- /src/assets/circle-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/circle-bg.svg -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/fonts/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/fonts/Nunito-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/fonts/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/icons/CheckmarkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/CheckmarkIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/ClockIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/ClockIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/MessageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/MessageIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/PalmTreeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/PalmTreeIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/QuestionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/QuestionIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/SearchIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SendArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/SendArrow.svg -------------------------------------------------------------------------------- /src/assets/icons/addMessage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/addMessage.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/icons/arrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/arrowDown.svg -------------------------------------------------------------------------------- /src/assets/icons/arrowUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/arrowUp.svg -------------------------------------------------------------------------------- /src/assets/icons/backArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/backArrow.svg -------------------------------------------------------------------------------- /src/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/checkCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/checkCircle.svg -------------------------------------------------------------------------------- /src/assets/icons/circle-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/circle-cross.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-accept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-accept.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-add.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-apple.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-arrow-back-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-arrow-back-big.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-arrow-up.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-attachment-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-attachment-small.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-avatar-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-avatar-minus.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-back-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-back-white.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-back.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-back2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-back2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-bell.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-bin.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-budget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-budget.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-button-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-button-tick.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-camera.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-check.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-circle-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-circle-cross.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-close.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-close2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-close2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-comment.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-delete.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-dots.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-dots2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-dots2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-edit.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-edit2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-edit2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-employees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-employees.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-exclamation-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-exclamation-mark.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-feed.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-file.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-filter.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-gallery-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-gallery-2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-gallery.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-geolocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-geolocation.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-google.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-history.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-home.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-info.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-info2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-info2.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-key.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-log-out.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-mail.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-map-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-map-location.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-message-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-message-small.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-message.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-palm.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-paperplane-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-paperplane-large.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-paperplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-paperplane.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-password-invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-password-invisible.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-past-request-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-past-request-clock.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-pencil.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-people.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-pill-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-pill-small.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-pill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-pill.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-pin.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-plane.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-plus-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-plus-small.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-profile-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-profile-placeholder.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-profile.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-reaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-reaction.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-search.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-settings.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-shield-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-shield-check.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-sick-leave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-sick-leave.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-slack.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-smartphone.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-spinner.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-star.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-stats.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-suitcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-suitcase.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-swipe-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-swipe-down.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-swipe-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-swipe-left.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-swipe-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-swipe-up.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-togglePassword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-togglePassword.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-trash.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/icon-vector.svg -------------------------------------------------------------------------------- /src/assets/icons/info-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/info-icon.png -------------------------------------------------------------------------------- /src/assets/icons/palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/palm.svg -------------------------------------------------------------------------------- /src/assets/icons/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/paperclip.svg -------------------------------------------------------------------------------- /src/assets/icons/paperclipOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/paperclipOrange.svg -------------------------------------------------------------------------------- /src/assets/icons/pill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/pill.svg -------------------------------------------------------------------------------- /src/assets/icons/success-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/assets/icons/success-icon.png -------------------------------------------------------------------------------- /src/components/ActionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ActionModal.tsx -------------------------------------------------------------------------------- /src/components/AddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/AddButton.tsx -------------------------------------------------------------------------------- /src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Alert.tsx -------------------------------------------------------------------------------- /src/components/AnimatedBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/AnimatedBar.tsx -------------------------------------------------------------------------------- /src/components/AnimatedBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/AnimatedBox.tsx -------------------------------------------------------------------------------- /src/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Avatar.tsx -------------------------------------------------------------------------------- /src/components/BottomModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/BottomModal.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/CalendarDay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/CalendarDay.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/CalendarDayDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/CalendarDayDots.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/CalendarDayMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/CalendarDayMain.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/CalendarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/CalendarHeader.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/CalendarTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/CalendarTypes.ts -------------------------------------------------------------------------------- /src/components/CalendarComponents/ExplandableCalendarTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/ExplandableCalendarTheme.ts -------------------------------------------------------------------------------- /src/components/CalendarComponents/NewCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/NewCalendar.tsx -------------------------------------------------------------------------------- /src/components/CalendarComponents/WeekCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarComponents/WeekCalendar.tsx -------------------------------------------------------------------------------- /src/components/CalendarList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CalendarList.tsx -------------------------------------------------------------------------------- /src/components/ChangesSavedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ChangesSavedModal.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Checkmark.tsx -------------------------------------------------------------------------------- /src/components/CheckmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CheckmarkButton.tsx -------------------------------------------------------------------------------- /src/components/CircleStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CircleStatusIcon.tsx -------------------------------------------------------------------------------- /src/components/Confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Confetti.tsx -------------------------------------------------------------------------------- /src/components/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ConfirmationModal.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/CustomButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CustomButton.tsx -------------------------------------------------------------------------------- /src/components/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/CustomModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/CustomModal.tsx -------------------------------------------------------------------------------- /src/components/DrawerBackArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/DrawerBackArrow.tsx -------------------------------------------------------------------------------- /src/components/DropdownWithRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/DropdownWithRadio.tsx -------------------------------------------------------------------------------- /src/components/EditPictureModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/EditPictureModal.tsx -------------------------------------------------------------------------------- /src/components/EditPictureModalButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/EditPictureModalButtons.tsx -------------------------------------------------------------------------------- /src/components/ExpandableCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ExpandableCalendar.tsx -------------------------------------------------------------------------------- /src/components/ExpandingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ExpandingText.tsx -------------------------------------------------------------------------------- /src/components/FormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/FormInput.tsx -------------------------------------------------------------------------------- /src/components/Gallery/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Gallery/Gallery.tsx -------------------------------------------------------------------------------- /src/components/Gallery/GalleryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Gallery/GalleryItem.tsx -------------------------------------------------------------------------------- /src/components/InputButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/InputButton.tsx -------------------------------------------------------------------------------- /src/components/InputEditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/InputEditIcon.tsx -------------------------------------------------------------------------------- /src/components/InputSearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/InputSearchIcon.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/components/LoadingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/LoadingModal.tsx -------------------------------------------------------------------------------- /src/components/LocationInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/LocationInfo.tsx -------------------------------------------------------------------------------- /src/components/MaskedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/MaskedInput.tsx -------------------------------------------------------------------------------- /src/components/MessageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/MessageInput.tsx -------------------------------------------------------------------------------- /src/components/MessageInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/MessageInputModal.tsx -------------------------------------------------------------------------------- /src/components/ModalHandleIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ModalHandleIndicator.tsx -------------------------------------------------------------------------------- /src/components/ModalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ModalHeader.tsx -------------------------------------------------------------------------------- /src/components/OptionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/OptionsModal.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/ProgressDot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ProgressDot.tsx -------------------------------------------------------------------------------- /src/components/RadioInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RadioInput.tsx -------------------------------------------------------------------------------- /src/components/RecoveryCodeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RecoveryCodeInput.tsx -------------------------------------------------------------------------------- /src/components/RecoveryPasswordBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RecoveryPasswordBar.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/Photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/Photo.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/RequestAttachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/RequestAttachments.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/RequestDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/RequestDetails.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/RequestDetailsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/RequestDetailsHeader.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/RequestFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/RequestFooter.tsx -------------------------------------------------------------------------------- /src/components/RequestDetails/SeeRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestDetails/SeeRequest.tsx -------------------------------------------------------------------------------- /src/components/RequestVacationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/RequestVacationBar.tsx -------------------------------------------------------------------------------- /src/components/SafeAreaWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SafeAreaWrapper.tsx -------------------------------------------------------------------------------- /src/components/SkeletonLoader/SkeletonLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SkeletonLoader/SkeletonLoader.tsx -------------------------------------------------------------------------------- /src/components/SkeletonLoader/useSkeletonLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SkeletonLoader/useSkeletonLoader.ts -------------------------------------------------------------------------------- /src/components/SliderContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SliderContent.tsx -------------------------------------------------------------------------------- /src/components/Submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/Submit.tsx -------------------------------------------------------------------------------- /src/components/SwipeableModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SwipeableModal.tsx -------------------------------------------------------------------------------- /src/components/SwipeableModalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SwipeableModalHeader.tsx -------------------------------------------------------------------------------- /src/components/SwipeableModalRegular.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/SwipeableModalRegular.tsx -------------------------------------------------------------------------------- /src/components/TertiaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/TertiaryButton.tsx -------------------------------------------------------------------------------- /src/components/TextLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/TextLink.tsx -------------------------------------------------------------------------------- /src/components/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/ToggleButton.tsx -------------------------------------------------------------------------------- /src/components/UploadAttachmentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/UploadAttachmentModal.tsx -------------------------------------------------------------------------------- /src/components/dragAndDrop/Config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/dragAndDrop/Config.tsx -------------------------------------------------------------------------------- /src/components/dragAndDrop/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/dragAndDrop/Item.tsx -------------------------------------------------------------------------------- /src/components/dragAndDrop/SortableList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/dragAndDrop/SortableList.test.tsx -------------------------------------------------------------------------------- /src/components/dragAndDrop/SortableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/dragAndDrop/SortableList.tsx -------------------------------------------------------------------------------- /src/components/notifications/InfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/notifications/InfoModal.tsx -------------------------------------------------------------------------------- /src/components/notifications/SuccessModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/notifications/SuccessModal.tsx -------------------------------------------------------------------------------- /src/components/tests/checkmarkButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/components/tests/checkmarkButton.test.tsx -------------------------------------------------------------------------------- /src/contexts/CalendarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/CalendarContext.tsx -------------------------------------------------------------------------------- /src/contexts/CalendarProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/CalendarProvider.tsx -------------------------------------------------------------------------------- /src/contexts/CreatePostContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/CreatePostContext.tsx -------------------------------------------------------------------------------- /src/contexts/CreatePostProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/CreatePostProvider.tsx -------------------------------------------------------------------------------- /src/contexts/ModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/ModalProvider.tsx -------------------------------------------------------------------------------- /src/contexts/RequestsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/RequestsContext.tsx -------------------------------------------------------------------------------- /src/contexts/RequestsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/RequestsProvider.tsx -------------------------------------------------------------------------------- /src/contexts/TeamsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/TeamsContext.tsx -------------------------------------------------------------------------------- /src/contexts/TeamsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/TeamsProvider.tsx -------------------------------------------------------------------------------- /src/contexts/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/UserContext.tsx -------------------------------------------------------------------------------- /src/contexts/UserProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/UserProvider.tsx -------------------------------------------------------------------------------- /src/contexts/UserSettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/UserSettingsContext.tsx -------------------------------------------------------------------------------- /src/contexts/UserSettingsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/contexts/UserSettingsProvider.tsx -------------------------------------------------------------------------------- /src/data-access/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/API.ts -------------------------------------------------------------------------------- /src/data-access/QueryKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/QueryKeys.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useAddPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useAddPost.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useAddReactionsComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useAddReactionsComment.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useCreateDayoffRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useCreateDayoffRequest.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useCreateTempUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useCreateTempUser.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useEditUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useEditUser.ts -------------------------------------------------------------------------------- /src/data-access/mutations/useMarkNotificationAsSeen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/mutations/useMarkNotificationAsSeen.ts -------------------------------------------------------------------------------- /src/data-access/queries/useFeedPostsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useFeedPostsData.ts -------------------------------------------------------------------------------- /src/data-access/queries/useFetchNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useFetchNotifications.ts -------------------------------------------------------------------------------- /src/data-access/queries/useFetchUserData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useFetchUserData.ts -------------------------------------------------------------------------------- /src/data-access/queries/useFetchUserRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useFetchUserRequests.ts -------------------------------------------------------------------------------- /src/data-access/queries/useFetchUserStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useFetchUserStats.ts -------------------------------------------------------------------------------- /src/data-access/queries/useOrganizationData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queries/useOrganizationData.ts -------------------------------------------------------------------------------- /src/data-access/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/data-access/queryClient.ts -------------------------------------------------------------------------------- /src/hooks/context-hooks/useCalendarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useCalendarContext.tsx -------------------------------------------------------------------------------- /src/hooks/context-hooks/useCreatePostContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useCreatePostContext.ts -------------------------------------------------------------------------------- /src/hooks/context-hooks/useRequestsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useRequestsContext.ts -------------------------------------------------------------------------------- /src/hooks/context-hooks/useTeamsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useTeamsContext.ts -------------------------------------------------------------------------------- /src/hooks/context-hooks/useUserContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useUserContext.ts -------------------------------------------------------------------------------- /src/hooks/context-hooks/useUserSettingsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/context-hooks/useUserSettingsContext.ts -------------------------------------------------------------------------------- /src/hooks/memoization/useMemoizedNonNullValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/memoization/useMemoizedNonNullValue.ts -------------------------------------------------------------------------------- /src/hooks/style-hooks/useCalendarStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/style-hooks/useCalendarStyles.ts -------------------------------------------------------------------------------- /src/hooks/style-hooks/useModalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/style-hooks/useModalStyles.ts -------------------------------------------------------------------------------- /src/hooks/useAsyncEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useAsyncEffect.ts -------------------------------------------------------------------------------- /src/hooks/useBackHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useBackHandler.ts -------------------------------------------------------------------------------- /src/hooks/useBackgroundEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useBackgroundEffect.ts -------------------------------------------------------------------------------- /src/hooks/useBooleanState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useBooleanState.ts -------------------------------------------------------------------------------- /src/hooks/useCombinedRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useCombinedRefs.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useDropdownAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useDropdownAnimation.ts -------------------------------------------------------------------------------- /src/hooks/useGetHolidayRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useGetHolidayRequests.ts -------------------------------------------------------------------------------- /src/hooks/useInitDemoUserTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useInitDemoUserTeams.ts -------------------------------------------------------------------------------- /src/hooks/useKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useKeyboard.ts -------------------------------------------------------------------------------- /src/hooks/useLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useLanguage.tsx -------------------------------------------------------------------------------- /src/hooks/useLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useLocation.ts -------------------------------------------------------------------------------- /src/hooks/useOneSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useOneSignal.ts -------------------------------------------------------------------------------- /src/hooks/usePrevScreenBackHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/usePrevScreenBackHandler.ts -------------------------------------------------------------------------------- /src/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useSearch.ts -------------------------------------------------------------------------------- /src/hooks/useSetStatusBarStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useSetStatusBarStyle.ts -------------------------------------------------------------------------------- /src/hooks/useSiriListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useSiriListeners.ts -------------------------------------------------------------------------------- /src/hooks/useSoftInputMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useSoftInputMode.ts -------------------------------------------------------------------------------- /src/hooks/useWithConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/hooks/useWithConfirmation.tsx -------------------------------------------------------------------------------- /src/mock-api/factories/genRequestDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/factories/genRequestDetails.ts -------------------------------------------------------------------------------- /src/mock-api/factories/requestFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/factories/requestFactory.test.ts -------------------------------------------------------------------------------- /src/mock-api/factories/requestFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/factories/requestFactory.ts -------------------------------------------------------------------------------- /src/mock-api/factories/userFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/factories/userFactory.ts -------------------------------------------------------------------------------- /src/mock-api/models/HttpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/models/HttpError.ts -------------------------------------------------------------------------------- /src/mock-api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/models/index.ts -------------------------------------------------------------------------------- /src/mock-api/models/miragePostTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/models/miragePostTypes.ts -------------------------------------------------------------------------------- /src/mock-api/models/mirageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/models/mirageTypes.ts -------------------------------------------------------------------------------- /src/mock-api/routes/dayOffRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/dayOffRequest.ts -------------------------------------------------------------------------------- /src/mock-api/routes/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/notifications.ts -------------------------------------------------------------------------------- /src/mock-api/routes/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/organization.ts -------------------------------------------------------------------------------- /src/mock-api/routes/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/post.ts -------------------------------------------------------------------------------- /src/mock-api/routes/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/stats.ts -------------------------------------------------------------------------------- /src/mock-api/routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/routes/user.ts -------------------------------------------------------------------------------- /src/mock-api/seeds/notificationSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/seeds/notificationSources.ts -------------------------------------------------------------------------------- /src/mock-api/seeds/organizationSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/seeds/organizationSeed.ts -------------------------------------------------------------------------------- /src/mock-api/seeds/postsSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/seeds/postsSeed.ts -------------------------------------------------------------------------------- /src/mock-api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/server.ts -------------------------------------------------------------------------------- /src/mock-api/utils/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/utils/general.ts -------------------------------------------------------------------------------- /src/mock-api/utils/payloadService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/utils/payloadService.ts -------------------------------------------------------------------------------- /src/mock-api/utils/requireAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/mock-api/utils/requireAuth.ts -------------------------------------------------------------------------------- /src/modules/SoftInputMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/modules/SoftInputMode.ts -------------------------------------------------------------------------------- /src/navigation/AppStackNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/AppStackNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/AuthStackNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/AuthStackNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/BottomNavComponents/NavigationDot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/BottomNavComponents/NavigationDot.tsx -------------------------------------------------------------------------------- /src/navigation/BottomNavComponents/TabsHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/BottomNavComponents/TabsHandler.tsx -------------------------------------------------------------------------------- /src/navigation/BottomNavComponents/TabsUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/BottomNavComponents/TabsUi.tsx -------------------------------------------------------------------------------- /src/navigation/BottomTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/BottomTabNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/BudgetNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/BudgetNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/CalendarNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/CalendarNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/CreatePostNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/CreatePostNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/DashboardNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DashboardNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/DrawerComponents/CustomDrawerContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DrawerComponents/CustomDrawerContent.tsx -------------------------------------------------------------------------------- /src/navigation/DrawerComponents/DrawerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DrawerComponents/DrawerHeader.tsx -------------------------------------------------------------------------------- /src/navigation/DrawerComponents/DrawerItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DrawerComponents/DrawerItem.tsx -------------------------------------------------------------------------------- /src/navigation/DrawerComponents/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DrawerComponents/Logout.tsx -------------------------------------------------------------------------------- /src/navigation/DrawerNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/DrawerNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Presets/StackNavigatorPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/Presets/StackNavigatorPresets.ts -------------------------------------------------------------------------------- /src/navigation/ProfileNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/ProfileNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/RequestsNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/RequestsNavigation.tsx -------------------------------------------------------------------------------- /src/navigation/SwipeableScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/SwipeableScreen.tsx -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/index.tsx -------------------------------------------------------------------------------- /src/navigation/service/swipeableScreenUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/service/swipeableScreenUtils.tsx -------------------------------------------------------------------------------- /src/navigation/service/tabsBorderRadius.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/service/tabsBorderRadius.ts -------------------------------------------------------------------------------- /src/navigation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/types.ts -------------------------------------------------------------------------------- /src/navigation/universalLinking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/navigation/universalLinking.ts -------------------------------------------------------------------------------- /src/screens/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/About.tsx -------------------------------------------------------------------------------- /src/screens/about/components/AboutDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/components/AboutDescription.tsx -------------------------------------------------------------------------------- /src/screens/about/components/AboutHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/components/AboutHeader.tsx -------------------------------------------------------------------------------- /src/screens/about/components/AboutLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/components/AboutLinks.tsx -------------------------------------------------------------------------------- /src/screens/about/components/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/components/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/screens/about/components/PrivacyPolicyContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/about/components/PrivacyPolicyContent.tsx -------------------------------------------------------------------------------- /src/screens/budget/Budget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/Budget.tsx -------------------------------------------------------------------------------- /src/screens/budget/PtoPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/PtoPolicy.tsx -------------------------------------------------------------------------------- /src/screens/budget/components/Policies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/components/Policies.tsx -------------------------------------------------------------------------------- /src/screens/budget/components/PolicyHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/components/PolicyHeader.tsx -------------------------------------------------------------------------------- /src/screens/budget/components/PolicySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/components/PolicySection.tsx -------------------------------------------------------------------------------- /src/screens/budget/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/budget/components/Section.tsx -------------------------------------------------------------------------------- /src/screens/calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/Calendar.tsx -------------------------------------------------------------------------------- /src/screens/calendar/__tests__/getDaysInMonth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/__tests__/getDaysInMonth.test.ts -------------------------------------------------------------------------------- /src/screens/calendar/__tests__/getSlicedDate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/__tests__/getSlicedDate.test.ts -------------------------------------------------------------------------------- /src/screens/calendar/components/CalendarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/CalendarButton.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/CalendarModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/CalendarModal.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/CategoriesSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/CategoriesSlider.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/DateInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/DateInputs.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/DayEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/DayEvent.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/DayInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/DayInfo.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/DayWeekend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/DayWeekend.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/EventsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/EventsList.tsx -------------------------------------------------------------------------------- /src/screens/calendar/components/GoUpDownButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/components/GoUpDownButton.tsx -------------------------------------------------------------------------------- /src/screens/calendar/getMonthsWithoutRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/getMonthsWithoutRequests.ts -------------------------------------------------------------------------------- /src/screens/calendar/useCalendarData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/useCalendarData.ts -------------------------------------------------------------------------------- /src/screens/calendar/useTeamCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/useTeamCategories.ts -------------------------------------------------------------------------------- /src/screens/calendar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/calendar/utils.ts -------------------------------------------------------------------------------- /src/screens/createPost/CreatePost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePost.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/CreatePostForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/CreatePostForm.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/LocationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/LocationForm.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/ModalLocationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/ModalLocationList.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/PostFormBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/PostFormBody.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/PostFormFooter/FooterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/PostFormFooter/FooterButton.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/PostFormFooter/PostFormFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/PostFormFooter/PostFormFooter.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/PostFormHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/PostFormHeader.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/SearchBar.tsx -------------------------------------------------------------------------------- /src/screens/createPost/CreatePostForm/usePostFormReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/CreatePostForm/usePostFormReducer.ts -------------------------------------------------------------------------------- /src/screens/createPost/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/createPost/types.ts -------------------------------------------------------------------------------- /src/screens/dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/DashboardTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/DashboardTeam.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/DashboardTeamMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/DashboardTeamMember.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/Notifications.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/Carousel.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/CarouselElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/CarouselElement.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/DashboardHeader.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/HolidayTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/HolidayTag.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/JoinFirstTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/JoinFirstTeam.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/MateElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/MateElement.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/MateHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/MateHeader.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/MateHoliday.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/MateHoliday.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/MateHolidayDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/MateHolidayDetail.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/Notification.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/NotificationContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/NotificationContent.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/NotificationThumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/NotificationThumbnail.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/NotificationsBell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/NotificationsBell.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/NotificationsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/NotificationsList.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/NotificationsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/NotificationsSection.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/OtherMateElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/OtherMateElement.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/SortableTeams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/SortableTeams.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/SwipeableNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/SwipeableNotification.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/TeamElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/TeamElement.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/TeamHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/TeamHeader.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/components/TeamSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/components/TeamSection.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/helpers/notificationNavHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/helpers/notificationNavHandler.tsx -------------------------------------------------------------------------------- /src/screens/dashboard/helpers/temporaryData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/dashboard/helpers/temporaryData.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/EditProfile.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/ProfileColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/ProfileColor.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/ProfileColorExpandableArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/ProfileColorExpandableArea.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/ProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/ProfileDetails.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/ProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/ProfilePicture.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/SubscribeNewTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/SubscribeNewTeam.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/ActiveSubscriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/ActiveSubscriptions.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/AddSubsriptionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/AddSubsriptionsButton.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/SaveSubscriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/SaveSubscriptions.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/SearchBar.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/SearchHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/SearchHeader.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/SearchResults.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/TeamSubscriptions/SearchTeams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/TeamSubscriptions/SearchTeams.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/AnimatedBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/AnimatedBubble.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/Bubble.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/BubbleContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/BubbleContainer.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/BubbleContainerButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/BubbleContainerButtons.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/BubbleContainerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/BubbleContainerHeader.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/BubbleHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/BubbleHelper.ts -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/Checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/Checkmark.tsx -------------------------------------------------------------------------------- /src/screens/editProfile/components/bubblePicker/useBubbles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/components/bubblePicker/useBubbles.ts -------------------------------------------------------------------------------- /src/screens/editProfile/helpers/teamSubscriptionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/editProfile/helpers/teamSubscriptionHelper.ts -------------------------------------------------------------------------------- /src/screens/employees/components/EmployeeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/employees/components/EmployeeBox.tsx -------------------------------------------------------------------------------- /src/screens/employees/components/EmployeeBoxButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/employees/components/EmployeeBoxButtons.tsx -------------------------------------------------------------------------------- /src/screens/employees/components/EmployeeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/employees/components/EmployeeTypes.ts -------------------------------------------------------------------------------- /src/screens/employees/components/FilterBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/employees/components/FilterBox.tsx -------------------------------------------------------------------------------- /src/screens/feed/Feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/Feed.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/Bubble/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/Bubble/Bubble.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/Bubble/MoreLessBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/Bubble/MoreLessBubble.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/Bubble/ReactionBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/Bubble/ReactionBubble.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/Comment/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/Comment/Comment.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/CommentBox/CommentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/CommentBox/CommentBox.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/CommentBox/CommentBoxBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/CommentBox/CommentBoxBtn.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedHeader/FeedHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedHeader/FeedHeader.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedPost/FeedPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedPost/FeedPost.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedPost/FeedPostBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedPost/FeedPostBody.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedPost/FeedPostFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedPost/FeedPostFooter.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedPost/FeedPostHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedPost/FeedPostHeader.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FeedPostHeaderInfo/FeedPostHeaderInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FeedPostHeaderInfo/FeedPostHeaderInfo.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FooterBar/FooterBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FooterBar/FooterBar.tsx -------------------------------------------------------------------------------- /src/screens/feed/components/FooterBar/FooterBarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/components/FooterBar/FooterBarContent.tsx -------------------------------------------------------------------------------- /src/screens/feed/useFeedModals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/feed/useFeedModals.ts -------------------------------------------------------------------------------- /src/screens/forgotPassword/components/ForgotPasswordErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/forgotPassword/components/ForgotPasswordErrorModal.tsx -------------------------------------------------------------------------------- /src/screens/forgotPassword/components/PasswordResetErrors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/forgotPassword/components/PasswordResetErrors.tsx -------------------------------------------------------------------------------- /src/screens/gallery/GalleryScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/gallery/GalleryScreen.tsx -------------------------------------------------------------------------------- /src/screens/newPassword/components/PasswordUpdatedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/newPassword/components/PasswordUpdatedModal.tsx -------------------------------------------------------------------------------- /src/screens/newPassword/components/UpdateModalChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/newPassword/components/UpdateModalChildren.tsx -------------------------------------------------------------------------------- /src/screens/panel/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/panel/Panel.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/RequestVacation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/RequestVacation.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/Additionals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/Additionals.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/BadStateController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/BadStateController.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/CalendarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/CalendarHeader.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/CalendarRequestVacation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/CalendarRequestVacation.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/Details.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/FormRequestVacation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/FormRequestVacation.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/MaxSickDays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/MaxSickDays.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/NotEnoughPTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/NotEnoughPTO.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/RequestSentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/RequestSentModal.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/RequestVacationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/RequestVacationHeader.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/RequestVacationHeaderText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/RequestVacationHeaderText.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/RequestVacationSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/RequestVacationSteps.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SelectPeriodModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SelectPeriodModal.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SickTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SickTime.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SubmitButton.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SummaryRequestVacation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SummaryRequestVacation.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SummaryRequestVacation/SicktimeAndMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SummaryRequestVacation/SicktimeAndMessage.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/SummaryRequestVacation/SummaryRequestVacationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/SummaryRequestVacation/SummaryRequestVacationHeader.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/ValidationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/ValidationModal.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/additionals/AddMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/additionals/AddMore.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/additionals/AttachmentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/additionals/AttachmentIcon.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/additionals/Attachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/additionals/Attachments.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/components/additionals/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/components/additionals/Message.tsx -------------------------------------------------------------------------------- /src/screens/requestVacation/contexts/RequestVacationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/requestVacation/contexts/RequestVacationContext.tsx -------------------------------------------------------------------------------- /src/screens/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/Settings.tsx -------------------------------------------------------------------------------- /src/screens/settings/components/BiometricPasscode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/components/BiometricPasscode.tsx -------------------------------------------------------------------------------- /src/screens/settings/components/DarkModeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/components/DarkModeSwitch.tsx -------------------------------------------------------------------------------- /src/screens/settings/components/Language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/components/Language.tsx -------------------------------------------------------------------------------- /src/screens/settings/components/Siri.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/components/Siri.tsx -------------------------------------------------------------------------------- /src/screens/settings/hooks/useLangAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/settings/hooks/useLangAnimation.ts -------------------------------------------------------------------------------- /src/screens/signup/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signup/Signup.tsx -------------------------------------------------------------------------------- /src/screens/signup/components/SignupButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signup/components/SignupButtons.tsx -------------------------------------------------------------------------------- /src/screens/signup/components/SignupTitleAndLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signup/components/SignupTitleAndLogo.tsx -------------------------------------------------------------------------------- /src/screens/signup/components/SingupLoginBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signup/components/SingupLoginBox.tsx -------------------------------------------------------------------------------- /src/screens/signupEmail/components/PendingAccountConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signupEmail/components/PendingAccountConfirmationModal.tsx -------------------------------------------------------------------------------- /src/screens/signupEmail/components/SecondRegisterDialogBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/signupEmail/components/SecondRegisterDialogBox.tsx -------------------------------------------------------------------------------- /src/screens/slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/slider/Slider.tsx -------------------------------------------------------------------------------- /src/screens/stats/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/Stats.tsx -------------------------------------------------------------------------------- /src/screens/stats/StatsAndRequests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/StatsAndRequests.tsx -------------------------------------------------------------------------------- /src/screens/stats/components/AdditionalsIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/components/AdditionalsIcons.tsx -------------------------------------------------------------------------------- /src/screens/stats/components/HeaderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/components/HeaderIcon.tsx -------------------------------------------------------------------------------- /src/screens/stats/components/Request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/components/Request.tsx -------------------------------------------------------------------------------- /src/screens/stats/components/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/components/SectionHeader.tsx -------------------------------------------------------------------------------- /src/screens/stats/components/StatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/stats/components/StatusIcon.tsx -------------------------------------------------------------------------------- /src/screens/welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/welcome/Welcome.tsx -------------------------------------------------------------------------------- /src/screens/welcome/components/AboutModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/welcome/components/AboutModal.tsx -------------------------------------------------------------------------------- /src/screens/welcome/components/ShowPrivacyPolicyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/welcome/components/ShowPrivacyPolicyButton.tsx -------------------------------------------------------------------------------- /src/screens/welcome/components/TeamsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/welcome/components/TeamsModal.tsx -------------------------------------------------------------------------------- /src/screens/welcome/components/WelcomeTopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/screens/welcome/components/WelcomeTopBar.tsx -------------------------------------------------------------------------------- /src/services/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/services/analytics.ts -------------------------------------------------------------------------------- /src/types/ColorPickerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/ColorPickerTypes.ts -------------------------------------------------------------------------------- /src/types/DayInfoProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/DayInfoProps.ts -------------------------------------------------------------------------------- /src/types/HolidayRequestMonthType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/HolidayRequestMonthType.ts -------------------------------------------------------------------------------- /src/types/confirmationModalProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/confirmationModalProps.ts -------------------------------------------------------------------------------- /src/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/env.d.ts -------------------------------------------------------------------------------- /src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/globals.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/react-i18n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/react-i18n.d.ts -------------------------------------------------------------------------------- /src/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/types/types.d.ts -------------------------------------------------------------------------------- /src/utils/GestureRecognizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/GestureRecognizer.tsx -------------------------------------------------------------------------------- /src/utils/checkIfPasswordsMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/checkIfPasswordsMatch.ts -------------------------------------------------------------------------------- /src/utils/createAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/createAlert.ts -------------------------------------------------------------------------------- /src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/dates.ts -------------------------------------------------------------------------------- /src/utils/dayOffUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/dayOffUtils.ts -------------------------------------------------------------------------------- /src/utils/deviceSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/deviceSizes.ts -------------------------------------------------------------------------------- /src/utils/doesMonthInCalendarHasSixRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/doesMonthInCalendarHasSixRows.ts -------------------------------------------------------------------------------- /src/utils/eventMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/eventMap.ts -------------------------------------------------------------------------------- /src/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/formatDate.ts -------------------------------------------------------------------------------- /src/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/functions.ts -------------------------------------------------------------------------------- /src/utils/genMarkedDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/genMarkedDates.ts -------------------------------------------------------------------------------- /src/utils/generateInputErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/generateInputErrors.ts -------------------------------------------------------------------------------- /src/utils/generateUUID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/generateUUID.ts -------------------------------------------------------------------------------- /src/utils/getBottomTabIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getBottomTabIcon.tsx -------------------------------------------------------------------------------- /src/utils/getDrawerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getDrawerIcon.tsx -------------------------------------------------------------------------------- /src/utils/getInitialCalendarHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getInitialCalendarHeight.ts -------------------------------------------------------------------------------- /src/utils/getNextMonthRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getNextMonthRequests.ts -------------------------------------------------------------------------------- /src/utils/getRandomValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getRandomValue.ts -------------------------------------------------------------------------------- /src/utils/getUserTeamId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getUserTeamId.ts -------------------------------------------------------------------------------- /src/utils/getUsersWithoutDuplicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getUsersWithoutDuplicates.ts -------------------------------------------------------------------------------- /src/utils/getWeekendDays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/getWeekendDays.ts -------------------------------------------------------------------------------- /src/utils/groupArrayByKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/groupArrayByKey.ts -------------------------------------------------------------------------------- /src/utils/groupRequestsToMonths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/groupRequestsToMonths.ts -------------------------------------------------------------------------------- /src/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/layout.ts -------------------------------------------------------------------------------- /src/utils/linkWithFallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/linkWithFallback.ts -------------------------------------------------------------------------------- /src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/localStorage.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/manipulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/manipulation.ts -------------------------------------------------------------------------------- /src/utils/mergeRequestsArrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/mergeRequestsArrays.ts -------------------------------------------------------------------------------- /src/utils/mocks/teamsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/mocks/teamsMocks.ts -------------------------------------------------------------------------------- /src/utils/mocks/userMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/mocks/userMocks.ts -------------------------------------------------------------------------------- /src/utils/notifications/notificationsConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/notifications/notificationsConfig.tsx -------------------------------------------------------------------------------- /src/utils/pluralizeWord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/pluralizeWord.ts -------------------------------------------------------------------------------- /src/utils/randomFromRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/randomFromRange.ts -------------------------------------------------------------------------------- /src/utils/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/regex.ts -------------------------------------------------------------------------------- /src/utils/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/role.ts -------------------------------------------------------------------------------- /src/utils/siriShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/siriShortcuts.ts -------------------------------------------------------------------------------- /src/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/sleep.ts -------------------------------------------------------------------------------- /src/utils/sortByDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/sortByDate.ts -------------------------------------------------------------------------------- /src/utils/splitName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/splitName.ts -------------------------------------------------------------------------------- /src/utils/tests/MockGlobalProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/MockGlobalProviders.tsx -------------------------------------------------------------------------------- /src/utils/tests/MockedNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/MockedNavigator.tsx -------------------------------------------------------------------------------- /src/utils/tests/calendar/EventsList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/calendar/EventsList.test.ts -------------------------------------------------------------------------------- /src/utils/tests/calendar/holidayRequests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/calendar/holidayRequests.test.ts -------------------------------------------------------------------------------- /src/utils/tests/dates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/dates.test.ts -------------------------------------------------------------------------------- /src/utils/tests/editProfile/userData.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/editProfile/userData.test.tsx -------------------------------------------------------------------------------- /src/utils/tests/function.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/function.test.ts -------------------------------------------------------------------------------- /src/utils/tests/genMarkedDates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/genMarkedDates.test.ts -------------------------------------------------------------------------------- /src/utils/tests/randomFromRange.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/randomFromRange.test.ts -------------------------------------------------------------------------------- /src/utils/tests/splitName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/splitName.test.ts -------------------------------------------------------------------------------- /src/utils/tests/teamSubscriptionHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/tests/teamSubscriptionHelper.test.ts -------------------------------------------------------------------------------- /src/utils/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/theme/colors.ts -------------------------------------------------------------------------------- /src/utils/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/theme/index.ts -------------------------------------------------------------------------------- /src/utils/theme/shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/theme/shadows.ts -------------------------------------------------------------------------------- /src/utils/theme/textVariants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/theme/textVariants.ts -------------------------------------------------------------------------------- /src/utils/theme/themeBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/theme/themeBase.ts -------------------------------------------------------------------------------- /src/utils/useGetActiveRouteName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/useGetActiveRouteName.ts -------------------------------------------------------------------------------- /src/utils/userDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/src/utils/userDetails.ts -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/translations/en.json -------------------------------------------------------------------------------- /translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/translations/pl.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wdyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/wdyr.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/holidaily/HEAD/yarn.lock --------------------------------------------------------------------------------