Premier commit déjà bien avancé
This commit is contained in:
16
frontend/node_modules/@codemirror/view/.github/workflows/dispatch.yml
generated
vendored
Normal file
16
frontend/node_modules/@codemirror/view/.github/workflows/dispatch.yml
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Trigger CI
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Dispatch to main repo
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Emit repository_dispatch
|
||||
uses: mvasigh/dispatch-action@main
|
||||
with:
|
||||
# You should create a personal access token and store it in your repository
|
||||
token: ${{ secrets.DISPATCH_AUTH }}
|
||||
repo: dev
|
||||
owner: codemirror
|
||||
event_type: push
|
||||
2084
frontend/node_modules/@codemirror/view/CHANGELOG.md
generated
vendored
Normal file
2084
frontend/node_modules/@codemirror/view/CHANGELOG.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
21
frontend/node_modules/@codemirror/view/LICENSE
generated
vendored
Normal file
21
frontend/node_modules/@codemirror/view/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
||||
|
||||
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.
|
||||
37
frontend/node_modules/@codemirror/view/README.md
generated
vendored
Normal file
37
frontend/node_modules/@codemirror/view/README.md
generated
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
# @codemirror/view [](https://www.npmjs.org/package/@codemirror/view)
|
||||
|
||||
[ [**WEBSITE**](https://codemirror.net/) | [**DOCS**](https://codemirror.net/docs/ref/#view) | [**ISSUES**](https://github.com/codemirror/dev/issues) | [**FORUM**](https://discuss.codemirror.net/c/next/) | [**CHANGELOG**](https://github.com/codemirror/view/blob/main/CHANGELOG.md) ]
|
||||
|
||||
This package implements the DOM view component for the
|
||||
[CodeMirror](https://codemirror.net/) code editor.
|
||||
|
||||
The [project page](https://codemirror.net/) has more information, a
|
||||
number of [examples](https://codemirror.net/examples/) and the
|
||||
[documentation](https://codemirror.net/docs/).
|
||||
|
||||
This code is released under an
|
||||
[MIT license](https://github.com/codemirror/view/tree/main/LICENSE).
|
||||
|
||||
We aim to be an inclusive, welcoming community. To make that explicit,
|
||||
we have a [code of
|
||||
conduct](http://contributor-covenant.org/version/1/1/0/) that applies
|
||||
to communication around the project.
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
import {EditorView} from "@codemirror/view"
|
||||
import {basicSetup} from "codemirror"
|
||||
|
||||
const view = new EditorView({
|
||||
parent: document.querySelector("#some-node"),
|
||||
doc: "Content text",
|
||||
extensions: [basicSetup /* ... */]
|
||||
})
|
||||
```
|
||||
|
||||
Add additional extensions, such as a [language
|
||||
mode](https://codemirror.net/#languages), to configure the editor.
|
||||
Call
|
||||
[`view.dispatch`](https://codemirror.net/docs/ref/#view.EditorView.dispatch)
|
||||
to update the editor's state.
|
||||
11496
frontend/node_modules/@codemirror/view/dist/index.cjs
generated
vendored
Normal file
11496
frontend/node_modules/@codemirror/view/dist/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2306
frontend/node_modules/@codemirror/view/dist/index.d.cts
generated
vendored
Normal file
2306
frontend/node_modules/@codemirror/view/dist/index.d.cts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2306
frontend/node_modules/@codemirror/view/dist/index.d.ts
generated
vendored
Normal file
2306
frontend/node_modules/@codemirror/view/dist/index.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11446
frontend/node_modules/@codemirror/view/dist/index.js
generated
vendored
Normal file
11446
frontend/node_modules/@codemirror/view/dist/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
41
frontend/node_modules/@codemirror/view/package.json
generated
vendored
Normal file
41
frontend/node_modules/@codemirror/view/package.json
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "@codemirror/view",
|
||||
"version": "6.38.6",
|
||||
"description": "DOM view component for the CodeMirror code editor",
|
||||
"scripts": {
|
||||
"test": "cm-runtests",
|
||||
"prepare": "cm-buildhelper src/index.ts"
|
||||
},
|
||||
"keywords": [
|
||||
"editor",
|
||||
"code"
|
||||
],
|
||||
"author": {
|
||||
"name": "Marijn Haverbeke",
|
||||
"email": "marijn@haverbeke.berlin",
|
||||
"url": "http://marijnhaverbeke.nl"
|
||||
},
|
||||
"type": "module",
|
||||
"main": "dist/index.cjs",
|
||||
"exports": {
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.cjs"
|
||||
},
|
||||
"types": "dist/index.d.ts",
|
||||
"module": "dist/index.js",
|
||||
"sideEffects": false,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@codemirror/state": "^6.5.0",
|
||||
"crelt": "^1.0.6",
|
||||
"style-mod": "^4.1.0",
|
||||
"w3c-keyname": "^2.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@codemirror/buildhelper": "^1.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/codemirror/view.git"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user