FRE-600: Fix code review blockers

- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-04-25 00:08:01 -04:00
parent 65b552bb08
commit 7c684a42cc
48450 changed files with 5679671 additions and 383 deletions

7
node_modules/is-html/index.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
const htmlTags = require('html-tags');
const basic = /\s?<!doctype html>|(<html\b[^>]*>|<body\b[^>]*>|<x-[^>]+>)+/i;
const full = new RegExp(htmlTags.map(tag => `<${tag}\\b[^>]*>`).join('|'), 'i');
module.exports = string => basic.test(string) || full.test(string);

9
node_modules/is-html/license generated vendored Normal file
View File

@@ -0,0 +1,9 @@
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
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
node_modules/is-html/package.json generated vendored Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "is-html",
"version": "2.0.0",
"description": "Check if a string is HTML",
"license": "MIT",
"repository": "sindresorhus/is-html",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"html",
"detect",
"check",
"is",
"tags",
"elements",
"string"
],
"dependencies": {
"html-tags": "^3.0.0"
},
"devDependencies": {
"ava": "^1.4.1",
"xo": "^0.24.0"
}
}

31
node_modules/is-html/readme.md generated vendored Normal file
View File

@@ -0,0 +1,31 @@
# is-html [![Build Status](https://travis-ci.org/sindresorhus/is-html.svg?branch=master)](https://travis-ci.org/sindresorhus/is-html)
> Check if a string is HTML
## Install
```
$ npm install is-html
```
## Usage
```js
const isHtml = require('is-html');
isHtml('<p>I am HTML</p>');
//=> true
isHtml('<!doctype><html><body><h1>I ❤ unicorns</h1></body></html>');
//=> true
isHtml('<cake>I am XML</cake>');
//=> false
isHtml('>+++++++>++++++++++>+++>+<<<<-');
//=> false
```
Note: It does not detect deprecated HTML tags.