Skip to content
Open
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
17 changes: 17 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,22 @@ target 'TempleWallet' do
end
break
end

# Xcode 26's compiler advertises consteval support that fmt 11 cannot use.
fmt_base = File.join(installer.sandbox.root, 'fmt', 'include', 'fmt', 'base.h')

if File.exist?(fmt_base)
content = File.read(fmt_base)
unless content.include?('Xcode 26 workaround')
patched = content.gsub(
/^#elif defined\(__cpp_consteval\)\n# define FMT_USE_CONSTEVAL 1$/,
"// Xcode 26 workaround: disable consteval\n#elif defined(__cpp_consteval)\n# define FMT_USE_CONSTEVAL 0"
)
if patched != content
File.chmod(0644, fmt_base)
File.write(fmt_base, patched)
end
end
end
end
end
242 changes: 139 additions & 103 deletions ios/Podfile.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ module.exports = {
moduleNameMapper: {
'^src/(.*)': '<rootDir>/src/$1',
'\\.svg': '<rootDir>/src/mocks/svg.mock.js',
'^lottie-react-native$': '<rootDir>/src/mocks/lottie-react-native.mock.tsx',
'^react-native-themis': '<rootDir>/node_modules/react-native-themis/src/index.js',
'^@stablelib/wipe$': '<rootDir>/src/mocks/stablelib/wipe.mock.ts',
'^@stablelib/nacl$': '<rootDir>/src/mocks/stablelib/nacl.mock.ts',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"formik": "^2.2.9",
"graphql": "^16.6.0",
"lodash-es": "^4.18.1",
"lottie-react-native": "7.3.8",
"memoizee": "^0.4.15",
"node-forge": "^1.3.2",
"pbkdf2": "^3.1.5",
Expand Down
1 change: 1 addition & 0 deletions src/assets/animations/tkey-coin-animation.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/components/checkbox-group-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { ReactNode, memo, useCallback, useState } from 'react';
import { AlertButton, AlertOptions, View } from 'react-native';
import Dialog from 'react-native-dialog';

import { formatSize } from '../../styles/format-size.ts';
import { IconNameEnum } from '../icon/icon-name.enum';
import { TouchableIcon } from '../icon/touchable-icon/touchable-icon';

Expand Down Expand Up @@ -30,7 +31,7 @@ export const CheckboxGroupItem = memo<CheckboxGroupItemProps>(({ infoAlertArgs,

{infoAlertArgs && (
<>
<TouchableIcon name={IconNameEnum.InfoFilledAlt} onPress={handleInfoIconClick} />
<TouchableIcon name={IconNameEnum.InfoFilledAlt} size={formatSize(16)} onPress={handleInfoIconClick} />
<Dialog.Container
visible={alertVisible}
verticalButtons
Expand Down
3 changes: 3 additions & 0 deletions src/components/icon/assets/calendar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/dollar-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/gears.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/icon/assets/info-filled-alt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/megaphone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/reward.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/sound-off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/icon/assets/uptrend.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion src/components/icon/icon-name.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,12 @@ export enum IconNameEnum {
NoConnection = 'NoConnection',
ScamInfo = 'ScamInfo',
Stake = 'Stake',
MessageCircle = 'MessageCircle'
MessageCircle = 'MessageCircle',
DollarFiled = 'DollarFiled',
SoundOff = 'SoundOff',
Reward = 'Reward',
Uptrend = 'Uptrend',
Gears = 'Gears',
Megaphone = 'Megaphone',
Calendar = 'Calendar'
}
Loading
Loading