Merge remote-tracking branch 'tiptap-next/main'

This commit is contained in:
Hans Pagel
2021-04-21 15:05:44 +02:00
902 changed files with 62508 additions and 0 deletions

12
.editorconfig Normal file
View File

@@ -0,0 +1,12 @@
# EditorConfig is awesome: http://EditorConfig.org
root = true
[*]
end_of_line = lf
charset = utf-8
insert_final_newline = true
max_line_length = 100
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

1
.eslintignore Normal file
View File

@@ -0,0 +1 @@
**/dist/**

90
.eslintrc.js Normal file
View File

@@ -0,0 +1,90 @@
module.exports = {
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
env: {
es6: true,
node: true,
},
overrides: [
{
files: [
'./**/*.ts',
'./**/*.tsx',
'./**/*.js',
'./**/*.jsx',
'./**/*.vue',
],
plugins: [
'html',
'cypress',
'@typescript-eslint',
],
env: {
'cypress/globals': true,
},
globals: {
document: false,
window: false,
},
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/strongly-recommended',
'airbnb-base',
],
rules: {
'no-alert': 'off',
'no-console': ['warn', { allow: ['warn', 'error'] }],
semi: ['error', 'never'],
'import/order': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'import/no-unresolved': 'off',
'import/no-dynamic-require': 'off',
'arrow-parens': ['error', 'as-needed'],
'padded-blocks': 'off',
'class-methods-use-this': 'off',
'global-require': 'off',
'func-names': ['error', 'never'],
'arrow-body-style': 'off',
'max-len': 'off',
'vue/one-component-per-file': 'off',
'vue/this-in-template': ['error', 'never'],
'vue/max-attributes-per-line': ['error', {
singleline: 3,
multiline: {
max: 1,
allowFirstLine: false,
},
}],
'vue/singleline-html-element-content-newline': 'off',
'no-param-reassign': 'off',
'import/prefer-default-export': 'off',
'consistent-return': 'off',
'prefer-destructuring': 'off',
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': ['error'],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error'],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
'no-dupe-class-members': 'off',
'@typescript-eslint/no-dupe-class-members': ['error'],
'lines-between-class-members': 'off',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/lines-between-class-members': ['error'],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/explicit-module-boundary-type': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/comma-dangle': ['error', 'always-multiline'],
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
},
],
}

36
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,36 @@
---
name: Bug report
about: Create a report to help us improve
url: https://github.com/ueberdosis/tiptap-next/issues/new
title: ''
labels: bug
assignees: ''
---
**What happens?**
A clear and concise description of what the bug is.
**How can others reproduce the issue?**
Steps to reproduce the behavior:
1. Go to …
2. Type in …
3. Click on …
4. See error message
Create a new Codesandbox replicating your error
https://codesandbox.io/s/tiptap-issue-template-b83rr?file=/src/components/Tiptap.vue (Vue)
https://codesandbox.io/s/tiptap-react-08yxr (React)
**What behavior did you expect?**
A clear and concise description of what you expected to happen.
**Do you have a screenshot?**
If applicable, add screenshots to help explain your problem.
**Whats your environment?**
- Operating system
- Browser
- Mobile/desktop
**What else?**
Add any other context about the problem here.

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
# - name: Ask a question
# url: https://github.com/ueberdosis/tiptap/discussions/new
# about: Ask the community for help

View File

@@ -0,0 +1,19 @@
---
name: Feature request
about: Suggest a new feature for tiptap
title: ''
labels: feature request
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. For example: Im always frustrated when …
**Describe the solution youd like**
A clear and concise description of what you want to happen.
**Describe alternatives youve considered**
A clear and concise description of any alternative solutions or features youve considered.
**Additional context**
Add any other context or screenshots about the feature request here.

20
.github/ISSUE_TEMPLATE/feedback.md vendored Normal file
View File

@@ -0,0 +1,20 @@
---
name: Feedback on the documentation
about: Share what we need to explain better
url: https://github.com/ueberdosis/tiptap-next/issues/new
title: ''
labels: documentation
assignees: ''
---
**Which part of the documentation have you read?**
Ive been to the following page of the documentation …
**Did you find the content helpful?**
I think this part is really good: …
**What was hard to understand, missing or misleading?**
But you really need to improve …
**What else?**
Add any other context here.

23
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
# Dependabot creates pull requests to keep your dependencies secure and up-to-date.
# Documentation: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
open-pull-requests-limit: 10
schedule:
interval: 'weekly'
day: 'monday'
reviewers:
- 'hanspagel'
- package-ecosystem: 'npm'
directory: '/'
open-pull-requests-limit: 10
schedule:
interval: 'weekly'
day: 'monday'
reviewers:
- 'philippkuehn'

170
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,170 @@
# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions.
# Documentation: https://docs.github.com/en/actions
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- name: Load cached dependencies
uses: actions/cache@v2.1.4
id: cache
with:
path: |
**/node_modules
/home/runner/.cache/Cypress
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
id: install-dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: Fix code style linting errors
id: lint-fix
run: yarn lint:fix
continue-on-error: true
- name: Commit fixed linting errors
id: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "ci: fix code style linting errors"
- name: Lint code
id: lint
run: yarn lint
- name: Send Slack notifications
uses: act10ns/slack@v1
if: failure()
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#tiptap-notifications'
test:
runs-on: ubuntu-latest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- name: Run tests with Cypress
id: cypress
uses: cypress-io/github-action@v2
with:
cache-key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
start: yarn start
wait-on: 'http://localhost:3000'
project: ./tests
browser: chrome
quiet: true
- name: Export screenshots (on failure only)
uses: actions/upload-artifact@v2.2.2
if: failure()
with:
name: cypress-screenshots
path: tests/cypress/screenshots
retention-days: 7
- name: Export screen recordings (on failure only)
uses: actions/upload-artifact@v2.2.2
if: failure()
with:
name: cypress-videos
path: tests/cypress/videos
retention-days: 7
- name: Send Slack notifications
uses: act10ns/slack@v1
if: failure()
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#tiptap-notifications'
build:
runs-on: ubuntu-latest
needs: lint
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- name: Load cached dependencies
uses: actions/cache@v2.1.4
id: cache
with:
path: |
**/node_modules
/home/runner/.cache/Cypress
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
id: install-dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: Try to build the packages
id: build-packages
run: yarn build:ci
- name: Send Slack notifications
uses: act10ns/slack@v1
if: failure()
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#tiptap-notifications'

25
.gitignore vendored Normal file
View File

@@ -0,0 +1,25 @@
*.log
.cache
.DS_Store
.temp
node_modules
dist
.env
.env.*
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# parcel-bundler cache (https://parceljs.org/)
.cache
.rpt2_cache
.rts2_cache
.rts2_cache_cjs
.rts2_cache_es
.rts2_cache_umd
tests/cypress/videos
/tests/cypress/screenshots

49
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,49 @@
# Contributing
Contributions are **welcome** and will be fully **credited**.
Please read and understand the contribution guide before creating an issue or pull request.
## Etiquette
This project is open source, and as such, the maintainers give their free time to build and maintain the source code
held within. They make the code freely available in the hope that it will be of use to other developers. It would be
extremely unfair for them to suffer abuse or anger for their hard work.
Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the
world that developers are civilized and selfless people.
It's the duty of the maintainer to ensure that all submissions to the project are of sufficient
quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used.
## Viability
When requesting or submitting new features, first consider whether it might be useful to others. Open
source projects are used by many developers, who may have entirely different needs to your own. Think about
whether or not your feature is likely to be used by other users of the project.
## Procedure
Before filing an issue:
- Attempt to replicate the problem, to ensure that it wasn't a coincidental incident.
- Check to make sure your feature suggestion isn't already present within the project.
- Check the pull requests tab to ensure that the bug doesn't have a fix in progress.
- Check the pull requests tab to ensure that the feature isn't already in progress.
Before submitting a pull request:
- Check the codebase to ensure that your feature doesn't already exist.
- Check the pull requests to ensure that another person hasn't already submitted the feature or fix.
## Requirements
If the project maintainer has any additional requirements, you will find them listed here.
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
**Happy coding**!

21
LICENSE.md Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020, überdosis GbR
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

65
README.md Normal file
View File

@@ -0,0 +1,65 @@
# tiptap 2
A headless, framework-agnostic and extendable rich text editor, based on [ProseMirror](https://github.com/ProseMirror/prosemirror).
[![Build Status](https://github.com/ueberdosis/tiptap-next/workflows/build/badge.svg)](https://github.com/ueberdosis/tiptap-next/actions)
[![Version](https://img.shields.io/npm/v/@tiptap/core.svg?label=version)](https://www.npmjs.com/package/@tiptap/core)
[![Downloads](https://img.shields.io/npm/dm/@tiptap/core.svg)](https://npmcharts.com/compare/@tiptap/core?minimal=true)
[![License](https://img.shields.io/npm/l/@tiptap/core.svg)](https://www.npmjs.com/package/@tiptap/core)
[![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg?sanitize=true)](https://discord.gg/WtJ49jGshW)
[![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub)](https://github.com/sponsors/ueberdosis)
> If youre looking for tiptap 1, [click here](https://github.com/ueberdosis/tiptap/tree/v1).
## Examples
Have a look at the [examples to see tiptap in action](https://next.tiptap.dev/examples).
## Documentation
The full documentation is a available on [next.tiptap.dev](https://next.tiptap.dev/installation).
## Community
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
[Discuss tiptap on GitHub](https://github.com/ueberdosis/tiptap/discussions)
For casual chit-chat with others using the framework:
[Join the tiptap Discord Server](https://discord.gg/WtJ49jGshW)
## 💖 Sponsors
* [überdosis](https://ueberdosis.io/)
* [Ziff Media Group](https://ziffmedia.com/)
* [Incyte Studios](https://incytestudios.com/)
* [dotCMS](http://dotcms.com/)
* [Restruct](https://restruct.nl/)
[mymind](https://mymind.com/),
[DocIQ](https://www.dociq.io/),
[Apostrophe CMS](https://apostrophecms.com/),
[Ycode](https://www.ycode.com/),
[@impactvelocity](https://github.com/impactvelocity),
[Flow Mobile](https://www.flowmobile.app/),
[Gretel](http://www.gretel.co/),
[Omics Data Automation](https://www.omicsautomation.com/),
[Novadiscovery](http://www.novadiscovery.com/),
[Atlan Technologies](https://atlan.com/),
[Gamma](https://gamma.app/),
[Kirchner Consulting](https://kirchnerconsulting.ch/),
[IT Xpert](https://itxpert.ch/) and hundreds of awesome inviduals.
Using tiptap in production? Invest in the future of tiptap and [become a sponsor!](https://github.com/sponsors/ueberdosis)
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Contributors
[Sam Willis](https://github.com/samwillis),
[Christoph Flathmann](https://github.com/Chrissi2812),
[Erick Wilder](https://github.com/erickwilder),
[Marius Tolzmann](https://github.com/mariux),
[jjangga0214](https://github.com/jjangga0214),
[Maya Nedeljkovich](https://github.com/mayacoda),
[Ryan Bliss](https://github.com/ryanbliss),
[Gregor](https://github.com/gambolputty) and [many more](../../contributors).
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

10
babel.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react',
],
plugins: [
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-proposal-optional-chaining',
],
}

3
cypress.json Normal file
View File

@@ -0,0 +1,3 @@
{
"reporter": "list"
}

2
docs/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
static/images/*
!static/images/.gitkeep

10
docs/babel.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react',
],
plugins: [
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-class-properties',
],
}

BIN
docs/fonts/Inter-Black.otf Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/fonts/Inter-Bold.otf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
docs/fonts/Inter-Italic.otf Normal file

Binary file not shown.

BIN
docs/fonts/Inter-Light.otf Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/fonts/Inter-Medium.otf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
docs/fonts/Inter-Thin.otf Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/fonts/Inter-V.ttf Normal file

Binary file not shown.

26
docs/gridsome.client.js Normal file
View File

@@ -0,0 +1,26 @@
export default function (Vue, options, context) {
Vue.mixin({
data() {
return {
cwd: options.cwd,
}
},
})
context.router.afterEach(to => {
if (to.hash) {
setTimeout(() => {
const element = document.getElementById(to.hash.substr(1))
const top = element.offsetTop
const offset = parseFloat(
getComputedStyle(element).scrollMarginTop
|| getComputedStyle(element).scrollSnapMarginTop,
)
window.scrollTo(0, top - offset)
}, 0)
}
})
}

85
docs/gridsome.config.js Normal file
View File

@@ -0,0 +1,85 @@
const path = require('path')
const visit = require('unist-util-visit')
function addStyleResource(rule) {
rule.use('style-resource')
.loader('style-resources-loader')
.options({
patterns: [
path.resolve(__dirname, './src/variables.scss'),
],
})
}
function tableWrapper() {
return async tree => {
visit(
tree,
'table',
(node, index, parent) => {
if (node.type === 'table' && parent.type === 'root') {
const original = { ...node }
node.type = 'div'
node.children = [original]
node.data = {
hProperties: {
class: 'table-wrapper',
},
}
}
},
)
}
}
module.exports = {
siteName: 'tiptap',
titleTemplate: '%s tiptap editor',
icon: './src/favicon.svg',
port: 3000,
plugins: [
{
use: '@gridsome/vue-remark',
options: {
typeName: 'DocPage',
baseDir: './src/docPages',
template: './src/templates/DocPage/index.vue',
plugins: [
'@gridsome/remark-prismjs',
'remark-container',
'remark-toc',
tableWrapper,
],
remark: {
autolinkHeadings: {
content: {
type: 'text',
value: '#',
},
},
},
},
},
],
runtimeCompiler: true,
configureWebpack: {
node: {
fs: 'empty',
child_process: 'empty',
tls: 'empty',
net: 'empty',
},
externals: {
canvas: 'commonjs canvas',
},
},
chainWebpack(config) {
// Load variables for all vue-files
const types = ['vue-modules', 'vue', 'normal-modules', 'normal']
types.forEach(type => {
addStyleResource(config.module.rule('scss').oneOf(type))
})
},
}

97
docs/gridsome.server.js Normal file
View File

@@ -0,0 +1,97 @@
const path = require('path')
const globby = require('globby')
const { createDefaultOpenGraphImage, createSpecificOpenGraphImage } = require('./utilities/opengraph-images')
createDefaultOpenGraphImage('The headless editor framework for web artisans.', 'static/images/og-image.png')
module.exports = function (api) {
api.setClientOptions({
cwd: process.cwd(),
})
let numberOfPages = 0
let numberOfDemos = 0
api.loadSource(() => {
/**
* Generate pages for all demo components for testing purposes
*/
const demos = []
globby.sync('./src/demos/**/index.(vue|jsx)').forEach(file => {
const match = file.match(
new RegExp(/\.\/src\/demos\/([\S]+)\/index.(vue|jsx)/i),
)
if (!match) {
return
}
demos.push(match[1])
})
numberOfDemos = demos.length
api.createPages(({ createPage }) => {
createPage({
path: '/demos',
component: './src/templates/DemoPages/index.vue',
context: {
demos,
},
})
demos.forEach(name => {
createPage({
path: `/demos/${name}`,
component: './src/templates/DemoPage/index.vue',
context: {
name,
},
})
})
})
})
api.chainWebpack(config => {
config.resolve.extensions
.add('.ts')
.add('.tsx')
.add('.jsx')
config.module
.rule('typescript')
.test(/\.tsx?$/)
.use()
.loader('ts-loader')
.options({ transpileOnly: false, appendTsSuffixTo: [/\.vue$/] })
config.module
.rule('jsx')
.test(/\.jsx$/)
.use()
.loader('babel-loader')
globby.sync('../packages/*', { onlyDirectories: true })
.map(name => name.replace('../packages/', ''))
.forEach(name => {
config.resolve.alias
.set(`@tiptap/${name}`, path.resolve(`../packages/${name}/src/index.ts`))
})
})
api.onCreateNode(options => {
if (options.internal.typeName === 'DocPage') {
numberOfPages += 1
if (process.env.NODE_ENV === 'production') {
createSpecificOpenGraphImage(options.title, options.content, `static/images${options.path}og-image.png`)
}
}
})
api.configureServer(() => {
console.log(`[STATS] ${numberOfPages} pages, ${numberOfDemos} interactive demos`)
})
}

50
docs/package.json Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "@tiptap/docs",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "gridsome develop",
"build": "gridsome build"
},
"dependencies": {
"@gridsome/remark-prismjs": "^0.5.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-json": "^0.2.1",
"@gridsome/vue-remark": "^0.2.6",
"@mvasilkov/outdent": "^1.0.4",
"canvas": "^2.6.1",
"collect.js": "^4.28.6",
"d3": "^6.6.1",
"globby": "^11.0.3",
"gridsome": "0.7.23",
"iframe-resizer": "^4.3.1",
"portal-vue": "^2.1.7",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-container": "^0.1.2",
"remark-toc": "^7.2.0",
"remixicon": "^2.5.0",
"simplify-js": "^1.2.4",
"tippy.js": "^6.3.1",
"vue-github-button": "^1.1.2",
"vue-observe-visibility": "^1.0.0",
"y-indexeddb": "^9.0.6",
"y-prosemirror": "^1.0.8",
"y-webrtc": "^10.1.7",
"y-websocket": "^1.3.11",
"yjs": "^13.5.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"html-loader": "^1.3.2",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"style-resources-loader": "^1.4.1",
"ts-loader": "^8.1.0"
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,17 @@
<svg width="102" height="28" viewBox="0 0 102 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M41.1627 9.44277H38.8001V6.43427H35.3174V9.44277H33.6006V12.0589H35.3174V18.5991C35.3011 21.0598 36.977 22.278 39.5032 22.1717C40.4024 22.139 41.0401 21.9591 41.3917 21.8447L40.8439 19.2531C40.6722 19.2858 40.3043 19.3676 39.9773 19.3676C39.2824 19.3676 38.8001 19.106 38.8001 18.1413V12.0589H41.1627V9.44277ZM43.4314 22H46.9141V9.44277H43.4314V22ZM45.1809 7.82407C46.2192 7.82407 47.0694 7.03107 47.0694 6.05821C47.0694 5.09352 46.2192 4.30052 45.1809 4.30052C44.1508 4.30052 43.3006 5.09352 43.3006 6.05821C43.3006 7.03107 44.1508 7.82407 45.1809 7.82407ZM49.7039 26.709H53.1865V19.9889H53.2928C53.7752 21.0353 54.8298 22.2044 56.8572 22.2044C59.7186 22.2044 61.9504 19.9398 61.9504 15.7377C61.9504 11.4212 59.6205 9.27927 56.8654 9.27927C54.7644 9.27927 53.7588 10.5301 53.2928 11.552H53.1375V9.44277H49.7039V26.709ZM53.113 15.7214C53.113 13.4814 54.0613 12.0507 55.7536 12.0507C57.4786 12.0507 58.3942 13.5468 58.3942 15.7214C58.3942 17.9124 57.4622 19.433 55.7536 19.433C54.0776 19.433 53.113 17.9614 53.113 15.7214ZM70.9514 9.44277H68.5888V6.43427H65.1061V9.44277H63.3893V12.0589H65.1061V18.5991C65.0897 21.0598 66.7657 22.278 69.2918 22.1717C70.1911 22.139 70.8288 21.9591 71.1803 21.8447L70.6326 19.2531C70.4609 19.2858 70.093 19.3676 69.766 19.3676C69.0711 19.3676 68.5888 19.106 68.5888 18.1413V12.0589H70.9514V9.44277ZM77.7124 22.2044C79.7398 22.2044 80.7945 21.0353 81.2768 19.9889H81.424V22H84.8576V9.44277H81.3831V11.552H81.2768C80.8108 10.5301 79.8052 9.27927 77.7042 9.27927C74.9491 9.27927 72.6192 11.4212 72.6192 15.7377C72.6192 19.9398 74.851 22.2044 77.7124 22.2044ZM78.816 19.433C77.1074 19.433 76.1754 17.9124 76.1754 15.7214C76.1754 13.5468 77.0911 12.0507 78.816 12.0507C80.5083 12.0507 81.4567 13.4814 81.4567 15.7214C81.4567 17.9614 80.492 19.433 78.816 19.433ZM87.721 26.709H91.2036V19.9889H91.3099C91.7922 21.0353 92.8469 22.2044 94.8743 22.2044C97.7357 22.2044 99.9675 19.9398 99.9675 15.7377C99.9675 11.4212 97.6376 9.27927 94.8825 9.27927C92.7815 9.27927 91.7759 10.5301 91.3099 11.552H91.1546V9.44277H87.721V26.709ZM91.1301 15.7214C91.1301 13.4814 92.0784 12.0507 93.7707 12.0507C95.4956 12.0507 96.4113 13.5468 96.4113 15.7214C96.4113 17.9124 95.4793 19.433 93.7707 19.433C92.0947 19.433 91.1301 17.9614 91.1301 15.7214Z" fill="black"/>
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="2" width="25" height="25">
<circle cx="12.2302" cy="14.3884" r="12.2302" fill="#C4C4C4"/>
</mask>
<g mask="url(#mask0)">
<line x1="-8.63232" y1="2.87774" x2="34.5331" y2="2.87774" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="5.75543" x2="34.5327" y2="5.75543" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="8.63311" x2="34.5327" y2="8.63311" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="11.5108" x2="34.5327" y2="11.5108" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="14.3885" x2="34.5327" y2="14.3885" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="17.2662" x2="34.5327" y2="17.2662" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="20.1439" x2="34.5327" y2="20.1439" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="23.0215" x2="34.5327" y2="23.0215" stroke="black" stroke-width="1.43885"/>
<line x1="-8.63281" y1="25.8992" x2="34.5327" y2="25.8992" stroke="black" stroke-width="1.43885"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,6 @@
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.269 47.8341C18.3776 48.8014 16.0914 48.4496 13.7172 47.6582C11.3791 46.8655 9.34912 45.3584 7.9138 43.3496L7.65 43.0858C6.33104 41.2393 5.3638 39.1289 4.48449 33.6772L3.07759 24.5324C2.11035 18.5531 2.37414 16.2669 3.25345 13.8927C4.0737 11.5687 5.53744 9.52554 7.47414 8.00135L7.82587 7.73755C9.67242 6.41859 11.7828 5.45135 17.1466 4.57204L26.1155 3.16514C32.0069 2.1979 34.2931 2.54962 36.6672 3.341C39.0053 4.13374 41.0354 5.64089 42.4707 7.64962L42.7345 8.00135C44.0534 9.8479 45.0207 11.9582 45.9 17.41L47.3069 26.4669C48.2741 32.4462 48.0103 34.7324 47.131 37.1065C46.3394 39.4454 44.8703 41.4961 42.9103 42.9979L42.5586 43.2617C40.7121 44.5807 38.6017 45.5479 33.2379 46.4272L24.269 47.8341Z" fill="#0D0D0D"/>
<path d="M34.3019 31.5676C37.3613 31.5676 39.8415 29.0874 39.8415 26.0279C39.8415 22.9685 37.3613 20.4883 34.3019 20.4883C31.2424 20.4883 28.7622 22.9685 28.7622 26.0279C28.7622 29.0874 31.2424 31.5676 34.3019 31.5676Z" stroke="white" stroke-width="2.42" stroke-linejoin="round"/>
<path d="M22.1093 12.1554L12.1875 13.7588L13.7909 23.6806L23.7127 22.0772L22.1093 12.1554Z" stroke="white" stroke-width="2.43" stroke-linejoin="round"/>
<path d="M21.1035 28.665L28.9294 38.6892L16.8828 40.6237L21.1035 28.665Z" stroke="white" stroke-width="2.42" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,3 @@
<svg width="66" height="41" viewBox="0 0 66 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.7002 25.2398C52.3902 25.1698 52.1402 25.0898 51.9002 24.9898C51.7402 24.9098 51.6002 24.8298 51.4802 24.7198C51.4403 24.6857 51.4095 24.6423 51.3903 24.5935C51.3711 24.5447 51.3642 24.4919 51.3702 24.4398C51.4902 23.1698 51.3602 22.0398 51.4702 20.7898C51.9802 15.6698 55.2002 17.2898 58.0902 16.4598C59.7402 15.9898 61.4002 15.0698 62.0102 13.2598C62.1102 12.9598 62.0202 12.6398 61.8102 12.4098C59.947 10.2839 57.8467 8.37815 55.5502 6.72976C47.795 1.33175 38.2879 -0.939673 28.9302 0.36976C28.8512 0.379221 28.7759 0.408588 28.7113 0.455108C28.6468 0.501628 28.5951 0.563778 28.5611 0.635733C28.5271 0.707688 28.512 0.787093 28.5171 0.866504C28.5222 0.945916 28.5473 1.02273 28.5902 1.08976C29.7187 2.8468 31.2254 4.32957 33.0002 5.42976C33.3202 5.62976 33.1902 6.05976 32.8202 5.96976C31.7516 5.73488 30.7393 5.29325 29.8402 4.66976C29.7905 4.63702 29.7333 4.61714 29.674 4.6119C29.6147 4.60667 29.555 4.61624 29.5002 4.63976L27.8102 5.31976C27.7366 5.34977 27.6721 5.39834 27.6228 5.46073C27.5736 5.52312 27.5413 5.59721 27.5293 5.67576C27.5172 5.75432 27.5257 5.83467 27.5539 5.90898C27.5821 5.98329 27.6291 6.04902 27.6902 6.09976C29.9294 8.04028 32.7264 9.22035 35.6789 9.47013C38.6313 9.71992 41.5869 9.02653 44.1202 7.48976C44.4402 7.28976 44.9502 7.68976 44.8502 8.04976C44.6802 8.61976 44.4902 9.40976 44.2902 10.4798C42.9902 17.0098 39.2702 16.5098 34.6602 14.8598C25.4602 11.5198 20.2302 14.3698 15.5902 8.72976C15.2602 8.32976 14.6902 8.19976 14.3102 8.52976C13.7939 8.96913 13.3871 9.52287 13.1223 10.147C12.8574 10.7711 12.7417 11.4483 12.7844 12.125C12.8272 12.8016 13.0271 13.4589 13.3683 14.0448C13.7096 14.6306 14.1827 15.1288 14.7502 15.4998C14.9002 15.5998 15.0902 15.5598 15.2002 15.4298C15.4902 15.0598 15.7202 14.8298 16.0202 14.6698C16.3302 14.5098 16.4902 14.9698 16.2202 15.1998C15.2302 16.0698 14.9502 17.1098 14.3102 19.1698C13.2902 22.3798 13.7202 25.6698 8.99023 26.5298C6.49023 26.6598 6.53023 28.3598 5.62023 30.8898C4.56023 33.9498 3.18023 35.2898 0.62023 37.9698C0.26023 38.3298 0.23023 38.9198 0.62023 39.2498C1.64023 40.1198 2.70023 40.1698 3.77023 39.7298C6.43023 38.6098 8.48023 35.1698 10.4102 32.9398C12.5602 30.4598 17.7202 31.5198 21.6202 29.0898C23.7202 27.7998 24.9902 26.1498 24.5902 23.6898C24.5202 23.2898 24.9802 23.0498 25.1402 23.4198C25.4502 24.1198 25.6602 24.8598 25.7402 25.6198C25.7702 25.8298 25.9402 25.9798 26.1502 25.9698C30.3702 25.7298 35.8202 30.3798 40.9202 31.6398C41.2302 31.7198 41.4502 31.3598 41.2802 31.0898C40.6538 30.145 40.2032 29.0948 39.9502 27.9898C39.8502 27.5998 40.4302 27.4898 40.6302 27.8498C41.3882 29.2218 42.4765 30.383 43.7966 31.2282C45.1168 32.0733 46.6269 32.5757 48.1902 32.6898C49.4302 32.7898 50.7902 32.6398 52.2102 32.2098C53.9102 31.6998 55.4802 31.0398 57.3502 31.3998C58.0473 31.5072 58.716 31.7527 59.317 32.1219C59.918 32.4911 60.4392 32.9765 60.8502 33.5498C61.9802 35.2098 64.3802 35.6498 65.6602 33.9098C65.7438 33.7919 65.7951 33.6542 65.8092 33.5104C65.8232 33.3666 65.7994 33.2216 65.7402 33.0898C62.9202 26.4898 55.7702 26.0398 52.6902 25.2398H52.7002Z" fill="#0D0D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,7 @@
<svg width="99" height="30" viewBox="0 0 99 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.5921 22.7484C30.1536 26.5926 36.1675 26.8321 40.0254 23.2834C43.8834 19.7346 44.1251 13.741 40.5653 9.89516C37.0055 6.0493 30.9918 5.80705 27.1322 9.35402C23.2789 12.9074 23.0374 18.8983 26.5921 22.7484ZM36.985 22.2023L36.3202 21.4817C33.9708 22.6873 31.1026 22.1793 29.314 20.2406C27.5253 18.3019 27.2573 15.4109 28.6593 13.1785L29.1823 13.7453C28.0945 15.6778 28.3766 18.0883 29.8815 19.7193C31.3864 21.3504 33.7729 21.8323 35.7961 20.9137L35.1313 20.1931C35.182 20.0969 35.2887 20.0437 35.3963 20.061L36.8465 20.1239C36.9427 20.1139 37.038 20.1499 37.1035 20.2208C37.1689 20.2918 37.1969 20.3894 37.1789 20.4842L37.1186 21.918C37.119 22.0279 37.07 22.1322 36.985 22.2023ZM30.2484 10.4056L30.8822 11.0925C33.2399 9.88873 36.1139 10.4009 37.907 12.3443C39.7001 14.2878 39.9717 17.1849 38.5708 19.4258L38.0167 18.8253C39.1045 16.8928 38.8224 14.4824 37.3175 12.8513C35.8127 11.2202 33.4262 10.7383 31.403 11.657L32.0922 12.4039C32.0055 12.4877 31.8899 12.5349 31.7692 12.5359L30.357 12.4515C30.2608 12.4615 30.1655 12.4256 30.1 12.3546C30.0346 12.2836 30.0066 12.186 30.0246 12.0913L30.0584 10.6817C30.0654 10.5598 30.1401 10.452 30.252 10.4023L30.2484 10.4056Z" fill="#0D0D0D"/>
<path d="M20.444 7.97054C19.9586 6.4746 19.1734 5.09252 18.1359 3.90816C17.0367 2.74479 15.7118 1.81618 14.2416 1.17869C12.5357 0.490414 10.7092 0.148196 8.86906 0.172066H0V3.04673H8.86906C10.1941 3.02554 11.5088 3.28292 12.7274 3.80211C13.7988 4.28215 14.7662 4.96538 15.5757 5.81372C16.3885 6.7154 16.9945 7.78263 17.3518 8.94127C17.7619 10.2184 17.9685 11.5518 17.964 12.8927C17.9712 14.2344 17.7645 15.5687 17.3518 16.8458C16.9948 17.9952 16.4054 19.0596 15.6199 19.9733C14.8569 20.8921 13.8771 21.608 12.7683 22.0567C11.5368 22.5751 10.2106 22.8324 8.87397 22.8121H3.24446V6.46142H0V25.6868H8.86906C10.745 25.6868 12.4393 25.398 13.9535 24.7878C15.4305 24.2092 16.769 23.3277 17.8822 22.2003C18.9895 21.0504 19.8378 19.6782 20.3703 18.1754C20.966 16.4784 21.2586 14.6904 21.2347 12.8927C21.2321 11.2207 20.9647 9.55948 20.4424 7.97054H20.444Z" fill="#0D0D0D"/>
<path d="M45.7076 16.2722C45.6943 17.5619 45.9265 18.8423 46.3918 20.0458C46.8323 21.2011 47.5078 22.2532 48.3758 23.1358C49.2204 24.0517 50.2534 24.7751 51.4042 25.2567C52.6274 25.8049 53.9576 26.0751 55.2985 26.048C56.2006 26.057 57.0993 25.9361 57.9668 25.6891C58.7925 25.4821 59.5823 25.1521 60.3093 24.7102C60.9853 24.3212 61.5935 23.8253 62.1099 23.2419C62.624 22.6815 63.0381 22.0375 63.3344 21.3379L60.2405 20.4047C60.0828 20.8312 59.8375 21.2202 59.5202 21.5468C59.164 21.8957 58.764 22.1973 58.3302 22.4441C57.878 22.7401 57.3804 22.9606 56.8569 23.0967C56.3279 23.2386 55.7825 23.311 55.2347 23.312C54.3861 23.3179 53.547 23.134 52.7792 22.7736C52.0242 22.4244 51.349 21.9246 50.7952 21.3053C50.214 20.6397 49.7617 19.8724 49.4611 19.0424C49.1068 18.1614 48.9353 17.2179 48.9569 16.2689C48.9412 15.3236 49.0999 14.3835 49.4251 13.4954C49.7348 12.6909 50.1866 11.9483 50.7592 11.3027C51.3093 10.6872 51.986 10.1969 52.7432 9.86537C54.4533 9.07789 56.4391 9.15803 58.0797 10.0807C58.9219 10.5773 59.6167 11.2878 60.0932 12.1397L63.1936 11.1608C62.4876 9.79594 61.414 8.65417 60.0932 7.86354C58.723 7.03638 57.1368 6.60567 55.2625 6.60567C53.9124 6.59697 52.575 6.86577 51.3338 7.39531C50.2075 7.8865 49.1899 8.59514 48.3398 9.48034C47.4783 10.3474 46.8139 11.389 46.3918 12.5345C45.9297 13.7263 45.6975 14.9945 45.7076 16.2722V16.2722Z" fill="#0D0D0D"/>
<path d="M67.3232 25.6866H70.5677V0.171875H67.3232V25.6866Z" fill="#0D0D0D"/>
<path d="M98.0639 17.8882C99.2879 14.8002 99.3136 11.3684 98.1359 8.26249C97.5611 6.74401 96.7307 5.33433 95.6805 4.09406C94.6136 2.88603 93.3316 1.88537 91.8991 1.14271C90.3771 0.376664 88.6932 -0.0149377 86.9882 0.000677509C85.3158 -0.0180362 83.6621 0.351159 82.1575 1.07909C80.7152 1.76922 79.4197 2.7297 78.3417 3.90807C77.253 5.12616 76.3865 6.52477 75.7815 8.04061C75.1768 9.60163 74.8709 11.2617 74.8796 12.935C74.8773 14.5674 75.1706 16.1868 75.7455 17.7153C76.2817 19.2411 77.1163 20.6458 78.201 21.8478C79.2466 23.0696 80.536 24.0608 81.9873 24.7584C83.4605 25.5138 85.0877 25.8727 86.926 25.8727C88.1791 25.8924 89.4254 25.6851 90.6042 25.2609C90.7152 25.2307 90.8244 25.1947 90.9316 25.1532L88.8412 22.7468C88.2268 22.8932 87.597 22.9656 86.9653 22.9621C85.6311 22.9621 84.4411 22.7092 83.364 22.135C82.2857 21.6011 81.3364 20.8408 80.5811 19.9064C79.7874 18.9608 79.1768 17.8765 78.7805 16.7087C78.3588 15.4956 78.1517 14.2187 78.1682 12.935C78.1607 11.6877 78.3677 10.4483 78.7805 9.27074C79.161 8.10994 79.747 7.02641 80.5107 6.07141C81.2744 5.12704 82.2208 4.34531 83.2936 3.77266C84.4286 3.18469 85.6928 2.88806 86.9718 2.90961C88.1986 2.90562 89.4092 3.18895 90.506 3.73677C91.5694 4.29279 92.5144 5.04907 93.2889 5.96374C94.0828 6.92315 94.6931 8.01975 95.0895 9.19896C95.522 10.3974 95.7435 11.6614 95.7443 12.935C95.7339 14.1435 95.5391 15.3433 95.1664 16.4933C94.7869 17.6108 94.24 18.6647 93.5442 19.6192L91.5979 17.3564H88.396L91.8336 21.3388L93.7799 23.6017L95.5806 25.6867H98.7547L95.5397 21.9849C96.6126 20.7752 97.4666 19.389 98.0639 17.8882V17.8882Z" fill="#0D0D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,9 @@
<svg width="52" height="48" viewBox="0 0 52 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.0153 47.914L35.5833 18.4902H16.4473L26.0153 47.914Z" fill="#0D0D0D"/>
<path opacity="0.75" fill-rule="evenodd" clip-rule="evenodd" d="M26.0149 47.914L16.4469 18.4902H3.0376L26.0149 47.914Z" fill="#0D0D0D"/>
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M3.03785 18.4902L0.130303 27.4318C-0.134897 28.2473 0.155561 29.1408 0.849884 29.6448L26.0152 47.914L3.03785 18.4902Z" fill="#0D0D0D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.0376 18.4905H16.4469L10.6841 0.768868C10.3877 -0.143132 9.09659 -0.142884 8.80019 0.768868L3.0376 18.4905Z" fill="#0D0D0D"/>
<path opacity="0.75" fill-rule="evenodd" clip-rule="evenodd" d="M26.0151 47.914L35.5831 18.4902H48.9925L26.0151 47.914Z" fill="#0D0D0D"/>
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M48.9924 18.4902L51.9 27.4318C52.1652 28.2473 51.8747 29.1408 51.1804 29.6448L26.0151 47.914L48.9924 18.4902Z" fill="#0D0D0D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.9923 18.4905H35.583L41.3458 0.768868C41.6422 -0.143132 42.9333 -0.142884 43.2297 0.768868L48.9923 18.4905Z" fill="#0D0D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,3 @@
<svg width="87" height="40" viewBox="0 0 87 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M43.5663 0C34.5485 0 26.9051 6.17423 24.5362 14.5396C22.4774 10.1025 18.0158 6.9939 12.8768 6.9939C5.80951 6.9939 0 12.8611 0 19.9987C0 27.1362 5.80951 33.0061 12.8768 33.0061C18.0158 33.0061 22.4774 29.8956 24.5362 25.4577C26.9051 33.8237 34.5485 40 43.5663 40C52.5174 40 60.1218 33.9169 62.5513 25.6452C64.6482 29.9824 69.0546 33.0061 74.1205 33.0061C81.1878 33.0061 87 27.1362 87 19.9987C87 12.8611 81.1878 6.9939 74.1205 6.9939C69.0546 6.9939 64.6482 10.0157 62.5513 14.3521C60.1218 6.08109 52.5174 0 43.5663 0ZM43.5663 7.6341C50.3737 7.6341 55.8119 13.1236 55.8119 19.9987C55.8119 26.8737 50.3737 32.3659 43.5663 32.3659C36.7589 32.3659 31.3234 26.8737 31.3234 19.9987C31.3234 13.1236 36.7589 7.6341 43.5663 7.6341ZM12.8768 14.628C15.8593 14.628 18.1973 16.9865 18.1973 19.9987C18.1973 23.0108 15.8593 25.372 12.8768 25.372C9.89432 25.372 7.55899 23.0108 7.55899 19.9987C7.55899 16.9865 9.89432 14.628 12.8768 14.628ZM74.1205 14.628C77.103 14.628 79.441 16.9865 79.441 19.9987C79.441 23.0108 77.103 25.372 74.1205 25.372C71.1381 25.372 68.8027 23.0108 68.8027 19.9987C68.8027 16.9865 71.1381 14.628 74.1205 14.628Z" fill="#0D0D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@@ -0,0 +1,3 @@
<svg width="54" height="43" viewBox="0 0 54 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M44.2992 43C48.2272 43 49.6688 41.3116 49.6688 37.1805V29.1337C49.6688 25.2899 51.5427 23.0986 53.3446 22.0568C53.8851 21.7335 53.8851 20.9791 53.3446 20.6199C51.4706 19.4344 49.6688 16.9557 49.6688 13.6508V5.7477C49.6688 1.29323 48.4435 0 44.5154 0H9.23462C5.30653 0 4.08125 1.29323 4.08125 5.7477V13.6508C4.08125 16.9557 2.27937 19.4344 0.405422 20.6199C-0.135141 20.9432 -0.135141 21.7335 0.405422 22.0568C2.2073 23.0627 4.08125 25.254 4.08125 29.1337V37.1805C4.08125 41.3116 5.52275 43 9.45085 43H44.2992ZM27.4727 34.6774C23.1941 34.6774 20.0857 33.4468 17.1967 31.0207C16.7213 30.5988 16.5385 30.0713 16.5385 29.5439C16.5385 29.122 16.6482 28.6649 16.9773 28.3133L17.855 27.2233C18.2938 26.6959 18.7692 26.4498 19.3177 26.4498C19.9394 26.4498 20.5245 26.6959 21.1462 27.0827C23.1209 28.3133 25.3151 29.0165 27.9481 29.0165C29.9594 29.0165 31.5684 28.2078 31.5684 26.5553C31.5684 22.2656 16.7213 24.6214 16.7213 14.9873C16.7213 9.81868 21.1096 6.93548 26.8144 6.93548C30.8371 6.93548 33.7992 8.06063 35.9933 9.39675C36.5419 9.74835 36.9076 10.4516 36.9076 11.1548C36.9076 11.5767 36.7979 11.9635 36.5419 12.3151L35.8836 13.2644C35.4082 13.8973 34.8597 14.2138 34.1649 14.2138C33.6895 14.2138 33.1775 14.038 32.629 13.7919C30.9833 12.9832 29.2646 12.5612 27.1801 12.5612C25.0225 12.5612 23.7426 13.6864 23.7426 14.8467C23.7426 19.2418 38.5897 16.8509 38.5897 26.2036C38.5897 31.4426 34.2014 34.6774 27.4727 34.6774Z" fill="#0D0D0D"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Some files were not shown because too many files have changed in this diff Show More