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

[pull] develop from quilljs:develop #34

Merged
merged 16 commits into from
Dec 9, 2023
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [Unreleased]

- Fix syntax label from "Javascript" to "JavaScript".

# v2.0.0-beta.0

In the upcoming 2.0 release, Quill has been significantly modernized. Leveraging the latest browser-supported APIs, Quill now delivers a more efficient and reliable editing experience.
Expand Down
36 changes: 31 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/quill/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@playwright/test": "1.38.1",
"@types/highlight.js": "^9.12.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.0",
"@types/webpack": "^5.28.5",
Expand Down
3 changes: 1 addition & 2 deletions packages/quill/src/modules/syntax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ class Syntax extends Module<SyntaxOptions> {
}
Syntax.DEFAULTS = {
hljs: (() => {
// @ts-expect-error
return window.hljs;
})(),
interval: 1000,
Expand All @@ -342,7 +341,7 @@ Syntax.DEFAULTS = {
{ key: 'diff', label: 'Diff' },
{ key: 'xml', label: 'HTML/XML' },
{ key: 'java', label: 'Java' },
{ key: 'javascript', label: 'Javascript' },
{ key: 'javascript', label: 'JavaScript' },
{ key: 'markdown', label: 'Markdown' },
{ key: 'php', label: 'PHP' },
{ key: 'python', label: 'Python' },
Expand Down
9 changes: 4 additions & 5 deletions packages/quill/test/unit/modules/syntax.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @ts-expect-error
import hljs from 'highlight.js';
import Delta from 'quill-delta';
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
Expand All @@ -15,7 +14,7 @@ describe('Syntax', () => {
Quill.register({ 'modules/syntax': Syntax }, true);
Syntax.register();
Syntax.DEFAULTS.languages = [
{ key: 'javascript', label: 'Javascript' },
{ key: 'javascript', label: 'JavaScript' },
{ key: 'ruby', label: 'Ruby' },
];
});
Expand Down Expand Up @@ -166,15 +165,15 @@ describe('Syntax', () => {
`
<div class="ql-code-block-container" spellcheck="false">
<select class="ql-ui" contenteditable="false">
<option value="javascript">Javascript</option>
<option value="javascript">JavaScript</option>
<option value="ruby">Ruby</option>
</select>
<div class="ql-code-block" data-language="javascript"><span class="ql-token hljs-keyword">var</span> test = <span class="ql-token hljs-number">1</span>;</div>
</div>
<p><br></p>
<div class="ql-code-block-container" spellcheck="false">
<select class="ql-ui" contenteditable="false">
<option value="javascript">Javascript</option>
<option value="javascript">JavaScript</option>
<option value="ruby">Ruby</option>
</select>
<div class="ql-code-block" data-language="javascript"><span class="ql-token hljs-keyword">var</span> bugz = <span class="ql-token hljs-number">0</span>;</div>
Expand All @@ -201,7 +200,7 @@ describe('Syntax', () => {
`
<div class="ql-code-block-container" spellcheck="false">
<select class="ql-ui" contenteditable="false">
<option value="javascript">Javascript</option>
<option value="javascript">JavaScript</option>
<option value="ruby">Ruby</option>
</select>
<div class="ql-code-block" data-language="javascript"><span class="ql-token hljs-keyword">var</span> test = <span class="ql-token hljs-number">1</span>;</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/website/content/guides/upgrading-to-1-0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const oldBullettedList = {

- Ability to add new formats and content, or modify existing ones with [Parchment](https://github.com/quilljs/parchment/).

- Added support for nested list, superscript, subscript, inline code, code block, header, blockquote, text direction, video and forumla support.
- Added support for nested list, superscript, subscript, inline code, code block, header, blockquote, text direction, video and formula support.

- Ability to format with classes instead of inline styles.

Expand Down
5 changes: 5 additions & 0 deletions packages/website/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ exports.onCreateNode = async ({ node, actions, getNode, reporter, cache }) => {
const relativePath = path.relative(path.resolve("content"), filePath);
const extension = path.extname(filePath);
const slug = relativePath.replace(extension, "");
createNodeField({
node,
name: `githubPath`,
value: path.join(siteMetadata.github, relativePath),
});
createNodeField({
node,
name: `pageType`,
Expand Down
5 changes: 4 additions & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"react-helmet": "^6.1.0",
"slugify": "^1.6.5"
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"gatsby": "4.24.5",
"gatsby-plugin-feed": "4.24.0",
Expand All @@ -33,7 +36,7 @@
"gatsby-remark-prismjs": "6.24.0",
"gatsby-source-filesystem": "4.24.0",
"http-proxy": "^1.18.1",
"prism-react-renderer": "^1.3.5",
"prism-react-renderer": "^2.3.0",
"prismjs": "^1.29.0",
"sass": "^1.55.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/website/root-wrapper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { MDXProvider } from '@mdx-js/react';
import Highlight, { defaultProps } from 'prism-react-renderer';
import { Highlight, themes, defaultProps } from 'prism-react-renderer';
import CodePen from './src/components/CodePen';
import Editor from './src/components/Editor';
import {
Expand Down
6 changes: 3 additions & 3 deletions packages/website/src/components/GitHub.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useEffect, useState } from "react";
import OctocatIcon from "../svg/octocat.svg";
import * as styles from "./GitHub.module.scss";

const placeholderCount = (33825).toLocaleString();
const placeholderCount = (37622).toLocaleString();

const GitHub = ({ dark = false }) => {
const [count, setCount] = useState(placeholderCount);
Expand All @@ -21,7 +21,7 @@ const GitHub = ({ dark = false }) => {
}, []);

return (
<span className={classNames(styles.button, { [styles.isDark]: dark })}>
<div className={classNames(styles.button, { [styles.isDark]: dark })}>
<a
className={styles.action}
target="_blank"
Expand All @@ -39,7 +39,7 @@ const GitHub = ({ dark = false }) => {
>
{count}
</a>
</span>
</div>
);
};

Expand Down
16 changes: 10 additions & 6 deletions packages/website/src/components/GitHub.module.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
.button {
background-color: #1d1e30;
border: 3px solid #1d1e30;
display: inline-block;
font-family: 'Sofia Pro', sans-serif;
display: flex;
flex-direction: row;
font-family: "Sofia Pro", sans-serif;
font-weight: bold;
letter-spacing: 0.15rem;
text-transform: uppercase;
width: min-content;
}

.action {
color: #fff;
display: inline-block;
float: left;
display: flex;
flex-direction: row;
font-size: 1.33rem;
line-height: 32px;
padding: 10px 22px;
Expand All @@ -34,8 +36,6 @@

.count {
background-color: #fff;
display: inline-block;
float: left;
font-size: 1.75rem;
line-height: 32px;
padding: 10px 30px;
Expand All @@ -58,3 +58,7 @@
background-color: #1d1e30;
color: #fff;
}

body:not(:global(.home)) .button {
margin-top: 1.78em;
}
2 changes: 1 addition & 1 deletion packages/website/src/components/Heading.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Heading = ({ level, children, anchor = 'on' }) => {
{ id },
<>
{id && <a className="anchor" href={`#${id}`}></a>}
{children}
{title}
{isExperimental && <span className="experimental">experimental</span>}
</>,
);
Expand Down
Loading