pull/844/head
Cory LaViska 2022-07-27 16:17:23 -04:00
rodzic ed76d8aecc
commit 47388d4a3f
6 zmienionych plików z 777 dodań i 554 usunięć

Wyświetl plik

@ -20,8 +20,11 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Fixed a bug in `<sl-tooltip>` that caused the position to be incorrect on the first show when using `hoist` - Fixed a bug in `<sl-tooltip>` that caused the position to be incorrect on the first show when using `hoist`
- Improved accessibility of `<sl-tab-group>`, `<sl-tab>`, and `<sl-tab-panel>` to announce better in screen readers and by allowing focus on disabled items - Improved accessibility of `<sl-tab-group>`, `<sl-tab>`, and `<sl-tab-panel>` to announce better in screen readers and by allowing focus on disabled items
- Improved accessibility of `<sl-menu>` and `<sl-menu-item>` by allowing focus on disabled items - Improved accessibility of `<sl-menu>` and `<sl-menu-item>` by allowing focus on disabled items
- Updated Lit to 2.2.8
- Update esbuild to 0.14.50
- Updated Bootstrap Icons to 1.9.1 - Updated Bootstrap Icons to 1.9.1
- Updated Floating UI to 1.0.0 - Updated Floating UI to 1.0.0
- Updated all other dependencies to latest versions
## 2.0.0-beta.78 ## 2.0.0-beta.78

1290
package-lock.json wygenerowano

Plik diff jest za duży Load Diff

Wyświetl plik

@ -53,11 +53,11 @@
}, },
"dependencies": { "dependencies": {
"@floating-ui/dom": "^1.0.0", "@floating-ui/dom": "^1.0.0",
"@lit-labs/react": "^1.0.6", "@lit-labs/react": "^1.0.7",
"@shoelace-style/animations": "^1.1.0", "@shoelace-style/animations": "^1.1.0",
"@shoelace-style/localize": "^3.0.1", "@shoelace-style/localize": "^3.0.1",
"color": "4.2", "color": "4.2",
"lit": "^2.2.7", "lit": "^2.2.8",
"qr-creator": "^1.0.0" "qr-creator": "^1.0.0"
}, },
"devDependencies": { "devDependencies": {
@ -66,8 +66,8 @@
"@types/color": "^3.0.3", "@types/color": "^3.0.3",
"@types/mocha": "^9.1.1", "@types/mocha": "^9.1.1",
"@types/react": "^18.0.15", "@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.30.6", "@typescript-eslint/parser": "^5.31.0",
"@web/dev-server-esbuild": "^0.3.1", "@web/dev-server-esbuild": "^0.3.1",
"@web/test-runner": "^0.13.31", "@web/test-runner": "^0.13.31",
"@web/test-runner-commands": "^0.6.3", "@web/test-runner-commands": "^0.6.3",
@ -77,17 +77,17 @@
"chalk": "^5.0.1", "chalk": "^5.0.1",
"command-line-args": "^5.2.1", "command-line-args": "^5.2.1",
"comment-parser": "^1.3.1", "comment-parser": "^1.3.1",
"cspell": "^6.2.3", "cspell": "^6.4.2",
"del": "^6.1.1", "del": "^7.0.0",
"download": "^8.0.0", "download": "^8.0.0",
"esbuild": "^0.14.49", "esbuild": "^0.14.50",
"eslint": "^8.19.0", "eslint": "^8.20.0",
"eslint-plugin-chai-expect": "^3.0.0", "eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2", "eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0", "eslint-plugin-import": "^2.26.0",
"eslint-plugin-lit": "^1.6.1", "eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^2.2.0", "eslint-plugin-lit-a11y": "^2.2.1",
"eslint-plugin-markdown": "^2.2.1", "eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-wc": "^1.3.2", "eslint-plugin-wc": "^1.3.2",
"front-matter": "^4.0.2", "front-matter": "^4.0.2",
"get-port": "^6.1.2", "get-port": "^6.1.2",
@ -96,7 +96,7 @@
"jsonata": "^1.8.6", "jsonata": "^1.8.6",
"lint-staged": "^13.0.3", "lint-staged": "^13.0.3",
"lunr": "^2.3.9", "lunr": "^2.3.9",
"npm-check-updates": "^15.3.3", "npm-check-updates": "^16.0.1",
"open": "^8.4.0", "open": "^8.4.0",
"pascal-case": "^3.1.2", "pascal-case": "^3.1.2",
"plop": "^3.1.1", "plop": "^3.1.1",

Wyświetl plik

@ -2,7 +2,7 @@ import browserSync from 'browser-sync';
import chalk from 'chalk'; import chalk from 'chalk';
import { execSync } from 'child_process'; import { execSync } from 'child_process';
import commandLineArgs from 'command-line-args'; import commandLineArgs from 'command-line-args';
import del from 'del'; import { deleteSync } from 'del';
import esbuild from 'esbuild'; import esbuild from 'esbuild';
import fs from 'fs'; import fs from 'fs';
import getPort, { portNumbers } from 'get-port'; import getPort, { portNumbers } from 'get-port';
@ -20,7 +20,7 @@ const { bundle, copydir, dir, serve, types } = commandLineArgs([
const outdir = dir; const outdir = dir;
del.sync(outdir); deleteSync(outdir);
fs.mkdirSync(outdir, { recursive: true }); fs.mkdirSync(outdir, { recursive: true });
(async () => { (async () => {
@ -87,7 +87,7 @@ fs.mkdirSync(outdir, { recursive: true });
// Copy the build output to an additional directory // Copy the build output to an additional directory
if (copydir) { if (copydir) {
del.sync(copydir); deleteSync(copydir);
copy(outdir, copydir); copy(outdir, copydir);
} }
@ -101,7 +101,7 @@ fs.mkdirSync(outdir, { recursive: true });
}); });
// Make sure docs/dist is empty since we're serving it virtually // Make sure docs/dist is empty since we're serving it virtually
del.sync('docs/dist'); deleteSync('docs/dist');
const browserSyncConfig = { const browserSyncConfig = {
open: false, open: false,

Wyświetl plik

@ -4,7 +4,7 @@
import chalk from 'chalk'; import chalk from 'chalk';
import commandLineArgs from 'command-line-args'; import commandLineArgs from 'command-line-args';
import copy from 'recursive-copy'; import copy from 'recursive-copy';
import del from 'del'; import { deleteAsync } from 'del';
import download from 'download'; import download from 'download';
import fm from 'front-matter'; import fm from 'front-matter';
import { readFileSync, mkdirSync } from 'fs'; import { readFileSync, mkdirSync } from 'fs';
@ -35,7 +35,7 @@ let numIcons = 0;
// Copy icons // Copy icons
console.log(`Copying icons and license`); console.log(`Copying icons and license`);
await del([iconDir]); await deleteAsync([iconDir]);
mkdirSync(iconDir, { recursive: true }); mkdirSync(iconDir, { recursive: true });
await Promise.all([ await Promise.all([
copy(`${srcPath}/icons`, iconDir), copy(`${srcPath}/icons`, iconDir),

Wyświetl plik

@ -2,7 +2,7 @@ import commandLineArgs from 'command-line-args';
import fs from 'fs'; import fs from 'fs';
import path from 'path'; import path from 'path';
import chalk from 'chalk'; import chalk from 'chalk';
import del from 'del'; import { deleteSync } from 'del';
import { pascalCase } from 'pascal-case'; import { pascalCase } from 'pascal-case';
import prettier from 'prettier'; import prettier from 'prettier';
import prettierConfig from '../prettier.config.cjs'; import prettierConfig from '../prettier.config.cjs';
@ -13,7 +13,7 @@ const { outdir } = commandLineArgs({ name: 'outdir', type: String });
const reactDir = path.join('./src/react'); const reactDir = path.join('./src/react');
// Clear build directory // Clear build directory
del.sync(reactDir); deleteSync(reactDir);
fs.mkdirSync(reactDir, { recursive: true }); fs.mkdirSync(reactDir, { recursive: true });
// Fetch component metadata // Fetch component metadata