Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/images/coins.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion assets/images/credit-card-multiple.svg

This file was deleted.

2 changes: 1 addition & 1 deletion assets/images/multifactorAuthentication/fingerprint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion assets/images/paycheck.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/user-arrow-left.svg

This file was deleted.

4 changes: 0 additions & 4 deletions src/CONST/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,6 @@ const CONST = {
POPOVER_DATE_RANGE_WIDTH: 672,
POPOVER_DATE_MAX_HEIGHT: 366,
POPOVER_DATE_MIN_HEIGHT: 322,
ADVANCED_FILTERS_POPOVER_HEIGHT: 520,
ADVANCED_FILTERS_POPOVER_WIDTH: 582,
ADVANCED_FILTERS_CONTENT_WIDTH: 331,
TOOLTIP_ANIMATION_DURATION: 500,
DROPDOWN_SCROLL_THRESHOLD: 5,
// Multiplier for gyroscope animation in order to make it a bit more subtle
Expand Down Expand Up @@ -9300,7 +9297,6 @@ const CONST = {
ADVANCED_FILTER_ITEM: 'Search-AdvancedFilterItem',
SAVE_SEARCH_BUTTON: 'Search-SaveSearchButton',
VIEW_RESULTS_BUTTON: 'Search-ViewResultsButton',
CLEAR_FILTERS_BUTTON: 'Search-ClearFiltersButton',
ACTION_CELL_VIEW: 'Search-ActionCellView',
ACTION_CELL_PAY: 'Search-ActionCellPay',
ACTION_CELL_ACTION: 'Search-ActionCellAction',
Expand Down
6 changes: 0 additions & 6 deletions src/components/Icon/chunks/expensify-icons.chunk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ import Copy from '@assets/images/copy.svg';
import CreditCardExclamation from '@assets/images/credit-card-exclamation.svg';
import CreditCardHourglass from '@assets/images/credit-card-hourglass.svg';
import CreditCardLock from '@assets/images/credit-card-lock.svg';
import CreditCardMultiple from '@assets/images/credit-card-multiple.svg';
import CreditCardWithPlaneHourglass from '@assets/images/credit-card-with-plane-hourglass.svg';
import CreditCardWithPlane from '@assets/images/credit-card-with-plane.svg';
import CreditCard from '@assets/images/creditcard.svg';
Expand Down Expand Up @@ -187,7 +186,6 @@ import OfflineCloud from '@assets/images/offline-cloud.svg';
import Offline from '@assets/images/offline.svg';
import Paperclip from '@assets/images/paperclip.svg';
import Pause from '@assets/images/pause.svg';
import Paycheck from '@assets/images/paycheck.svg';
import Pencil from '@assets/images/pencil.svg';
import Percent from '@assets/images/percent.svg';
import Phone from '@assets/images/phone.svg';
Expand Down Expand Up @@ -251,7 +249,6 @@ import TreasureChest from '@assets/images/treasure-chest.svg';
import Unlock from '@assets/images/unlock.svg';
import UploadAlt from '@assets/images/upload-alt.svg';
import Upload from '@assets/images/upload.svg';
import UserArrowLeft from '@assets/images/user-arrow-left.svg';
import UserCheck from '@assets/images/user-check.svg';
import UserEye from '@assets/images/user-eye.svg';
import UserLock from '@assets/images/user-lock.svg';
Expand Down Expand Up @@ -329,7 +326,6 @@ const Expensicons = {
ConnectionComplete,
Copy,
CreditCard,
CreditCardMultiple,
Crop,
CreditCardHourglass,
CreditCardExclamation,
Expand Down Expand Up @@ -431,7 +427,6 @@ const Expensicons = {
OdometerEnd,
Paperclip,
Pause,
Paycheck,
Pencil,
Percent,
Phone,
Expand Down Expand Up @@ -477,7 +472,6 @@ const Expensicons = {
Upload,
UploadAlt,
User,
UserArrowLeft,
UserCheck,
Users,
VideoSlash,
Expand Down
4 changes: 2 additions & 2 deletions src/components/PopoverWithMeasuredContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type PopoverWithMeasuredContentProps from './types';
* This component is a perf optimization, it return BOTTOM_DOCKED early, for small screens avoiding Popover measurement logic calculations.
* It defers rendering of PopoverWithMeasuredContentBase to idle time to avoid blocking more priority UI updates with measurements.
*/
function PopoverWithMeasuredContent({shouldWrapModalChildrenInScrollViewIfBottomDockedInLandscapeMode, smallScreenModalType, ...props}: PopoverWithMeasuredContentProps) {
function PopoverWithMeasuredContent({shouldWrapModalChildrenInScrollViewIfBottomDockedInLandscapeMode, ...props}: PopoverWithMeasuredContentProps) {
// eslint-disable-next-line rulesdir/prefer-shouldUseNarrowLayout-instead-of-isSmallScreenWidth
const {isSmallScreenWidth} = useResponsiveLayout();

Expand All @@ -32,7 +32,7 @@ function PopoverWithMeasuredContent({shouldWrapModalChildrenInScrollViewIfBottom
return (
<Modal
{...props}
type={smallScreenModalType ?? CONST.MODAL.MODAL_TYPE.BOTTOM_DOCKED}
type={CONST.MODAL.MODAL_TYPE.BOTTOM_DOCKED}
animationIn="slideInUp"
animationOut="slideOutDown"
shouldWrapModalChildrenInScrollViewIfBottomDockedInLandscapeMode={shouldWrapModalChildrenInScrollViewIfBottomDockedInLandscapeMode}
Expand Down
4 changes: 0 additions & 4 deletions src/components/PopoverWithMeasuredContent/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type BaseModalProps from '@components/Modal/types';
import type PopoverProps from '@components/Popover/types';
import type {AnchorDimensions, AnchorPosition} from '@styles/index';

Expand All @@ -20,9 +19,6 @@ type PopoverWithMeasuredContentProps = Omit<PopoverProps, 'anchorPosition'> & {

/** Whether to skip re-measurement when becoming visible (for components with static dimensions) */
shouldSkipRemeasurement?: boolean;

/** The modal type for modal when rendered in small screen */
smallScreenModalType?: BaseModalProps['type'];
};

export default PopoverWithMeasuredContentProps;
11 changes: 0 additions & 11 deletions src/components/SafeTriangle/index.native.tsx

This file was deleted.

194 changes: 0 additions & 194 deletions src/components/SafeTriangle/index.tsx

This file was deleted.

8 changes: 0 additions & 8 deletions src/components/SafeTriangle/types.ts

This file was deleted.

Loading
Loading