Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMPROVE] Expand the feature set of the new message rendering #25970

Merged
merged 26 commits into from
Jun 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6ce0cfe
Fix command line on template
tassoevan Jun 21, 2022
92aece8
Move components to their own package
tassoevan Jun 21, 2022
527f4df
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into chor…
tassoevan Jun 21, 2022
eda2aef
Update message parser
tassoevan Jun 21, 2022
325d20a
Add KaTeX components
tassoevan Jun 21, 2022
e16b40c
Add highlight.js
tassoevan Jun 22, 2022
4959d46
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 22, 2022
f68f7f8
Refactor mentions
tassoevan Jun 23, 2022
76576b5
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 23, 2022
601e4dc
Implement highlight
tassoevan Jun 23, 2022
ab42b69
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 23, 2022
084964e
Move some modules
tassoevan Jun 23, 2022
03f108e
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 23, 2022
3f517cc
Patch minor details
tassoevan Jun 23, 2022
217ef5d
Fix stylelint issue
tassoevan Jun 23, 2022
0d3f02f
Change emoji rendering
tassoevan Jun 24, 2022
90e0ac9
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 24, 2022
003ee93
Remove extra definitions file
tassoevan Jun 24, 2022
ec2d059
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 24, 2022
4969a9d
Add events for task lists
tassoevan Jun 24, 2022
6e29caf
Add some unit tests
tassoevan Jun 25, 2022
157361d
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 25, 2022
65c7a36
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
tassoevan Jun 27, 2022
2e138d1
Add Storybook
tassoevan Jun 27, 2022
4c2a571
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
gabriellsh Jun 28, 2022
44cff8b
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
gabriellsh Jun 28, 2022
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 _templates/package/new/package.json.ejs.t
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ to: packages/<%= name %>/package.json
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"jest": "jest",
"build": "rm -rf dist && tsc -p tsconfig.json",
"dev": "tsc -p --watch --preserveWatchOutput tsconfig.json"
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down
354 changes: 177 additions & 177 deletions apps/meteor/app/markdown/lib/hljs.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions apps/meteor/app/theme/client/imports/general/base_old.css
Original file line number Diff line number Diff line change
Expand Up @@ -2934,6 +2934,8 @@
.rc-old .highlight-text {
padding: 2px;

color: inherit;

border-radius: 15px;
background-color: var(--selection-background);
}
Expand Down
29 changes: 0 additions & 29 deletions apps/meteor/client/components/CustomText.tsx

This file was deleted.

17 changes: 0 additions & 17 deletions apps/meteor/client/components/Katex.tsx

This file was deleted.

This file was deleted.

This file was deleted.

55 changes: 0 additions & 55 deletions apps/meteor/client/components/gazzodown/blocks/CodeBlock.tsx

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

42 changes: 0 additions & 42 deletions apps/meteor/client/components/gazzodown/elements/LinkSpan.tsx

This file was deleted.

21 changes: 0 additions & 21 deletions apps/meteor/client/components/gazzodown/elements/PlainSpan.tsx

This file was deleted.

Loading