Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d1a2a8d
Support for ISO format date parsing
Rohit3523 Jan 24, 2026
478d83e
Storybook update
Rohit3523 Jan 24, 2026
2f7ccef
chore(deps): bump @rocket.chat/message-parser to 0.31.33
Rohit3523 Feb 10, 2026
92d0727
message parser patch
Rohit3523 Feb 10, 2026
eaf20b0
snapshot update
Rohit3523 Feb 10, 2026
aabec1c
improve timestamp story
Rohit3523 Feb 10, 2026
401404b
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Feb 10, 2026
684dc5b
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Feb 11, 2026
85ea4f2
use message parser 0.31.34
Rohit3523 Mar 10, 2026
67a7b07
delete patch
Rohit3523 Mar 10, 2026
9a411c3
added message parser in transformIgnorePatterns
Rohit3523 Mar 10, 2026
8aba39f
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Mar 10, 2026
92030d8
Escaped dot in jest config
Rohit3523 Mar 11, 2026
a0559c6
Merge branch 'iso-support-markdown-component' of https://github.com/R…
Rohit3523 Mar 11, 2026
c0ffa08
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Apr 23, 2026
a07cc94
update message parser to 0.31.35
Rohit3523 Apr 23, 2026
39ab2d8
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Apr 25, 2026
b521502
use same time in story
Rohit3523 Apr 25, 2026
f3afaa4
snapshot update
Rohit3523 Apr 25, 2026
def1d04
Merge branch 'iso-support-markdown-component' of https://github.com/R…
Rohit3523 Apr 25, 2026
d44faf7
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 3, 2026
2926310
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 3, 2026
d0c6163
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 5, 2026
da3d1ab
improve regex for pre 1970 year support
Rohit3523 Aug 5, 2026
41bce0c
handle millisecond and second Unix timestamps in markdown Timestamp
Rohit3523 Aug 12, 2026
84e5a8d
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 12, 2026
01d570a
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 13, 2026
3521df4
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 18, 2026
e2681b6
Merge branch 'develop' into iso-support-markdown-component
Rohit3523 Aug 20, 2026
4d102c7
chore: format code and fix lint issues
Rohit3523 Aug 20, 2026
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
6 changes: 5 additions & 1 deletion app/containers/UIKit/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ const UIKitButton: FC<IUIKitButtonProps> = ({ title, onPress, type = 'primary',
accessibilityLabel={title}
accessibilityRole='button'
style={({ pressed }) => [styles.container, { backgroundColor }, style, pressed && styles.pressed]}>
{loading ? <ActivityIndicator color={color} style={{ padding: 0 }} /> : <Text style={[styles.text, { color }]}>{title}</Text>}
{loading ? (
<ActivityIndicator color={color} style={{ padding: 0 }} />
) : (
<Text style={[styles.text, { color }]}>{title}</Text>
)}
</Pressable>
);
};
Expand Down
24 changes: 17 additions & 7 deletions app/containers/markdown/Markdown.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,23 @@ export const Lists = () => (

export const Timestamp = () => (
<View style={styles.container}>
<Markdown msg='t: <t:1735732800:t>' />
<Markdown msg='T: <t:1735732800:T>' />
<Markdown msg='d: <t:1735732800:d>' />
<Markdown msg='D: <t:1735732800:D>' />
<Markdown msg='f: <t:1735732800:f>' />
<Markdown msg='F: <t:1735732800:F>' />
<Markdown msg='R: <t:1735732800:R>' />
<Markdown msg='Unix timestamp formats' />
<Markdown msg='t - Short time: <t:1735689600:t>' />
<Markdown msg='T - Long time: <t:1735689600:T>' />
<Markdown msg='d - Short date: <t:1735689600:d>' />
<Markdown msg='D - Long date: <t:1735689600:D>' />
<Markdown msg='f - Short date/time: <t:1735689600:f>' />
<Markdown msg='F - Long date/time: <t:1735689600:F>' />
<Markdown msg='R - Relative time: <t:1735689600:R>' />

<Markdown msg='ISO timestamp formats' />
<Markdown msg='t - Short time: <t:2025-01-01T00:00:00.000+00:00:t>' />
<Markdown msg='T - Long time: <t:2025-01-01T00:00:00.000+00:00:T>' />
<Markdown msg='d - Short date: <t:2025-01-01T00:00:00.000+00:00:d>' />
<Markdown msg='D - Long date: <t:2025-01-01T00:00:00.000+00:00:D>' />
<Markdown msg='f - Short date/time: <t:2025-01-01T00:00:00.000+00:00:f>' />
<Markdown msg='F - Long date/time: <t:2025-01-01T00:00:00.000+00:00:F>' />
<Markdown msg='R - Relative time: <t:2025-01-01T00:00:00.000+00:00:R>' />
</View>
);

Expand Down
Loading
Loading