From 223ed694611e08489fc78661ecf733faef1b0422 Mon Sep 17 00:00:00 2001 From: JounQin Date: Thu, 3 Aug 2023 23:07:57 +0800 Subject: [PATCH] chore: bump all deps, add test case for #435 (#463) --- package.json | 24 +- packages/eslint-mdx/package.json | 10 +- packages/eslint-mdx/src/helpers.ts | 1 + packages/eslint-plugin-mdx/package.json | 8 +- .../eslint-plugin-mdx/src/rules/remark.ts | 3 + test/__snapshots__/fixtures.test.ts.snap | 187 +- test/__snapshots__/parser.test.ts.snap | 16430 ++++++++-------- test/fixtures/435.mdx | 13 + yarn.lock | 3740 ++-- 9 files changed, 10819 insertions(+), 9597 deletions(-) create mode 100644 test/fixtures/435.mdx diff --git a/package.json b/package.json index 26566c77..0c56ab0b 100644 --- a/package.json +++ b/package.json @@ -26,23 +26,23 @@ "typecov": "type-coverage" }, "devDependencies": { - "@1stg/lib-config": "^11.1.0", + "@1stg/lib-config": "^12.0.0", "@changesets/changelog-github": "^0.4.8", - "@changesets/cli": "^2.26.1", - "@types/eslint": "^8.37.0", + "@changesets/cli": "^2.26.2", + "@types/eslint": "^8.44.1", "@types/eslint-plugin-markdown": "^2.0.0", - "@types/jest": "^29.5.1", - "@types/node": "^18.16.3", - "@types/react": "^18.2.0", + "@types/jest": "^29.5.3", + "@types/node": "^20.4.6", + "@types/react": "^18.2.18", "@types/unist": "^2.0.6", - "jest": "^29.5.0", - "patch-package": "^7.0.0", + "jest": "^29.6.2", + "patch-package": "^8.0.0", "react": "^18.2.0", - "ts-jest": "^29.1.0", + "ts-jest": "^29.1.1", "ts-node": "^10.9.1", - "type-coverage": "^2.25.0", - "typescript": "^5.0.4", - "yarn-deduplicate": "^6.0.1" + "type-coverage": "^2.26.0", + "typescript": "^5.1.6", + "yarn-deduplicate": "^6.0.2" }, "resolutions": { "prettier": "^2.8.8" diff --git a/packages/eslint-mdx/package.json b/packages/eslint-mdx/package.json index 7600a418..d8f45b97 100644 --- a/packages/eslint-mdx/package.json +++ b/packages/eslint-mdx/package.json @@ -30,15 +30,15 @@ "eslint": ">=8.0.0" }, "dependencies": { - "acorn": "^8.8.2", + "acorn": "^8.10.0", "acorn-jsx": "^5.3.2", - "espree": "^9.5.1", + "espree": "^9.6.1", "estree-util-visit": "^1.2.1", "remark-mdx": "^2.3.0", - "remark-parse": "^10.0.1", - "remark-stringify": "^10.0.2", + "remark-parse": "^10.0.2", + "remark-stringify": "^10.0.3", "synckit": "^0.8.5", - "tslib": "^2.5.0", + "tslib": "^2.6.1", "unified": "^10.1.2", "unified-engine": "^10.1.0", "unist-util-visit": "^4.1.2", diff --git a/packages/eslint-mdx/src/helpers.ts b/packages/eslint-mdx/src/helpers.ts index e4ac6676..46e7ec4e 100644 --- a/packages/eslint-mdx/src/helpers.ts +++ b/packages/eslint-mdx/src/helpers.ts @@ -7,6 +7,7 @@ import type { Point } from 'unist' import type { NormalPosition } from './types' export const last = (items: T[] | readonly T[]) => + // eslint-disable-next-line unicorn/prefer-at -- FIXME: Node 16.6+ required items && items[items.length - 1] export const arrayify = ? S : T>( diff --git a/packages/eslint-plugin-mdx/package.json b/packages/eslint-plugin-mdx/package.json index 96f9ba64..ca0a33da 100644 --- a/packages/eslint-plugin-mdx/package.json +++ b/packages/eslint-plugin-mdx/package.json @@ -32,11 +32,11 @@ }, "dependencies": { "eslint-mdx": "^2.1.0", - "eslint-plugin-markdown": "^3.0.0", + "eslint-plugin-markdown": "^3.0.1", "remark-mdx": "^2.3.0", - "remark-parse": "^10.0.1", - "remark-stringify": "^10.0.2", - "tslib": "^2.5.0", + "remark-parse": "^10.0.2", + "remark-stringify": "^10.0.3", + "tslib": "^2.6.1", "unified": "^10.1.2", "vfile": "^5.3.7" } diff --git a/packages/eslint-plugin-mdx/src/rules/remark.ts b/packages/eslint-plugin-mdx/src/rules/remark.ts index 2f59ec85..e7ced781 100644 --- a/packages/eslint-plugin-mdx/src/rules/remark.ts +++ b/packages/eslint-plugin-mdx/src/rules/remark.ts @@ -22,8 +22,10 @@ export const remark: Rule.RuleModule = { fixable: 'code', }, create(context) { + // eslint-disable-next-line sonar/deprecation -- FIXME: ESLint 8.40+ required const filename = context.getFilename() const extname = path.extname(filename) + // eslint-disable-next-line sonar/deprecation -- FIXME: ESLint 8.40+ required const sourceCode = context.getSourceCode() const options = context.parserOptions as ParserOptions const isMdx = [ @@ -52,6 +54,7 @@ export const remark: Rule.RuleModule = { fileOptions: { path: physicalFilename, value: sourceText, + // eslint-disable-next-line sonar/deprecation -- FIXME: ESLint 8.40+ required cwd: context.getCwd(), }, physicalFilename, diff --git a/test/__snapshots__/fixtures.test.ts.snap b/test/__snapshots__/fixtures.test.ts.snap index 2f511a81..a8add115 100644 --- a/test/__snapshots__/fixtures.test.ts.snap +++ b/test/__snapshots__/fixtures.test.ts.snap @@ -335,6 +335,24 @@ exports[`fixtures should match all snapshots: 380.mdx 1`] = ` "ruleId": "unicorn/prevent-abbreviations", "severity": 2, }, + { + "column": 40, + "endColumn": 60, + "endLine": 204, + "fix": { + "range": [ + 4593, + 4615, + ], + "text": ".at(-1)", + }, + "line": 204, + "message": "Prefer \`.at(…)\` over \`[….length - index]\`.", + "messageId": "negative-index", + "nodeType": "BinaryExpression", + "ruleId": "unicorn/prefer-at", + "severity": 2, + }, { "column": 28, "endColumn": 26, @@ -430,6 +448,168 @@ exports[`fixtures should match all snapshots: 429.mdx 1`] = ` ] `; +exports[`fixtures should match all snapshots: 435.mdx 1`] = ` +[ + { + "column": 1, + "endColumn": 2, + "endLine": 2, + "fix": { + "range": [ + 8, + 9, + ], + "text": " ", + }, + "line": 2, + "message": "Replace \`↹\` with \`··\`", + "messageId": "replace", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 1, + "endColumn": 3, + "endLine": 3, + "fix": { + "range": [ + 18, + 20, + ], + "text": " ", + }, + "line": 3, + "message": "Replace \`↹↹\` with \`····\`", + "messageId": "replace", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 1, + "endColumn": 3, + "endLine": 4, + "fix": { + "range": [ + 39, + 41, + ], + "text": " ", + }, + "line": 4, + "message": "Replace \`↹↹\` with \`····\`", + "messageId": "replace", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 1, + "endColumn": 2, + "endLine": 5, + "fix": { + "range": [ + 66, + 67, + ], + "text": " ", + }, + "line": 5, + "message": "Replace \`↹\` with \`··\`", + "messageId": "replace", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 1, + "endColumn": 2, + "endLine": 7, + "fix": { + "range": [ + 72, + 73, + ], + "text": " ", + }, + "line": 7, + "message": "Replace \`↹\` with \`··\`", + "messageId": "replace", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 2, + "endColumn": 4, + "endLine": 10, + "fix": { + "range": [ + 91, + 93, + ], + "text": "", + }, + "line": 10, + "message": "Delete \`··\`", + "messageId": "delete", + "nodeType": null, + "ruleId": "prettier/prettier", + "severity": 2, + }, + { + "column": 3, + "endColumn": 16, + "endLine": 12, + "fix": { + "range": [ + 102, + 115, + ], + "text": " [Next.js](/getting-started/next) | @@ -892,6 +1073,7 @@ exports[`fixtures should match all snapshots: comments.mdx 1`] = ` "fatal": true, "line": 2, "message": "Parsing error: Unexpected character \`!\` (U+0021) before name, expected a character that can start a name, such as a letter, \`$\`, or \`_\` (note: to create a comment in MDX, use \`{/* text */}\`)", + "nodeType": null, "ruleId": null, "severity": 2, }, @@ -905,6 +1087,7 @@ exports[`fixtures should match all snapshots: details.mdx 1`] = ` "fatal": true, "line": 1, "message": "Parsing error: Expected a closing tag for \`\` (1:1-1:10) before the end of \`paragraph\`", + "nodeType": null, "ruleId": null, "severity": 2, }, diff --git a/test/__snapshots__/parser.test.ts.snap b/test/__snapshots__/parser.test.ts.snap index f619c1f5..f76c8068 100644 --- a/test/__snapshots__/parser.test.ts.snap +++ b/test/__snapshots__/parser.test.ts.snap @@ -15571,226 +15571,6 @@ exports[`parser should match all AST snapshots: 380.mdx 1`] = ` "type": "String", "value": "'@storybook/angular'", }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Keyword", - "value": "var", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Identifier", - "value": "FormsModule", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Punctuator", - "value": "", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Identifier", - "value": "Canvas", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Punctuator", - "value": "", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Identifier", - "value": "Meta", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Punctuator", - "value": "", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Identifier", - "value": "Story", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Punctuator", - "value": "", - }, - { - "end": 158, - "loc": { - "end": { - "column": 0, - "line": 5, - "offset": 158, - }, - "start": { - "column": 0, - "line": 5, - "offset": 158, - }, - }, - "range": [ - 158, - 158, - ], - "start": 158, - "type": "Identifier", - "value": "moduleMetadata", - }, { "end": 164, "loc": { @@ -16056,12 +15836,12 @@ exports[`parser should match all AST snapshots: 380.mdx 1`] = ` "value": "'./lazy-test.component'", }, { - "end": 279, + "end": 285, "loc": { "end": { - "column": 0, + "column": 6, "line": 8, - "offset": 279, + "offset": 285, }, "start": { "column": 0, @@ -16071,13929 +15851,13621 @@ exports[`parser should match all AST snapshots: 380.mdx 1`] = ` }, "range": [ 279, - 279, + 285, ], "start": 279, "type": "Keyword", - "value": "var", + "value": "import", }, { - "end": 279, + "end": 287, "loc": { "end": { - "column": 0, + "column": 8, "line": 8, - "offset": 279, + "offset": 287, }, "start": { - "column": 0, + "column": 7, "line": 8, - "offset": 279, + "offset": 286, }, }, "range": [ - 279, - 279, + 286, + 287, ], - "start": 279, - "type": "Identifier", - "value": "FormsModule", + "start": 286, + "type": "Punctuator", + "value": "{", }, { - "end": 279, + "end": 302, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 14, + "line": 9, + "offset": 302, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 9, + "offset": 290, }, }, "range": [ - 279, - 279, + 290, + 302, ], - "start": 279, + "start": 290, + "type": "Identifier", + "value": "ButtonModule", + }, + { + "end": 303, + "loc": { + "end": { + "column": 15, + "line": 9, + "offset": 303, + }, + "start": { + "column": 14, + "line": 9, + "offset": 302, + }, + }, + "range": [ + 302, + 303, + ], + "start": 302, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 316, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 10, + "offset": 316, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 10, + "offset": 306, }, }, "range": [ - 279, - 279, + 306, + 316, ], - "start": 279, + "start": 306, "type": "Identifier", - "value": "Canvas", + "value": "IconModule", }, { - "end": 279, + "end": 317, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 13, + "line": 10, + "offset": 317, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 10, + "offset": 316, }, }, "range": [ - 279, - 279, + 316, + 317, ], - "start": 279, + "start": 316, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 330, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 11, + "offset": 330, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 11, + "offset": 320, }, }, "range": [ - 279, - 279, + 320, + 330, ], - "start": 279, + "start": 320, "type": "Identifier", - "value": "Meta", + "value": "FormModule", }, { - "end": 279, + "end": 331, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 13, + "line": 11, + "offset": 331, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 11, + "offset": 330, }, }, "range": [ - 279, - 279, + 330, + 331, ], - "start": 279, + "start": 330, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 345, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 13, + "line": 12, + "offset": 345, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 12, + "offset": 334, }, }, "range": [ - 279, - 279, + 334, + 345, ], - "start": 279, + "start": 334, "type": "Identifier", - "value": "Story", + "value": "RadioModule", }, { - "end": 279, + "end": 346, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 14, + "line": 12, + "offset": 346, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 13, + "line": 12, + "offset": 345, }, }, "range": [ - 279, - 279, + 345, + 346, ], - "start": 279, + "start": 345, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 356, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 9, + "line": 13, + "offset": 356, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 13, + "offset": 349, }, }, "range": [ - 279, - 279, + 349, + 356, ], - "start": 279, + "start": 349, "type": "Identifier", - "value": "moduleMetadata", + "value": "TabSize", }, { - "end": 279, + "end": 357, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 10, + "line": 13, + "offset": 357, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 9, + "line": 13, + "offset": 356, }, }, "range": [ - 279, - 279, + 356, + 357, ], - "start": 279, + "start": 356, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 367, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 9, + "line": 14, + "offset": 367, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 14, + "offset": 360, }, }, "range": [ - 279, - 279, + 360, + 367, ], - "start": 279, + "start": 360, "type": "Identifier", - "value": "ActiveTestComponent", + "value": "TabType", }, { - "end": 279, + "end": 368, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 10, + "line": 14, + "offset": 368, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 9, + "line": 14, + "offset": 367, }, }, "range": [ - 279, - 279, + 367, + 368, ], - "start": 279, + "start": 367, "type": "Punctuator", - "value": "", + "value": ",", }, { - "end": 279, + "end": 381, "loc": { "end": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 15, + "offset": 381, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 2, + "line": 15, + "offset": 371, }, }, "range": [ - 279, - 279, + 371, + 381, ], - "start": 279, + "start": 371, "type": "Identifier", - "value": "LazyTestComponent", + "value": "TabsModule", }, { - "end": 285, + "end": 382, "loc": { "end": { - "column": 6, - "line": 8, - "offset": 285, + "column": 13, + "line": 15, + "offset": 382, }, "start": { - "column": 0, - "line": 8, - "offset": 279, + "column": 12, + "line": 15, + "offset": 381, }, }, "range": [ - 279, - 285, + 381, + 382, ], - "start": 279, - "type": "Keyword", - "value": "import", + "start": 381, + "type": "Punctuator", + "value": ",", }, { - "end": 287, + "end": 395, "loc": { "end": { - "column": 8, - "line": 8, - "offset": 287, + "column": 12, + "line": 16, + "offset": 395, }, "start": { - "column": 7, - "line": 8, - "offset": 286, + "column": 2, + "line": 16, + "offset": 385, }, }, "range": [ - 286, - 287, + 385, + 395, ], - "start": 286, - "type": "Punctuator", - "value": "{", + "start": 385, + "type": "Identifier", + "value": "CardModule", }, { - "end": 302, + "end": 396, "loc": { "end": { - "column": 14, - "line": 9, - "offset": 302, + "column": 13, + "line": 16, + "offset": 396, }, "start": { - "column": 2, - "line": 9, - "offset": 290, + "column": 12, + "line": 16, + "offset": 395, }, }, "range": [ - 290, - 302, + 395, + 396, ], - "start": 290, - "type": "Identifier", - "value": "ButtonModule", + "start": 395, + "type": "Punctuator", + "value": ",", }, { - "end": 303, + "end": 398, "loc": { "end": { - "column": 15, - "line": 9, - "offset": 303, + "column": 1, + "line": 17, + "offset": 398, }, "start": { - "column": 14, - "line": 9, - "offset": 302, + "column": 0, + "line": 17, + "offset": 397, }, }, "range": [ - 302, - 303, + 397, + 398, ], - "start": 302, + "start": 397, "type": "Punctuator", - "value": ",", + "value": "}", }, { - "end": 316, + "end": 403, "loc": { "end": { - "column": 12, - "line": 10, - "offset": 316, + "column": 6, + "line": 17, + "offset": 403, }, "start": { "column": 2, - "line": 10, - "offset": 306, + "line": 17, + "offset": 399, }, }, "range": [ - 306, - 316, + 399, + 403, ], - "start": 306, + "start": 399, "type": "Identifier", - "value": "IconModule", + "value": "from", }, { - "end": 317, + "end": 416, "loc": { "end": { - "column": 13, - "line": 10, - "offset": 317, + "column": 19, + "line": 17, + "offset": 416, }, "start": { - "column": 12, - "line": 10, - "offset": 316, + "column": 7, + "line": 17, + "offset": 404, }, }, "range": [ - 316, - 317, + 404, + 416, ], - "start": 316, - "type": "Punctuator", - "value": ",", + "start": 404, + "type": "String", + "value": "'@alauda/ui'", }, { - "end": 330, + "end": 419, "loc": { "end": { - "column": 12, - "line": 11, - "offset": 330, + "column": 1, + "line": 19, + "offset": 419, }, "start": { - "column": 2, - "line": 11, - "offset": 320, + "column": 0, + "line": 19, + "offset": 418, }, }, "range": [ - 320, - 330, + 418, + 419, ], - "start": 320, - "type": "Identifier", - "value": "FormModule", + "start": 418, + "type": "Punctuator", + "value": "<", }, { - "end": 331, + "end": 423, "loc": { "end": { - "column": 13, - "line": 11, - "offset": 331, + "column": 5, + "line": 19, + "offset": 423, }, "start": { - "column": 12, - "line": 11, - "offset": 330, + "column": 1, + "line": 19, + "offset": 419, }, }, "range": [ - 330, - 331, + 419, + 423, ], - "start": 330, - "type": "Punctuator", - "value": ",", + "start": 419, + "type": "JSXIdentifier", + "value": "Meta", }, { - "end": 345, + "end": 431, "loc": { "end": { - "column": 13, - "line": 12, - "offset": 345, + "column": 7, + "line": 20, + "offset": 431, }, "start": { "column": 2, - "line": 12, - "offset": 334, + "line": 20, + "offset": 426, }, }, "range": [ - 334, - 345, + 426, + 431, ], - "start": 334, - "type": "Identifier", - "value": "RadioModule", + "start": 426, + "type": "JSXIdentifier", + "value": "title", }, { - "end": 346, + "end": 432, "loc": { "end": { - "column": 14, - "line": 12, - "offset": 346, + "column": 8, + "line": 20, + "offset": 432, }, "start": { - "column": 13, - "line": 12, - "offset": 345, + "column": 7, + "line": 20, + "offset": 431, }, }, "range": [ - 345, - 346, + 431, + 432, ], - "start": 345, + "start": 431, "type": "Punctuator", - "value": ",", + "value": "=", }, { - "end": 356, + "end": 438, "loc": { "end": { - "column": 9, - "line": 13, - "offset": 356, + "column": 14, + "line": 20, + "offset": 438, }, "start": { - "column": 2, - "line": 13, - "offset": 349, + "column": 8, + "line": 20, + "offset": 432, }, }, "range": [ - 349, - 356, + 432, + 438, ], - "start": 349, - "type": "Identifier", - "value": "TabSize", + "start": 432, + "type": "String", + "value": ""Tabs"", }, { - "end": 357, + "end": 451, "loc": { "end": { - "column": 10, - "line": 13, - "offset": 357, - }, - "start": { - "column": 9, - "line": 13, - "offset": 356, - }, - }, - "range": [ - 356, - 357, - ], - "start": 356, - "type": "Punctuator", - "value": ",", - }, - { - "end": 367, - "loc": { - "end": { - "column": 9, - "line": 14, - "offset": 367, + "column": 12, + "line": 21, + "offset": 451, }, "start": { "column": 2, - "line": 14, - "offset": 360, + "line": 21, + "offset": 441, }, }, "range": [ - 360, - 367, + 441, + 451, ], - "start": 360, - "type": "Identifier", - "value": "TabType", + "start": 441, + "type": "JSXIdentifier", + "value": "decorators", }, { - "end": 368, + "end": 452, "loc": { "end": { - "column": 10, - "line": 14, - "offset": 368, + "column": 13, + "line": 21, + "offset": 452, }, "start": { - "column": 9, - "line": 14, - "offset": 367, + "column": 12, + "line": 21, + "offset": 451, }, }, "range": [ - 367, - 368, + 451, + 452, ], - "start": 367, + "start": 451, "type": "Punctuator", - "value": ",", + "value": "=", }, { - "end": 381, + "end": 453, "loc": { "end": { - "column": 12, - "line": 15, - "offset": 381, + "column": 14, + "line": 21, + "offset": 453, }, "start": { - "column": 2, - "line": 15, - "offset": 371, + "column": 13, + "line": 21, + "offset": 452, }, }, "range": [ - 371, - 381, + 452, + 453, ], - "start": 371, - "type": "Identifier", - "value": "TabsModule", + "start": 452, + "type": "Punctuator", + "value": "{", }, { - "end": 382, + "end": 454, "loc": { "end": { - "column": 13, - "line": 15, - "offset": 382, + "column": 15, + "line": 21, + "offset": 454, }, "start": { - "column": 12, - "line": 15, - "offset": 381, + "column": 14, + "line": 21, + "offset": 453, }, }, "range": [ - 381, - 382, + 453, + 454, ], - "start": 381, + "start": 453, "type": "Punctuator", - "value": ",", + "value": "[", }, { - "end": 395, + "end": 473, "loc": { "end": { - "column": 12, - "line": 16, - "offset": 395, + "column": 18, + "line": 22, + "offset": 473, }, "start": { - "column": 2, - "line": 16, - "offset": 385, + "column": 4, + "line": 22, + "offset": 459, }, }, "range": [ - 385, - 395, + 459, + 473, ], - "start": 385, + "start": 459, "type": "Identifier", - "value": "CardModule", + "value": "moduleMetadata", }, { - "end": 396, + "end": 474, "loc": { "end": { - "column": 13, - "line": 16, - "offset": 396, + "column": 19, + "line": 22, + "offset": 474, }, "start": { - "column": 12, - "line": 16, - "offset": 395, + "column": 18, + "line": 22, + "offset": 473, }, }, "range": [ - 395, - 396, + 473, + 474, ], - "start": 395, + "start": 473, "type": "Punctuator", - "value": ",", + "value": "(", }, { - "end": 398, + "end": 475, "loc": { "end": { - "column": 1, - "line": 17, - "offset": 398, + "column": 20, + "line": 22, + "offset": 475, }, "start": { - "column": 0, - "line": 17, - "offset": 397, + "column": 19, + "line": 22, + "offset": 474, }, }, "range": [ - 397, - 398, + 474, + 475, ], - "start": 397, + "start": 474, "type": "Punctuator", - "value": "}", + "value": "{", }, { - "end": 403, + "end": 489, "loc": { "end": { - "column": 6, - "line": 17, - "offset": 403, + "column": 13, + "line": 23, + "offset": 489, }, "start": { - "column": 2, - "line": 17, - "offset": 399, + "column": 6, + "line": 23, + "offset": 482, }, }, "range": [ - 399, - 403, + 482, + 489, ], - "start": 399, + "start": 482, "type": "Identifier", - "value": "from", + "value": "imports", }, { - "end": 416, + "end": 490, "loc": { "end": { - "column": 19, - "line": 17, - "offset": 416, + "column": 14, + "line": 23, + "offset": 490, }, "start": { - "column": 7, - "line": 17, - "offset": 404, + "column": 13, + "line": 23, + "offset": 489, }, }, "range": [ - 404, - 416, + 489, + 490, ], - "start": 404, - "type": "String", - "value": "'@alauda/ui'", + "start": 489, + "type": "Punctuator", + "value": ":", }, { - "end": 419, + "end": 492, "loc": { "end": { - "column": 1, - "line": 19, - "offset": 419, + "column": 16, + "line": 23, + "offset": 492, }, "start": { - "column": 0, - "line": 19, - "offset": 418, + "column": 15, + "line": 23, + "offset": 491, }, }, "range": [ - 418, - 419, + 491, + 492, ], - "start": 418, + "start": 491, "type": "Punctuator", - "value": "<", + "value": "[", }, { - "end": 423, + "end": 513, "loc": { "end": { - "column": 5, - "line": 19, - "offset": 423, + "column": 20, + "line": 24, + "offset": 513, }, "start": { - "column": 1, - "line": 19, - "offset": 419, + "column": 8, + "line": 24, + "offset": 501, }, }, "range": [ - 419, - 423, + 501, + 513, ], - "start": 419, - "type": "JSXIdentifier", - "value": "Meta", + "start": 501, + "type": "Identifier", + "value": "ButtonModule", }, { - "end": 431, + "end": 514, "loc": { "end": { - "column": 7, - "line": 20, - "offset": 431, + "column": 21, + "line": 24, + "offset": 514, }, "start": { - "column": 2, - "line": 20, - "offset": 426, + "column": 20, + "line": 24, + "offset": 513, }, }, "range": [ - 426, - 431, + 513, + 514, ], - "start": 426, - "type": "JSXIdentifier", - "value": "title", + "start": 513, + "type": "Punctuator", + "value": ",", }, { - "end": 432, + "end": 533, "loc": { "end": { - "column": 8, - "line": 20, - "offset": 432, + "column": 18, + "line": 25, + "offset": 533, }, "start": { - "column": 7, - "line": 20, - "offset": 431, + "column": 8, + "line": 25, + "offset": 523, }, }, "range": [ - 431, - 432, + 523, + 533, ], - "start": 431, - "type": "Punctuator", - "value": "=", + "start": 523, + "type": "Identifier", + "value": "IconModule", }, { - "end": 438, + "end": 534, "loc": { "end": { - "column": 14, - "line": 20, - "offset": 438, + "column": 19, + "line": 25, + "offset": 534, }, "start": { - "column": 8, - "line": 20, - "offset": 432, + "column": 18, + "line": 25, + "offset": 533, }, }, "range": [ - 432, - 438, + 533, + 534, ], - "start": 432, - "type": "String", - "value": ""Tabs"", + "start": 533, + "type": "Punctuator", + "value": ",", }, { - "end": 451, + "end": 554, "loc": { "end": { - "column": 12, - "line": 21, - "offset": 451, + "column": 19, + "line": 26, + "offset": 554, }, "start": { - "column": 2, - "line": 21, - "offset": 441, + "column": 8, + "line": 26, + "offset": 543, }, }, "range": [ - 441, - 451, + 543, + 554, ], - "start": 441, - "type": "JSXIdentifier", - "value": "decorators", + "start": 543, + "type": "Identifier", + "value": "FormsModule", }, { - "end": 452, + "end": 555, "loc": { "end": { - "column": 13, - "line": 21, - "offset": 452, + "column": 20, + "line": 26, + "offset": 555, }, "start": { - "column": 12, - "line": 21, - "offset": 451, + "column": 19, + "line": 26, + "offset": 554, }, }, "range": [ - 451, - 452, + 554, + 555, ], - "start": 451, + "start": 554, "type": "Punctuator", - "value": "=", + "value": ",", }, { - "end": 453, + "end": 574, "loc": { "end": { - "column": 14, - "line": 21, - "offset": 453, + "column": 18, + "line": 27, + "offset": 574, }, "start": { - "column": 13, - "line": 21, - "offset": 452, + "column": 8, + "line": 27, + "offset": 564, }, }, "range": [ - 452, - 453, + 564, + 574, ], - "start": 452, - "type": "Punctuator", - "value": "{", + "start": 564, + "type": "Identifier", + "value": "FormModule", }, { - "end": 454, + "end": 575, "loc": { "end": { - "column": 15, - "line": 21, - "offset": 454, + "column": 19, + "line": 27, + "offset": 575, }, "start": { - "column": 14, - "line": 21, - "offset": 453, + "column": 18, + "line": 27, + "offset": 574, }, }, "range": [ - 453, - 454, + 574, + 575, ], - "start": 453, + "start": 574, "type": "Punctuator", - "value": "[", + "value": ",", }, { - "end": 473, + "end": 595, "loc": { "end": { - "column": 18, - "line": 22, - "offset": 473, + "column": 19, + "line": 28, + "offset": 595, }, "start": { - "column": 4, - "line": 22, - "offset": 459, + "column": 8, + "line": 28, + "offset": 584, }, }, "range": [ - 459, - 473, + 584, + 595, ], - "start": 459, + "start": 584, "type": "Identifier", - "value": "moduleMetadata", + "value": "RadioModule", }, { - "end": 474, + "end": 596, "loc": { "end": { - "column": 19, - "line": 22, - "offset": 474, + "column": 20, + "line": 28, + "offset": 596, }, "start": { - "column": 18, - "line": 22, - "offset": 473, + "column": 19, + "line": 28, + "offset": 595, }, }, "range": [ - 473, - 474, + 595, + 596, ], - "start": 473, + "start": 595, "type": "Punctuator", - "value": "(", + "value": ",", }, { - "end": 475, + "end": 615, "loc": { "end": { - "column": 20, - "line": 22, - "offset": 475, + "column": 18, + "line": 29, + "offset": 615, }, "start": { - "column": 19, - "line": 22, - "offset": 474, + "column": 8, + "line": 29, + "offset": 605, }, }, "range": [ - 474, - 475, + 605, + 615, ], - "start": 474, - "type": "Punctuator", - "value": "{", + "start": 605, + "type": "Identifier", + "value": "TabsModule", }, { - "end": 489, + "end": 616, "loc": { "end": { - "column": 13, - "line": 23, - "offset": 489, + "column": 19, + "line": 29, + "offset": 616, }, "start": { - "column": 6, - "line": 23, - "offset": 482, + "column": 18, + "line": 29, + "offset": 615, }, }, "range": [ - 482, - 489, + 615, + 616, ], - "start": 482, - "type": "Identifier", - "value": "imports", + "start": 615, + "type": "Punctuator", + "value": ",", }, { - "end": 490, + "end": 635, "loc": { "end": { - "column": 14, - "line": 23, - "offset": 490, + "column": 18, + "line": 30, + "offset": 635, }, "start": { - "column": 13, - "line": 23, - "offset": 489, + "column": 8, + "line": 30, + "offset": 625, }, }, "range": [ - 489, - 490, + 625, + 635, ], - "start": 489, - "type": "Punctuator", - "value": ":", + "start": 625, + "type": "Identifier", + "value": "CardModule", }, { - "end": 492, + "end": 636, "loc": { "end": { - "column": 16, - "line": 23, - "offset": 492, + "column": 19, + "line": 30, + "offset": 636, }, "start": { - "column": 15, - "line": 23, - "offset": 491, + "column": 18, + "line": 30, + "offset": 635, }, }, "range": [ - 491, - 492, + 635, + 636, ], - "start": 491, + "start": 635, "type": "Punctuator", - "value": "[", + "value": ",", }, { - "end": 513, + "end": 644, "loc": { "end": { - "column": 20, - "line": 24, - "offset": 513, + "column": 7, + "line": 31, + "offset": 644, }, "start": { - "column": 8, - "line": 24, - "offset": 501, + "column": 6, + "line": 31, + "offset": 643, }, }, "range": [ - 501, - 513, + 643, + 644, ], - "start": 501, - "type": "Identifier", - "value": "ButtonModule", + "start": 643, + "type": "Punctuator", + "value": "]", }, { - "end": 514, + "end": 645, "loc": { "end": { - "column": 21, - "line": 24, - "offset": 514, + "column": 8, + "line": 31, + "offset": 645, }, "start": { - "column": 20, - "line": 24, - "offset": 513, + "column": 7, + "line": 31, + "offset": 644, }, }, "range": [ - 513, - 514, + 644, + 645, ], - "start": 513, + "start": 644, "type": "Punctuator", "value": ",", }, { - "end": 533, + "end": 664, "loc": { "end": { "column": 18, - "line": 25, - "offset": 533, + "line": 32, + "offset": 664, }, "start": { - "column": 8, - "line": 25, - "offset": 523, + "column": 6, + "line": 32, + "offset": 652, }, }, "range": [ - 523, - 533, + 652, + 664, ], - "start": 523, + "start": 652, "type": "Identifier", - "value": "IconModule", + "value": "declarations", }, { - "end": 534, + "end": 665, "loc": { "end": { "column": 19, - "line": 25, - "offset": 534, + "line": 32, + "offset": 665, }, "start": { "column": 18, - "line": 25, - "offset": 533, + "line": 32, + "offset": 664, }, }, "range": [ - 533, - 534, + 664, + 665, ], - "start": 533, + "start": 664, "type": "Punctuator", - "value": ",", + "value": ":", }, { - "end": 554, + "end": 667, "loc": { "end": { - "column": 19, - "line": 26, - "offset": 554, + "column": 21, + "line": 32, + "offset": 667, }, "start": { - "column": 8, - "line": 26, - "offset": 543, - }, - }, - "range": [ - 543, - 554, - ], - "start": 543, - "type": "Identifier", - "value": "FormsModule", - }, - { - "end": 555, - "loc": { - "end": { "column": 20, - "line": 26, - "offset": 555, - }, - "start": { - "column": 19, - "line": 26, - "offset": 554, + "line": 32, + "offset": 666, }, }, "range": [ - 554, - 555, + 666, + 667, ], - "start": 554, + "start": 666, "type": "Punctuator", - "value": ",", + "value": "[", }, { - "end": 574, + "end": 686, "loc": { "end": { - "column": 18, - "line": 27, - "offset": 574, + "column": 40, + "line": 32, + "offset": 686, }, "start": { - "column": 8, - "line": 27, - "offset": 564, + "column": 21, + "line": 32, + "offset": 667, }, }, "range": [ - 564, - 574, + 667, + 686, ], - "start": 564, + "start": 667, "type": "Identifier", - "value": "FormModule", + "value": "ActiveTestComponent", }, { - "end": 575, + "end": 687, "loc": { "end": { - "column": 19, - "line": 27, - "offset": 575, + "column": 41, + "line": 32, + "offset": 687, }, "start": { - "column": 18, - "line": 27, - "offset": 574, + "column": 40, + "line": 32, + "offset": 686, }, }, "range": [ - 574, - 575, + 686, + 687, ], - "start": 574, + "start": 686, "type": "Punctuator", "value": ",", }, { - "end": 595, + "end": 705, "loc": { "end": { - "column": 19, - "line": 28, - "offset": 595, + "column": 59, + "line": 32, + "offset": 705, }, "start": { - "column": 8, - "line": 28, - "offset": 584, + "column": 42, + "line": 32, + "offset": 688, }, }, "range": [ - 584, - 595, + 688, + 705, ], - "start": 584, + "start": 688, "type": "Identifier", - "value": "RadioModule", + "value": "LazyTestComponent", }, { - "end": 596, + "end": 706, "loc": { "end": { - "column": 20, - "line": 28, - "offset": 596, + "column": 60, + "line": 32, + "offset": 706, }, "start": { - "column": 19, - "line": 28, - "offset": 595, - }, + "column": 59, + "line": 32, + "offset": 705, + }, }, "range": [ - 595, - 596, + 705, + 706, ], - "start": 595, + "start": 705, "type": "Punctuator", - "value": ",", + "value": "]", }, { - "end": 615, + "end": 707, "loc": { "end": { - "column": 18, - "line": 29, - "offset": 615, + "column": 61, + "line": 32, + "offset": 707, }, "start": { - "column": 8, - "line": 29, - "offset": 605, + "column": 60, + "line": 32, + "offset": 706, }, }, "range": [ - 605, - 615, + 706, + 707, ], - "start": 605, - "type": "Identifier", - "value": "TabsModule", + "start": 706, + "type": "Punctuator", + "value": ",", }, { - "end": 616, + "end": 713, "loc": { "end": { - "column": 19, - "line": 29, - "offset": 616, + "column": 5, + "line": 33, + "offset": 713, }, "start": { - "column": 18, - "line": 29, - "offset": 615, + "column": 4, + "line": 33, + "offset": 712, }, }, "range": [ - 615, - 616, + 712, + 713, ], - "start": 615, + "start": 712, "type": "Punctuator", - "value": ",", + "value": "}", }, { - "end": 635, + "end": 714, "loc": { "end": { - "column": 18, - "line": 30, - "offset": 635, + "column": 6, + "line": 33, + "offset": 714, }, "start": { - "column": 8, - "line": 30, - "offset": 625, + "column": 5, + "line": 33, + "offset": 713, }, }, "range": [ - 625, - 635, + 713, + 714, ], - "start": 625, - "type": "Identifier", - "value": "CardModule", + "start": 713, + "type": "Punctuator", + "value": ")", }, { - "end": 636, + "end": 715, "loc": { "end": { - "column": 19, - "line": 30, - "offset": 636, + "column": 7, + "line": 33, + "offset": 715, }, "start": { - "column": 18, - "line": 30, - "offset": 635, + "column": 6, + "line": 33, + "offset": 714, }, }, "range": [ - 635, - 636, + 714, + 715, ], - "start": 635, + "start": 714, "type": "Punctuator", "value": ",", }, { - "end": 644, + "end": 719, "loc": { "end": { - "column": 7, - "line": 31, - "offset": 644, + "column": 3, + "line": 34, + "offset": 719, }, "start": { - "column": 6, - "line": 31, - "offset": 643, + "column": 2, + "line": 34, + "offset": 718, }, }, "range": [ - 643, - 644, + 718, + 719, ], - "start": 643, + "start": 718, "type": "Punctuator", "value": "]", }, { - "end": 645, + "end": 720, "loc": { "end": { - "column": 8, - "line": 31, - "offset": 645, + "column": 4, + "line": 34, + "offset": 720, }, "start": { - "column": 7, - "line": 31, - "offset": 644, + "column": 3, + "line": 34, + "offset": 719, }, }, "range": [ - 644, - 645, + 719, + 720, ], - "start": 644, + "start": 719, "type": "Punctuator", - "value": ",", + "value": "}", }, { - "end": 664, + "end": 722, "loc": { "end": { - "column": 18, - "line": 32, - "offset": 664, + "column": 1, + "line": 35, + "offset": 722, }, "start": { - "column": 6, - "line": 32, - "offset": 652, + "column": 0, + "line": 35, + "offset": 721, }, }, "range": [ - 652, - 664, + 721, + 722, ], - "start": 652, - "type": "Identifier", - "value": "declarations", + "start": 721, + "type": "Punctuator", + "value": "/", }, { - "end": 665, + "end": 723, "loc": { "end": { - "column": 19, - "line": 32, - "offset": 665, + "column": 2, + "line": 35, + "offset": 723, }, "start": { - "column": 18, - "line": 32, - "offset": 664, + "column": 1, + "line": 35, + "offset": 722, }, }, "range": [ - 664, - 665, + 722, + 723, ], - "start": 664, + "start": 722, "type": "Punctuator", - "value": ":", + "value": ">", }, { - "end": 667, + "end": 731, "loc": { "end": { - "column": 21, - "line": 32, - "offset": 667, + "column": 6, + "line": 37, + "offset": 731, }, "start": { - "column": 20, - "line": 32, - "offset": 666, + "column": 2, + "line": 37, + "offset": 727, }, }, "range": [ - 666, - 667, + 727, + 731, ], - "start": 666, - "type": "Punctuator", - "value": "[", + "start": 727, + "type": "JSXText", + "value": "Tabs", }, { - "end": 686, + "end": 791, "loc": { "end": { - "column": 40, - "line": 32, - "offset": 686, + "column": 58, + "line": 39, + "offset": 791, }, "start": { - "column": 21, - "line": 32, - "offset": 667, + "column": 2, + "line": 39, + "offset": 735, }, }, "range": [ - 667, - 686, + 735, + 791, ], - "start": 667, - "type": "Identifier", - "value": "ActiveTestComponent", + "start": 735, + "type": "JSXText", + "value": "移植自 Angular Material, 增加了风格(卡片/线条)和尺寸(大/中/小)选项和 lazy 模式。", }, { - "end": 687, + "end": 800, "loc": { "end": { - "column": 41, - "line": 32, - "offset": 687, + "column": 7, + "line": 41, + "offset": 800, }, "start": { - "column": 40, - "line": 32, - "offset": 686, + "column": 3, + "line": 41, + "offset": 796, }, }, "range": [ - 686, - 687, + 796, + 800, ], - "start": 686, - "type": "Punctuator", - "value": ",", + "start": 796, + "type": "JSXText", + "value": "基础用法", }, { - "end": 705, + "end": 803, "loc": { "end": { - "column": 59, - "line": 32, - "offset": 705, + "column": 1, + "line": 43, + "offset": 803, }, "start": { - "column": 42, - "line": 32, - "offset": 688, + "column": 0, + "line": 43, + "offset": 802, }, }, "range": [ - 688, - 705, + 802, + 803, ], - "start": 688, - "type": "Identifier", - "value": "LazyTestComponent", + "start": 802, + "type": "Punctuator", + "value": "<", }, { - "end": 706, + "end": 809, "loc": { "end": { - "column": 60, - "line": 32, - "offset": 706, + "column": 7, + "line": 43, + "offset": 809, }, "start": { - "column": 59, - "line": 32, - "offset": 705, + "column": 1, + "line": 43, + "offset": 803, }, }, "range": [ - 705, - 706, + 803, + 809, ], - "start": 705, - "type": "Punctuator", - "value": "]", + "start": 803, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 707, + "end": 814, "loc": { "end": { - "column": 61, - "line": 32, - "offset": 707, + "column": 3, + "line": 44, + "offset": 814, }, "start": { - "column": 60, - "line": 32, - "offset": 706, + "column": 2, + "line": 44, + "offset": 813, }, }, "range": [ - 706, - 707, + 813, + 814, ], - "start": 706, + "start": 813, "type": "Punctuator", - "value": ",", + "value": "<", }, { - "end": 713, + "end": 819, "loc": { "end": { - "column": 5, - "line": 33, - "offset": 713, + "column": 8, + "line": 44, + "offset": 819, }, "start": { - "column": 4, - "line": 33, - "offset": 712, + "column": 3, + "line": 44, + "offset": 814, }, }, "range": [ - 712, - 713, + 814, + 819, ], - "start": 712, - "type": "Punctuator", - "value": "}", + "start": 814, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 714, + "end": 828, "loc": { "end": { - "column": 6, - "line": 33, - "offset": 714, + "column": 8, + "line": 45, + "offset": 828, }, "start": { - "column": 5, - "line": 33, - "offset": 713, + "column": 4, + "line": 45, + "offset": 824, }, }, "range": [ - 713, - 714, + 824, + 828, ], - "start": 713, - "type": "Punctuator", - "value": ")", + "start": 824, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 715, + "end": 829, "loc": { "end": { - "column": 7, - "line": 33, - "offset": 715, + "column": 9, + "line": 45, + "offset": 829, }, "start": { - "column": 6, - "line": 33, - "offset": 714, + "column": 8, + "line": 45, + "offset": 828, }, }, "range": [ - 714, - 715, + 828, + 829, ], - "start": 714, + "start": 828, "type": "Punctuator", - "value": ",", + "value": "=", }, { - "end": 719, + "end": 836, "loc": { "end": { - "column": 3, - "line": 34, - "offset": 719, + "column": 16, + "line": 45, + "offset": 836, }, "start": { - "column": 2, - "line": 34, - "offset": 718, + "column": 9, + "line": 45, + "offset": 829, }, }, "range": [ - 718, - 719, + 829, + 836, ], - "start": 718, - "type": "Punctuator", - "value": "]", + "start": 829, + "type": "String", + "value": ""Basic"", }, { - "end": 720, + "end": 847, "loc": { "end": { - "column": 4, - "line": 34, - "offset": 720, + "column": 10, + "line": 46, + "offset": 847, }, "start": { - "column": 3, - "line": 34, - "offset": 719, + "column": 4, + "line": 46, + "offset": 841, }, }, "range": [ - 719, - 720, + 841, + 847, ], - "start": 719, - "type": "Punctuator", - "value": "}", + "start": 841, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 722, + "end": 848, "loc": { "end": { - "column": 1, - "line": 35, - "offset": 722, + "column": 11, + "line": 46, + "offset": 848, }, "start": { - "column": 0, - "line": 35, - "offset": 721, + "column": 10, + "line": 46, + "offset": 847, }, }, "range": [ - 721, - 722, + 847, + 848, ], - "start": 721, + "start": 847, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 723, + "end": 855, "loc": { "end": { - "column": 2, - "line": 35, - "offset": 723, + "column": 18, + "line": 46, + "offset": 855, }, "start": { - "column": 1, - "line": 35, - "offset": 722, + "column": 11, + "line": 46, + "offset": 848, }, }, "range": [ - 722, - 723, + 848, + 855, ], - "start": 722, - "type": "Punctuator", - "value": ">", + "start": 848, + "type": "String", + "value": ""100px"", }, { - "end": 731, + "end": 865, "loc": { "end": { - "column": 6, - "line": 37, - "offset": 731, + "column": 5, + "line": 48, + "offset": 865, }, "start": { - "column": 2, - "line": 37, - "offset": 727, + "column": 4, + "line": 48, + "offset": 864, }, }, "range": [ - 727, - 731, + 864, + 865, ], - "start": 727, - "type": "JSXText", - "value": "Tabs", + "start": 864, + "type": "Punctuator", + "value": "{", }, { - "end": 791, + "end": 866, "loc": { "end": { - "column": 58, - "line": 39, - "offset": 791, + "column": 6, + "line": 48, + "offset": 866, }, "start": { - "column": 2, - "line": 39, - "offset": 735, + "column": 5, + "line": 48, + "offset": 865, }, }, "range": [ - 735, - 791, + 865, + 866, ], - "start": 735, - "type": "JSXText", - "value": "移植自 Angular Material, 增加了风格(卡片/线条)和尺寸(大/中/小)选项和 lazy 模式。", + "start": 865, + "type": "Punctuator", + "value": "{", }, { - "end": 800, + "end": 881, "loc": { "end": { - "column": 7, - "line": 41, - "offset": 800, + "column": 14, + "line": 49, + "offset": 881, }, "start": { - "column": 3, - "line": 41, - "offset": 796, + "column": 6, + "line": 49, + "offset": 873, }, }, "range": [ - 796, - 800, + 873, + 881, ], - "start": 796, - "type": "JSXText", - "value": "基础用法", + "start": 873, + "type": "Identifier", + "value": "template", }, { - "end": 803, + "end": 882, "loc": { "end": { - "column": 1, - "line": 43, - "offset": 803, + "column": 15, + "line": 49, + "offset": 882, }, "start": { - "column": 0, - "line": 43, - "offset": 802, + "column": 14, + "line": 49, + "offset": 881, }, }, "range": [ - 802, - 803, + 881, + 882, ], - "start": 802, + "start": 881, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 809, + "end": 1395, "loc": { "end": { "column": 7, - "line": 43, - "offset": 809, + "line": 70, + "offset": 1395, }, "start": { - "column": 1, - "line": 43, - "offset": 803, + "column": 27, + "line": 49, + "offset": 894, }, }, "range": [ - 803, - 809, + 894, + 1395, ], - "start": 803, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 894, + "type": "Template", + "value": "\` + + + Content 1 + + + Content 2 + + + Content 3 + + + \`", }, { - "end": 814, + "end": 1396, "loc": { "end": { - "column": 3, - "line": 44, - "offset": 814, + "column": 8, + "line": 70, + "offset": 1396, }, "start": { - "column": 2, - "line": 44, - "offset": 813, + "column": 7, + "line": 70, + "offset": 1395, }, }, "range": [ - 813, - 814, + 1395, + 1396, ], - "start": 813, + "start": 1395, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 819, + "end": 1408, "loc": { "end": { - "column": 8, - "line": 44, - "offset": 819, + "column": 11, + "line": 71, + "offset": 1408, }, "start": { - "column": 3, - "line": 44, - "offset": 814, + "column": 6, + "line": 71, + "offset": 1403, }, }, "range": [ - 814, - 819, + 1403, + 1408, ], - "start": 814, - "type": "JSXIdentifier", - "value": "Story", + "start": 1403, + "type": "Identifier", + "value": "props", }, { - "end": 828, + "end": 1409, "loc": { "end": { - "column": 8, - "line": 45, - "offset": 828, + "column": 12, + "line": 71, + "offset": 1409, }, "start": { - "column": 4, - "line": 45, - "offset": 824, + "column": 11, + "line": 71, + "offset": 1408, }, }, "range": [ - 824, - 828, + 1408, + 1409, ], - "start": 824, - "type": "JSXIdentifier", - "value": "name", + "start": 1408, + "type": "Punctuator", + "value": ":", }, { - "end": 829, + "end": 1411, "loc": { "end": { - "column": 9, - "line": 45, - "offset": 829, + "column": 14, + "line": 71, + "offset": 1411, }, "start": { - "column": 8, - "line": 45, - "offset": 828, + "column": 13, + "line": 71, + "offset": 1410, }, }, "range": [ - 828, - 829, + 1410, + 1411, ], - "start": 828, + "start": 1410, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 836, + "end": 1423, "loc": { "end": { - "column": 16, - "line": 45, - "offset": 836, + "column": 11, + "line": 72, + "offset": 1423, }, "start": { - "column": 9, - "line": 45, - "offset": 829, + "column": 8, + "line": 72, + "offset": 1420, }, }, "range": [ - 829, - 836, + 1420, + 1423, ], - "start": 829, - "type": "String", - "value": ""Basic"", + "start": 1420, + "type": "Identifier", + "value": "tab", }, { - "end": 847, + "end": 1424, "loc": { "end": { - "column": 10, - "line": 46, - "offset": 847, + "column": 12, + "line": 72, + "offset": 1424, }, "start": { - "column": 4, - "line": 46, - "offset": 841, + "column": 11, + "line": 72, + "offset": 1423, }, }, "range": [ - 841, - 847, + 1423, + 1424, ], - "start": 841, - "type": "JSXIdentifier", - "value": "height", + "start": 1423, + "type": "Punctuator", + "value": ":", }, { - "end": 848, + "end": 1428, "loc": { "end": { - "column": 11, - "line": 46, - "offset": 848, + "column": 16, + "line": 72, + "offset": 1428, }, "start": { - "column": 10, - "line": 46, - "offset": 847, + "column": 13, + "line": 72, + "offset": 1425, }, }, "range": [ - 847, - 848, + 1425, + 1428, ], - "start": 847, - "type": "Punctuator", - "value": "=", + "start": 1425, + "type": "String", + "value": "'a'", }, { - "end": 855, + "end": 1429, "loc": { "end": { - "column": 18, - "line": 46, - "offset": 855, + "column": 17, + "line": 72, + "offset": 1429, }, "start": { - "column": 11, - "line": 46, - "offset": 848, + "column": 16, + "line": 72, + "offset": 1428, }, }, "range": [ - 848, - 855, + 1428, + 1429, ], - "start": 848, - "type": "String", - "value": ""100px"", + "start": 1428, + "type": "Punctuator", + "value": ",", }, { - "end": 865, + "end": 1437, "loc": { "end": { - "column": 5, - "line": 48, - "offset": 865, + "column": 7, + "line": 73, + "offset": 1437, }, "start": { - "column": 4, - "line": 48, - "offset": 864, + "column": 6, + "line": 73, + "offset": 1436, }, }, "range": [ - 864, - 865, + 1436, + 1437, ], - "start": 864, + "start": 1436, "type": "Punctuator", - "value": "{", + "value": "}", }, { - "end": 866, + "end": 1438, "loc": { "end": { - "column": 6, - "line": 48, - "offset": 866, + "column": 8, + "line": 73, + "offset": 1438, }, "start": { - "column": 5, - "line": 48, - "offset": 865, + "column": 7, + "line": 73, + "offset": 1437, }, }, "range": [ - 865, - 866, + 1437, + 1438, ], - "start": 865, + "start": 1437, "type": "Punctuator", - "value": "{", + "value": ",", }, { - "end": 881, + "end": 1444, "loc": { "end": { - "column": 14, - "line": 49, - "offset": 881, + "column": 5, + "line": 74, + "offset": 1444, }, "start": { - "column": 6, - "line": 49, - "offset": 873, + "column": 4, + "line": 74, + "offset": 1443, }, }, "range": [ - 873, - 881, + 1443, + 1444, ], - "start": 873, - "type": "Identifier", - "value": "template", + "start": 1443, + "type": "Punctuator", + "value": "}", }, { - "end": 882, + "end": 1445, "loc": { "end": { - "column": 15, - "line": 49, - "offset": 882, + "column": 6, + "line": 74, + "offset": 1445, }, "start": { - "column": 14, - "line": 49, - "offset": 881, + "column": 5, + "line": 74, + "offset": 1444, }, }, "range": [ - 881, - 882, + 1444, + 1445, ], - "start": 881, + "start": 1444, "type": "Punctuator", - "value": ":", + "value": "}", }, { - "end": 1395, + "end": 1449, "loc": { "end": { - "column": 7, - "line": 70, - "offset": 1395, + "column": 3, + "line": 75, + "offset": 1449, }, "start": { - "column": 27, - "line": 49, - "offset": 894, + "column": 2, + "line": 75, + "offset": 1448, }, }, "range": [ - 894, - 1395, + 1448, + 1449, ], - "start": 894, - "type": "Template", - "value": "\` - - - Content 1 - - - Content 2 - - - Content 3 - - - \`", + "start": 1448, + "type": "Punctuator", + "value": "<", }, { - "end": 1396, + "end": 1450, "loc": { "end": { - "column": 8, - "line": 70, - "offset": 1396, + "column": 4, + "line": 75, + "offset": 1450, }, "start": { - "column": 7, - "line": 70, - "offset": 1395, + "column": 3, + "line": 75, + "offset": 1449, }, }, "range": [ - 1395, - 1396, + 1449, + 1450, ], - "start": 1395, + "start": 1449, "type": "Punctuator", - "value": ",", + "value": "/", }, { - "end": 1408, + "end": 1455, "loc": { "end": { - "column": 11, - "line": 71, - "offset": 1408, + "column": 9, + "line": 75, + "offset": 1455, }, "start": { - "column": 6, - "line": 71, - "offset": 1403, + "column": 4, + "line": 75, + "offset": 1450, }, }, "range": [ - 1403, - 1408, + 1450, + 1455, ], - "start": 1403, - "type": "Identifier", - "value": "props", + "start": 1450, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 1409, + "end": 1456, "loc": { "end": { - "column": 12, - "line": 71, - "offset": 1409, + "column": 10, + "line": 75, + "offset": 1456, }, "start": { - "column": 11, - "line": 71, - "offset": 1408, + "column": 9, + "line": 75, + "offset": 1455, }, }, "range": [ - 1408, - 1409, + 1455, + 1456, ], - "start": 1408, + "start": 1455, "type": "Punctuator", - "value": ":", + "value": ">", }, { - "end": 1411, + "end": 1458, "loc": { "end": { - "column": 14, - "line": 71, - "offset": 1411, + "column": 1, + "line": 76, + "offset": 1458, }, "start": { - "column": 13, - "line": 71, - "offset": 1410, + "column": 0, + "line": 76, + "offset": 1457, }, }, "range": [ - 1410, - 1411, + 1457, + 1458, ], - "start": 1410, + "start": 1457, "type": "Punctuator", - "value": "{", + "value": "<", }, { - "end": 1423, + "end": 1459, "loc": { "end": { - "column": 11, - "line": 72, - "offset": 1423, + "column": 2, + "line": 76, + "offset": 1459, }, "start": { - "column": 8, - "line": 72, - "offset": 1420, + "column": 1, + "line": 76, + "offset": 1458, }, }, "range": [ - 1420, - 1423, + 1458, + 1459, ], - "start": 1420, - "type": "Identifier", - "value": "tab", + "start": 1458, + "type": "Punctuator", + "value": "/", }, { - "end": 1424, + "end": 1465, "loc": { "end": { - "column": 12, - "line": 72, - "offset": 1424, + "column": 8, + "line": 76, + "offset": 1465, }, "start": { - "column": 11, - "line": 72, - "offset": 1423, + "column": 2, + "line": 76, + "offset": 1459, }, }, "range": [ - 1423, - 1424, + 1459, + 1465, ], - "start": 1423, - "type": "Punctuator", - "value": ":", + "start": 1459, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 1428, + "end": 1466, "loc": { "end": { - "column": 16, - "line": 72, - "offset": 1428, + "column": 9, + "line": 76, + "offset": 1466, }, "start": { - "column": 13, - "line": 72, - "offset": 1425, + "column": 8, + "line": 76, + "offset": 1465, }, }, "range": [ - 1425, - 1428, + 1465, + 1466, ], - "start": 1425, - "type": "String", - "value": "'a'", + "start": 1465, + "type": "Punctuator", + "value": ">", }, { - "end": 1429, + "end": 1475, "loc": { "end": { - "column": 17, - "line": 72, - "offset": 1429, + "column": 7, + "line": 78, + "offset": 1475, }, "start": { - "column": 16, - "line": 72, - "offset": 1428, + "column": 3, + "line": 78, + "offset": 1471, }, }, "range": [ - 1428, - 1429, + 1471, + 1475, ], - "start": 1428, - "type": "Punctuator", - "value": ",", + "start": 1471, + "type": "JSXText", + "value": "Card", }, { - "end": 1437, + "end": 1478, "loc": { "end": { - "column": 7, - "line": 73, - "offset": 1437, + "column": 1, + "line": 80, + "offset": 1478, }, "start": { - "column": 6, - "line": 73, - "offset": 1436, + "column": 0, + "line": 80, + "offset": 1477, }, }, "range": [ - 1436, - 1437, + 1477, + 1478, ], - "start": 1436, + "start": 1477, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 1438, + "end": 1484, "loc": { "end": { - "column": 8, - "line": 73, - "offset": 1438, + "column": 7, + "line": 80, + "offset": 1484, }, "start": { - "column": 7, - "line": 73, - "offset": 1437, + "column": 1, + "line": 80, + "offset": 1478, }, }, "range": [ - 1437, - 1438, + 1478, + 1484, ], - "start": 1437, - "type": "Punctuator", - "value": ",", + "start": 1478, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 1444, + "end": 1489, "loc": { "end": { - "column": 5, - "line": 74, - "offset": 1444, + "column": 3, + "line": 81, + "offset": 1489, }, "start": { - "column": 4, - "line": 74, - "offset": 1443, + "column": 2, + "line": 81, + "offset": 1488, }, }, "range": [ - 1443, - 1444, + 1488, + 1489, ], - "start": 1443, + "start": 1488, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 1445, + "end": 1494, "loc": { "end": { - "column": 6, - "line": 74, - "offset": 1445, + "column": 8, + "line": 81, + "offset": 1494, }, "start": { - "column": 5, - "line": 74, - "offset": 1444, + "column": 3, + "line": 81, + "offset": 1489, }, }, "range": [ - 1444, - 1445, + 1489, + 1494, ], - "start": 1444, - "type": "Punctuator", - "value": "}", + "start": 1489, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 1449, + "end": 1503, "loc": { "end": { - "column": 3, - "line": 75, - "offset": 1449, + "column": 8, + "line": 82, + "offset": 1503, }, "start": { - "column": 2, - "line": 75, - "offset": 1448, + "column": 4, + "line": 82, + "offset": 1499, }, }, "range": [ - 1448, - 1449, + 1499, + 1503, ], - "start": 1448, - "type": "Punctuator", - "value": "<", + "start": 1499, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 1450, + "end": 1504, "loc": { "end": { - "column": 4, - "line": 75, - "offset": 1450, + "column": 9, + "line": 82, + "offset": 1504, }, "start": { - "column": 3, - "line": 75, - "offset": 1449, + "column": 8, + "line": 82, + "offset": 1503, }, }, "range": [ - 1449, - 1450, + 1503, + 1504, ], - "start": 1449, + "start": 1503, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 1455, + "end": 1510, "loc": { "end": { - "column": 9, - "line": 75, - "offset": 1455, + "column": 15, + "line": 82, + "offset": 1510, }, "start": { - "column": 4, - "line": 75, - "offset": 1450, + "column": 9, + "line": 82, + "offset": 1504, }, }, "range": [ - 1450, - 1455, + 1504, + 1510, ], - "start": 1450, - "type": "JSXIdentifier", - "value": "Story", + "start": 1504, + "type": "String", + "value": ""Card"", }, { - "end": 1456, + "end": 1521, "loc": { "end": { "column": 10, - "line": 75, - "offset": 1456, + "line": 83, + "offset": 1521, }, "start": { - "column": 9, - "line": 75, - "offset": 1455, + "column": 4, + "line": 83, + "offset": 1515, }, }, "range": [ - 1455, - 1456, + 1515, + 1521, ], - "start": 1455, - "type": "Punctuator", - "value": ">", + "start": 1515, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 1458, + "end": 1522, "loc": { "end": { - "column": 1, - "line": 76, - "offset": 1458, + "column": 11, + "line": 83, + "offset": 1522, }, "start": { - "column": 0, - "line": 76, - "offset": 1457, + "column": 10, + "line": 83, + "offset": 1521, }, }, "range": [ - 1457, - 1458, + 1521, + 1522, ], - "start": 1457, + "start": 1521, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 1459, + "end": 1529, "loc": { "end": { - "column": 2, - "line": 76, - "offset": 1459, + "column": 18, + "line": 83, + "offset": 1529, }, "start": { - "column": 1, - "line": 76, - "offset": 1458, + "column": 11, + "line": 83, + "offset": 1522, }, }, "range": [ - 1458, - 1459, + 1522, + 1529, ], - "start": 1458, - "type": "Punctuator", - "value": "/", + "start": 1522, + "type": "String", + "value": ""200px"", }, { - "end": 1465, + "end": 1539, "loc": { "end": { - "column": 8, - "line": 76, - "offset": 1465, + "column": 5, + "line": 85, + "offset": 1539, }, "start": { - "column": 2, - "line": 76, - "offset": 1459, + "column": 4, + "line": 85, + "offset": 1538, }, }, "range": [ - 1459, - 1465, + 1538, + 1539, ], - "start": 1459, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 1538, + "type": "Punctuator", + "value": "{", }, { - "end": 1466, + "end": 1540, "loc": { "end": { - "column": 9, - "line": 76, - "offset": 1466, + "column": 6, + "line": 85, + "offset": 1540, }, "start": { - "column": 8, - "line": 76, - "offset": 1465, + "column": 5, + "line": 85, + "offset": 1539, }, }, "range": [ - 1465, - 1466, + 1539, + 1540, ], - "start": 1465, + "start": 1539, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 1475, + "end": 1555, "loc": { "end": { - "column": 7, - "line": 78, - "offset": 1475, + "column": 14, + "line": 86, + "offset": 1555, }, "start": { - "column": 3, - "line": 78, - "offset": 1471, + "column": 6, + "line": 86, + "offset": 1547, }, }, "range": [ - 1471, - 1475, + 1547, + 1555, ], - "start": 1471, - "type": "JSXText", - "value": "Card", + "start": 1547, + "type": "Identifier", + "value": "template", }, { - "end": 1478, + "end": 1556, "loc": { "end": { - "column": 1, - "line": 80, - "offset": 1478, + "column": 15, + "line": 86, + "offset": 1556, }, "start": { - "column": 0, - "line": 80, - "offset": 1477, + "column": 14, + "line": 86, + "offset": 1555, }, }, "range": [ - 1477, - 1478, + 1555, + 1556, ], - "start": 1477, + "start": 1555, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 1484, + "end": 1868, "loc": { "end": { "column": 7, - "line": 80, - "offset": 1484, + "line": 92, + "offset": 1868, }, "start": { - "column": 1, - "line": 80, - "offset": 1478, + "column": 27, + "line": 86, + "offset": 1568, }, }, "range": [ - 1478, - 1484, + 1568, + 1868, ], - "start": 1478, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 1568, + "type": "Template", + "value": "\` + + Content 1 + Content 2 + Content 3 + + \`", }, { - "end": 1489, + "end": 1869, "loc": { "end": { - "column": 3, - "line": 81, - "offset": 1489, + "column": 8, + "line": 92, + "offset": 1869, }, "start": { - "column": 2, - "line": 81, - "offset": 1488, + "column": 7, + "line": 92, + "offset": 1868, }, }, "range": [ - 1488, - 1489, + 1868, + 1869, ], - "start": 1488, + "start": 1868, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 1494, + "end": 1881, "loc": { "end": { - "column": 8, - "line": 81, - "offset": 1494, + "column": 11, + "line": 93, + "offset": 1881, }, "start": { - "column": 3, - "line": 81, - "offset": 1489, + "column": 6, + "line": 93, + "offset": 1876, }, }, "range": [ - 1489, - 1494, + 1876, + 1881, ], - "start": 1489, - "type": "JSXIdentifier", - "value": "Story", - }, + "start": 1876, + "type": "Identifier", + "value": "props", + }, { - "end": 1503, + "end": 1882, "loc": { "end": { - "column": 8, - "line": 82, - "offset": 1503, + "column": 12, + "line": 93, + "offset": 1882, }, "start": { - "column": 4, - "line": 82, - "offset": 1499, + "column": 11, + "line": 93, + "offset": 1881, }, }, "range": [ - 1499, - 1503, + 1881, + 1882, ], - "start": 1499, - "type": "JSXIdentifier", - "value": "name", + "start": 1881, + "type": "Punctuator", + "value": ":", }, { - "end": 1504, + "end": 1884, "loc": { "end": { - "column": 9, - "line": 82, - "offset": 1504, + "column": 14, + "line": 93, + "offset": 1884, }, "start": { - "column": 8, - "line": 82, - "offset": 1503, + "column": 13, + "line": 93, + "offset": 1883, }, }, "range": [ - 1503, - 1504, + 1883, + 1884, ], - "start": 1503, + "start": 1883, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 1510, + "end": 1897, "loc": { "end": { - "column": 15, - "line": 82, - "offset": 1510, + "column": 12, + "line": 94, + "offset": 1897, }, "start": { - "column": 9, - "line": 82, - "offset": 1504, + "column": 8, + "line": 94, + "offset": 1893, }, }, "range": [ - 1504, - 1510, + 1893, + 1897, ], - "start": 1504, - "type": "String", - "value": ""Card"", + "start": 1893, + "type": "Identifier", + "value": "type", }, { - "end": 1521, + "end": 1898, "loc": { "end": { - "column": 10, - "line": 83, - "offset": 1521, + "column": 13, + "line": 94, + "offset": 1898, }, "start": { - "column": 4, - "line": 83, - "offset": 1515, + "column": 12, + "line": 94, + "offset": 1897, }, }, "range": [ - 1515, - 1521, + 1897, + 1898, ], - "start": 1515, - "type": "JSXIdentifier", - "value": "height", + "start": 1897, + "type": "Punctuator", + "value": ":", }, { - "end": 1522, + "end": 1906, "loc": { "end": { - "column": 11, - "line": 83, - "offset": 1522, + "column": 21, + "line": 94, + "offset": 1906, }, "start": { - "column": 10, - "line": 83, - "offset": 1521, + "column": 14, + "line": 94, + "offset": 1899, }, }, "range": [ - 1521, - 1522, + 1899, + 1906, ], - "start": 1521, - "type": "Punctuator", - "value": "=", + "start": 1899, + "type": "Identifier", + "value": "TabType", }, { - "end": 1529, + "end": 1907, "loc": { "end": { - "column": 18, - "line": 83, - "offset": 1529, + "column": 22, + "line": 94, + "offset": 1907, }, "start": { - "column": 11, - "line": 83, - "offset": 1522, + "column": 21, + "line": 94, + "offset": 1906, }, }, "range": [ - 1522, - 1529, + 1906, + 1907, ], - "start": 1522, - "type": "String", - "value": ""200px"", + "start": 1906, + "type": "Punctuator", + "value": ".", }, { - "end": 1539, + "end": 1911, "loc": { "end": { - "column": 5, - "line": 85, - "offset": 1539, + "column": 26, + "line": 94, + "offset": 1911, }, "start": { - "column": 4, - "line": 85, - "offset": 1538, + "column": 22, + "line": 94, + "offset": 1907, }, }, "range": [ - 1538, - 1539, + 1907, + 1911, ], - "start": 1538, - "type": "Punctuator", - "value": "{", + "start": 1907, + "type": "Identifier", + "value": "Card", }, { - "end": 1540, + "end": 1912, "loc": { "end": { - "column": 6, - "line": 85, - "offset": 1540, + "column": 27, + "line": 94, + "offset": 1912, }, "start": { - "column": 5, - "line": 85, - "offset": 1539, + "column": 26, + "line": 94, + "offset": 1911, }, }, "range": [ - 1539, - 1540, + 1911, + 1912, ], - "start": 1539, + "start": 1911, "type": "Punctuator", - "value": "{", + "value": ",", }, { - "end": 1555, + "end": 1920, "loc": { "end": { - "column": 14, - "line": 86, - "offset": 1555, + "column": 7, + "line": 95, + "offset": 1920, }, "start": { "column": 6, - "line": 86, - "offset": 1547, + "line": 95, + "offset": 1919, }, }, "range": [ - 1547, - 1555, + 1919, + 1920, ], - "start": 1547, - "type": "Identifier", - "value": "template", + "start": 1919, + "type": "Punctuator", + "value": "}", }, { - "end": 1556, + "end": 1921, "loc": { "end": { - "column": 15, - "line": 86, - "offset": 1556, + "column": 8, + "line": 95, + "offset": 1921, }, "start": { - "column": 14, - "line": 86, - "offset": 1555, + "column": 7, + "line": 95, + "offset": 1920, }, }, "range": [ - 1555, - 1556, + 1920, + 1921, ], - "start": 1555, + "start": 1920, "type": "Punctuator", - "value": ":", + "value": ",", }, { - "end": 1868, + "end": 1927, "loc": { "end": { - "column": 7, - "line": 92, - "offset": 1868, + "column": 5, + "line": 96, + "offset": 1927, }, "start": { - "column": 27, - "line": 86, - "offset": 1568, + "column": 4, + "line": 96, + "offset": 1926, }, }, "range": [ - 1568, - 1868, + 1926, + 1927, ], - "start": 1568, - "type": "Template", - "value": "\` - - Content 1 - Content 2 - Content 3 - - \`", + "start": 1926, + "type": "Punctuator", + "value": "}", }, { - "end": 1869, + "end": 1928, "loc": { "end": { - "column": 8, - "line": 92, - "offset": 1869, + "column": 6, + "line": 96, + "offset": 1928, }, "start": { - "column": 7, - "line": 92, - "offset": 1868, + "column": 5, + "line": 96, + "offset": 1927, }, }, "range": [ - 1868, - 1869, + 1927, + 1928, ], - "start": 1868, + "start": 1927, "type": "Punctuator", - "value": ",", + "value": "}", }, { - "end": 1881, + "end": 1932, "loc": { "end": { - "column": 11, - "line": 93, - "offset": 1881, + "column": 3, + "line": 97, + "offset": 1932, }, "start": { - "column": 6, - "line": 93, - "offset": 1876, + "column": 2, + "line": 97, + "offset": 1931, }, }, "range": [ - 1876, - 1881, + 1931, + 1932, ], - "start": 1876, - "type": "Identifier", - "value": "props", + "start": 1931, + "type": "Punctuator", + "value": "<", }, { - "end": 1882, + "end": 1933, "loc": { "end": { - "column": 12, - "line": 93, - "offset": 1882, + "column": 4, + "line": 97, + "offset": 1933, }, "start": { - "column": 11, - "line": 93, - "offset": 1881, + "column": 3, + "line": 97, + "offset": 1932, }, }, "range": [ - 1881, - 1882, + 1932, + 1933, ], - "start": 1881, + "start": 1932, "type": "Punctuator", - "value": ":", + "value": "/", }, { - "end": 1884, + "end": 1938, "loc": { "end": { - "column": 14, - "line": 93, - "offset": 1884, + "column": 9, + "line": 97, + "offset": 1938, }, "start": { - "column": 13, - "line": 93, - "offset": 1883, + "column": 4, + "line": 97, + "offset": 1933, }, }, "range": [ - 1883, - 1884, + 1933, + 1938, ], - "start": 1883, - "type": "Punctuator", - "value": "{", + "start": 1933, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 1897, + "end": 1939, "loc": { "end": { - "column": 12, - "line": 94, - "offset": 1897, + "column": 10, + "line": 97, + "offset": 1939, }, "start": { - "column": 8, - "line": 94, - "offset": 1893, + "column": 9, + "line": 97, + "offset": 1938, }, }, "range": [ - 1893, - 1897, + 1938, + 1939, ], - "start": 1893, - "type": "Identifier", - "value": "type", + "start": 1938, + "type": "Punctuator", + "value": ">", }, { - "end": 1898, + "end": 1941, "loc": { "end": { - "column": 13, - "line": 94, - "offset": 1898, + "column": 1, + "line": 98, + "offset": 1941, }, "start": { - "column": 12, - "line": 94, - "offset": 1897, + "column": 0, + "line": 98, + "offset": 1940, }, }, "range": [ - 1897, - 1898, + 1940, + 1941, ], - "start": 1897, + "start": 1940, "type": "Punctuator", - "value": ":", + "value": "<", }, { - "end": 1906, + "end": 1942, "loc": { "end": { - "column": 21, - "line": 94, - "offset": 1906, + "column": 2, + "line": 98, + "offset": 1942, }, "start": { - "column": 14, - "line": 94, - "offset": 1899, + "column": 1, + "line": 98, + "offset": 1941, }, }, "range": [ - 1899, - 1906, + 1941, + 1942, ], - "start": 1899, - "type": "Identifier", - "value": "TabType", + "start": 1941, + "type": "Punctuator", + "value": "/", }, { - "end": 1907, + "end": 1948, "loc": { "end": { - "column": 22, - "line": 94, - "offset": 1907, + "column": 8, + "line": 98, + "offset": 1948, }, "start": { - "column": 21, - "line": 94, - "offset": 1906, + "column": 2, + "line": 98, + "offset": 1942, }, }, "range": [ - 1906, - 1907, + 1942, + 1948, ], - "start": 1906, - "type": "Punctuator", - "value": ".", + "start": 1942, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 1911, + "end": 1949, "loc": { "end": { - "column": 26, - "line": 94, - "offset": 1911, + "column": 9, + "line": 98, + "offset": 1949, }, "start": { - "column": 22, - "line": 94, - "offset": 1907, + "column": 8, + "line": 98, + "offset": 1948, }, }, "range": [ - 1907, - 1911, + 1948, + 1949, ], - "start": 1907, - "type": "Identifier", - "value": "Card", + "start": 1948, + "type": "Punctuator", + "value": ">", }, { - "end": 1912, + "end": 1958, "loc": { "end": { - "column": 27, - "line": 94, - "offset": 1912, + "column": 7, + "line": 100, + "offset": 1958, }, "start": { - "column": 26, - "line": 94, - "offset": 1911, + "column": 3, + "line": 100, + "offset": 1954, }, }, "range": [ - 1911, - 1912, + 1954, + 1958, ], - "start": 1911, - "type": "Punctuator", - "value": ",", + "start": 1954, + "type": "JSXText", + "value": "Size", }, { - "end": 1920, + "end": 1961, "loc": { "end": { - "column": 7, - "line": 95, - "offset": 1920, + "column": 1, + "line": 102, + "offset": 1961, }, "start": { - "column": 6, - "line": 95, - "offset": 1919, - }, + "column": 0, + "line": 102, + "offset": 1960, + }, }, "range": [ - 1919, - 1920, + 1960, + 1961, ], - "start": 1919, + "start": 1960, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 1921, + "end": 1967, "loc": { "end": { - "column": 8, - "line": 95, - "offset": 1921, + "column": 7, + "line": 102, + "offset": 1967, }, "start": { - "column": 7, - "line": 95, - "offset": 1920, + "column": 1, + "line": 102, + "offset": 1961, }, }, "range": [ - 1920, - 1921, + 1961, + 1967, ], - "start": 1920, - "type": "Punctuator", - "value": ",", + "start": 1961, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 1927, + "end": 1972, "loc": { "end": { - "column": 5, - "line": 96, - "offset": 1927, + "column": 3, + "line": 103, + "offset": 1972, }, "start": { - "column": 4, - "line": 96, - "offset": 1926, + "column": 2, + "line": 103, + "offset": 1971, }, }, "range": [ - 1926, - 1927, + 1971, + 1972, ], - "start": 1926, + "start": 1971, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 1928, + "end": 1977, "loc": { "end": { - "column": 6, - "line": 96, - "offset": 1928, + "column": 8, + "line": 103, + "offset": 1977, }, "start": { - "column": 5, - "line": 96, - "offset": 1927, + "column": 3, + "line": 103, + "offset": 1972, }, }, "range": [ - 1927, - 1928, + 1972, + 1977, ], - "start": 1927, - "type": "Punctuator", - "value": "}", + "start": 1972, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 1932, + "end": 1986, "loc": { "end": { - "column": 3, - "line": 97, - "offset": 1932, + "column": 8, + "line": 104, + "offset": 1986, }, "start": { - "column": 2, - "line": 97, - "offset": 1931, + "column": 4, + "line": 104, + "offset": 1982, }, }, "range": [ - 1931, - 1932, + 1982, + 1986, ], - "start": 1931, - "type": "Punctuator", - "value": "<", + "start": 1982, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 1933, + "end": 1987, "loc": { "end": { - "column": 4, - "line": 97, - "offset": 1933, + "column": 9, + "line": 104, + "offset": 1987, }, "start": { - "column": 3, - "line": 97, - "offset": 1932, + "column": 8, + "line": 104, + "offset": 1986, }, }, "range": [ - 1932, - 1933, + 1986, + 1987, ], - "start": 1932, + "start": 1986, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 1938, + "end": 1993, "loc": { "end": { - "column": 9, - "line": 97, - "offset": 1938, + "column": 15, + "line": 104, + "offset": 1993, }, "start": { - "column": 4, - "line": 97, - "offset": 1933, + "column": 9, + "line": 104, + "offset": 1987, }, }, "range": [ - 1933, - 1938, + 1987, + 1993, ], - "start": 1933, - "type": "JSXIdentifier", - "value": "Story", + "start": 1987, + "type": "String", + "value": ""Size"", }, { - "end": 1939, + "end": 2004, "loc": { "end": { "column": 10, - "line": 97, - "offset": 1939, + "line": 105, + "offset": 2004, }, "start": { - "column": 9, - "line": 97, - "offset": 1938, + "column": 4, + "line": 105, + "offset": 1998, }, }, "range": [ - 1938, - 1939, + 1998, + 2004, ], - "start": 1938, - "type": "Punctuator", - "value": ">", + "start": 1998, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 1941, + "end": 2005, "loc": { "end": { - "column": 1, - "line": 98, - "offset": 1941, + "column": 11, + "line": 105, + "offset": 2005, }, "start": { - "column": 0, - "line": 98, - "offset": 1940, + "column": 10, + "line": 105, + "offset": 2004, }, }, "range": [ - 1940, - 1941, + 2004, + 2005, ], - "start": 1940, + "start": 2004, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 1942, + "end": 2012, "loc": { "end": { - "column": 2, - "line": 98, - "offset": 1942, + "column": 18, + "line": 105, + "offset": 2012, }, "start": { - "column": 1, - "line": 98, - "offset": 1941, + "column": 11, + "line": 105, + "offset": 2005, }, }, "range": [ - 1941, - 1942, + 2005, + 2012, ], - "start": 1941, - "type": "Punctuator", - "value": "/", + "start": 2005, + "type": "String", + "value": ""200px"", }, { - "end": 1948, + "end": 2022, "loc": { "end": { - "column": 8, - "line": 98, - "offset": 1948, + "column": 5, + "line": 107, + "offset": 2022, }, "start": { - "column": 2, - "line": 98, - "offset": 1942, + "column": 4, + "line": 107, + "offset": 2021, }, }, "range": [ - 1942, - 1948, + 2021, + 2022, ], - "start": 1942, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 2021, + "type": "Punctuator", + "value": "{", }, { - "end": 1949, + "end": 2023, "loc": { "end": { - "column": 9, - "line": 98, - "offset": 1949, + "column": 6, + "line": 107, + "offset": 2023, }, "start": { - "column": 8, - "line": 98, - "offset": 1948, - }, + "column": 5, + "line": 107, + "offset": 2022, + }, }, "range": [ - 1948, - 1949, + 2022, + 2023, ], - "start": 1948, + "start": 2022, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 1958, + "end": 2038, "loc": { "end": { - "column": 7, - "line": 100, - "offset": 1958, + "column": 14, + "line": 108, + "offset": 2038, }, "start": { - "column": 3, - "line": 100, - "offset": 1954, + "column": 6, + "line": 108, + "offset": 2030, }, }, "range": [ - 1954, - 1958, + 2030, + 2038, ], - "start": 1954, - "type": "JSXText", - "value": "Size", + "start": 2030, + "type": "Identifier", + "value": "template", }, { - "end": 1961, + "end": 2039, "loc": { "end": { - "column": 1, - "line": 102, - "offset": 1961, + "column": 15, + "line": 108, + "offset": 2039, }, "start": { - "column": 0, - "line": 102, - "offset": 1960, + "column": 14, + "line": 108, + "offset": 2038, }, }, "range": [ - 1960, - 1961, + 2038, + 2039, ], - "start": 1960, + "start": 2038, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 1967, + "end": 2799, "loc": { "end": { "column": 7, - "line": 102, - "offset": 1967, + "line": 126, + "offset": 2799, }, "start": { - "column": 1, - "line": 102, - "offset": 1961, + "column": 27, + "line": 108, + "offset": 2051, }, }, "range": [ - 1961, - 1967, + 2051, + 2799, ], - "start": 1961, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 2051, + "type": "Template", + "value": "\` + + + + + + + + + + Content 1 + Content 2 + Content 3 + + \`", }, { - "end": 1972, + "end": 2800, "loc": { "end": { - "column": 3, - "line": 103, - "offset": 1972, + "column": 8, + "line": 126, + "offset": 2800, }, "start": { - "column": 2, - "line": 103, - "offset": 1971, + "column": 7, + "line": 126, + "offset": 2799, }, }, "range": [ - 1971, - 1972, + 2799, + 2800, ], - "start": 1971, + "start": 2799, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 1977, + "end": 2812, "loc": { "end": { - "column": 8, - "line": 103, - "offset": 1977, + "column": 11, + "line": 127, + "offset": 2812, }, "start": { - "column": 3, - "line": 103, - "offset": 1972, + "column": 6, + "line": 127, + "offset": 2807, }, }, "range": [ - 1972, - 1977, + 2807, + 2812, ], - "start": 1972, - "type": "JSXIdentifier", - "value": "Story", + "start": 2807, + "type": "Identifier", + "value": "props", }, { - "end": 1986, + "end": 2813, "loc": { "end": { - "column": 8, - "line": 104, - "offset": 1986, + "column": 12, + "line": 127, + "offset": 2813, }, "start": { - "column": 4, - "line": 104, - "offset": 1982, + "column": 11, + "line": 127, + "offset": 2812, }, }, "range": [ - 1982, - 1986, + 2812, + 2813, ], - "start": 1982, - "type": "JSXIdentifier", - "value": "name", + "start": 2812, + "type": "Punctuator", + "value": ":", }, { - "end": 1987, + "end": 2815, "loc": { "end": { - "column": 9, - "line": 104, - "offset": 1987, + "column": 14, + "line": 127, + "offset": 2815, }, "start": { - "column": 8, - "line": 104, - "offset": 1986, + "column": 13, + "line": 127, + "offset": 2814, }, }, "range": [ - 1986, - 1987, + 2814, + 2815, ], - "start": 1986, + "start": 2814, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 1993, + "end": 2828, "loc": { "end": { - "column": 15, - "line": 104, - "offset": 1993, + "column": 12, + "line": 128, + "offset": 2828, }, "start": { - "column": 9, - "line": 104, - "offset": 1987, + "column": 8, + "line": 128, + "offset": 2824, }, }, "range": [ - 1987, - 1993, + 2824, + 2828, ], - "start": 1987, - "type": "String", - "value": ""Size"", + "start": 2824, + "type": "Identifier", + "value": "size", }, { - "end": 2004, + "end": 2829, "loc": { "end": { - "column": 10, - "line": 105, - "offset": 2004, + "column": 13, + "line": 128, + "offset": 2829, }, "start": { - "column": 4, - "line": 105, - "offset": 1998, + "column": 12, + "line": 128, + "offset": 2828, }, }, "range": [ - 1998, - 2004, + 2828, + 2829, ], - "start": 1998, - "type": "JSXIdentifier", - "value": "height", + "start": 2828, + "type": "Punctuator", + "value": ":", }, { - "end": 2005, + "end": 2837, "loc": { "end": { - "column": 11, - "line": 105, - "offset": 2005, + "column": 21, + "line": 128, + "offset": 2837, }, "start": { - "column": 10, - "line": 105, - "offset": 2004, + "column": 14, + "line": 128, + "offset": 2830, }, }, "range": [ - 2004, - 2005, + 2830, + 2837, ], - "start": 2004, - "type": "Punctuator", - "value": "=", + "start": 2830, + "type": "Identifier", + "value": "TabSize", }, { - "end": 2012, + "end": 2838, "loc": { "end": { - "column": 18, - "line": 105, - "offset": 2012, + "column": 22, + "line": 128, + "offset": 2838, }, "start": { - "column": 11, - "line": 105, - "offset": 2005, + "column": 21, + "line": 128, + "offset": 2837, }, }, "range": [ - 2005, - 2012, + 2837, + 2838, ], - "start": 2005, - "type": "String", - "value": ""200px"", + "start": 2837, + "type": "Punctuator", + "value": ".", }, { - "end": 2022, + "end": 2844, "loc": { "end": { - "column": 5, - "line": 107, - "offset": 2022, + "column": 28, + "line": 128, + "offset": 2844, }, "start": { - "column": 4, - "line": 107, - "offset": 2021, + "column": 22, + "line": 128, + "offset": 2838, }, }, "range": [ - 2021, - 2022, + 2838, + 2844, ], - "start": 2021, - "type": "Punctuator", - "value": "{", + "start": 2838, + "type": "Identifier", + "value": "Medium", }, { - "end": 2023, + "end": 2845, "loc": { "end": { - "column": 6, - "line": 107, - "offset": 2023, + "column": 29, + "line": 128, + "offset": 2845, }, "start": { - "column": 5, - "line": 107, - "offset": 2022, + "column": 28, + "line": 128, + "offset": 2844, }, }, "range": [ - 2022, - 2023, + 2844, + 2845, ], - "start": 2022, + "start": 2844, "type": "Punctuator", - "value": "{", + "value": ",", }, { - "end": 2038, + "end": 2853, "loc": { "end": { - "column": 14, - "line": 108, - "offset": 2038, + "column": 7, + "line": 129, + "offset": 2853, }, "start": { "column": 6, - "line": 108, - "offset": 2030, + "line": 129, + "offset": 2852, }, }, "range": [ - 2030, - 2038, + 2852, + 2853, ], - "start": 2030, - "type": "Identifier", - "value": "template", + "start": 2852, + "type": "Punctuator", + "value": "}", }, { - "end": 2039, + "end": 2854, "loc": { "end": { - "column": 15, - "line": 108, - "offset": 2039, + "column": 8, + "line": 129, + "offset": 2854, }, "start": { - "column": 14, - "line": 108, - "offset": 2038, + "column": 7, + "line": 129, + "offset": 2853, }, }, "range": [ - 2038, - 2039, + 2853, + 2854, ], - "start": 2038, + "start": 2853, "type": "Punctuator", - "value": ":", + "value": ",", }, { - "end": 2799, + "end": 2860, "loc": { "end": { - "column": 7, - "line": 126, - "offset": 2799, + "column": 5, + "line": 130, + "offset": 2860, }, "start": { - "column": 27, - "line": 108, - "offset": 2051, + "column": 4, + "line": 130, + "offset": 2859, }, }, "range": [ - 2051, - 2799, + 2859, + 2860, ], - "start": 2051, - "type": "Template", - "value": "\` - - - - - - - - - - Content 1 - Content 2 - Content 3 - - \`", + "start": 2859, + "type": "Punctuator", + "value": "}", }, { - "end": 2800, + "end": 2861, "loc": { "end": { - "column": 8, - "line": 126, - "offset": 2800, + "column": 6, + "line": 130, + "offset": 2861, }, "start": { - "column": 7, - "line": 126, - "offset": 2799, + "column": 5, + "line": 130, + "offset": 2860, }, }, "range": [ - 2799, - 2800, + 2860, + 2861, ], - "start": 2799, + "start": 2860, "type": "Punctuator", - "value": ",", + "value": "}", }, { - "end": 2812, + "end": 2865, "loc": { "end": { - "column": 11, - "line": 127, - "offset": 2812, + "column": 3, + "line": 131, + "offset": 2865, }, "start": { - "column": 6, - "line": 127, - "offset": 2807, + "column": 2, + "line": 131, + "offset": 2864, }, }, "range": [ - 2807, - 2812, + 2864, + 2865, ], - "start": 2807, - "type": "Identifier", - "value": "props", + "start": 2864, + "type": "Punctuator", + "value": "<", }, { - "end": 2813, + "end": 2866, "loc": { "end": { - "column": 12, - "line": 127, - "offset": 2813, + "column": 4, + "line": 131, + "offset": 2866, }, "start": { - "column": 11, - "line": 127, - "offset": 2812, + "column": 3, + "line": 131, + "offset": 2865, }, }, "range": [ - 2812, - 2813, + 2865, + 2866, ], - "start": 2812, + "start": 2865, "type": "Punctuator", - "value": ":", + "value": "/", }, { - "end": 2815, + "end": 2871, "loc": { "end": { - "column": 14, - "line": 127, - "offset": 2815, + "column": 9, + "line": 131, + "offset": 2871, }, "start": { - "column": 13, - "line": 127, - "offset": 2814, + "column": 4, + "line": 131, + "offset": 2866, }, }, "range": [ - 2814, - 2815, + 2866, + 2871, ], - "start": 2814, - "type": "Punctuator", - "value": "{", + "start": 2866, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 2828, + "end": 2872, "loc": { "end": { - "column": 12, - "line": 128, - "offset": 2828, + "column": 10, + "line": 131, + "offset": 2872, }, "start": { - "column": 8, - "line": 128, - "offset": 2824, + "column": 9, + "line": 131, + "offset": 2871, }, }, "range": [ - 2824, - 2828, + 2871, + 2872, ], - "start": 2824, - "type": "Identifier", - "value": "size", + "start": 2871, + "type": "Punctuator", + "value": ">", }, { - "end": 2829, + "end": 2874, "loc": { "end": { - "column": 13, - "line": 128, - "offset": 2829, + "column": 1, + "line": 132, + "offset": 2874, }, "start": { - "column": 12, - "line": 128, - "offset": 2828, + "column": 0, + "line": 132, + "offset": 2873, }, }, "range": [ - 2828, - 2829, + 2873, + 2874, ], - "start": 2828, + "start": 2873, "type": "Punctuator", - "value": ":", + "value": "<", }, { - "end": 2837, + "end": 2875, "loc": { "end": { - "column": 21, - "line": 128, - "offset": 2837, + "column": 2, + "line": 132, + "offset": 2875, }, "start": { - "column": 14, - "line": 128, - "offset": 2830, + "column": 1, + "line": 132, + "offset": 2874, }, }, "range": [ - 2830, - 2837, + 2874, + 2875, ], - "start": 2830, - "type": "Identifier", - "value": "TabSize", + "start": 2874, + "type": "Punctuator", + "value": "/", }, { - "end": 2838, + "end": 2881, "loc": { "end": { - "column": 22, - "line": 128, - "offset": 2838, + "column": 8, + "line": 132, + "offset": 2881, }, "start": { - "column": 21, - "line": 128, - "offset": 2837, + "column": 2, + "line": 132, + "offset": 2875, }, }, "range": [ - 2837, - 2838, + 2875, + 2881, ], - "start": 2837, - "type": "Punctuator", - "value": ".", + "start": 2875, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 2844, + "end": 2882, "loc": { "end": { - "column": 28, - "line": 128, - "offset": 2844, + "column": 9, + "line": 132, + "offset": 2882, }, "start": { - "column": 22, - "line": 128, - "offset": 2838, + "column": 8, + "line": 132, + "offset": 2881, }, }, "range": [ - 2838, - 2844, + 2881, + 2882, ], - "start": 2838, - "type": "Identifier", - "value": "Medium", + "start": 2881, + "type": "Punctuator", + "value": ">", }, { - "end": 2845, + "end": 2896, "loc": { "end": { - "column": 29, - "line": 128, - "offset": 2845, + "column": 12, + "line": 134, + "offset": 2896, }, "start": { - "column": 28, - "line": 128, - "offset": 2844, + "column": 3, + "line": 134, + "offset": 2887, }, }, "range": [ - 2844, - 2845, + 2887, + 2896, ], - "start": 2844, - "type": "Punctuator", - "value": ",", + "start": 2887, + "type": "JSXText", + "value": "自定义 Label", }, { - "end": 2853, + "end": 2899, "loc": { "end": { - "column": 7, - "line": 129, - "offset": 2853, + "column": 1, + "line": 136, + "offset": 2899, }, "start": { - "column": 6, - "line": 129, - "offset": 2852, + "column": 0, + "line": 136, + "offset": 2898, }, }, "range": [ - 2852, - 2853, + 2898, + 2899, ], - "start": 2852, + "start": 2898, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 2854, + "end": 2905, "loc": { "end": { - "column": 8, - "line": 129, - "offset": 2854, + "column": 7, + "line": 136, + "offset": 2905, }, "start": { - "column": 7, - "line": 129, - "offset": 2853, + "column": 1, + "line": 136, + "offset": 2899, }, }, "range": [ - 2853, - 2854, + 2899, + 2905, ], - "start": 2853, - "type": "Punctuator", - "value": ",", + "start": 2899, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 2860, + "end": 2910, "loc": { "end": { - "column": 5, - "line": 130, - "offset": 2860, + "column": 3, + "line": 137, + "offset": 2910, }, "start": { - "column": 4, - "line": 130, - "offset": 2859, + "column": 2, + "line": 137, + "offset": 2909, }, }, "range": [ - 2859, - 2860, + 2909, + 2910, ], - "start": 2859, + "start": 2909, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 2861, + "end": 2915, "loc": { "end": { - "column": 6, - "line": 130, - "offset": 2861, + "column": 8, + "line": 137, + "offset": 2915, }, "start": { - "column": 5, - "line": 130, - "offset": 2860, + "column": 3, + "line": 137, + "offset": 2910, }, }, "range": [ - 2860, - 2861, + 2910, + 2915, ], - "start": 2860, - "type": "Punctuator", - "value": "}", + "start": 2910, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 2865, + "end": 2924, "loc": { "end": { - "column": 3, - "line": 131, - "offset": 2865, + "column": 8, + "line": 138, + "offset": 2924, }, "start": { - "column": 2, - "line": 131, - "offset": 2864, + "column": 4, + "line": 138, + "offset": 2920, }, }, "range": [ - 2864, - 2865, + 2920, + 2924, ], - "start": 2864, - "type": "Punctuator", - "value": "<", + "start": 2920, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 2866, + "end": 2925, "loc": { "end": { - "column": 4, - "line": 131, - "offset": 2866, + "column": 9, + "line": 138, + "offset": 2925, }, "start": { - "column": 3, - "line": 131, - "offset": 2865, + "column": 8, + "line": 138, + "offset": 2924, }, }, "range": [ - 2865, - 2866, + 2924, + 2925, ], - "start": 2865, + "start": 2924, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 2871, + "end": 2938, "loc": { "end": { - "column": 9, - "line": 131, - "offset": 2871, + "column": 22, + "line": 138, + "offset": 2938, }, "start": { - "column": 4, - "line": 131, - "offset": 2866, + "column": 9, + "line": 138, + "offset": 2925, }, }, "range": [ - 2866, - 2871, + 2925, + 2938, ], - "start": 2866, - "type": "JSXIdentifier", - "value": "Story", + "start": 2925, + "type": "String", + "value": ""CustomLabel"", }, { - "end": 2872, + "end": 2949, "loc": { "end": { "column": 10, - "line": 131, - "offset": 2872, + "line": 139, + "offset": 2949, }, "start": { - "column": 9, - "line": 131, - "offset": 2871, + "column": 4, + "line": 139, + "offset": 2943, }, }, "range": [ - 2871, - 2872, + 2943, + 2949, ], - "start": 2871, - "type": "Punctuator", - "value": ">", + "start": 2943, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 2874, + "end": 2950, "loc": { "end": { - "column": 1, - "line": 132, - "offset": 2874, + "column": 11, + "line": 139, + "offset": 2950, }, "start": { - "column": 0, - "line": 132, - "offset": 2873, + "column": 10, + "line": 139, + "offset": 2949, }, }, "range": [ - 2873, - 2874, + 2949, + 2950, ], - "start": 2873, + "start": 2949, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 2875, + "end": 2957, "loc": { "end": { - "column": 2, - "line": 132, - "offset": 2875, + "column": 18, + "line": 139, + "offset": 2957, }, "start": { - "column": 1, - "line": 132, - "offset": 2874, + "column": 11, + "line": 139, + "offset": 2950, }, }, "range": [ - 2874, - 2875, + 2950, + 2957, ], - "start": 2874, - "type": "Punctuator", - "value": "/", + "start": 2950, + "type": "String", + "value": ""200px"", }, { - "end": 2881, + "end": 2967, "loc": { "end": { - "column": 8, - "line": 132, - "offset": 2881, + "column": 5, + "line": 141, + "offset": 2967, }, "start": { - "column": 2, - "line": 132, - "offset": 2875, + "column": 4, + "line": 141, + "offset": 2966, }, }, "range": [ - 2875, - 2881, + 2966, + 2967, ], - "start": 2875, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 2966, + "type": "Punctuator", + "value": "{", }, { - "end": 2882, + "end": 2968, "loc": { "end": { - "column": 9, - "line": 132, - "offset": 2882, + "column": 6, + "line": 141, + "offset": 2968, }, "start": { - "column": 8, - "line": 132, - "offset": 2881, + "column": 5, + "line": 141, + "offset": 2967, }, }, "range": [ - 2881, - 2882, + 2967, + 2968, ], - "start": 2881, + "start": 2967, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 2896, + "end": 2983, "loc": { "end": { - "column": 12, - "line": 134, - "offset": 2896, + "column": 14, + "line": 142, + "offset": 2983, }, "start": { - "column": 3, - "line": 134, - "offset": 2887, + "column": 6, + "line": 142, + "offset": 2975, }, }, "range": [ - 2887, - 2896, + 2975, + 2983, ], - "start": 2887, - "type": "JSXText", - "value": "自定义 Label", + "start": 2975, + "type": "Identifier", + "value": "template", }, { - "end": 2899, + "end": 2984, "loc": { "end": { - "column": 1, - "line": 136, - "offset": 2899, + "column": 15, + "line": 142, + "offset": 2984, }, "start": { - "column": 0, - "line": 136, - "offset": 2898, + "column": 14, + "line": 142, + "offset": 2983, }, }, "range": [ - 2898, - 2899, + 2983, + 2984, ], - "start": 2898, + "start": 2983, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 2905, + "end": 3591, "loc": { "end": { - "column": 7, - "line": 136, - "offset": 2905, + "column": 23, + "line": 159, + "offset": 3591, }, "start": { - "column": 1, - "line": 136, - "offset": 2899, + "column": 27, + "line": 142, + "offset": 2996, }, }, "range": [ - 2899, - 2905, + 2996, + 3591, ], - "start": 2899, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 2996, + "type": "Template", + "value": "\` + aa2 + + + + Custom Label + + Content 1 + + Content 2 + + + + Custom Label + + Content 3 + + \`", }, { - "end": 2910, + "end": 3592, "loc": { "end": { - "column": 3, - "line": 137, - "offset": 2910, + "column": 24, + "line": 159, + "offset": 3592, }, "start": { - "column": 2, - "line": 137, - "offset": 2909, + "column": 23, + "line": 159, + "offset": 3591, }, }, "range": [ - 2909, - 2910, + 3591, + 3592, ], - "start": 2909, + "start": 3591, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 2915, + "end": 3604, "loc": { "end": { - "column": 8, - "line": 137, - "offset": 2915, + "column": 11, + "line": 160, + "offset": 3604, }, "start": { - "column": 3, - "line": 137, - "offset": 2910, + "column": 6, + "line": 160, + "offset": 3599, }, }, "range": [ - 2910, - 2915, + 3599, + 3604, ], - "start": 2910, - "type": "JSXIdentifier", - "value": "Story", + "start": 3599, + "type": "Identifier", + "value": "props", }, { - "end": 2924, + "end": 3605, "loc": { "end": { - "column": 8, - "line": 138, - "offset": 2924, + "column": 12, + "line": 160, + "offset": 3605, }, "start": { - "column": 4, - "line": 138, - "offset": 2920, + "column": 11, + "line": 160, + "offset": 3604, }, }, "range": [ - 2920, - 2924, + 3604, + 3605, ], - "start": 2920, - "type": "JSXIdentifier", - "value": "name", + "start": 3604, + "type": "Punctuator", + "value": ":", }, { - "end": 2925, + "end": 3607, "loc": { "end": { - "column": 9, - "line": 138, - "offset": 2925, + "column": 14, + "line": 160, + "offset": 3607, }, "start": { - "column": 8, - "line": 138, - "offset": 2924, + "column": 13, + "line": 160, + "offset": 3606, }, }, "range": [ - 2924, - 2925, + 3606, + 3607, ], - "start": 2924, + "start": 3606, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 2938, + "end": 3620, "loc": { "end": { - "column": 22, - "line": 138, - "offset": 2938, + "column": 12, + "line": 161, + "offset": 3620, }, "start": { - "column": 9, - "line": 138, - "offset": 2925, + "column": 8, + "line": 161, + "offset": 3616, }, }, "range": [ - 2925, - 2938, + 3616, + 3620, ], - "start": 2925, - "type": "String", - "value": ""CustomLabel"", + "start": 3616, + "type": "Identifier", + "value": "tabs", }, { - "end": 2949, + "end": 3621, "loc": { "end": { - "column": 10, - "line": 139, - "offset": 2949, + "column": 13, + "line": 161, + "offset": 3621, }, "start": { - "column": 4, - "line": 139, - "offset": 2943, + "column": 12, + "line": 161, + "offset": 3620, }, }, "range": [ - 2943, - 2949, + 3620, + 3621, ], - "start": 2943, - "type": "JSXIdentifier", - "value": "height", + "start": 3620, + "type": "Punctuator", + "value": ":", }, { - "end": 2950, + "end": 3627, "loc": { "end": { - "column": 11, - "line": 139, - "offset": 2950, + "column": 19, + "line": 161, + "offset": 3627, }, "start": { - "column": 10, - "line": 139, - "offset": 2949, + "column": 14, + "line": 161, + "offset": 3622, }, }, "range": [ - 2949, - 2950, + 3622, + 3627, ], - "start": 2949, - "type": "Punctuator", - "value": "=", + "start": 3622, + "type": "Identifier", + "value": "Array", }, { - "end": 2957, + "end": 3628, "loc": { "end": { - "column": 18, - "line": 139, - "offset": 2957, + "column": 20, + "line": 161, + "offset": 3628, }, "start": { - "column": 11, - "line": 139, - "offset": 2950, + "column": 19, + "line": 161, + "offset": 3627, }, }, "range": [ - 2950, - 2957, + 3627, + 3628, ], - "start": 2950, - "type": "String", - "value": ""200px"", + "start": 3627, + "type": "Punctuator", + "value": ".", }, { - "end": 2967, + "end": 3632, "loc": { "end": { - "column": 5, - "line": 141, - "offset": 2967, + "column": 24, + "line": 161, + "offset": 3632, }, "start": { - "column": 4, - "line": 141, - "offset": 2966, + "column": 20, + "line": 161, + "offset": 3628, }, }, "range": [ - 2966, - 2967, + 3628, + 3632, ], - "start": 2966, - "type": "Punctuator", - "value": "{", + "start": 3628, + "type": "Identifier", + "value": "from", }, { - "end": 2968, + "end": 3633, "loc": { "end": { - "column": 6, - "line": 141, - "offset": 2968, + "column": 25, + "line": 161, + "offset": 3633, }, "start": { - "column": 5, - "line": 141, - "offset": 2967, + "column": 24, + "line": 161, + "offset": 3632, }, }, "range": [ - 2967, - 2968, + 3632, + 3633, ], - "start": 2967, + "start": 3632, "type": "Punctuator", - "value": "{", + "value": "(", }, { - "end": 2983, + "end": 3634, "loc": { "end": { - "column": 14, - "line": 142, - "offset": 2983, + "column": 26, + "line": 161, + "offset": 3634, }, "start": { - "column": 6, - "line": 142, - "offset": 2975, + "column": 25, + "line": 161, + "offset": 3633, }, }, "range": [ - 2975, - 2983, + 3633, + 3634, ], - "start": 2975, - "type": "Identifier", - "value": "template", + "start": 3633, + "type": "Punctuator", + "value": "{", }, { - "end": 2984, + "end": 3641, "loc": { "end": { - "column": 15, - "line": 142, - "offset": 2984, - }, - "start": { - "column": 14, - "line": 142, - "offset": 2983, + "column": 33, + "line": 161, + "offset": 3641, + }, + "start": { + "column": 27, + "line": 161, + "offset": 3635, }, }, "range": [ - 2983, - 2984, + 3635, + 3641, ], - "start": 2983, - "type": "Punctuator", - "value": ":", + "start": 3635, + "type": "Identifier", + "value": "length", }, { - "end": 3591, + "end": 3642, "loc": { "end": { - "column": 23, - "line": 159, - "offset": 3591, + "column": 34, + "line": 161, + "offset": 3642, }, "start": { - "column": 27, - "line": 142, - "offset": 2996, + "column": 33, + "line": 161, + "offset": 3641, }, }, "range": [ - 2996, - 3591, + 3641, + 3642, ], - "start": 2996, - "type": "Template", - "value": "\` - aa2 - - - - Custom Label - - Content 1 - - Content 2 - - - - Custom Label - - Content 3 - - \`", + "start": 3641, + "type": "Punctuator", + "value": ":", }, { - "end": 3592, + "end": 3644, "loc": { "end": { - "column": 24, - "line": 159, - "offset": 3592, + "column": 36, + "line": 161, + "offset": 3644, }, "start": { - "column": 23, - "line": 159, - "offset": 3591, + "column": 35, + "line": 161, + "offset": 3643, }, }, "range": [ - 3591, - 3592, + 3643, + 3644, ], - "start": 3591, - "type": "Punctuator", - "value": ",", + "start": 3643, + "type": "Numeric", + "value": "3", }, { - "end": 3604, + "end": 3646, "loc": { "end": { - "column": 11, - "line": 160, - "offset": 3604, + "column": 38, + "line": 161, + "offset": 3646, }, "start": { - "column": 6, - "line": 160, - "offset": 3599, + "column": 37, + "line": 161, + "offset": 3645, }, }, "range": [ - 3599, - 3604, + 3645, + 3646, ], - "start": 3599, - "type": "Identifier", - "value": "props", + "start": 3645, + "type": "Punctuator", + "value": "}", }, { - "end": 3605, + "end": 3647, "loc": { "end": { - "column": 12, - "line": 160, - "offset": 3605, + "column": 39, + "line": 161, + "offset": 3647, }, "start": { - "column": 11, - "line": 160, - "offset": 3604, + "column": 38, + "line": 161, + "offset": 3646, }, }, "range": [ - 3604, - 3605, + 3646, + 3647, ], - "start": 3604, + "start": 3646, "type": "Punctuator", - "value": ":", + "value": ")", }, { - "end": 3607, + "end": 3648, "loc": { "end": { - "column": 14, - "line": 160, - "offset": 3607, + "column": 40, + "line": 161, + "offset": 3648, }, "start": { - "column": 13, - "line": 160, - "offset": 3606, + "column": 39, + "line": 161, + "offset": 3647, }, }, "range": [ - 3606, - 3607, + 3647, + 3648, ], - "start": 3606, + "start": 3647, "type": "Punctuator", - "value": "{", + "value": ".", }, { - "end": 3620, + "end": 3652, "loc": { "end": { - "column": 12, + "column": 44, "line": 161, - "offset": 3620, + "offset": 3652, }, "start": { - "column": 8, + "column": 40, "line": 161, - "offset": 3616, + "offset": 3648, }, }, "range": [ - 3616, - 3620, + 3648, + 3652, ], - "start": 3616, + "start": 3648, "type": "Identifier", - "value": "tabs", + "value": "fill", }, { - "end": 3621, + "end": 3653, "loc": { "end": { - "column": 13, + "column": 45, "line": 161, - "offset": 3621, + "offset": 3653, }, "start": { - "column": 12, + "column": 44, "line": 161, - "offset": 3620, + "offset": 3652, }, }, "range": [ - 3620, - 3621, + 3652, + 3653, ], - "start": 3620, + "start": 3652, "type": "Punctuator", - "value": ":", + "value": "(", }, { - "end": 3627, + "end": 3654, "loc": { "end": { - "column": 19, + "column": 46, "line": 161, - "offset": 3627, + "offset": 3654, }, "start": { - "column": 14, + "column": 45, "line": 161, - "offset": 3622, + "offset": 3653, }, }, "range": [ - 3622, - 3627, + 3653, + 3654, ], - "start": 3622, - "type": "Identifier", - "value": "Array", + "start": 3653, + "type": "Punctuator", + "value": ")", }, { - "end": 3628, + "end": 3655, "loc": { "end": { - "column": 20, + "column": 47, "line": 161, - "offset": 3628, + "offset": 3655, }, "start": { - "column": 19, + "column": 46, "line": 161, - "offset": 3627, + "offset": 3654, }, }, "range": [ - 3627, - 3628, + 3654, + 3655, ], - "start": 3627, + "start": 3654, "type": "Punctuator", - "value": ".", + "value": ",", }, { - "end": 3632, + "end": 3663, "loc": { "end": { - "column": 24, - "line": 161, - "offset": 3632, + "column": 7, + "line": 162, + "offset": 3663, }, "start": { - "column": 20, - "line": 161, - "offset": 3628, + "column": 6, + "line": 162, + "offset": 3662, }, }, "range": [ - 3628, - 3632, + 3662, + 3663, ], - "start": 3628, - "type": "Identifier", - "value": "from", + "start": 3662, + "type": "Punctuator", + "value": "}", }, { - "end": 3633, + "end": 3664, "loc": { "end": { - "column": 25, - "line": 161, - "offset": 3633, + "column": 8, + "line": 162, + "offset": 3664, }, "start": { - "column": 24, - "line": 161, - "offset": 3632, + "column": 7, + "line": 162, + "offset": 3663, }, }, "range": [ - 3632, - 3633, + 3663, + 3664, ], - "start": 3632, + "start": 3663, "type": "Punctuator", - "value": "(", + "value": ",", }, { - "end": 3634, + "end": 3670, "loc": { "end": { - "column": 26, - "line": 161, - "offset": 3634, + "column": 5, + "line": 163, + "offset": 3670, }, "start": { - "column": 25, - "line": 161, - "offset": 3633, + "column": 4, + "line": 163, + "offset": 3669, }, }, "range": [ - 3633, - 3634, + 3669, + 3670, ], - "start": 3633, + "start": 3669, "type": "Punctuator", - "value": "{", + "value": "}", }, { - "end": 3641, + "end": 3671, "loc": { "end": { - "column": 33, - "line": 161, - "offset": 3641, + "column": 6, + "line": 163, + "offset": 3671, }, "start": { - "column": 27, - "line": 161, - "offset": 3635, + "column": 5, + "line": 163, + "offset": 3670, }, }, "range": [ - 3635, - 3641, + 3670, + 3671, ], - "start": 3635, - "type": "Identifier", - "value": "length", + "start": 3670, + "type": "Punctuator", + "value": "}", }, { - "end": 3642, + "end": 3675, "loc": { "end": { - "column": 34, - "line": 161, - "offset": 3642, + "column": 3, + "line": 164, + "offset": 3675, }, "start": { - "column": 33, - "line": 161, - "offset": 3641, + "column": 2, + "line": 164, + "offset": 3674, }, }, "range": [ - 3641, - 3642, + 3674, + 3675, ], - "start": 3641, + "start": 3674, "type": "Punctuator", - "value": ":", + "value": "<", }, { - "end": 3644, + "end": 3676, "loc": { "end": { - "column": 36, - "line": 161, - "offset": 3644, + "column": 4, + "line": 164, + "offset": 3676, }, "start": { - "column": 35, - "line": 161, - "offset": 3643, + "column": 3, + "line": 164, + "offset": 3675, }, }, "range": [ - 3643, - 3644, + 3675, + 3676, ], - "start": 3643, - "type": "Numeric", - "value": "3", + "start": 3675, + "type": "Punctuator", + "value": "/", }, { - "end": 3646, + "end": 3681, "loc": { "end": { - "column": 38, - "line": 161, - "offset": 3646, + "column": 9, + "line": 164, + "offset": 3681, }, "start": { - "column": 37, - "line": 161, - "offset": 3645, + "column": 4, + "line": 164, + "offset": 3676, }, }, "range": [ - 3645, - 3646, + 3676, + 3681, ], - "start": 3645, - "type": "Punctuator", - "value": "}", + "start": 3676, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 3647, + "end": 3682, "loc": { "end": { - "column": 39, - "line": 161, - "offset": 3647, + "column": 10, + "line": 164, + "offset": 3682, }, "start": { - "column": 38, - "line": 161, - "offset": 3646, + "column": 9, + "line": 164, + "offset": 3681, }, }, "range": [ - 3646, - 3647, + 3681, + 3682, ], - "start": 3646, + "start": 3681, "type": "Punctuator", - "value": ")", + "value": ">", }, { - "end": 3648, + "end": 3684, "loc": { "end": { - "column": 40, - "line": 161, - "offset": 3648, + "column": 1, + "line": 165, + "offset": 3684, }, "start": { - "column": 39, - "line": 161, - "offset": 3647, + "column": 0, + "line": 165, + "offset": 3683, }, }, "range": [ - 3647, - 3648, + 3683, + 3684, ], - "start": 3647, + "start": 3683, "type": "Punctuator", - "value": ".", + "value": "<", }, { - "end": 3652, + "end": 3685, "loc": { "end": { - "column": 44, - "line": 161, - "offset": 3652, + "column": 2, + "line": 165, + "offset": 3685, }, "start": { - "column": 40, - "line": 161, - "offset": 3648, + "column": 1, + "line": 165, + "offset": 3684, }, }, "range": [ - 3648, - 3652, + 3684, + 3685, ], - "start": 3648, - "type": "Identifier", - "value": "fill", + "start": 3684, + "type": "Punctuator", + "value": "/", }, { - "end": 3653, + "end": 3691, "loc": { "end": { - "column": 45, - "line": 161, - "offset": 3653, + "column": 8, + "line": 165, + "offset": 3691, }, "start": { - "column": 44, - "line": 161, - "offset": 3652, + "column": 2, + "line": 165, + "offset": 3685, }, }, "range": [ - 3652, - 3653, + 3685, + 3691, ], - "start": 3652, - "type": "Punctuator", - "value": "(", + "start": 3685, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 3654, + "end": 3692, "loc": { "end": { - "column": 46, - "line": 161, - "offset": 3654, + "column": 9, + "line": 165, + "offset": 3692, }, "start": { - "column": 45, - "line": 161, - "offset": 3653, + "column": 8, + "line": 165, + "offset": 3691, }, }, "range": [ - 3653, - 3654, + 3691, + 3692, ], - "start": 3653, + "start": 3691, "type": "Punctuator", - "value": ")", + "value": ">", }, { - "end": 3655, + "end": 3701, "loc": { "end": { - "column": 47, - "line": 161, - "offset": 3655, + "column": 7, + "line": 167, + "offset": 3701, }, "start": { - "column": 46, - "line": 161, - "offset": 3654, + "column": 3, + "line": 167, + "offset": 3697, }, }, "range": [ - 3654, - 3655, + 3697, + 3701, ], - "start": 3654, - "type": "Punctuator", - "value": ",", + "start": 3697, + "type": "JSXText", + "value": "添加删除", }, { - "end": 3663, + "end": 3726, "loc": { "end": { - "column": 7, - "line": 162, - "offset": 3663, + "column": 23, + "line": 169, + "offset": 3726, }, "start": { - "column": 6, - "line": 162, - "offset": 3662, + "column": 2, + "line": 169, + "offset": 3705, }, }, "range": [ - 3662, - 3663, + 3705, + 3726, ], - "start": 3662, - "type": "Punctuator", - "value": "}", + "start": 3705, + "type": "JSXText", + "value": "通过自定义 Group Header 实现", }, { - "end": 3664, + "end": 3729, "loc": { "end": { - "column": 8, - "line": 162, - "offset": 3664, + "column": 1, + "line": 171, + "offset": 3729, }, "start": { - "column": 7, - "line": 162, - "offset": 3663, + "column": 0, + "line": 171, + "offset": 3728, }, }, "range": [ - 3663, - 3664, + 3728, + 3729, ], - "start": 3663, + "start": 3728, "type": "Punctuator", - "value": ",", + "value": "<", }, { - "end": 3670, + "end": 3735, "loc": { "end": { - "column": 5, - "line": 163, - "offset": 3670, + "column": 7, + "line": 171, + "offset": 3735, }, "start": { - "column": 4, - "line": 163, - "offset": 3669, + "column": 1, + "line": 171, + "offset": 3729, }, }, "range": [ - 3669, - 3670, + 3729, + 3735, ], - "start": 3669, - "type": "Punctuator", - "value": "}", + "start": 3729, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 3671, + "end": 3740, "loc": { "end": { - "column": 6, - "line": 163, - "offset": 3671, + "column": 3, + "line": 172, + "offset": 3740, }, "start": { - "column": 5, - "line": 163, - "offset": 3670, + "column": 2, + "line": 172, + "offset": 3739, }, }, "range": [ - 3670, - 3671, + 3739, + 3740, ], - "start": 3670, + "start": 3739, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 3675, + "end": 3745, "loc": { "end": { - "column": 3, - "line": 164, - "offset": 3675, + "column": 8, + "line": 172, + "offset": 3745, }, "start": { - "column": 2, - "line": 164, - "offset": 3674, + "column": 3, + "line": 172, + "offset": 3740, }, }, "range": [ - 3674, - 3675, + 3740, + 3745, ], - "start": 3674, - "type": "Punctuator", - "value": "<", + "start": 3740, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 3676, + "end": 3754, "loc": { "end": { - "column": 4, - "line": 164, - "offset": 3676, + "column": 8, + "line": 173, + "offset": 3754, }, "start": { - "column": 3, - "line": 164, - "offset": 3675, + "column": 4, + "line": 173, + "offset": 3750, }, }, "range": [ - 3675, - 3676, + 3750, + 3754, ], - "start": 3675, - "type": "Punctuator", - "value": "/", + "start": 3750, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 3681, + "end": 3755, "loc": { "end": { "column": 9, - "line": 164, - "offset": 3681, + "line": 173, + "offset": 3755, }, "start": { - "column": 4, - "line": 164, - "offset": 3676, + "column": 8, + "line": 173, + "offset": 3754, }, }, "range": [ - 3676, - 3681, + 3754, + 3755, ], - "start": 3676, - "type": "JSXIdentifier", - "value": "Story", + "start": 3754, + "type": "Punctuator", + "value": "=", }, { - "end": 3682, + "end": 3765, "loc": { "end": { - "column": 10, - "line": 164, - "offset": 3682, + "column": 19, + "line": 173, + "offset": 3765, }, "start": { "column": 9, - "line": 164, - "offset": 3681, + "line": 173, + "offset": 3755, }, }, "range": [ - 3681, - 3682, + 3755, + 3765, ], - "start": 3681, - "type": "Punctuator", - "value": ">", + "start": 3755, + "type": "String", + "value": ""Editable"", }, { - "end": 3684, + "end": 3776, "loc": { "end": { - "column": 1, - "line": 165, - "offset": 3684, + "column": 10, + "line": 174, + "offset": 3776, }, "start": { - "column": 0, - "line": 165, - "offset": 3683, + "column": 4, + "line": 174, + "offset": 3770, }, }, "range": [ - 3683, - 3684, + 3770, + 3776, ], - "start": 3683, - "type": "Punctuator", - "value": "<", + "start": 3770, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 3685, + "end": 3777, "loc": { "end": { - "column": 2, - "line": 165, - "offset": 3685, + "column": 11, + "line": 174, + "offset": 3777, }, "start": { - "column": 1, - "line": 165, - "offset": 3684, + "column": 10, + "line": 174, + "offset": 3776, }, }, "range": [ - 3684, - 3685, + 3776, + 3777, ], - "start": 3684, + "start": 3776, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 3691, + "end": 3784, "loc": { "end": { - "column": 8, - "line": 165, - "offset": 3691, + "column": 18, + "line": 174, + "offset": 3784, }, "start": { - "column": 2, - "line": 165, - "offset": 3685, + "column": 11, + "line": 174, + "offset": 3777, }, }, "range": [ - 3685, - 3691, + 3777, + 3784, ], - "start": 3685, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 3777, + "type": "String", + "value": ""100px"", }, { - "end": 3692, + "end": 3794, "loc": { "end": { - "column": 9, - "line": 165, - "offset": 3692, + "column": 5, + "line": 176, + "offset": 3794, }, "start": { - "column": 8, - "line": 165, - "offset": 3691, + "column": 4, + "line": 176, + "offset": 3793, }, }, "range": [ - 3691, - 3692, + 3793, + 3794, ], - "start": 3691, + "start": 3793, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 3701, + "end": 3795, "loc": { "end": { - "column": 7, - "line": 167, - "offset": 3701, + "column": 6, + "line": 176, + "offset": 3795, }, "start": { - "column": 3, - "line": 167, - "offset": 3697, + "column": 5, + "line": 176, + "offset": 3794, }, }, "range": [ - 3697, - 3701, + 3794, + 3795, ], - "start": 3697, - "type": "JSXText", - "value": "添加删除", + "start": 3794, + "type": "Punctuator", + "value": "{", }, { - "end": 3726, + "end": 3810, "loc": { "end": { - "column": 23, - "line": 169, - "offset": 3726, + "column": 14, + "line": 177, + "offset": 3810, }, "start": { - "column": 2, - "line": 169, - "offset": 3705, + "column": 6, + "line": 177, + "offset": 3802, }, }, "range": [ - 3705, - 3726, + 3802, + 3810, ], - "start": 3705, - "type": "JSXText", - "value": "通过自定义 Group Header 实现", + "start": 3802, + "type": "Identifier", + "value": "template", }, { - "end": 3729, + "end": 3811, "loc": { "end": { - "column": 1, - "line": 171, - "offset": 3729, + "column": 15, + "line": 177, + "offset": 3811, }, "start": { - "column": 0, - "line": 171, - "offset": 3728, + "column": 14, + "line": 177, + "offset": 3810, }, }, "range": [ - 3728, - 3729, + 3810, + 3811, ], - "start": 3728, + "start": 3810, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 3735, + "end": 4388, "loc": { "end": { "column": 7, - "line": 171, - "offset": 3735, + "line": 197, + "offset": 4388, }, "start": { - "column": 1, - "line": 171, - "offset": 3729, + "column": 27, + "line": 177, + "offset": 3823, }, }, "range": [ - 3729, - 3735, + 3823, + 4388, ], - "start": 3729, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 3823, + "type": "Template", + "value": "\` + + + content {{ i }} + + + + \`", }, { - "end": 3740, + "end": 4389, "loc": { "end": { - "column": 3, - "line": 172, - "offset": 3740, + "column": 8, + "line": 197, + "offset": 4389, }, "start": { - "column": 2, - "line": 172, - "offset": 3739, + "column": 7, + "line": 197, + "offset": 4388, }, }, "range": [ - 3739, - 3740, + 4388, + 4389, ], - "start": 3739, + "start": 4388, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 3745, + "end": 4401, "loc": { "end": { - "column": 8, - "line": 172, - "offset": 3745, + "column": 11, + "line": 198, + "offset": 4401, }, "start": { - "column": 3, - "line": 172, - "offset": 3740, + "column": 6, + "line": 198, + "offset": 4396, }, }, "range": [ - 3740, - 3745, + 4396, + 4401, ], - "start": 3740, - "type": "JSXIdentifier", - "value": "Story", + "start": 4396, + "type": "Identifier", + "value": "props", }, { - "end": 3754, + "end": 4402, "loc": { "end": { - "column": 8, - "line": 173, - "offset": 3754, + "column": 12, + "line": 198, + "offset": 4402, }, "start": { - "column": 4, - "line": 173, - "offset": 3750, + "column": 11, + "line": 198, + "offset": 4401, }, }, "range": [ - 3750, - 3754, + 4401, + 4402, ], - "start": 3750, - "type": "JSXIdentifier", - "value": "name", + "start": 4401, + "type": "Punctuator", + "value": ":", }, { - "end": 3755, + "end": 4404, "loc": { "end": { - "column": 9, - "line": 173, - "offset": 3755, + "column": 14, + "line": 198, + "offset": 4404, }, "start": { - "column": 8, - "line": 173, - "offset": 3754, + "column": 13, + "line": 198, + "offset": 4403, }, }, "range": [ - 3754, - 3755, + 4403, + 4404, ], - "start": 3754, + "start": 4403, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 3765, + "end": 4417, "loc": { "end": { - "column": 19, - "line": 173, - "offset": 3765, + "column": 12, + "line": 199, + "offset": 4417, }, "start": { - "column": 9, - "line": 173, - "offset": 3755, + "column": 8, + "line": 199, + "offset": 4413, }, }, "range": [ - 3755, - 3765, + 4413, + 4417, ], - "start": 3755, - "type": "String", - "value": ""Editable"", + "start": 4413, + "type": "Identifier", + "value": "tabs", }, { - "end": 3776, + "end": 4418, "loc": { "end": { - "column": 10, - "line": 174, - "offset": 3776, + "column": 13, + "line": 199, + "offset": 4418, }, "start": { - "column": 4, - "line": 174, - "offset": 3770, + "column": 12, + "line": 199, + "offset": 4417, }, }, "range": [ - 3770, - 3776, + 4417, + 4418, ], - "start": 3770, - "type": "JSXIdentifier", - "value": "height", + "start": 4417, + "type": "Punctuator", + "value": ":", }, { - "end": 3777, + "end": 4420, "loc": { "end": { - "column": 11, - "line": 174, - "offset": 3777, + "column": 15, + "line": 199, + "offset": 4420, }, "start": { - "column": 10, - "line": 174, - "offset": 3776, + "column": 14, + "line": 199, + "offset": 4419, }, }, "range": [ - 3776, - 3777, + 4419, + 4420, ], - "start": 3776, + "start": 4419, "type": "Punctuator", - "value": "=", + "value": "[", }, { - "end": 3784, + "end": 4421, "loc": { "end": { - "column": 18, - "line": 174, - "offset": 3784, + "column": 16, + "line": 199, + "offset": 4421, }, "start": { - "column": 11, - "line": 174, - "offset": 3777, + "column": 15, + "line": 199, + "offset": 4420, }, }, "range": [ - 3777, - 3784, + 4420, + 4421, ], - "start": 3777, - "type": "String", - "value": ""100px"", + "start": 4420, + "type": "Numeric", + "value": "1", }, { - "end": 3794, + "end": 4422, "loc": { "end": { - "column": 5, - "line": 176, - "offset": 3794, + "column": 17, + "line": 199, + "offset": 4422, }, "start": { - "column": 4, - "line": 176, - "offset": 3793, + "column": 16, + "line": 199, + "offset": 4421, }, }, "range": [ - 3793, - 3794, + 4421, + 4422, ], - "start": 3793, + "start": 4421, "type": "Punctuator", - "value": "{", + "value": ",", }, { - "end": 3795, + "end": 4424, "loc": { "end": { - "column": 6, - "line": 176, - "offset": 3795, + "column": 19, + "line": 199, + "offset": 4424, }, "start": { - "column": 5, - "line": 176, - "offset": 3794, + "column": 18, + "line": 199, + "offset": 4423, }, }, "range": [ - 3794, - 3795, + 4423, + 4424, ], - "start": 3794, - "type": "Punctuator", - "value": "{", + "start": 4423, + "type": "Numeric", + "value": "2", }, { - "end": 3810, + "end": 4425, "loc": { "end": { - "column": 14, - "line": 177, - "offset": 3810, + "column": 20, + "line": 199, + "offset": 4425, }, "start": { - "column": 6, - "line": 177, - "offset": 3802, + "column": 19, + "line": 199, + "offset": 4424, }, }, "range": [ - 3802, - 3810, + 4424, + 4425, ], - "start": 3802, - "type": "Identifier", - "value": "template", + "start": 4424, + "type": "Punctuator", + "value": ",", }, { - "end": 3811, + "end": 4427, "loc": { "end": { - "column": 15, - "line": 177, - "offset": 3811, + "column": 22, + "line": 199, + "offset": 4427, }, "start": { - "column": 14, - "line": 177, - "offset": 3810, + "column": 21, + "line": 199, + "offset": 4426, }, }, "range": [ - 3810, - 3811, + 4426, + 4427, ], - "start": 3810, - "type": "Punctuator", - "value": ":", + "start": 4426, + "type": "Numeric", + "value": "3", }, { - "end": 4388, + "end": 4428, "loc": { "end": { - "column": 7, - "line": 197, - "offset": 4388, + "column": 23, + "line": 199, + "offset": 4428, }, "start": { - "column": 27, - "line": 177, - "offset": 3823, + "column": 22, + "line": 199, + "offset": 4427, }, }, "range": [ - 3823, - 4388, + 4427, + 4428, ], - "start": 3823, - "type": "Template", - "value": "\` - - - content {{ i }} - - - - \`", + "start": 4427, + "type": "Punctuator", + "value": "]", }, { - "end": 4389, + "end": 4429, "loc": { "end": { - "column": 8, - "line": 197, - "offset": 4389, + "column": 24, + "line": 199, + "offset": 4429, }, "start": { - "column": 7, - "line": 197, - "offset": 4388, + "column": 23, + "line": 199, + "offset": 4428, }, }, "range": [ - 4388, - 4389, + 4428, + 4429, ], - "start": 4388, + "start": 4428, "type": "Punctuator", "value": ",", }, { - "end": 4401, + "end": 4441, "loc": { "end": { "column": 11, - "line": 198, - "offset": 4401, + "line": 200, + "offset": 4441, }, "start": { - "column": 6, - "line": 198, - "offset": 4396, + "column": 8, + "line": 200, + "offset": 4438, }, }, "range": [ - 4396, - 4401, + 4438, + 4441, ], - "start": 4396, + "start": 4438, "type": "Identifier", - "value": "props", + "value": "add", }, { - "end": 4402, + "end": 4442, "loc": { "end": { "column": 12, - "line": 198, - "offset": 4402, + "line": 200, + "offset": 4442, }, "start": { "column": 11, - "line": 198, - "offset": 4401, + "line": 200, + "offset": 4441, }, }, "range": [ - 4401, - 4402, + 4441, + 4442, ], - "start": 4401, + "start": 4441, "type": "Punctuator", - "value": ":", + "value": "(", }, { - "end": 4404, + "end": 4445, "loc": { "end": { - "column": 14, - "line": 198, - "offset": 4404, + "column": 15, + "line": 200, + "offset": 4445, }, "start": { - "column": 13, - "line": 198, - "offset": 4403, + "column": 12, + "line": 200, + "offset": 4442, }, }, "range": [ - 4403, - 4404, + 4442, + 4445, ], - "start": 4403, - "type": "Punctuator", - "value": "{", + "start": 4442, + "type": "Identifier", + "value": "num", }, { - "end": 4417, + "end": 4447, "loc": { "end": { - "column": 12, - "line": 199, - "offset": 4417, + "column": 17, + "line": 200, + "offset": 4447, }, "start": { - "column": 8, - "line": 199, - "offset": 4413, + "column": 16, + "line": 200, + "offset": 4446, }, }, "range": [ - 4413, - 4417, + 4446, + 4447, ], - "start": 4413, - "type": "Identifier", - "value": "tabs", + "start": 4446, + "type": "Punctuator", + "value": "=", }, { - "end": 4418, + "end": 4449, "loc": { "end": { - "column": 13, - "line": 199, - "offset": 4418, + "column": 19, + "line": 200, + "offset": 4449, }, "start": { - "column": 12, - "line": 199, - "offset": 4417, + "column": 18, + "line": 200, + "offset": 4448, }, }, "range": [ - 4417, - 4418, + 4448, + 4449, ], - "start": 4417, - "type": "Punctuator", - "value": ":", + "start": 4448, + "type": "Numeric", + "value": "1", }, { - "end": 4420, + "end": 4450, "loc": { "end": { - "column": 15, - "line": 199, - "offset": 4420, + "column": 20, + "line": 200, + "offset": 4450, }, "start": { - "column": 14, - "line": 199, - "offset": 4419, + "column": 19, + "line": 200, + "offset": 4449, }, }, "range": [ - 4419, - 4420, + 4449, + 4450, ], - "start": 4419, + "start": 4449, "type": "Punctuator", - "value": "[", + "value": ")", }, { - "end": 4421, + "end": 4452, "loc": { "end": { - "column": 16, - "line": 199, - "offset": 4421, + "column": 22, + "line": 200, + "offset": 4452, }, "start": { - "column": 15, - "line": 199, - "offset": 4420, + "column": 21, + "line": 200, + "offset": 4451, }, }, "range": [ - 4420, - 4421, + 4451, + 4452, ], - "start": 4420, - "type": "Numeric", - "value": "1", + "start": 4451, + "type": "Punctuator", + "value": "{", }, { - "end": 4422, + "end": 4467, "loc": { "end": { - "column": 17, - "line": 199, - "offset": 4422, + "column": 14, + "line": 201, + "offset": 4467, }, "start": { - "column": 16, - "line": 199, - "offset": 4421, + "column": 10, + "line": 201, + "offset": 4463, }, }, "range": [ - 4421, - 4422, + 4463, + 4467, ], - "start": 4421, - "type": "Punctuator", - "value": ",", + "start": 4463, + "type": "Keyword", + "value": "this", }, { - "end": 4424, + "end": 4468, "loc": { "end": { - "column": 19, - "line": 199, - "offset": 4424, + "column": 15, + "line": 201, + "offset": 4468, }, "start": { - "column": 18, - "line": 199, - "offset": 4423, + "column": 14, + "line": 201, + "offset": 4467, }, }, "range": [ - 4423, - 4424, + 4467, + 4468, ], - "start": 4423, - "type": "Numeric", - "value": "2", + "start": 4467, + "type": "Punctuator", + "value": ".", }, { - "end": 4425, + "end": 4472, "loc": { "end": { - "column": 20, - "line": 199, - "offset": 4425, + "column": 19, + "line": 201, + "offset": 4472, }, "start": { - "column": 19, - "line": 199, - "offset": 4424, + "column": 15, + "line": 201, + "offset": 4468, }, }, "range": [ - 4424, - 4425, + 4468, + 4472, ], - "start": 4424, - "type": "Punctuator", - "value": ",", + "start": 4468, + "type": "Identifier", + "value": "tabs", }, { - "end": 4427, + "end": 4474, "loc": { "end": { - "column": 22, - "line": 199, - "offset": 4427, + "column": 21, + "line": 201, + "offset": 4474, }, "start": { - "column": 21, - "line": 199, - "offset": 4426, + "column": 20, + "line": 201, + "offset": 4473, }, }, "range": [ - 4426, - 4427, + 4473, + 4474, ], - "start": 4426, - "type": "Numeric", - "value": "3", + "start": 4473, + "type": "Punctuator", + "value": "=", }, { - "end": 4428, + "end": 4479, "loc": { "end": { - "column": 23, - "line": 199, - "offset": 4428, + "column": 26, + "line": 201, + "offset": 4479, }, "start": { "column": 22, - "line": 199, - "offset": 4427, + "line": 201, + "offset": 4475, }, }, "range": [ - 4427, - 4428, + 4475, + 4479, ], - "start": 4427, - "type": "Punctuator", - "value": "]", + "start": 4475, + "type": "Keyword", + "value": "this", }, { - "end": 4429, + "end": 4480, "loc": { "end": { - "column": 24, - "line": 199, - "offset": 4429, + "column": 27, + "line": 201, + "offset": 4480, }, "start": { - "column": 23, - "line": 199, - "offset": 4428, + "column": 26, + "line": 201, + "offset": 4479, }, }, "range": [ - 4428, - 4429, + 4479, + 4480, ], - "start": 4428, + "start": 4479, "type": "Punctuator", - "value": ",", + "value": ".", }, { - "end": 4441, + "end": 4484, "loc": { "end": { - "column": 11, - "line": 200, - "offset": 4441, + "column": 31, + "line": 201, + "offset": 4484, }, "start": { - "column": 8, - "line": 200, - "offset": 4438, + "column": 27, + "line": 201, + "offset": 4480, }, }, "range": [ - 4438, - 4441, + 4480, + 4484, ], - "start": 4438, + "start": 4480, "type": "Identifier", - "value": "add", + "value": "tabs", }, { - "end": 4442, + "end": 4485, "loc": { "end": { - "column": 12, - "line": 200, - "offset": 4442, + "column": 32, + "line": 201, + "offset": 4485, }, "start": { - "column": 11, - "line": 200, - "offset": 4441, + "column": 31, + "line": 201, + "offset": 4484, }, }, "range": [ - 4441, - 4442, + 4484, + 4485, ], - "start": 4441, + "start": 4484, "type": "Punctuator", - "value": "(", + "value": ".", }, { - "end": 4445, + "end": 4491, "loc": { "end": { - "column": 15, - "line": 200, - "offset": 4445, + "column": 38, + "line": 201, + "offset": 4491, }, "start": { - "column": 12, - "line": 200, - "offset": 4442, + "column": 32, + "line": 201, + "offset": 4485, }, }, "range": [ - 4442, - 4445, + 4485, + 4491, ], - "start": 4442, + "start": 4485, "type": "Identifier", - "value": "num", + "value": "concat", }, { - "end": 4447, + "end": 4492, "loc": { "end": { - "column": 17, - "line": 200, - "offset": 4447, + "column": 39, + "line": 201, + "offset": 4492, }, "start": { - "column": 16, - "line": 200, - "offset": 4446, + "column": 38, + "line": 201, + "offset": 4491, }, }, "range": [ - 4446, - 4447, + 4491, + 4492, ], - "start": 4446, + "start": 4491, "type": "Punctuator", - "value": "=", + "value": "(", }, { - "end": 4449, + "end": 4510, "loc": { "end": { - "column": 19, - "line": 200, - "offset": 4449, + "column": 17, + "line": 202, + "offset": 4510, }, "start": { - "column": 18, - "line": 200, - "offset": 4448, + "column": 12, + "line": 202, + "offset": 4505, }, }, "range": [ - 4448, - 4449, + 4505, + 4510, ], - "start": 4448, - "type": "Numeric", - "value": "1", + "start": 4505, + "type": "Identifier", + "value": "Array", }, { - "end": 4450, + "end": 4511, "loc": { "end": { - "column": 20, - "line": 200, - "offset": 4450, + "column": 18, + "line": 202, + "offset": 4511, }, "start": { - "column": 19, - "line": 200, - "offset": 4449, + "column": 17, + "line": 202, + "offset": 4510, }, }, "range": [ - 4449, - 4450, + 4510, + 4511, ], - "start": 4449, + "start": 4510, "type": "Punctuator", - "value": ")", + "value": ".", }, { - "end": 4452, + "end": 4515, "loc": { "end": { "column": 22, - "line": 200, - "offset": 4452, + "line": 202, + "offset": 4515, }, "start": { - "column": 21, - "line": 200, - "offset": 4451, + "column": 18, + "line": 202, + "offset": 4511, }, }, "range": [ - 4451, - 4452, + 4511, + 4515, ], - "start": 4451, - "type": "Punctuator", - "value": "{", + "start": 4511, + "type": "Identifier", + "value": "from", }, { - "end": 4467, + "end": 4516, "loc": { "end": { - "column": 14, - "line": 201, - "offset": 4467, + "column": 23, + "line": 202, + "offset": 4516, }, "start": { - "column": 10, - "line": 201, - "offset": 4463, + "column": 22, + "line": 202, + "offset": 4515, }, }, "range": [ - 4463, - 4467, + 4515, + 4516, ], - "start": 4463, - "type": "Keyword", - "value": "this", + "start": 4515, + "type": "Punctuator", + "value": "(", }, { - "end": 4468, + "end": 4517, "loc": { "end": { - "column": 15, - "line": 201, - "offset": 4468, + "column": 24, + "line": 202, + "offset": 4517, }, "start": { - "column": 14, - "line": 201, - "offset": 4467, + "column": 23, + "line": 202, + "offset": 4516, }, }, "range": [ - 4467, - 4468, + 4516, + 4517, ], - "start": 4467, + "start": 4516, "type": "Punctuator", - "value": ".", + "value": "{", }, { - "end": 4472, + "end": 4524, "loc": { "end": { - "column": 19, - "line": 201, - "offset": 4472, + "column": 31, + "line": 202, + "offset": 4524, }, "start": { - "column": 15, - "line": 201, - "offset": 4468, + "column": 25, + "line": 202, + "offset": 4518, }, }, "range": [ - 4468, - 4472, + 4518, + 4524, ], - "start": 4468, + "start": 4518, "type": "Identifier", - "value": "tabs", + "value": "length", }, { - "end": 4474, + "end": 4525, "loc": { "end": { - "column": 21, - "line": 201, - "offset": 4474, + "column": 32, + "line": 202, + "offset": 4525, }, "start": { - "column": 20, - "line": 201, - "offset": 4473, - }, + "column": 31, + "line": 202, + "offset": 4524, + }, }, "range": [ - 4473, - 4474, + 4524, + 4525, ], - "start": 4473, + "start": 4524, "type": "Punctuator", - "value": "=", + "value": ":", }, { - "end": 4479, + "end": 4529, "loc": { "end": { - "column": 26, - "line": 201, - "offset": 4479, + "column": 36, + "line": 202, + "offset": 4529, }, "start": { - "column": 22, - "line": 201, - "offset": 4475, + "column": 33, + "line": 202, + "offset": 4526, }, }, "range": [ - 4475, - 4479, + 4526, + 4529, ], - "start": 4475, - "type": "Keyword", - "value": "this", + "start": 4526, + "type": "Identifier", + "value": "num", }, { - "end": 4480, + "end": 4531, "loc": { "end": { - "column": 27, - "line": 201, - "offset": 4480, + "column": 38, + "line": 202, + "offset": 4531, }, "start": { - "column": 26, - "line": 201, - "offset": 4479, + "column": 37, + "line": 202, + "offset": 4530, }, }, "range": [ - 4479, - 4480, + 4530, + 4531, ], - "start": 4479, + "start": 4530, "type": "Punctuator", - "value": ".", + "value": "}", }, { - "end": 4484, + "end": 4532, "loc": { "end": { - "column": 31, - "line": 201, - "offset": 4484, + "column": 39, + "line": 202, + "offset": 4532, }, "start": { - "column": 27, - "line": 201, - "offset": 4480, + "column": 38, + "line": 202, + "offset": 4531, }, }, "range": [ - 4480, - 4484, + 4531, + 4532, ], - "start": 4480, - "type": "Identifier", - "value": "tabs", + "start": 4531, + "type": "Punctuator", + "value": ")", }, { - "end": 4485, + "end": 4548, "loc": { "end": { - "column": 32, - "line": 201, - "offset": 4485, + "column": 15, + "line": 203, + "offset": 4548, }, "start": { - "column": 31, - "line": 201, - "offset": 4484, + "column": 14, + "line": 203, + "offset": 4547, }, }, "range": [ - 4484, - 4485, + 4547, + 4548, ], - "start": 4484, + "start": 4547, "type": "Punctuator", "value": ".", }, { - "end": 4491, + "end": 4552, "loc": { "end": { - "column": 38, - "line": 201, - "offset": 4491, + "column": 19, + "line": 203, + "offset": 4552, }, "start": { - "column": 32, - "line": 201, - "offset": 4485, + "column": 15, + "line": 203, + "offset": 4548, }, }, "range": [ - 4485, - 4491, + 4548, + 4552, ], - "start": 4485, + "start": 4548, "type": "Identifier", - "value": "concat", + "value": "fill", }, { - "end": 4492, + "end": 4553, "loc": { "end": { - "column": 39, - "line": 201, - "offset": 4492, + "column": 20, + "line": 203, + "offset": 4553, }, "start": { - "column": 38, - "line": 201, - "offset": 4491, + "column": 19, + "line": 203, + "offset": 4552, }, }, "range": [ - 4491, - 4492, + 4552, + 4553, ], - "start": 4491, + "start": 4552, "type": "Punctuator", "value": "(", }, { - "end": 4510, + "end": 4554, "loc": { "end": { - "column": 17, - "line": 202, - "offset": 4510, + "column": 21, + "line": 203, + "offset": 4554, }, "start": { - "column": 12, - "line": 202, - "offset": 4505, + "column": 20, + "line": 203, + "offset": 4553, }, }, "range": [ - 4505, - 4510, + 4553, + 4554, ], - "start": 4505, - "type": "Identifier", - "value": "Array", + "start": 4553, + "type": "Punctuator", + "value": ")", }, { - "end": 4511, + "end": 4570, "loc": { "end": { - "column": 18, - "line": 202, - "offset": 4511, + "column": 15, + "line": 204, + "offset": 4570, }, "start": { - "column": 17, - "line": 202, - "offset": 4510, + "column": 14, + "line": 204, + "offset": 4569, }, }, "range": [ - 4510, - 4511, + 4569, + 4570, ], - "start": 4510, + "start": 4569, "type": "Punctuator", "value": ".", }, { - "end": 4515, + "end": 4573, "loc": { "end": { - "column": 22, - "line": 202, - "offset": 4515, + "column": 18, + "line": 204, + "offset": 4573, }, "start": { - "column": 18, - "line": 202, - "offset": 4511, + "column": 15, + "line": 204, + "offset": 4570, }, }, "range": [ - 4511, - 4515, + 4570, + 4573, ], - "start": 4511, + "start": 4570, "type": "Identifier", - "value": "from", + "value": "map", }, { - "end": 4516, + "end": 4574, "loc": { "end": { - "column": 23, - "line": 202, - "offset": 4516, + "column": 19, + "line": 204, + "offset": 4574, }, "start": { - "column": 22, - "line": 202, - "offset": 4515, + "column": 18, + "line": 204, + "offset": 4573, }, }, "range": [ - 4515, - 4516, + 4573, + 4574, ], - "start": 4515, + "start": 4573, "type": "Punctuator", "value": "(", }, { - "end": 4517, + "end": 4575, "loc": { "end": { - "column": 24, - "line": 202, - "offset": 4517, + "column": 20, + "line": 204, + "offset": 4575, }, "start": { - "column": 23, - "line": 202, - "offset": 4516, + "column": 19, + "line": 204, + "offset": 4574, }, }, "range": [ - 4516, - 4517, + 4574, + 4575, ], - "start": 4516, + "start": 4574, "type": "Punctuator", - "value": "{", + "value": "(", }, { - "end": 4524, + "end": 4576, "loc": { "end": { - "column": 31, - "line": 202, - "offset": 4524, + "column": 21, + "line": 204, + "offset": 4576, }, "start": { - "column": 25, - "line": 202, - "offset": 4518, + "column": 20, + "line": 204, + "offset": 4575, }, }, "range": [ - 4518, - 4524, + 4575, + 4576, ], - "start": 4518, + "start": 4575, "type": "Identifier", - "value": "length", + "value": "_", }, { - "end": 4525, + "end": 4577, "loc": { "end": { - "column": 32, - "line": 202, - "offset": 4525, + "column": 22, + "line": 204, + "offset": 4577, }, "start": { - "column": 31, - "line": 202, - "offset": 4524, + "column": 21, + "line": 204, + "offset": 4576, }, }, "range": [ - 4524, - 4525, + 4576, + 4577, ], - "start": 4524, + "start": 4576, "type": "Punctuator", - "value": ":", + "value": ",", }, { - "end": 4529, + "end": 4579, "loc": { "end": { - "column": 36, - "line": 202, - "offset": 4529, + "column": 24, + "line": 204, + "offset": 4579, }, "start": { - "column": 33, - "line": 202, - "offset": 4526, + "column": 23, + "line": 204, + "offset": 4578, }, }, "range": [ - 4526, - 4529, + 4578, + 4579, ], - "start": 4526, + "start": 4578, "type": "Identifier", - "value": "num", + "value": "i", }, { - "end": 4531, + "end": 4580, "loc": { "end": { - "column": 38, - "line": 202, - "offset": 4531, + "column": 25, + "line": 204, + "offset": 4580, }, "start": { - "column": 37, - "line": 202, - "offset": 4530, + "column": 24, + "line": 204, + "offset": 4579, }, }, "range": [ - 4530, - 4531, + 4579, + 4580, ], - "start": 4530, + "start": 4579, "type": "Punctuator", - "value": "}", + "value": ")", }, { - "end": 4532, + "end": 4583, "loc": { "end": { - "column": 39, - "line": 202, - "offset": 4532, + "column": 28, + "line": 204, + "offset": 4583, }, "start": { - "column": 38, - "line": 202, - "offset": 4531, + "column": 26, + "line": 204, + "offset": 4581, }, }, "range": [ - 4531, - 4532, + 4581, + 4583, ], - "start": 4531, + "start": 4581, "type": "Punctuator", - "value": ")", + "value": "=>", }, { - "end": 4548, + "end": 4588, "loc": { "end": { - "column": 15, - "line": 203, - "offset": 4548, + "column": 33, + "line": 204, + "offset": 4588, }, "start": { - "column": 14, - "line": 203, - "offset": 4547, + "column": 29, + "line": 204, + "offset": 4584, }, }, "range": [ - 4547, - 4548, + 4584, + 4588, ], - "start": 4547, + "start": 4584, + "type": "Keyword", + "value": "this", + }, + { + "end": 4589, + "loc": { + "end": { + "column": 34, + "line": 204, + "offset": 4589, + }, + "start": { + "column": 33, + "line": 204, + "offset": 4588, + }, + }, + "range": [ + 4588, + 4589, + ], + "start": 4588, "type": "Punctuator", "value": ".", }, { - "end": 4552, + "end": 4593, "loc": { "end": { - "column": 19, - "line": 203, - "offset": 4552, + "column": 38, + "line": 204, + "offset": 4593, }, "start": { - "column": 15, - "line": 203, - "offset": 4548, + "column": 34, + "line": 204, + "offset": 4589, }, }, "range": [ - 4548, - 4552, + 4589, + 4593, ], - "start": 4548, + "start": 4589, "type": "Identifier", - "value": "fill", + "value": "tabs", }, { - "end": 4553, + "end": 4594, "loc": { "end": { - "column": 20, - "line": 203, - "offset": 4553, + "column": 39, + "line": 204, + "offset": 4594, }, "start": { - "column": 19, - "line": 203, - "offset": 4552, + "column": 38, + "line": 204, + "offset": 4593, }, }, "range": [ - 4552, - 4553, + 4593, + 4594, ], - "start": 4552, + "start": 4593, "type": "Punctuator", - "value": "(", + "value": "[", }, { - "end": 4554, + "end": 4598, "loc": { "end": { - "column": 21, - "line": 203, - "offset": 4554, + "column": 43, + "line": 204, + "offset": 4598, }, "start": { - "column": 20, - "line": 203, - "offset": 4553, + "column": 39, + "line": 204, + "offset": 4594, }, }, "range": [ - 4553, - 4554, + 4594, + 4598, ], - "start": 4553, - "type": "Punctuator", - "value": ")", + "start": 4594, + "type": "Keyword", + "value": "this", }, { - "end": 4570, + "end": 4599, "loc": { "end": { - "column": 15, + "column": 44, "line": 204, - "offset": 4570, + "offset": 4599, }, "start": { - "column": 14, + "column": 43, "line": 204, - "offset": 4569, + "offset": 4598, }, }, "range": [ - 4569, - 4570, + 4598, + 4599, ], - "start": 4569, + "start": 4598, "type": "Punctuator", "value": ".", }, { - "end": 4573, + "end": 4603, "loc": { "end": { - "column": 18, + "column": 48, "line": 204, - "offset": 4573, + "offset": 4603, }, "start": { - "column": 15, + "column": 44, "line": 204, - "offset": 4570, + "offset": 4599, }, }, "range": [ - 4570, - 4573, + 4599, + 4603, ], - "start": 4570, + "start": 4599, "type": "Identifier", - "value": "map", + "value": "tabs", }, { - "end": 4574, + "end": 4604, "loc": { "end": { - "column": 19, + "column": 49, "line": 204, - "offset": 4574, + "offset": 4604, }, "start": { - "column": 18, + "column": 48, "line": 204, - "offset": 4573, + "offset": 4603, }, }, "range": [ - 4573, - 4574, + 4603, + 4604, ], - "start": 4573, + "start": 4603, "type": "Punctuator", - "value": "(", + "value": ".", }, { - "end": 4575, + "end": 4610, "loc": { "end": { - "column": 20, + "column": 55, "line": 204, - "offset": 4575, + "offset": 4610, }, "start": { - "column": 19, + "column": 49, "line": 204, - "offset": 4574, + "offset": 4604, }, }, "range": [ - 4574, - 4575, + 4604, + 4610, ], - "start": 4574, - "type": "Punctuator", - "value": "(", + "start": 4604, + "type": "Identifier", + "value": "length", }, { - "end": 4576, + "end": 4612, "loc": { "end": { - "column": 21, + "column": 57, "line": 204, - "offset": 4576, + "offset": 4612, }, "start": { - "column": 20, + "column": 56, "line": 204, - "offset": 4575, + "offset": 4611, }, }, "range": [ - 4575, - 4576, + 4611, + 4612, ], - "start": 4575, - "type": "Identifier", - "value": "_", + "start": 4611, + "type": "Punctuator", + "value": "-", }, { - "end": 4577, + "end": 4614, "loc": { "end": { - "column": 22, + "column": 59, "line": 204, - "offset": 4577, + "offset": 4614, }, "start": { - "column": 21, + "column": 58, "line": 204, - "offset": 4576, + "offset": 4613, }, }, "range": [ - 4576, - 4577, + 4613, + 4614, ], - "start": 4576, - "type": "Punctuator", - "value": ",", + "start": 4613, + "type": "Numeric", + "value": "1", }, { - "end": 4579, + "end": 4615, "loc": { "end": { - "column": 24, + "column": 60, "line": 204, - "offset": 4579, + "offset": 4615, }, "start": { - "column": 23, + "column": 59, "line": 204, - "offset": 4578, + "offset": 4614, }, }, "range": [ - 4578, - 4579, + 4614, + 4615, ], - "start": 4578, - "type": "Identifier", - "value": "i", + "start": 4614, + "type": "Punctuator", + "value": "]", }, { - "end": 4580, + "end": 4617, "loc": { "end": { - "column": 25, + "column": 62, "line": 204, - "offset": 4580, + "offset": 4617, }, "start": { - "column": 24, + "column": 61, "line": 204, - "offset": 4579, + "offset": 4616, }, }, "range": [ - 4579, - 4580, + 4616, + 4617, ], - "start": 4579, + "start": 4616, "type": "Punctuator", - "value": ")", + "value": "+", }, { - "end": 4583, + "end": 4619, "loc": { "end": { - "column": 28, + "column": 64, "line": 204, - "offset": 4583, + "offset": 4619, }, "start": { - "column": 26, + "column": 63, "line": 204, - "offset": 4581, + "offset": 4618, }, }, "range": [ - 4581, - 4583, + 4618, + 4619, ], - "start": 4581, - "type": "Punctuator", - "value": "=>", + "start": 4618, + "type": "Identifier", + "value": "i", }, { - "end": 4588, + "end": 4621, "loc": { "end": { - "column": 33, + "column": 66, "line": 204, - "offset": 4588, + "offset": 4621, }, "start": { - "column": 29, + "column": 65, "line": 204, - "offset": 4584, + "offset": 4620, }, }, "range": [ - 4584, - 4588, + 4620, + 4621, ], - "start": 4584, - "type": "Keyword", - "value": "this", + "start": 4620, + "type": "Punctuator", + "value": "+", }, { - "end": 4589, + "end": 4623, "loc": { "end": { - "column": 34, + "column": 68, "line": 204, - "offset": 4589, + "offset": 4623, }, "start": { - "column": 33, + "column": 67, "line": 204, - "offset": 4588, + "offset": 4622, }, }, "range": [ - 4588, - 4589, + 4622, + 4623, ], - "start": 4588, - "type": "Punctuator", - "value": ".", + "start": 4622, + "type": "Numeric", + "value": "1", }, { - "end": 4593, + "end": 4624, "loc": { "end": { - "column": 38, + "column": 69, "line": 204, - "offset": 4593, + "offset": 4624, }, "start": { - "column": 34, + "column": 68, "line": 204, - "offset": 4589, + "offset": 4623, }, }, "range": [ - 4589, - 4593, + 4623, + 4624, ], - "start": 4589, - "type": "Identifier", - "value": "tabs", + "start": 4623, + "type": "Punctuator", + "value": ")", }, { - "end": 4594, + "end": 4625, "loc": { "end": { - "column": 39, + "column": 70, "line": 204, - "offset": 4594, + "offset": 4625, }, "start": { - "column": 38, + "column": 69, "line": 204, - "offset": 4593, + "offset": 4624, }, }, "range": [ - 4593, - 4594, + 4624, + 4625, ], - "start": 4593, + "start": 4624, "type": "Punctuator", - "value": "[", + "value": ",", }, { - "end": 4598, + "end": 4637, "loc": { "end": { - "column": 43, - "line": 204, - "offset": 4598, + "column": 11, + "line": 205, + "offset": 4637, }, "start": { - "column": 39, - "line": 204, - "offset": 4594, + "column": 10, + "line": 205, + "offset": 4636, }, }, "range": [ - 4594, - 4598, + 4636, + 4637, ], - "start": 4594, - "type": "Keyword", - "value": "this", + "start": 4636, + "type": "Punctuator", + "value": ")", }, { - "end": 4599, + "end": 4647, "loc": { "end": { - "column": 44, - "line": 204, - "offset": 4599, + "column": 9, + "line": 206, + "offset": 4647, }, "start": { - "column": 43, - "line": 204, - "offset": 4598, + "column": 8, + "line": 206, + "offset": 4646, }, }, "range": [ - 4598, - 4599, + 4646, + 4647, ], - "start": 4598, + "start": 4646, "type": "Punctuator", - "value": ".", + "value": "}", }, { - "end": 4603, + "end": 4648, "loc": { "end": { - "column": 48, - "line": 204, - "offset": 4603, - }, - "start": { - "column": 44, - "line": 204, - "offset": 4599, - }, - }, - "range": [ - 4599, - 4603, - ], - "start": 4599, - "type": "Identifier", - "value": "tabs", - }, - { - "end": 4604, - "loc": { - "end": { - "column": 49, - "line": 204, - "offset": 4604, + "column": 10, + "line": 206, + "offset": 4648, }, "start": { - "column": 48, - "line": 204, - "offset": 4603, + "column": 9, + "line": 206, + "offset": 4647, }, }, "range": [ - 4603, - 4604, + 4647, + 4648, ], - "start": 4603, + "start": 4647, "type": "Punctuator", - "value": ".", + "value": ",", }, { - "end": 4610, + "end": 4663, "loc": { "end": { - "column": 55, - "line": 204, - "offset": 4610, + "column": 14, + "line": 207, + "offset": 4663, }, "start": { - "column": 49, - "line": 204, - "offset": 4604, + "column": 8, + "line": 207, + "offset": 4657, }, }, "range": [ - 4604, - 4610, + 4657, + 4663, ], - "start": 4604, + "start": 4657, "type": "Identifier", - "value": "length", + "value": "remove", }, { - "end": 4612, + "end": 4664, "loc": { "end": { - "column": 57, - "line": 204, - "offset": 4612, + "column": 15, + "line": 207, + "offset": 4664, }, "start": { - "column": 56, - "line": 204, - "offset": 4611, + "column": 14, + "line": 207, + "offset": 4663, }, }, "range": [ - 4611, - 4612, + 4663, + 4664, ], - "start": 4611, + "start": 4663, "type": "Punctuator", - "value": "-", + "value": "(", }, { - "end": 4614, + "end": 4669, "loc": { "end": { - "column": 59, - "line": 204, - "offset": 4614, + "column": 20, + "line": 207, + "offset": 4669, }, "start": { - "column": 58, - "line": 204, - "offset": 4613, + "column": 15, + "line": 207, + "offset": 4664, }, }, "range": [ - 4613, - 4614, + 4664, + 4669, ], - "start": 4613, - "type": "Numeric", - "value": "1", + "start": 4664, + "type": "Identifier", + "value": "index", }, { - "end": 4615, + "end": 4670, "loc": { "end": { - "column": 60, - "line": 204, - "offset": 4615, + "column": 21, + "line": 207, + "offset": 4670, }, "start": { - "column": 59, - "line": 204, - "offset": 4614, + "column": 20, + "line": 207, + "offset": 4669, }, }, "range": [ - 4614, - 4615, + 4669, + 4670, ], - "start": 4614, + "start": 4669, "type": "Punctuator", - "value": "]", + "value": ")", }, { - "end": 4617, + "end": 4672, "loc": { "end": { - "column": 62, - "line": 204, - "offset": 4617, + "column": 23, + "line": 207, + "offset": 4672, }, "start": { - "column": 61, - "line": 204, - "offset": 4616, + "column": 22, + "line": 207, + "offset": 4671, }, }, "range": [ - 4616, - 4617, + 4671, + 4672, ], - "start": 4616, + "start": 4671, "type": "Punctuator", - "value": "+", + "value": "{", }, { - "end": 4619, + "end": 4687, "loc": { "end": { - "column": 64, - "line": 204, - "offset": 4619, + "column": 14, + "line": 208, + "offset": 4687, }, "start": { - "column": 63, - "line": 204, - "offset": 4618, + "column": 10, + "line": 208, + "offset": 4683, }, }, "range": [ - 4618, - 4619, + 4683, + 4687, ], - "start": 4618, - "type": "Identifier", - "value": "i", + "start": 4683, + "type": "Keyword", + "value": "this", }, { - "end": 4621, + "end": 4688, "loc": { "end": { - "column": 66, - "line": 204, - "offset": 4621, + "column": 15, + "line": 208, + "offset": 4688, }, "start": { - "column": 65, - "line": 204, - "offset": 4620, + "column": 14, + "line": 208, + "offset": 4687, }, }, "range": [ - 4620, - 4621, + 4687, + 4688, ], - "start": 4620, + "start": 4687, "type": "Punctuator", - "value": "+", + "value": ".", }, { - "end": 4623, + "end": 4692, "loc": { "end": { - "column": 68, - "line": 204, - "offset": 4623, + "column": 19, + "line": 208, + "offset": 4692, }, "start": { - "column": 67, - "line": 204, - "offset": 4622, + "column": 15, + "line": 208, + "offset": 4688, }, }, "range": [ - 4622, - 4623, + 4688, + 4692, ], - "start": 4622, - "type": "Numeric", - "value": "1", + "start": 4688, + "type": "Identifier", + "value": "tabs", }, { - "end": 4624, + "end": 4693, "loc": { "end": { - "column": 69, - "line": 204, - "offset": 4624, + "column": 20, + "line": 208, + "offset": 4693, }, "start": { - "column": 68, - "line": 204, - "offset": 4623, + "column": 19, + "line": 208, + "offset": 4692, }, }, "range": [ - 4623, - 4624, + 4692, + 4693, ], - "start": 4623, + "start": 4692, "type": "Punctuator", - "value": ")", + "value": ".", }, { - "end": 4625, + "end": 4699, "loc": { "end": { - "column": 70, - "line": 204, - "offset": 4625, + "column": 26, + "line": 208, + "offset": 4699, }, "start": { - "column": 69, - "line": 204, - "offset": 4624, + "column": 20, + "line": 208, + "offset": 4693, }, }, "range": [ - 4624, - 4625, + 4693, + 4699, ], - "start": 4624, - "type": "Punctuator", - "value": ",", + "start": 4693, + "type": "Identifier", + "value": "splice", }, { - "end": 4637, + "end": 4700, "loc": { "end": { - "column": 11, - "line": 205, - "offset": 4637, + "column": 27, + "line": 208, + "offset": 4700, }, "start": { - "column": 10, - "line": 205, - "offset": 4636, + "column": 26, + "line": 208, + "offset": 4699, }, }, "range": [ - 4636, - 4637, + 4699, + 4700, ], - "start": 4636, + "start": 4699, "type": "Punctuator", - "value": ")", + "value": "(", }, { - "end": 4647, + "end": 4705, "loc": { "end": { - "column": 9, - "line": 206, - "offset": 4647, + "column": 32, + "line": 208, + "offset": 4705, }, "start": { - "column": 8, - "line": 206, - "offset": 4646, + "column": 27, + "line": 208, + "offset": 4700, }, }, "range": [ - 4646, - 4647, + 4700, + 4705, ], - "start": 4646, - "type": "Punctuator", - "value": "}", + "start": 4700, + "type": "Identifier", + "value": "index", }, { - "end": 4648, + "end": 4706, "loc": { "end": { - "column": 10, - "line": 206, - "offset": 4648, + "column": 33, + "line": 208, + "offset": 4706, }, "start": { - "column": 9, - "line": 206, - "offset": 4647, + "column": 32, + "line": 208, + "offset": 4705, }, }, "range": [ - 4647, - 4648, + 4705, + 4706, ], - "start": 4647, + "start": 4705, "type": "Punctuator", "value": ",", }, { - "end": 4663, + "end": 4708, "loc": { "end": { - "column": 14, - "line": 207, - "offset": 4663, + "column": 35, + "line": 208, + "offset": 4708, }, "start": { - "column": 8, - "line": 207, - "offset": 4657, + "column": 34, + "line": 208, + "offset": 4707, }, }, "range": [ - 4657, - 4663, + 4707, + 4708, ], - "start": 4657, - "type": "Identifier", - "value": "remove", + "start": 4707, + "type": "Numeric", + "value": "1", }, { - "end": 4664, + "end": 4709, "loc": { "end": { - "column": 15, - "line": 207, - "offset": 4664, + "column": 36, + "line": 208, + "offset": 4709, }, "start": { - "column": 14, - "line": 207, - "offset": 4663, + "column": 35, + "line": 208, + "offset": 4708, }, }, "range": [ - 4663, - 4664, + 4708, + 4709, ], - "start": 4663, + "start": 4708, "type": "Punctuator", - "value": "(", + "value": ")", }, { - "end": 4669, + "end": 4719, "loc": { "end": { - "column": 20, - "line": 207, - "offset": 4669, + "column": 9, + "line": 209, + "offset": 4719, }, "start": { - "column": 15, - "line": 207, - "offset": 4664, + "column": 8, + "line": 209, + "offset": 4718, }, }, "range": [ - 4664, - 4669, + 4718, + 4719, ], - "start": 4664, - "type": "Identifier", - "value": "index", + "start": 4718, + "type": "Punctuator", + "value": "}", }, { - "end": 4670, + "end": 4720, "loc": { "end": { - "column": 21, - "line": 207, - "offset": 4670, + "column": 10, + "line": 209, + "offset": 4720, }, "start": { - "column": 20, - "line": 207, - "offset": 4669, + "column": 9, + "line": 209, + "offset": 4719, }, }, "range": [ - 4669, - 4670, + 4719, + 4720, ], - "start": 4669, + "start": 4719, "type": "Punctuator", - "value": ")", + "value": ",", }, { - "end": 4672, + "end": 4728, "loc": { "end": { - "column": 23, - "line": 207, - "offset": 4672, + "column": 7, + "line": 210, + "offset": 4728, }, "start": { - "column": 22, - "line": 207, - "offset": 4671, + "column": 6, + "line": 210, + "offset": 4727, }, }, "range": [ - 4671, - 4672, + 4727, + 4728, ], - "start": 4671, + "start": 4727, "type": "Punctuator", - "value": "{", + "value": "}", }, { - "end": 4687, + "end": 4729, "loc": { "end": { - "column": 14, - "line": 208, - "offset": 4687, + "column": 8, + "line": 210, + "offset": 4729, }, "start": { - "column": 10, - "line": 208, - "offset": 4683, + "column": 7, + "line": 210, + "offset": 4728, }, }, "range": [ - 4683, - 4687, + 4728, + 4729, ], - "start": 4683, - "type": "Keyword", - "value": "this", + "start": 4728, + "type": "Punctuator", + "value": ",", }, { - "end": 4688, + "end": 4735, "loc": { "end": { - "column": 15, - "line": 208, - "offset": 4688, + "column": 5, + "line": 211, + "offset": 4735, }, "start": { - "column": 14, - "line": 208, - "offset": 4687, + "column": 4, + "line": 211, + "offset": 4734, }, }, "range": [ - 4687, - 4688, + 4734, + 4735, ], - "start": 4687, + "start": 4734, "type": "Punctuator", - "value": ".", + "value": "}", }, { - "end": 4692, + "end": 4736, "loc": { "end": { - "column": 19, - "line": 208, - "offset": 4692, + "column": 6, + "line": 211, + "offset": 4736, }, "start": { - "column": 15, - "line": 208, - "offset": 4688, + "column": 5, + "line": 211, + "offset": 4735, }, }, "range": [ - 4688, - 4692, + 4735, + 4736, ], - "start": 4688, - "type": "Identifier", - "value": "tabs", + "start": 4735, + "type": "Punctuator", + "value": "}", }, { - "end": 4693, + "end": 4740, "loc": { "end": { - "column": 20, - "line": 208, - "offset": 4693, + "column": 3, + "line": 212, + "offset": 4740, }, "start": { - "column": 19, - "line": 208, - "offset": 4692, + "column": 2, + "line": 212, + "offset": 4739, }, }, "range": [ - 4692, - 4693, + 4739, + 4740, ], - "start": 4692, + "start": 4739, "type": "Punctuator", - "value": ".", + "value": "<", }, { - "end": 4699, + "end": 4741, "loc": { "end": { - "column": 26, - "line": 208, - "offset": 4699, + "column": 4, + "line": 212, + "offset": 4741, }, "start": { - "column": 20, - "line": 208, - "offset": 4693, + "column": 3, + "line": 212, + "offset": 4740, }, }, "range": [ - 4693, - 4699, + 4740, + 4741, ], - "start": 4693, - "type": "Identifier", - "value": "splice", + "start": 4740, + "type": "Punctuator", + "value": "/", }, { - "end": 4700, + "end": 4746, "loc": { "end": { - "column": 27, - "line": 208, - "offset": 4700, + "column": 9, + "line": 212, + "offset": 4746, }, "start": { - "column": 26, - "line": 208, - "offset": 4699, + "column": 4, + "line": 212, + "offset": 4741, }, }, "range": [ - 4699, - 4700, + 4741, + 4746, ], - "start": 4699, - "type": "Punctuator", - "value": "(", + "start": 4741, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 4705, + "end": 4747, "loc": { "end": { - "column": 32, - "line": 208, - "offset": 4705, + "column": 10, + "line": 212, + "offset": 4747, }, "start": { - "column": 27, - "line": 208, - "offset": 4700, + "column": 9, + "line": 212, + "offset": 4746, }, }, "range": [ - 4700, - 4705, + 4746, + 4747, ], - "start": 4700, - "type": "Identifier", - "value": "index", + "start": 4746, + "type": "Punctuator", + "value": ">", }, { - "end": 4706, + "end": 4749, "loc": { "end": { - "column": 33, - "line": 208, - "offset": 4706, + "column": 1, + "line": 213, + "offset": 4749, }, "start": { - "column": 32, - "line": 208, - "offset": 4705, + "column": 0, + "line": 213, + "offset": 4748, }, }, "range": [ - 4705, - 4706, + 4748, + 4749, ], - "start": 4705, + "start": 4748, "type": "Punctuator", - "value": ",", + "value": "<", }, { - "end": 4708, + "end": 4750, "loc": { "end": { - "column": 35, - "line": 208, - "offset": 4708, + "column": 2, + "line": 213, + "offset": 4750, }, "start": { - "column": 34, - "line": 208, - "offset": 4707, + "column": 1, + "line": 213, + "offset": 4749, }, }, "range": [ - 4707, - 4708, + 4749, + 4750, ], - "start": 4707, - "type": "Numeric", - "value": "1", + "start": 4749, + "type": "Punctuator", + "value": "/", }, { - "end": 4709, + "end": 4756, "loc": { "end": { - "column": 36, - "line": 208, - "offset": 4709, + "column": 8, + "line": 213, + "offset": 4756, }, "start": { - "column": 35, - "line": 208, - "offset": 4708, + "column": 2, + "line": 213, + "offset": 4750, }, }, "range": [ - 4708, - 4709, + 4750, + 4756, ], - "start": 4708, - "type": "Punctuator", - "value": ")", + "start": 4750, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 4719, + "end": 4757, "loc": { "end": { "column": 9, - "line": 209, - "offset": 4719, + "line": 213, + "offset": 4757, }, "start": { "column": 8, - "line": 209, - "offset": 4718, + "line": 213, + "offset": 4756, }, }, "range": [ - 4718, - 4719, + 4756, + 4757, ], - "start": 4718, + "start": 4756, "type": "Punctuator", - "value": "}", + "value": ">", }, { - "end": 4720, + "end": 4764, "loc": { "end": { - "column": 10, - "line": 209, - "offset": 4720, + "column": 5, + "line": 215, + "offset": 4764, }, "start": { - "column": 9, - "line": 209, - "offset": 4719, + "column": 3, + "line": 215, + "offset": 4762, }, }, "range": [ - 4719, - 4720, + 4762, + 4764, ], - "start": 4719, - "type": "Punctuator", - "value": ",", + "start": 4762, + "type": "JSXText", + "value": "禁用", }, { - "end": 4728, + "end": 4767, "loc": { "end": { - "column": 7, - "line": 210, - "offset": 4728, + "column": 1, + "line": 217, + "offset": 4767, }, "start": { - "column": 6, - "line": 210, - "offset": 4727, + "column": 0, + "line": 217, + "offset": 4766, }, }, "range": [ - 4727, - 4728, + 4766, + 4767, ], - "start": 4727, + "start": 4766, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 4729, + "end": 4773, "loc": { "end": { - "column": 8, - "line": 210, - "offset": 4729, + "column": 7, + "line": 217, + "offset": 4773, }, "start": { - "column": 7, - "line": 210, - "offset": 4728, + "column": 1, + "line": 217, + "offset": 4767, }, }, "range": [ - 4728, - 4729, + 4767, + 4773, ], - "start": 4728, - "type": "Punctuator", - "value": ",", + "start": 4767, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 4735, + "end": 4778, "loc": { "end": { - "column": 5, - "line": 211, - "offset": 4735, + "column": 3, + "line": 218, + "offset": 4778, }, "start": { - "column": 4, - "line": 211, - "offset": 4734, + "column": 2, + "line": 218, + "offset": 4777, }, }, "range": [ - 4734, - 4735, + 4777, + 4778, ], - "start": 4734, + "start": 4777, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 4736, + "end": 4783, "loc": { "end": { - "column": 6, - "line": 211, - "offset": 4736, + "column": 8, + "line": 218, + "offset": 4783, }, "start": { - "column": 5, - "line": 211, - "offset": 4735, + "column": 3, + "line": 218, + "offset": 4778, }, }, "range": [ - 4735, - 4736, + 4778, + 4783, ], - "start": 4735, - "type": "Punctuator", - "value": "}", + "start": 4778, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 4740, + "end": 4792, "loc": { "end": { - "column": 3, - "line": 212, - "offset": 4740, + "column": 8, + "line": 219, + "offset": 4792, }, "start": { - "column": 2, - "line": 212, - "offset": 4739, + "column": 4, + "line": 219, + "offset": 4788, }, }, "range": [ - 4739, - 4740, + 4788, + 4792, ], - "start": 4739, - "type": "Punctuator", - "value": "<", + "start": 4788, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 4741, + "end": 4793, "loc": { "end": { - "column": 4, - "line": 212, - "offset": 4741, + "column": 9, + "line": 219, + "offset": 4793, }, "start": { - "column": 3, - "line": 212, - "offset": 4740, + "column": 8, + "line": 219, + "offset": 4792, }, }, "range": [ - 4740, - 4741, + 4792, + 4793, ], - "start": 4740, + "start": 4792, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 4746, + "end": 4803, "loc": { "end": { - "column": 9, - "line": 212, - "offset": 4746, + "column": 19, + "line": 219, + "offset": 4803, }, "start": { - "column": 4, - "line": 212, - "offset": 4741, + "column": 9, + "line": 219, + "offset": 4793, }, }, "range": [ - 4741, - 4746, + 4793, + 4803, ], - "start": 4741, - "type": "JSXIdentifier", - "value": "Story", + "start": 4793, + "type": "String", + "value": ""Disabled"", }, { - "end": 4747, + "end": 4814, "loc": { "end": { "column": 10, - "line": 212, - "offset": 4747, + "line": 220, + "offset": 4814, }, "start": { - "column": 9, - "line": 212, - "offset": 4746, + "column": 4, + "line": 220, + "offset": 4808, }, }, "range": [ - 4746, - 4747, + 4808, + 4814, ], - "start": 4746, - "type": "Punctuator", - "value": ">", + "start": 4808, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 4749, + "end": 4815, "loc": { "end": { - "column": 1, - "line": 213, - "offset": 4749, + "column": 11, + "line": 220, + "offset": 4815, }, "start": { - "column": 0, - "line": 213, - "offset": 4748, + "column": 10, + "line": 220, + "offset": 4814, }, }, "range": [ - 4748, - 4749, + 4814, + 4815, ], - "start": 4748, + "start": 4814, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 4750, + "end": 4822, "loc": { "end": { - "column": 2, - "line": 213, - "offset": 4750, + "column": 18, + "line": 220, + "offset": 4822, }, "start": { - "column": 1, - "line": 213, - "offset": 4749, + "column": 11, + "line": 220, + "offset": 4815, }, }, "range": [ - 4749, - 4750, + 4815, + 4822, ], - "start": 4749, - "type": "Punctuator", - "value": "/", + "start": 4815, + "type": "String", + "value": ""100px"", }, { - "end": 4756, + "end": 4832, "loc": { "end": { - "column": 8, - "line": 213, - "offset": 4756, + "column": 5, + "line": 222, + "offset": 4832, }, "start": { - "column": 2, - "line": 213, - "offset": 4750, + "column": 4, + "line": 222, + "offset": 4831, }, }, "range": [ - 4750, - 4756, + 4831, + 4832, ], - "start": 4750, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 4831, + "type": "Punctuator", + "value": "{", }, { - "end": 4757, + "end": 4833, "loc": { "end": { - "column": 9, - "line": 213, - "offset": 4757, + "column": 6, + "line": 222, + "offset": 4833, }, "start": { - "column": 8, - "line": 213, - "offset": 4756, + "column": 5, + "line": 222, + "offset": 4832, }, }, "range": [ - 4756, - 4757, + 4832, + 4833, ], - "start": 4756, + "start": 4832, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 4764, + "end": 4848, "loc": { "end": { - "column": 5, - "line": 215, - "offset": 4764, + "column": 14, + "line": 223, + "offset": 4848, }, "start": { - "column": 3, - "line": 215, - "offset": 4762, + "column": 6, + "line": 223, + "offset": 4840, }, }, "range": [ - 4762, - 4764, + 4840, + 4848, ], - "start": 4762, - "type": "JSXText", - "value": "禁用", - }, + "start": 4840, + "type": "Identifier", + "value": "template", + }, { - "end": 4767, + "end": 4849, "loc": { "end": { - "column": 1, - "line": 217, - "offset": 4767, + "column": 15, + "line": 223, + "offset": 4849, }, "start": { - "column": 0, - "line": 217, - "offset": 4766, + "column": 14, + "line": 223, + "offset": 4848, }, }, "range": [ - 4766, - 4767, + 4848, + 4849, ], - "start": 4766, + "start": 4848, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 4773, + "end": 5357, "loc": { "end": { "column": 7, - "line": 217, - "offset": 4773, + "line": 238, + "offset": 5357, }, "start": { - "column": 1, - "line": 217, - "offset": 4767, + "column": 27, + "line": 223, + "offset": 4861, }, }, "range": [ - 4767, - 4773, + 4861, + 5357, ], - "start": 4767, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 4861, + "type": "Template", + "value": "\` + + Content 1 + Content 2 + Content 3 + Content 4 + + \`", }, { - "end": 4778, + "end": 5358, "loc": { "end": { - "column": 3, - "line": 218, - "offset": 4778, + "column": 8, + "line": 238, + "offset": 5358, }, "start": { - "column": 2, - "line": 218, - "offset": 4777, + "column": 7, + "line": 238, + "offset": 5357, }, }, "range": [ - 4777, - 4778, + 5357, + 5358, ], - "start": 4777, + "start": 5357, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 4783, + "end": 5370, "loc": { "end": { - "column": 8, - "line": 218, - "offset": 4783, + "column": 11, + "line": 239, + "offset": 5370, }, "start": { - "column": 3, - "line": 218, - "offset": 4778, + "column": 6, + "line": 239, + "offset": 5365, }, }, "range": [ - 4778, - 4783, + 5365, + 5370, ], - "start": 4778, - "type": "JSXIdentifier", - "value": "Story", + "start": 5365, + "type": "Identifier", + "value": "props", }, { - "end": 4792, + "end": 5371, "loc": { "end": { - "column": 8, - "line": 219, - "offset": 4792, + "column": 12, + "line": 239, + "offset": 5371, }, "start": { - "column": 4, - "line": 219, - "offset": 4788, + "column": 11, + "line": 239, + "offset": 5370, }, }, "range": [ - 4788, - 4792, + 5370, + 5371, ], - "start": 4788, - "type": "JSXIdentifier", - "value": "name", + "start": 5370, + "type": "Punctuator", + "value": ":", }, { - "end": 4793, + "end": 5373, "loc": { "end": { - "column": 9, - "line": 219, - "offset": 4793, + "column": 14, + "line": 239, + "offset": 5373, }, "start": { - "column": 8, - "line": 219, - "offset": 4792, + "column": 13, + "line": 239, + "offset": 5372, }, }, "range": [ - 4792, - 4793, + 5372, + 5373, ], - "start": 4792, + "start": 5372, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 4803, + "end": 5386, "loc": { "end": { - "column": 19, - "line": 219, - "offset": 4803, + "column": 12, + "line": 240, + "offset": 5386, }, "start": { - "column": 9, - "line": 219, - "offset": 4793, + "column": 8, + "line": 240, + "offset": 5382, }, }, "range": [ - 4793, - 4803, + 5382, + 5386, ], - "start": 4793, - "type": "String", - "value": ""Disabled"", + "start": 5382, + "type": "Identifier", + "value": "tabs", }, { - "end": 4814, + "end": 5387, "loc": { "end": { - "column": 10, - "line": 220, - "offset": 4814, + "column": 13, + "line": 240, + "offset": 5387, }, "start": { - "column": 4, - "line": 220, - "offset": 4808, + "column": 12, + "line": 240, + "offset": 5386, }, }, "range": [ - 4808, - 4814, + 5386, + 5387, ], - "start": 4808, - "type": "JSXIdentifier", - "value": "height", + "start": 5386, + "type": "Punctuator", + "value": ":", }, { - "end": 4815, + "end": 5393, "loc": { "end": { - "column": 11, - "line": 220, - "offset": 4815, + "column": 19, + "line": 240, + "offset": 5393, }, "start": { - "column": 10, - "line": 220, - "offset": 4814, + "column": 14, + "line": 240, + "offset": 5388, }, }, "range": [ - 4814, - 4815, + 5388, + 5393, ], - "start": 4814, - "type": "Punctuator", - "value": "=", + "start": 5388, + "type": "Identifier", + "value": "Array", }, { - "end": 4822, + "end": 5394, "loc": { "end": { - "column": 18, - "line": 220, - "offset": 4822, + "column": 20, + "line": 240, + "offset": 5394, }, "start": { - "column": 11, - "line": 220, - "offset": 4815, + "column": 19, + "line": 240, + "offset": 5393, }, }, "range": [ - 4815, - 4822, + 5393, + 5394, ], - "start": 4815, - "type": "String", - "value": ""100px"", + "start": 5393, + "type": "Punctuator", + "value": ".", }, { - "end": 4832, + "end": 5398, "loc": { "end": { - "column": 5, - "line": 222, - "offset": 4832, + "column": 24, + "line": 240, + "offset": 5398, }, "start": { - "column": 4, - "line": 222, - "offset": 4831, + "column": 20, + "line": 240, + "offset": 5394, }, }, "range": [ - 4831, - 4832, + 5394, + 5398, ], - "start": 4831, - "type": "Punctuator", - "value": "{", + "start": 5394, + "type": "Identifier", + "value": "from", }, { - "end": 4833, + "end": 5399, "loc": { "end": { - "column": 6, - "line": 222, - "offset": 4833, + "column": 25, + "line": 240, + "offset": 5399, }, "start": { - "column": 5, - "line": 222, - "offset": 4832, + "column": 24, + "line": 240, + "offset": 5398, }, }, "range": [ - 4832, - 4833, + 5398, + 5399, ], - "start": 4832, + "start": 5398, "type": "Punctuator", - "value": "{", + "value": "(", }, { - "end": 4848, + "end": 5400, "loc": { "end": { - "column": 14, - "line": 223, - "offset": 4848, + "column": 26, + "line": 240, + "offset": 5400, }, "start": { - "column": 6, - "line": 223, - "offset": 4840, + "column": 25, + "line": 240, + "offset": 5399, }, }, "range": [ - 4840, - 4848, + 5399, + 5400, ], - "start": 4840, - "type": "Identifier", - "value": "template", + "start": 5399, + "type": "Punctuator", + "value": "{", }, { - "end": 4849, + "end": 5407, "loc": { "end": { - "column": 15, - "line": 223, - "offset": 4849, + "column": 33, + "line": 240, + "offset": 5407, }, "start": { - "column": 14, - "line": 223, - "offset": 4848, + "column": 27, + "line": 240, + "offset": 5401, }, }, "range": [ - 4848, - 4849, + 5401, + 5407, ], - "start": 4848, - "type": "Punctuator", - "value": ":", + "start": 5401, + "type": "Identifier", + "value": "length", }, { - "end": 5357, + "end": 5408, "loc": { "end": { - "column": 7, - "line": 238, - "offset": 5357, + "column": 34, + "line": 240, + "offset": 5408, }, "start": { - "column": 27, - "line": 223, - "offset": 4861, + "column": 33, + "line": 240, + "offset": 5407, }, }, "range": [ - 4861, - 5357, + 5407, + 5408, ], - "start": 4861, - "type": "Template", - "value": "\` - - Content 1 - Content 2 - Content 3 - Content 4 - - \`", + "start": 5407, + "type": "Punctuator", + "value": ":", }, { - "end": 5358, + "end": 5411, "loc": { "end": { - "column": 8, - "line": 238, - "offset": 5358, + "column": 37, + "line": 240, + "offset": 5411, }, "start": { - "column": 7, - "line": 238, - "offset": 5357, + "column": 35, + "line": 240, + "offset": 5409, }, }, "range": [ - 5357, - 5358, + 5409, + 5411, ], - "start": 5357, - "type": "Punctuator", - "value": ",", + "start": 5409, + "type": "Numeric", + "value": "10", }, { - "end": 5370, + "end": 5413, "loc": { "end": { - "column": 11, - "line": 239, - "offset": 5370, + "column": 39, + "line": 240, + "offset": 5413, }, "start": { - "column": 6, - "line": 239, - "offset": 5365, + "column": 38, + "line": 240, + "offset": 5412, }, }, "range": [ - 5365, - 5370, + 5412, + 5413, ], - "start": 5365, - "type": "Identifier", - "value": "props", + "start": 5412, + "type": "Punctuator", + "value": "}", }, { - "end": 5371, + "end": 5414, "loc": { "end": { - "column": 12, - "line": 239, - "offset": 5371, + "column": 40, + "line": 240, + "offset": 5414, }, "start": { - "column": 11, - "line": 239, - "offset": 5370, + "column": 39, + "line": 240, + "offset": 5413, }, }, "range": [ - 5370, - 5371, + 5413, + 5414, ], - "start": 5370, + "start": 5413, "type": "Punctuator", - "value": ":", + "value": ")", }, { - "end": 5373, + "end": 5415, "loc": { "end": { - "column": 14, - "line": 239, - "offset": 5373, + "column": 41, + "line": 240, + "offset": 5415, }, "start": { - "column": 13, - "line": 239, - "offset": 5372, + "column": 40, + "line": 240, + "offset": 5414, }, }, "range": [ - 5372, - 5373, + 5414, + 5415, ], - "start": 5372, + "start": 5414, "type": "Punctuator", - "value": "{", + "value": ".", }, { - "end": 5386, + "end": 5419, "loc": { "end": { - "column": 12, + "column": 45, "line": 240, - "offset": 5386, + "offset": 5419, }, "start": { - "column": 8, + "column": 41, "line": 240, - "offset": 5382, + "offset": 5415, }, }, "range": [ - 5382, - 5386, + 5415, + 5419, ], - "start": 5382, + "start": 5415, "type": "Identifier", - "value": "tabs", + "value": "fill", }, { - "end": 5387, + "end": 5420, "loc": { "end": { - "column": 13, + "column": 46, "line": 240, - "offset": 5387, + "offset": 5420, }, "start": { - "column": 12, + "column": 45, "line": 240, - "offset": 5386, + "offset": 5419, }, }, "range": [ - 5386, - 5387, + 5419, + 5420, ], - "start": 5386, + "start": 5419, "type": "Punctuator", - "value": ":", + "value": "(", }, { - "end": 5393, + "end": 5421, "loc": { "end": { - "column": 19, + "column": 47, "line": 240, - "offset": 5393, + "offset": 5421, }, "start": { - "column": 14, + "column": 46, "line": 240, - "offset": 5388, + "offset": 5420, }, }, "range": [ - 5388, - 5393, + 5420, + 5421, ], - "start": 5388, - "type": "Identifier", - "value": "Array", + "start": 5420, + "type": "Punctuator", + "value": ")", }, { - "end": 5394, + "end": 5422, "loc": { "end": { - "column": 20, + "column": 48, "line": 240, - "offset": 5394, + "offset": 5422, }, "start": { - "column": 19, + "column": 47, "line": 240, - "offset": 5393, + "offset": 5421, }, }, "range": [ - 5393, - 5394, + 5421, + 5422, ], - "start": 5393, + "start": 5421, "type": "Punctuator", - "value": ".", + "value": ",", }, { - "end": 5398, + "end": 5430, "loc": { "end": { - "column": 24, - "line": 240, - "offset": 5398, + "column": 7, + "line": 241, + "offset": 5430, }, "start": { - "column": 20, - "line": 240, - "offset": 5394, + "column": 6, + "line": 241, + "offset": 5429, }, }, "range": [ - 5394, - 5398, + 5429, + 5430, ], - "start": 5394, - "type": "Identifier", - "value": "from", + "start": 5429, + "type": "Punctuator", + "value": "}", }, { - "end": 5399, + "end": 5431, "loc": { "end": { - "column": 25, - "line": 240, - "offset": 5399, + "column": 8, + "line": 241, + "offset": 5431, }, "start": { - "column": 24, - "line": 240, - "offset": 5398, + "column": 7, + "line": 241, + "offset": 5430, }, }, "range": [ - 5398, - 5399, + 5430, + 5431, ], - "start": 5398, + "start": 5430, "type": "Punctuator", - "value": "(", + "value": ",", }, { - "end": 5400, + "end": 5437, "loc": { "end": { - "column": 26, - "line": 240, - "offset": 5400, + "column": 5, + "line": 242, + "offset": 5437, }, "start": { - "column": 25, - "line": 240, - "offset": 5399, + "column": 4, + "line": 242, + "offset": 5436, }, }, "range": [ - 5399, - 5400, + 5436, + 5437, ], - "start": 5399, + "start": 5436, "type": "Punctuator", - "value": "{", + "value": "}", }, { - "end": 5407, + "end": 5438, "loc": { "end": { - "column": 33, - "line": 240, - "offset": 5407, + "column": 6, + "line": 242, + "offset": 5438, }, "start": { - "column": 27, - "line": 240, - "offset": 5401, + "column": 5, + "line": 242, + "offset": 5437, }, }, "range": [ - 5401, - 5407, + 5437, + 5438, ], - "start": 5401, - "type": "Identifier", - "value": "length", + "start": 5437, + "type": "Punctuator", + "value": "}", }, { - "end": 5408, + "end": 5442, "loc": { "end": { - "column": 34, - "line": 240, - "offset": 5408, + "column": 3, + "line": 243, + "offset": 5442, }, "start": { - "column": 33, - "line": 240, - "offset": 5407, + "column": 2, + "line": 243, + "offset": 5441, }, }, "range": [ - 5407, - 5408, + 5441, + 5442, ], - "start": 5407, + "start": 5441, "type": "Punctuator", - "value": ":", + "value": "<", }, { - "end": 5411, + "end": 5443, "loc": { "end": { - "column": 37, - "line": 240, - "offset": 5411, + "column": 4, + "line": 243, + "offset": 5443, }, "start": { - "column": 35, - "line": 240, - "offset": 5409, + "column": 3, + "line": 243, + "offset": 5442, }, }, "range": [ - 5409, - 5411, + 5442, + 5443, ], - "start": 5409, - "type": "Numeric", - "value": "10", + "start": 5442, + "type": "Punctuator", + "value": "/", }, { - "end": 5413, + "end": 5448, "loc": { "end": { - "column": 39, - "line": 240, - "offset": 5413, + "column": 9, + "line": 243, + "offset": 5448, }, "start": { - "column": 38, - "line": 240, - "offset": 5412, + "column": 4, + "line": 243, + "offset": 5443, }, }, "range": [ - 5412, - 5413, + 5443, + 5448, ], - "start": 5412, - "type": "Punctuator", - "value": "}", + "start": 5443, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 5414, + "end": 5449, "loc": { "end": { - "column": 40, - "line": 240, - "offset": 5414, + "column": 10, + "line": 243, + "offset": 5449, }, "start": { - "column": 39, - "line": 240, - "offset": 5413, + "column": 9, + "line": 243, + "offset": 5448, }, }, "range": [ - 5413, - 5414, + 5448, + 5449, ], - "start": 5413, + "start": 5448, "type": "Punctuator", - "value": ")", + "value": ">", }, { - "end": 5415, + "end": 5451, "loc": { "end": { - "column": 41, - "line": 240, - "offset": 5415, + "column": 1, + "line": 244, + "offset": 5451, }, "start": { - "column": 40, - "line": 240, - "offset": 5414, + "column": 0, + "line": 244, + "offset": 5450, }, }, "range": [ - 5414, - 5415, + 5450, + 5451, ], - "start": 5414, + "start": 5450, "type": "Punctuator", - "value": ".", + "value": "<", }, { - "end": 5419, + "end": 5452, "loc": { "end": { - "column": 45, - "line": 240, - "offset": 5419, + "column": 2, + "line": 244, + "offset": 5452, }, "start": { - "column": 41, - "line": 240, - "offset": 5415, - }, + "column": 1, + "line": 244, + "offset": 5451, + }, }, "range": [ - 5415, - 5419, + 5451, + 5452, ], - "start": 5415, - "type": "Identifier", - "value": "fill", + "start": 5451, + "type": "Punctuator", + "value": "/", }, { - "end": 5420, + "end": 5458, "loc": { "end": { - "column": 46, - "line": 240, - "offset": 5420, + "column": 8, + "line": 244, + "offset": 5458, }, "start": { - "column": 45, - "line": 240, - "offset": 5419, + "column": 2, + "line": 244, + "offset": 5452, }, }, "range": [ - 5419, - 5420, + 5452, + 5458, ], - "start": 5419, - "type": "Punctuator", - "value": "(", + "start": 5452, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 5421, + "end": 5459, "loc": { "end": { - "column": 47, - "line": 240, - "offset": 5421, + "column": 9, + "line": 244, + "offset": 5459, }, "start": { - "column": 46, - "line": 240, - "offset": 5420, + "column": 8, + "line": 244, + "offset": 5458, }, }, "range": [ - 5420, - 5421, + 5458, + 5459, ], - "start": 5420, + "start": 5458, "type": "Punctuator", - "value": ")", + "value": ">", }, { - "end": 5422, + "end": 5471, "loc": { "end": { - "column": 48, - "line": 240, - "offset": 5422, + "column": 10, + "line": 246, + "offset": 5471, }, "start": { - "column": 47, - "line": 240, - "offset": 5421, + "column": 3, + "line": 246, + "offset": 5464, }, }, "range": [ - 5421, - 5422, + 5464, + 5471, ], - "start": 5421, - "type": "Punctuator", - "value": ",", + "start": 5464, + "type": "JSXText", + "value": "Lazy 模式", }, { - "end": 5430, + "end": 5478, "loc": { "end": { - "column": 7, - "line": 241, - "offset": 5430, + "column": 5, + "line": 248, + "offset": 5478, }, "start": { - "column": 6, - "line": 241, - "offset": 5429, + "column": 2, + "line": 248, + "offset": 5475, }, }, "range": [ - 5429, - 5430, + 5475, + 5478, ], - "start": 5429, - "type": "Punctuator", - "value": "}", + "start": 5475, + "type": "JSXText", + "value": "依赖 ", }, { - "end": 5431, + "end": 5557, "loc": { "end": { - "column": 8, - "line": 241, - "offset": 5431, + "column": 84, + "line": 248, + "offset": 5557, }, "start": { - "column": 7, - "line": 241, - "offset": 5430, + "column": 21, + "line": 248, + "offset": 5494, }, }, "range": [ - 5430, - 5431, + 5494, + 5557, ], - "start": 5430, - "type": "Punctuator", - "value": ",", + "start": 5494, + "type": "JSXText", + "value": ",与默认模式按需加载每次切换 Tab 都会销毁重新创建相比,lazy 启用时在按需加载组件的同时会缓存已加载的 Tab 内容。", }, { - "end": 5437, + "end": 5560, "loc": { "end": { - "column": 5, - "line": 242, - "offset": 5437, + "column": 1, + "line": 250, + "offset": 5560, }, "start": { - "column": 4, - "line": 242, - "offset": 5436, + "column": 0, + "line": 250, + "offset": 5559, }, }, "range": [ - 5436, - 5437, + 5559, + 5560, ], - "start": 5436, + "start": 5559, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 5438, + "end": 5566, "loc": { "end": { - "column": 6, - "line": 242, - "offset": 5438, + "column": 7, + "line": 250, + "offset": 5566, }, "start": { - "column": 5, - "line": 242, - "offset": 5437, + "column": 1, + "line": 250, + "offset": 5560, }, }, "range": [ - 5437, - 5438, + 5560, + 5566, ], - "start": 5437, - "type": "Punctuator", - "value": "}", + "start": 5560, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 5442, + "end": 5571, "loc": { "end": { "column": 3, - "line": 243, - "offset": 5442, + "line": 251, + "offset": 5571, }, "start": { "column": 2, - "line": 243, - "offset": 5441, + "line": 251, + "offset": 5570, }, }, "range": [ - 5441, - 5442, + 5570, + 5571, ], - "start": 5441, + "start": 5570, "type": "Punctuator", "value": "<", }, { - "end": 5443, + "end": 5576, "loc": { "end": { - "column": 4, - "line": 243, - "offset": 5443, + "column": 8, + "line": 251, + "offset": 5576, }, "start": { "column": 3, - "line": 243, - "offset": 5442, + "line": 251, + "offset": 5571, }, }, "range": [ - 5442, - 5443, + 5571, + 5576, ], - "start": 5442, - "type": "Punctuator", - "value": "/", + "start": 5571, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 5448, + "end": 5585, "loc": { "end": { - "column": 9, - "line": 243, - "offset": 5448, + "column": 8, + "line": 252, + "offset": 5585, }, "start": { "column": 4, - "line": 243, - "offset": 5443, + "line": 252, + "offset": 5581, }, }, "range": [ - 5443, - 5448, + 5581, + 5585, ], - "start": 5443, + "start": 5581, "type": "JSXIdentifier", - "value": "Story", + "value": "name", }, { - "end": 5449, + "end": 5586, "loc": { "end": { - "column": 10, - "line": 243, - "offset": 5449, + "column": 9, + "line": 252, + "offset": 5586, }, "start": { - "column": 9, - "line": 243, - "offset": 5448, + "column": 8, + "line": 252, + "offset": 5585, }, }, "range": [ - 5448, - 5449, + 5585, + 5586, ], - "start": 5448, + "start": 5585, "type": "Punctuator", - "value": ">", + "value": "=", }, { - "end": 5451, + "end": 5592, "loc": { "end": { - "column": 1, - "line": 244, - "offset": 5451, + "column": 15, + "line": 252, + "offset": 5592, }, "start": { - "column": 0, - "line": 244, - "offset": 5450, + "column": 9, + "line": 252, + "offset": 5586, }, }, "range": [ - 5450, - 5451, + 5586, + 5592, ], - "start": 5450, - "type": "Punctuator", - "value": "<", + "start": 5586, + "type": "String", + "value": ""Lazy"", }, { - "end": 5452, + "end": 5603, "loc": { "end": { - "column": 2, - "line": 244, - "offset": 5452, + "column": 10, + "line": 253, + "offset": 5603, }, "start": { - "column": 1, - "line": 244, - "offset": 5451, + "column": 4, + "line": 253, + "offset": 5597, }, }, "range": [ - 5451, - 5452, + 5597, + 5603, ], - "start": 5451, - "type": "Punctuator", - "value": "/", + "start": 5597, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 5458, + "end": 5604, "loc": { "end": { - "column": 8, - "line": 244, - "offset": 5458, + "column": 11, + "line": 253, + "offset": 5604, }, "start": { - "column": 2, - "line": 244, - "offset": 5452, + "column": 10, + "line": 253, + "offset": 5603, }, }, "range": [ - 5452, - 5458, + 5603, + 5604, ], - "start": 5452, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 5603, + "type": "Punctuator", + "value": "=", }, { - "end": 5459, + "end": 5611, "loc": { "end": { - "column": 9, - "line": 244, - "offset": 5459, + "column": 18, + "line": 253, + "offset": 5611, }, "start": { - "column": 8, - "line": 244, - "offset": 5458, + "column": 11, + "line": 253, + "offset": 5604, }, }, "range": [ - 5458, - 5459, + 5604, + 5611, ], - "start": 5458, - "type": "Punctuator", - "value": ">", + "start": 5604, + "type": "String", + "value": ""150px"", }, { - "end": 5471, + "end": 5621, "loc": { "end": { - "column": 10, - "line": 246, - "offset": 5471, + "column": 5, + "line": 255, + "offset": 5621, }, "start": { - "column": 3, - "line": 246, - "offset": 5464, + "column": 4, + "line": 255, + "offset": 5620, }, }, "range": [ - 5464, - 5471, + 5620, + 5621, ], - "start": 5464, - "type": "JSXText", - "value": "Lazy 模式", + "start": 5620, + "type": "Punctuator", + "value": "{", }, { - "end": 5478, + "end": 5622, "loc": { "end": { - "column": 5, - "line": 248, - "offset": 5478, + "column": 6, + "line": 255, + "offset": 5622, }, "start": { - "column": 2, - "line": 248, - "offset": 5475, + "column": 5, + "line": 255, + "offset": 5621, }, }, "range": [ - 5475, - 5478, + 5621, + 5622, ], - "start": 5475, - "type": "JSXText", - "value": "依赖 ", + "start": 5621, + "type": "Punctuator", + "value": "{", }, { - "end": 5557, + "end": 5637, "loc": { "end": { - "column": 84, - "line": 248, - "offset": 5557, + "column": 14, + "line": 256, + "offset": 5637, }, "start": { - "column": 21, - "line": 248, - "offset": 5494, + "column": 6, + "line": 256, + "offset": 5629, }, }, "range": [ - 5494, - 5557, + 5629, + 5637, ], - "start": 5494, - "type": "JSXText", - "value": ",与默认模式按需加载每次切换 Tab 都会销毁重新创建相比,lazy 启用时在按需加载组件的同时会缓存已加载的 Tab 内容。", + "start": 5629, + "type": "Identifier", + "value": "template", }, { - "end": 5560, + "end": 5638, "loc": { "end": { - "column": 1, - "line": 250, - "offset": 5560, + "column": 15, + "line": 256, + "offset": 5638, }, "start": { - "column": 0, - "line": 250, - "offset": 5559, + "column": 14, + "line": 256, + "offset": 5637, }, }, "range": [ - 5559, - 5560, + 5637, + 5638, ], - "start": 5559, + "start": 5637, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 5566, + "end": 6635, "loc": { "end": { "column": 7, - "line": 250, - "offset": 5566, + "line": 285, + "offset": 6635, }, "start": { - "column": 1, - "line": 250, - "offset": 5560, + "column": 27, + "line": 256, + "offset": 5650, }, }, "range": [ - 5560, - 5566, + 5650, + 6635, ], - "start": 5560, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 5650, + "type": "Template", + "value": "\` + + + + + + + + + + Content 1 + + + Content 2 + + + Content 3 + + + \`", }, { - "end": 5571, + "end": 6636, "loc": { "end": { - "column": 3, - "line": 251, - "offset": 5571, + "column": 8, + "line": 285, + "offset": 6636, }, "start": { - "column": 2, - "line": 251, - "offset": 5570, - }, - }, + "column": 7, + "line": 285, + "offset": 6635, + }, + }, "range": [ - 5570, - 5571, + 6635, + 6636, ], - "start": 5570, + "start": 6635, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 5576, + "end": 6648, "loc": { "end": { - "column": 8, - "line": 251, - "offset": 5576, + "column": 11, + "line": 286, + "offset": 6648, }, "start": { - "column": 3, - "line": 251, - "offset": 5571, + "column": 6, + "line": 286, + "offset": 6643, }, }, "range": [ - 5571, - 5576, + 6643, + 6648, ], - "start": 5571, - "type": "JSXIdentifier", - "value": "Story", + "start": 6643, + "type": "Identifier", + "value": "props", }, { - "end": 5585, + "end": 6649, "loc": { "end": { - "column": 8, - "line": 252, - "offset": 5585, + "column": 12, + "line": 286, + "offset": 6649, }, "start": { - "column": 4, - "line": 252, - "offset": 5581, + "column": 11, + "line": 286, + "offset": 6648, }, }, "range": [ - 5581, - 5585, + 6648, + 6649, ], - "start": 5581, - "type": "JSXIdentifier", - "value": "name", + "start": 6648, + "type": "Punctuator", + "value": ":", }, { - "end": 5586, + "end": 6651, "loc": { "end": { - "column": 9, - "line": 252, - "offset": 5586, + "column": 14, + "line": 286, + "offset": 6651, }, "start": { - "column": 8, - "line": 252, - "offset": 5585, + "column": 13, + "line": 286, + "offset": 6650, }, }, "range": [ - 5585, - 5586, + 6650, + 6651, ], - "start": 5585, + "start": 6650, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 5592, + "end": 6664, "loc": { "end": { - "column": 15, - "line": 252, - "offset": 5592, + "column": 12, + "line": 287, + "offset": 6664, }, "start": { - "column": 9, - "line": 252, - "offset": 5586, + "column": 8, + "line": 287, + "offset": 6660, }, }, "range": [ - 5586, - 5592, + 6660, + 6664, ], - "start": 5586, - "type": "String", - "value": ""Lazy"", + "start": 6660, + "type": "Identifier", + "value": "tabs", }, { - "end": 5603, + "end": 6665, "loc": { "end": { - "column": 10, - "line": 253, - "offset": 5603, + "column": 13, + "line": 287, + "offset": 6665, }, "start": { - "column": 4, - "line": 253, - "offset": 5597, + "column": 12, + "line": 287, + "offset": 6664, }, }, "range": [ - 5597, - 5603, + 6664, + 6665, ], - "start": 5597, - "type": "JSXIdentifier", - "value": "height", + "start": 6664, + "type": "Punctuator", + "value": ":", }, { - "end": 5604, + "end": 6671, "loc": { "end": { - "column": 11, - "line": 253, - "offset": 5604, + "column": 19, + "line": 287, + "offset": 6671, }, "start": { - "column": 10, - "line": 253, - "offset": 5603, + "column": 14, + "line": 287, + "offset": 6666, }, }, "range": [ - 5603, - 5604, + 6666, + 6671, ], - "start": 5603, - "type": "Punctuator", - "value": "=", + "start": 6666, + "type": "Identifier", + "value": "Array", }, { - "end": 5611, + "end": 6672, "loc": { "end": { - "column": 18, - "line": 253, - "offset": 5611, + "column": 20, + "line": 287, + "offset": 6672, }, "start": { - "column": 11, - "line": 253, - "offset": 5604, + "column": 19, + "line": 287, + "offset": 6671, }, }, "range": [ - 5604, - 5611, + 6671, + 6672, ], - "start": 5604, - "type": "String", - "value": ""150px"", + "start": 6671, + "type": "Punctuator", + "value": ".", }, { - "end": 5621, + "end": 6676, "loc": { "end": { - "column": 5, - "line": 255, - "offset": 5621, + "column": 24, + "line": 287, + "offset": 6676, }, "start": { - "column": 4, - "line": 255, - "offset": 5620, + "column": 20, + "line": 287, + "offset": 6672, }, }, "range": [ - 5620, - 5621, + 6672, + 6676, ], - "start": 5620, - "type": "Punctuator", - "value": "{", + "start": 6672, + "type": "Identifier", + "value": "from", }, { - "end": 5622, + "end": 6677, "loc": { "end": { - "column": 6, - "line": 255, - "offset": 5622, + "column": 25, + "line": 287, + "offset": 6677, }, "start": { - "column": 5, - "line": 255, - "offset": 5621, + "column": 24, + "line": 287, + "offset": 6676, }, }, "range": [ - 5621, - 5622, + 6676, + 6677, ], - "start": 5621, + "start": 6676, "type": "Punctuator", - "value": "{", + "value": "(", }, { - "end": 5637, + "end": 6678, "loc": { "end": { - "column": 14, - "line": 256, - "offset": 5637, + "column": 26, + "line": 287, + "offset": 6678, }, "start": { - "column": 6, - "line": 256, - "offset": 5629, + "column": 25, + "line": 287, + "offset": 6677, }, }, "range": [ - 5629, - 5637, + 6677, + 6678, ], - "start": 5629, - "type": "Identifier", - "value": "template", + "start": 6677, + "type": "Punctuator", + "value": "{", }, { - "end": 5638, + "end": 6685, "loc": { "end": { - "column": 15, - "line": 256, - "offset": 5638, - }, - "start": { - "column": 14, - "line": 256, - "offset": 5637, + "column": 33, + "line": 287, + "offset": 6685, + }, + "start": { + "column": 27, + "line": 287, + "offset": 6679, }, }, "range": [ - 5637, - 5638, + 6679, + 6685, ], - "start": 5637, - "type": "Punctuator", - "value": ":", + "start": 6679, + "type": "Identifier", + "value": "length", }, { - "end": 6635, + "end": 6686, "loc": { "end": { - "column": 7, - "line": 285, - "offset": 6635, + "column": 34, + "line": 287, + "offset": 6686, }, "start": { - "column": 27, - "line": 256, - "offset": 5650, + "column": 33, + "line": 287, + "offset": 6685, }, }, "range": [ - 5650, - 6635, + 6685, + 6686, ], - "start": 5650, - "type": "Template", - "value": "\` - - - - - - - - - - Content 1 - - - Content 2 - - - Content 3 - - - \`", + "start": 6685, + "type": "Punctuator", + "value": ":", }, { - "end": 6636, + "end": 6689, "loc": { "end": { - "column": 8, - "line": 285, - "offset": 6636, + "column": 37, + "line": 287, + "offset": 6689, }, "start": { - "column": 7, - "line": 285, - "offset": 6635, + "column": 35, + "line": 287, + "offset": 6687, }, }, "range": [ - 6635, - 6636, + 6687, + 6689, ], - "start": 6635, - "type": "Punctuator", - "value": ",", + "start": 6687, + "type": "Numeric", + "value": "10", }, { - "end": 6648, + "end": 6691, "loc": { "end": { - "column": 11, - "line": 286, - "offset": 6648, + "column": 39, + "line": 287, + "offset": 6691, }, "start": { - "column": 6, - "line": 286, - "offset": 6643, + "column": 38, + "line": 287, + "offset": 6690, }, }, "range": [ - 6643, - 6648, + 6690, + 6691, ], - "start": 6643, - "type": "Identifier", - "value": "props", + "start": 6690, + "type": "Punctuator", + "value": "}", }, { - "end": 6649, + "end": 6692, "loc": { "end": { - "column": 12, - "line": 286, - "offset": 6649, + "column": 40, + "line": 287, + "offset": 6692, }, "start": { - "column": 11, - "line": 286, - "offset": 6648, + "column": 39, + "line": 287, + "offset": 6691, }, }, "range": [ - 6648, - 6649, + 6691, + 6692, ], - "start": 6648, + "start": 6691, "type": "Punctuator", - "value": ":", + "value": ")", }, { - "end": 6651, + "end": 6693, "loc": { "end": { - "column": 14, - "line": 286, - "offset": 6651, + "column": 41, + "line": 287, + "offset": 6693, }, "start": { - "column": 13, - "line": 286, - "offset": 6650, + "column": 40, + "line": 287, + "offset": 6692, }, }, "range": [ - 6650, - 6651, + 6692, + 6693, ], - "start": 6650, + "start": 6692, "type": "Punctuator", - "value": "{", + "value": ".", }, { - "end": 6664, + "end": 6697, "loc": { "end": { - "column": 12, + "column": 45, "line": 287, - "offset": 6664, + "offset": 6697, }, "start": { - "column": 8, + "column": 41, "line": 287, - "offset": 6660, + "offset": 6693, }, }, "range": [ - 6660, - 6664, + 6693, + 6697, ], - "start": 6660, + "start": 6693, "type": "Identifier", - "value": "tabs", + "value": "fill", }, { - "end": 6665, + "end": 6698, "loc": { "end": { - "column": 13, + "column": 46, "line": 287, - "offset": 6665, + "offset": 6698, }, "start": { - "column": 12, + "column": 45, "line": 287, - "offset": 6664, + "offset": 6697, }, }, "range": [ - 6664, - 6665, + 6697, + 6698, ], - "start": 6664, + "start": 6697, "type": "Punctuator", - "value": ":", + "value": "(", }, { - "end": 6671, + "end": 6699, "loc": { "end": { - "column": 19, + "column": 47, "line": 287, - "offset": 6671, + "offset": 6699, }, "start": { - "column": 14, + "column": 46, "line": 287, - "offset": 6666, + "offset": 6698, }, }, "range": [ - 6666, - 6671, + 6698, + 6699, ], - "start": 6666, - "type": "Identifier", - "value": "Array", + "start": 6698, + "type": "Punctuator", + "value": ")", }, { - "end": 6672, + "end": 6700, "loc": { "end": { - "column": 20, + "column": 48, "line": 287, - "offset": 6672, + "offset": 6700, }, "start": { - "column": 19, + "column": 47, "line": 287, - "offset": 6671, + "offset": 6699, }, }, "range": [ - 6671, - 6672, + 6699, + 6700, ], - "start": 6671, + "start": 6699, "type": "Punctuator", - "value": ".", + "value": ",", }, { - "end": 6676, + "end": 6713, "loc": { "end": { - "column": 24, - "line": 287, - "offset": 6676, + "column": 12, + "line": 288, + "offset": 6713, }, "start": { - "column": 20, - "line": 287, - "offset": 6672, + "column": 8, + "line": 288, + "offset": 6709, }, }, "range": [ - 6672, - 6676, + 6709, + 6713, ], - "start": 6672, + "start": 6709, "type": "Identifier", - "value": "from", + "value": "lazy", }, { - "end": 6677, + "end": 6714, "loc": { "end": { - "column": 25, - "line": 287, - "offset": 6677, + "column": 13, + "line": 288, + "offset": 6714, }, "start": { - "column": 24, - "line": 287, - "offset": 6676, + "column": 12, + "line": 288, + "offset": 6713, }, }, "range": [ - 6676, - 6677, + 6713, + 6714, ], - "start": 6676, + "start": 6713, "type": "Punctuator", - "value": "(", + "value": ":", }, { - "end": 6678, + "end": 6719, "loc": { "end": { - "column": 26, - "line": 287, - "offset": 6678, + "column": 18, + "line": 288, + "offset": 6719, }, "start": { - "column": 25, - "line": 287, - "offset": 6677, + "column": 14, + "line": 288, + "offset": 6715, }, }, "range": [ - 6677, - 6678, + 6715, + 6719, ], - "start": 6677, - "type": "Punctuator", - "value": "{", + "start": 6715, + "type": "Boolean", + "value": "true", }, { - "end": 6685, + "end": 6720, "loc": { "end": { - "column": 33, - "line": 287, - "offset": 6685, + "column": 19, + "line": 288, + "offset": 6720, }, "start": { - "column": 27, - "line": 287, - "offset": 6679, + "column": 18, + "line": 288, + "offset": 6719, }, }, "range": [ - 6679, - 6685, + 6719, + 6720, ], - "start": 6679, - "type": "Identifier", - "value": "length", + "start": 6719, + "type": "Punctuator", + "value": ",", }, { - "end": 6686, + "end": 6728, "loc": { "end": { - "column": 34, - "line": 287, - "offset": 6686, + "column": 7, + "line": 289, + "offset": 6728, }, "start": { - "column": 33, - "line": 287, - "offset": 6685, + "column": 6, + "line": 289, + "offset": 6727, }, }, "range": [ - 6685, - 6686, + 6727, + 6728, ], - "start": 6685, + "start": 6727, "type": "Punctuator", - "value": ":", + "value": "}", }, { - "end": 6689, + "end": 6729, "loc": { "end": { - "column": 37, - "line": 287, - "offset": 6689, + "column": 8, + "line": 289, + "offset": 6729, }, "start": { - "column": 35, - "line": 287, - "offset": 6687, + "column": 7, + "line": 289, + "offset": 6728, }, }, "range": [ - 6687, - 6689, + 6728, + 6729, ], - "start": 6687, - "type": "Numeric", - "value": "10", + "start": 6728, + "type": "Punctuator", + "value": ",", }, { - "end": 6691, + "end": 6735, "loc": { "end": { - "column": 39, - "line": 287, - "offset": 6691, + "column": 5, + "line": 290, + "offset": 6735, }, "start": { - "column": 38, - "line": 287, - "offset": 6690, + "column": 4, + "line": 290, + "offset": 6734, }, }, "range": [ - 6690, - 6691, + 6734, + 6735, ], - "start": 6690, + "start": 6734, "type": "Punctuator", "value": "}", }, { - "end": 6692, + "end": 6736, "loc": { "end": { - "column": 40, - "line": 287, - "offset": 6692, + "column": 6, + "line": 290, + "offset": 6736, }, "start": { - "column": 39, - "line": 287, - "offset": 6691, + "column": 5, + "line": 290, + "offset": 6735, }, }, "range": [ - 6691, - 6692, + 6735, + 6736, ], - "start": 6691, + "start": 6735, "type": "Punctuator", - "value": ")", + "value": "}", }, { - "end": 6693, + "end": 6740, "loc": { "end": { - "column": 41, - "line": 287, - "offset": 6693, + "column": 3, + "line": 291, + "offset": 6740, }, "start": { - "column": 40, - "line": 287, - "offset": 6692, + "column": 2, + "line": 291, + "offset": 6739, }, }, "range": [ - 6692, - 6693, + 6739, + 6740, ], - "start": 6692, + "start": 6739, "type": "Punctuator", - "value": ".", + "value": "<", }, { - "end": 6697, + "end": 6741, "loc": { "end": { - "column": 45, - "line": 287, - "offset": 6697, + "column": 4, + "line": 291, + "offset": 6741, }, "start": { - "column": 41, - "line": 287, - "offset": 6693, + "column": 3, + "line": 291, + "offset": 6740, }, }, "range": [ - 6693, - 6697, + 6740, + 6741, ], - "start": 6693, - "type": "Identifier", - "value": "fill", + "start": 6740, + "type": "Punctuator", + "value": "/", }, { - "end": 6698, + "end": 6746, "loc": { "end": { - "column": 46, - "line": 287, - "offset": 6698, + "column": 9, + "line": 291, + "offset": 6746, }, "start": { - "column": 45, - "line": 287, - "offset": 6697, + "column": 4, + "line": 291, + "offset": 6741, }, }, "range": [ - 6697, - 6698, + 6741, + 6746, ], - "start": 6697, - "type": "Punctuator", - "value": "(", + "start": 6741, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 6699, + "end": 6747, "loc": { "end": { - "column": 47, - "line": 287, - "offset": 6699, + "column": 10, + "line": 291, + "offset": 6747, }, "start": { - "column": 46, - "line": 287, - "offset": 6698, + "column": 9, + "line": 291, + "offset": 6746, }, }, "range": [ - 6698, - 6699, + 6746, + 6747, ], - "start": 6698, + "start": 6746, "type": "Punctuator", - "value": ")", + "value": ">", }, { - "end": 6700, + "end": 6749, "loc": { "end": { - "column": 48, - "line": 287, - "offset": 6700, + "column": 1, + "line": 292, + "offset": 6749, }, "start": { - "column": 47, - "line": 287, - "offset": 6699, + "column": 0, + "line": 292, + "offset": 6748, }, }, "range": [ - 6699, - 6700, + 6748, + 6749, ], - "start": 6699, + "start": 6748, "type": "Punctuator", - "value": ",", + "value": "<", }, { - "end": 6713, + "end": 6750, "loc": { "end": { - "column": 12, - "line": 288, - "offset": 6713, + "column": 2, + "line": 292, + "offset": 6750, }, "start": { - "column": 8, - "line": 288, - "offset": 6709, + "column": 1, + "line": 292, + "offset": 6749, }, }, "range": [ - 6709, - 6713, + 6749, + 6750, ], - "start": 6709, - "type": "Identifier", - "value": "lazy", + "start": 6749, + "type": "Punctuator", + "value": "/", }, { - "end": 6714, + "end": 6756, "loc": { "end": { - "column": 13, - "line": 288, - "offset": 6714, + "column": 8, + "line": 292, + "offset": 6756, }, "start": { - "column": 12, - "line": 288, - "offset": 6713, + "column": 2, + "line": 292, + "offset": 6750, }, }, "range": [ - 6713, - 6714, + 6750, + 6756, ], - "start": 6713, - "type": "Punctuator", - "value": ":", + "start": 6750, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 6719, + "end": 6757, "loc": { "end": { - "column": 18, - "line": 288, - "offset": 6719, + "column": 9, + "line": 292, + "offset": 6757, }, "start": { - "column": 14, - "line": 288, - "offset": 6715, + "column": 8, + "line": 292, + "offset": 6756, }, }, "range": [ - 6715, - 6719, + 6756, + 6757, ], - "start": 6715, - "type": "Boolean", - "value": "true", + "start": 6756, + "type": "Punctuator", + "value": ">", }, { - "end": 6720, + "end": 6768, "loc": { "end": { - "column": 19, - "line": 288, - "offset": 6720, + "column": 9, + "line": 294, + "offset": 6768, }, "start": { - "column": 18, - "line": 288, - "offset": 6719, + "column": 3, + "line": 294, + "offset": 6762, }, }, "range": [ - 6719, - 6720, + 6762, + 6768, ], - "start": 6719, - "type": "Punctuator", - "value": ",", + "start": 6762, + "type": "JSXText", + "value": "Tab 嵌套", }, { - "end": 6728, + "end": 6771, "loc": { "end": { - "column": 7, - "line": 289, - "offset": 6728, + "column": 1, + "line": 296, + "offset": 6771, }, "start": { - "column": 6, - "line": 289, - "offset": 6727, + "column": 0, + "line": 296, + "offset": 6770, }, }, "range": [ - 6727, - 6728, + 6770, + 6771, ], - "start": 6727, + "start": 6770, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 6729, + "end": 6777, "loc": { "end": { - "column": 8, - "line": 289, - "offset": 6729, + "column": 7, + "line": 296, + "offset": 6777, }, "start": { - "column": 7, - "line": 289, - "offset": 6728, + "column": 1, + "line": 296, + "offset": 6771, }, }, "range": [ - 6728, - 6729, + 6771, + 6777, ], - "start": 6728, - "type": "Punctuator", - "value": ",", + "start": 6771, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 6735, + "end": 6782, "loc": { "end": { - "column": 5, - "line": 290, - "offset": 6735, + "column": 3, + "line": 297, + "offset": 6782, }, "start": { - "column": 4, - "line": 290, - "offset": 6734, + "column": 2, + "line": 297, + "offset": 6781, }, }, "range": [ - 6734, - 6735, + 6781, + 6782, ], - "start": 6734, + "start": 6781, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 6736, + "end": 6787, "loc": { "end": { - "column": 6, - "line": 290, - "offset": 6736, + "column": 8, + "line": 297, + "offset": 6787, }, "start": { - "column": 5, - "line": 290, - "offset": 6735, + "column": 3, + "line": 297, + "offset": 6782, }, }, "range": [ - 6735, - 6736, + 6782, + 6787, ], - "start": 6735, - "type": "Punctuator", - "value": "}", + "start": 6782, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 6740, + "end": 6796, "loc": { "end": { - "column": 3, - "line": 291, - "offset": 6740, + "column": 8, + "line": 298, + "offset": 6796, }, "start": { - "column": 2, - "line": 291, - "offset": 6739, + "column": 4, + "line": 298, + "offset": 6792, }, }, "range": [ - 6739, - 6740, + 6792, + 6796, ], - "start": 6739, - "type": "Punctuator", - "value": "<", + "start": 6792, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 6741, + "end": 6797, "loc": { "end": { - "column": 4, - "line": 291, - "offset": 6741, + "column": 9, + "line": 298, + "offset": 6797, }, "start": { - "column": 3, - "line": 291, - "offset": 6740, + "column": 8, + "line": 298, + "offset": 6796, }, }, "range": [ - 6740, - 6741, + 6796, + 6797, ], - "start": 6740, + "start": 6796, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 6746, + "end": 6803, "loc": { "end": { - "column": 9, - "line": 291, - "offset": 6746, + "column": 15, + "line": 298, + "offset": 6803, }, "start": { - "column": 4, - "line": 291, - "offset": 6741, + "column": 9, + "line": 298, + "offset": 6797, }, }, "range": [ - 6741, - 6746, + 6797, + 6803, ], - "start": 6741, - "type": "JSXIdentifier", - "value": "Story", + "start": 6797, + "type": "String", + "value": ""Nest"", }, { - "end": 6747, + "end": 6814, "loc": { "end": { "column": 10, - "line": 291, - "offset": 6747, + "line": 299, + "offset": 6814, }, "start": { - "column": 9, - "line": 291, - "offset": 6746, + "column": 4, + "line": 299, + "offset": 6808, }, }, "range": [ - 6746, - 6747, + 6808, + 6814, ], - "start": 6746, - "type": "Punctuator", - "value": ">", + "start": 6808, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 6749, + "end": 6815, "loc": { "end": { - "column": 1, - "line": 292, - "offset": 6749, + "column": 11, + "line": 299, + "offset": 6815, }, "start": { - "column": 0, - "line": 292, - "offset": 6748, + "column": 10, + "line": 299, + "offset": 6814, }, }, "range": [ - 6748, - 6749, + 6814, + 6815, ], - "start": 6748, + "start": 6814, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 6750, + "end": 6822, "loc": { "end": { - "column": 2, - "line": 292, - "offset": 6750, + "column": 18, + "line": 299, + "offset": 6822, }, "start": { - "column": 1, - "line": 292, - "offset": 6749, + "column": 11, + "line": 299, + "offset": 6815, }, }, "range": [ - 6749, - 6750, + 6815, + 6822, ], - "start": 6749, - "type": "Punctuator", - "value": "/", + "start": 6815, + "type": "String", + "value": ""100px"", }, { - "end": 6756, + "end": 6832, "loc": { "end": { - "column": 8, - "line": 292, - "offset": 6756, + "column": 5, + "line": 301, + "offset": 6832, }, "start": { - "column": 2, - "line": 292, - "offset": 6750, + "column": 4, + "line": 301, + "offset": 6831, }, }, "range": [ - 6750, - 6756, + 6831, + 6832, ], - "start": 6750, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 6831, + "type": "Punctuator", + "value": "{", }, { - "end": 6757, + "end": 6833, "loc": { "end": { - "column": 9, - "line": 292, - "offset": 6757, + "column": 6, + "line": 301, + "offset": 6833, }, "start": { - "column": 8, - "line": 292, - "offset": 6756, + "column": 5, + "line": 301, + "offset": 6832, }, }, "range": [ - 6756, - 6757, + 6832, + 6833, ], - "start": 6756, + "start": 6832, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 6768, + "end": 6848, "loc": { "end": { - "column": 9, - "line": 294, - "offset": 6768, + "column": 14, + "line": 302, + "offset": 6848, }, "start": { - "column": 3, - "line": 294, - "offset": 6762, + "column": 6, + "line": 302, + "offset": 6840, }, }, "range": [ - 6762, - 6768, + 6840, + 6848, ], - "start": 6762, - "type": "JSXText", - "value": "Tab 嵌套", + "start": 6840, + "type": "Identifier", + "value": "template", }, { - "end": 6771, + "end": 6849, "loc": { "end": { - "column": 1, - "line": 296, - "offset": 6771, + "column": 15, + "line": 302, + "offset": 6849, }, "start": { - "column": 0, - "line": 296, - "offset": 6770, + "column": 14, + "line": 302, + "offset": 6848, }, }, "range": [ - 6770, - 6771, + 6848, + 6849, ], - "start": 6770, + "start": 6848, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 6777, + "end": 8122, "loc": { "end": { - "column": 7, - "line": 296, - "offset": 6777, + "column": 25, + "line": 335, + "offset": 8122, }, "start": { - "column": 1, - "line": 296, - "offset": 6771, + "column": 27, + "line": 302, + "offset": 6861, }, }, "range": [ - 6771, - 6777, + 6861, + 8122, ], - "start": 6771, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 6861, + "type": "Template", + "value": "\` + + + + + + + + + Content 1 + + + + + + + Content 2-1 + + + + + Content 2-2 + + + + + + \`", }, { - "end": 6782, + "end": 8123, "loc": { "end": { - "column": 3, - "line": 297, - "offset": 6782, + "column": 26, + "line": 335, + "offset": 8123, }, "start": { - "column": 2, - "line": 297, - "offset": 6781, + "column": 25, + "line": 335, + "offset": 8122, }, }, "range": [ - 6781, - 6782, + 8122, + 8123, ], - "start": 6781, + "start": 8122, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 6787, + "end": 8135, "loc": { "end": { - "column": 8, - "line": 297, - "offset": 6787, + "column": 11, + "line": 336, + "offset": 8135, }, "start": { - "column": 3, - "line": 297, - "offset": 6782, + "column": 6, + "line": 336, + "offset": 8130, }, }, "range": [ - 6782, - 6787, + 8130, + 8135, ], - "start": 6782, - "type": "JSXIdentifier", - "value": "Story", + "start": 8130, + "type": "Identifier", + "value": "props", }, { - "end": 6796, + "end": 8136, "loc": { "end": { - "column": 8, - "line": 298, - "offset": 6796, + "column": 12, + "line": 336, + "offset": 8136, }, "start": { - "column": 4, - "line": 298, - "offset": 6792, + "column": 11, + "line": 336, + "offset": 8135, }, }, "range": [ - 6792, - 6796, + 8135, + 8136, ], - "start": 6792, - "type": "JSXIdentifier", - "value": "name", + "start": 8135, + "type": "Punctuator", + "value": ":", }, { - "end": 6797, + "end": 8138, "loc": { "end": { - "column": 9, - "line": 298, - "offset": 6797, + "column": 14, + "line": 336, + "offset": 8138, }, "start": { - "column": 8, - "line": 298, - "offset": 6796, + "column": 13, + "line": 336, + "offset": 8137, }, }, "range": [ - 6796, - 6797, + 8137, + 8138, ], - "start": 6796, + "start": 8137, "type": "Punctuator", - "value": "=", + "value": "{", }, { - "end": 6803, + "end": 8151, "loc": { "end": { - "column": 15, - "line": 298, - "offset": 6803, + "column": 12, + "line": 337, + "offset": 8151, }, "start": { - "column": 9, - "line": 298, - "offset": 6797, + "column": 8, + "line": 337, + "offset": 8147, }, }, "range": [ - 6797, - 6803, + 8147, + 8151, ], - "start": 6797, - "type": "String", - "value": ""Nest"", + "start": 8147, + "type": "Identifier", + "value": "lazy", }, { - "end": 6814, + "end": 8152, "loc": { "end": { - "column": 10, - "line": 299, - "offset": 6814, + "column": 13, + "line": 337, + "offset": 8152, }, "start": { - "column": 4, - "line": 299, - "offset": 6808, + "column": 12, + "line": 337, + "offset": 8151, }, }, "range": [ - 6808, - 6814, + 8151, + 8152, ], - "start": 6808, - "type": "JSXIdentifier", - "value": "height", + "start": 8151, + "type": "Punctuator", + "value": ":", }, { - "end": 6815, + "end": 8157, "loc": { "end": { - "column": 11, - "line": 299, - "offset": 6815, + "column": 18, + "line": 337, + "offset": 8157, }, "start": { - "column": 10, - "line": 299, - "offset": 6814, + "column": 14, + "line": 337, + "offset": 8153, }, }, "range": [ - 6814, - 6815, + 8153, + 8157, ], - "start": 6814, - "type": "Punctuator", - "value": "=", + "start": 8153, + "type": "Boolean", + "value": "true", }, { - "end": 6822, + "end": 8158, "loc": { "end": { - "column": 18, - "line": 299, - "offset": 6822, + "column": 19, + "line": 337, + "offset": 8158, }, "start": { - "column": 11, - "line": 299, - "offset": 6815, + "column": 18, + "line": 337, + "offset": 8157, }, }, "range": [ - 6815, - 6822, + 8157, + 8158, ], - "start": 6815, - "type": "String", - "value": ""100px"", + "start": 8157, + "type": "Punctuator", + "value": ",", }, { - "end": 6832, + "end": 8166, "loc": { "end": { - "column": 5, - "line": 301, - "offset": 6832, + "column": 7, + "line": 338, + "offset": 8166, }, "start": { - "column": 4, - "line": 301, - "offset": 6831, + "column": 6, + "line": 338, + "offset": 8165, }, }, "range": [ - 6831, - 6832, + 8165, + 8166, ], - "start": 6831, + "start": 8165, "type": "Punctuator", - "value": "{", + "value": "}", }, { - "end": 6833, + "end": 8167, "loc": { "end": { - "column": 6, - "line": 301, - "offset": 6833, + "column": 8, + "line": 338, + "offset": 8167, }, "start": { - "column": 5, - "line": 301, - "offset": 6832, + "column": 7, + "line": 338, + "offset": 8166, }, }, "range": [ - 6832, - 6833, + 8166, + 8167, ], - "start": 6832, + "start": 8166, "type": "Punctuator", - "value": "{", + "value": ",", }, { - "end": 6848, + "end": 8173, "loc": { "end": { - "column": 14, - "line": 302, - "offset": 6848, + "column": 5, + "line": 339, + "offset": 8173, }, "start": { - "column": 6, - "line": 302, - "offset": 6840, + "column": 4, + "line": 339, + "offset": 8172, }, }, "range": [ - 6840, - 6848, + 8172, + 8173, ], - "start": 6840, - "type": "Identifier", - "value": "template", + "start": 8172, + "type": "Punctuator", + "value": "}", }, { - "end": 6849, + "end": 8174, "loc": { "end": { - "column": 15, - "line": 302, - "offset": 6849, + "column": 6, + "line": 339, + "offset": 8174, }, "start": { - "column": 14, - "line": 302, - "offset": 6848, + "column": 5, + "line": 339, + "offset": 8173, }, }, "range": [ - 6848, - 6849, + 8173, + 8174, ], - "start": 6848, + "start": 8173, "type": "Punctuator", - "value": ":", + "value": "}", }, { - "end": 8122, + "end": 8178, "loc": { "end": { - "column": 25, - "line": 335, - "offset": 8122, + "column": 3, + "line": 340, + "offset": 8178, }, "start": { - "column": 27, - "line": 302, - "offset": 6861, + "column": 2, + "line": 340, + "offset": 8177, }, }, "range": [ - 6861, - 8122, + 8177, + 8178, ], - "start": 6861, - "type": "Template", - "value": "\` - - - - - - - - - Content 1 - - - - - - - Content 2-1 - - - - - Content 2-2 - - - - - - \`", + "start": 8177, + "type": "Punctuator", + "value": "<", }, { - "end": 8123, + "end": 8179, "loc": { "end": { - "column": 26, - "line": 335, - "offset": 8123, + "column": 4, + "line": 340, + "offset": 8179, }, "start": { - "column": 25, - "line": 335, - "offset": 8122, + "column": 3, + "line": 340, + "offset": 8178, }, }, "range": [ - 8122, - 8123, + 8178, + 8179, ], - "start": 8122, + "start": 8178, "type": "Punctuator", - "value": ",", + "value": "/", }, { - "end": 8135, + "end": 8184, "loc": { "end": { - "column": 11, - "line": 336, - "offset": 8135, + "column": 9, + "line": 340, + "offset": 8184, }, "start": { - "column": 6, - "line": 336, - "offset": 8130, + "column": 4, + "line": 340, + "offset": 8179, }, }, "range": [ - 8130, - 8135, + 8179, + 8184, ], - "start": 8130, - "type": "Identifier", - "value": "props", + "start": 8179, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 8136, + "end": 8185, "loc": { "end": { - "column": 12, - "line": 336, - "offset": 8136, + "column": 10, + "line": 340, + "offset": 8185, }, "start": { - "column": 11, - "line": 336, - "offset": 8135, + "column": 9, + "line": 340, + "offset": 8184, }, }, "range": [ - 8135, - 8136, + 8184, + 8185, ], - "start": 8135, + "start": 8184, "type": "Punctuator", - "value": ":", + "value": ">", }, { - "end": 8138, + "end": 8187, "loc": { "end": { - "column": 14, - "line": 336, - "offset": 8138, + "column": 1, + "line": 341, + "offset": 8187, }, "start": { - "column": 13, - "line": 336, - "offset": 8137, + "column": 0, + "line": 341, + "offset": 8186, }, }, "range": [ - 8137, - 8138, + 8186, + 8187, ], - "start": 8137, + "start": 8186, "type": "Punctuator", - "value": "{", + "value": "<", }, { - "end": 8151, + "end": 8188, "loc": { "end": { - "column": 12, - "line": 337, - "offset": 8151, + "column": 2, + "line": 341, + "offset": 8188, }, "start": { - "column": 8, - "line": 337, - "offset": 8147, + "column": 1, + "line": 341, + "offset": 8187, }, }, "range": [ - 8147, - 8151, + 8187, + 8188, ], - "start": 8147, - "type": "Identifier", - "value": "lazy", + "start": 8187, + "type": "Punctuator", + "value": "/", }, { - "end": 8152, + "end": 8194, "loc": { "end": { - "column": 13, - "line": 337, - "offset": 8152, + "column": 8, + "line": 341, + "offset": 8194, }, "start": { - "column": 12, - "line": 337, - "offset": 8151, + "column": 2, + "line": 341, + "offset": 8188, }, }, "range": [ - 8151, - 8152, + 8188, + 8194, ], - "start": 8151, - "type": "Punctuator", - "value": ":", + "start": 8188, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 8157, + "end": 8195, "loc": { "end": { - "column": 18, - "line": 337, - "offset": 8157, + "column": 9, + "line": 341, + "offset": 8195, }, "start": { - "column": 14, - "line": 337, - "offset": 8153, + "column": 8, + "line": 341, + "offset": 8194, }, }, "range": [ - 8153, - 8157, + 8194, + 8195, ], - "start": 8153, - "type": "Boolean", - "value": "true", + "start": 8194, + "type": "Punctuator", + "value": ">", }, { - "end": 8158, + "end": 8209, "loc": { "end": { - "column": 19, - "line": 337, - "offset": 8158, + "column": 12, + "line": 343, + "offset": 8209, }, "start": { - "column": 18, - "line": 337, - "offset": 8157, + "column": 3, + "line": 343, + "offset": 8200, }, }, "range": [ - 8157, - 8158, + 8200, + 8209, ], - "start": 8157, - "type": "Punctuator", - "value": ",", + "start": 8200, + "type": "JSXText", + "value": "自定义 Title", }, { - "end": 8166, + "end": 8212, "loc": { "end": { - "column": 7, - "line": 338, - "offset": 8166, - }, + "column": 1, + "line": 345, + "offset": 8212, + }, "start": { - "column": 6, - "line": 338, - "offset": 8165, + "column": 0, + "line": 345, + "offset": 8211, }, }, "range": [ - 8165, - 8166, + 8211, + 8212, ], - "start": 8165, + "start": 8211, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 8167, + "end": 8218, "loc": { "end": { - "column": 8, - "line": 338, - "offset": 8167, + "column": 7, + "line": 345, + "offset": 8218, }, "start": { - "column": 7, - "line": 338, - "offset": 8166, + "column": 1, + "line": 345, + "offset": 8212, }, }, "range": [ - 8166, - 8167, + 8212, + 8218, ], - "start": 8166, - "type": "Punctuator", - "value": ",", + "start": 8212, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 8173, + "end": 8223, "loc": { "end": { - "column": 5, - "line": 339, - "offset": 8173, + "column": 3, + "line": 346, + "offset": 8223, }, "start": { - "column": 4, - "line": 339, - "offset": 8172, + "column": 2, + "line": 346, + "offset": 8222, }, }, "range": [ - 8172, - 8173, + 8222, + 8223, ], - "start": 8172, + "start": 8222, "type": "Punctuator", - "value": "}", + "value": "<", }, { - "end": 8174, + "end": 8228, "loc": { "end": { - "column": 6, - "line": 339, - "offset": 8174, + "column": 8, + "line": 346, + "offset": 8228, }, "start": { - "column": 5, - "line": 339, - "offset": 8173, + "column": 3, + "line": 346, + "offset": 8223, }, }, "range": [ - 8173, - 8174, + 8223, + 8228, ], - "start": 8173, - "type": "Punctuator", - "value": "}", + "start": 8223, + "type": "JSXIdentifier", + "value": "Story", }, { - "end": 8178, + "end": 8237, "loc": { "end": { - "column": 3, - "line": 340, - "offset": 8178, + "column": 8, + "line": 347, + "offset": 8237, }, "start": { - "column": 2, - "line": 340, - "offset": 8177, + "column": 4, + "line": 347, + "offset": 8233, }, }, "range": [ - 8177, - 8178, + 8233, + 8237, ], - "start": 8177, - "type": "Punctuator", - "value": "<", + "start": 8233, + "type": "JSXIdentifier", + "value": "name", }, { - "end": 8179, + "end": 8238, "loc": { "end": { - "column": 4, - "line": 340, - "offset": 8179, + "column": 9, + "line": 347, + "offset": 8238, }, "start": { - "column": 3, - "line": 340, - "offset": 8178, + "column": 8, + "line": 347, + "offset": 8237, }, }, "range": [ - 8178, - 8179, + 8237, + 8238, ], - "start": 8178, + "start": 8237, "type": "Punctuator", - "value": "/", + "value": "=", }, { - "end": 8184, + "end": 8245, "loc": { "end": { - "column": 9, - "line": 340, - "offset": 8184, + "column": 16, + "line": 347, + "offset": 8245, }, "start": { - "column": 4, - "line": 340, - "offset": 8179, + "column": 9, + "line": 347, + "offset": 8238, }, }, "range": [ - 8179, - 8184, + 8238, + 8245, ], - "start": 8179, - "type": "JSXIdentifier", - "value": "Story", + "start": 8238, + "type": "String", + "value": ""Title"", }, { - "end": 8185, + "end": 8256, "loc": { "end": { "column": 10, - "line": 340, - "offset": 8185, + "line": 348, + "offset": 8256, }, "start": { - "column": 9, - "line": 340, - "offset": 8184, + "column": 4, + "line": 348, + "offset": 8250, }, }, "range": [ - 8184, - 8185, + 8250, + 8256, ], - "start": 8184, - "type": "Punctuator", - "value": ">", + "start": 8250, + "type": "JSXIdentifier", + "value": "height", }, { - "end": 8187, + "end": 8257, "loc": { "end": { - "column": 1, - "line": 341, - "offset": 8187, + "column": 11, + "line": 348, + "offset": 8257, }, "start": { - "column": 0, - "line": 341, - "offset": 8186, + "column": 10, + "line": 348, + "offset": 8256, }, }, "range": [ - 8186, - 8187, + 8256, + 8257, ], - "start": 8186, + "start": 8256, "type": "Punctuator", - "value": "<", + "value": "=", }, { - "end": 8188, + "end": 8264, "loc": { "end": { - "column": 2, - "line": 341, - "offset": 8188, + "column": 18, + "line": 348, + "offset": 8264, }, "start": { - "column": 1, - "line": 341, - "offset": 8187, + "column": 11, + "line": 348, + "offset": 8257, }, }, "range": [ - 8187, - 8188, + 8257, + 8264, ], - "start": 8187, - "type": "Punctuator", - "value": "/", + "start": 8257, + "type": "String", + "value": ""100px"", }, { - "end": 8194, + "end": 8274, "loc": { "end": { - "column": 8, - "line": 341, - "offset": 8194, + "column": 5, + "line": 350, + "offset": 8274, }, "start": { - "column": 2, - "line": 341, - "offset": 8188, + "column": 4, + "line": 350, + "offset": 8273, }, }, "range": [ - 8188, - 8194, + 8273, + 8274, ], - "start": 8188, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 8273, + "type": "Punctuator", + "value": "{", }, { - "end": 8195, + "end": 8275, "loc": { "end": { - "column": 9, - "line": 341, - "offset": 8195, - }, + "column": 6, + "line": 350, + "offset": 8275, + }, "start": { - "column": 8, - "line": 341, - "offset": 8194, + "column": 5, + "line": 350, + "offset": 8274, }, }, "range": [ - 8194, - 8195, + 8274, + 8275, ], - "start": 8194, + "start": 8274, "type": "Punctuator", - "value": ">", + "value": "{", }, { - "end": 8209, + "end": 8290, "loc": { "end": { - "column": 12, - "line": 343, - "offset": 8209, + "column": 14, + "line": 351, + "offset": 8290, }, "start": { - "column": 3, - "line": 343, - "offset": 8200, + "column": 6, + "line": 351, + "offset": 8282, }, }, "range": [ - 8200, - 8209, + 8282, + 8290, ], - "start": 8200, - "type": "JSXText", - "value": "自定义 Title", + "start": 8282, + "type": "Identifier", + "value": "template", }, { - "end": 8212, + "end": 8291, "loc": { "end": { - "column": 1, - "line": 345, - "offset": 8212, + "column": 15, + "line": 351, + "offset": 8291, }, "start": { - "column": 0, - "line": 345, - "offset": 8211, + "column": 14, + "line": 351, + "offset": 8290, }, }, "range": [ - 8211, - 8212, + 8290, + 8291, ], - "start": 8211, + "start": 8290, "type": "Punctuator", - "value": "<", + "value": ":", }, { - "end": 8218, + "end": 8738, "loc": { "end": { "column": 7, - "line": 345, - "offset": 8218, + "line": 359, + "offset": 8738, }, "start": { - "column": 1, - "line": 345, - "offset": 8212, + "column": 27, + "line": 351, + "offset": 8303, }, }, "range": [ - 8212, - 8218, + 8303, + 8738, ], - "start": 8212, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 8303, + "type": "Template", + "value": "\` + + Title + Content 1 + Content 2 + Content 3 + Content 4 + + \`", }, { - "end": 8223, + "end": 8739, "loc": { "end": { - "column": 3, - "line": 346, - "offset": 8223, + "column": 8, + "line": 359, + "offset": 8739, }, "start": { - "column": 2, - "line": 346, - "offset": 8222, + "column": 7, + "line": 359, + "offset": 8738, }, }, "range": [ - 8222, - 8223, + 8738, + 8739, ], - "start": 8222, + "start": 8738, "type": "Punctuator", - "value": "<", + "value": ",", }, { - "end": 8228, + "end": 8745, "loc": { "end": { - "column": 8, - "line": 346, - "offset": 8228, + "column": 5, + "line": 360, + "offset": 8745, }, "start": { - "column": 3, - "line": 346, - "offset": 8223, + "column": 4, + "line": 360, + "offset": 8744, }, }, "range": [ - 8223, - 8228, + 8744, + 8745, ], - "start": 8223, - "type": "JSXIdentifier", - "value": "Story", + "start": 8744, + "type": "Punctuator", + "value": "}", }, { - "end": 8237, + "end": 8746, "loc": { "end": { - "column": 8, - "line": 347, - "offset": 8237, + "column": 6, + "line": 360, + "offset": 8746, }, "start": { - "column": 4, - "line": 347, - "offset": 8233, + "column": 5, + "line": 360, + "offset": 8745, }, }, "range": [ - 8233, - 8237, + 8745, + 8746, ], - "start": 8233, - "type": "JSXIdentifier", - "value": "name", + "start": 8745, + "type": "Punctuator", + "value": "}", }, { - "end": 8238, + "end": 8750, "loc": { "end": { - "column": 9, - "line": 347, - "offset": 8238, + "column": 3, + "line": 361, + "offset": 8750, }, "start": { - "column": 8, - "line": 347, - "offset": 8237, + "column": 2, + "line": 361, + "offset": 8749, }, }, "range": [ - 8237, - 8238, + 8749, + 8750, ], - "start": 8237, + "start": 8749, "type": "Punctuator", - "value": "=", + "value": "<", }, { - "end": 8245, + "end": 8751, "loc": { "end": { - "column": 16, - "line": 347, - "offset": 8245, + "column": 4, + "line": 361, + "offset": 8751, }, "start": { - "column": 9, - "line": 347, - "offset": 8238, + "column": 3, + "line": 361, + "offset": 8750, }, }, "range": [ - 8238, - 8245, + 8750, + 8751, ], - "start": 8238, - "type": "String", - "value": ""Title"", + "start": 8750, + "type": "Punctuator", + "value": "/", }, { - "end": 8256, + "end": 8756, "loc": { "end": { - "column": 10, - "line": 348, - "offset": 8256, + "column": 9, + "line": 361, + "offset": 8756, }, "start": { "column": 4, - "line": 348, - "offset": 8250, + "line": 361, + "offset": 8751, }, }, "range": [ - 8250, - 8256, + 8751, + 8756, ], - "start": 8250, + "start": 8751, "type": "JSXIdentifier", - "value": "height", + "value": "Story", }, { - "end": 8257, + "end": 8757, "loc": { "end": { - "column": 11, - "line": 348, - "offset": 8257, + "column": 10, + "line": 361, + "offset": 8757, }, "start": { - "column": 10, - "line": 348, - "offset": 8256, + "column": 9, + "line": 361, + "offset": 8756, }, }, "range": [ - 8256, - 8257, + 8756, + 8757, ], - "start": 8256, + "start": 8756, "type": "Punctuator", - "value": "=", + "value": ">", }, { - "end": 8264, + "end": 8759, "loc": { "end": { - "column": 18, - "line": 348, - "offset": 8264, + "column": 1, + "line": 362, + "offset": 8759, }, "start": { - "column": 11, - "line": 348, - "offset": 8257, + "column": 0, + "line": 362, + "offset": 8758, }, }, "range": [ - 8257, - 8264, + 8758, + 8759, ], - "start": 8257, - "type": "String", - "value": ""100px"", + "start": 8758, + "type": "Punctuator", + "value": "<", }, { - "end": 8274, + "end": 8760, "loc": { "end": { - "column": 5, - "line": 350, - "offset": 8274, + "column": 2, + "line": 362, + "offset": 8760, }, "start": { - "column": 4, - "line": 350, - "offset": 8273, + "column": 1, + "line": 362, + "offset": 8759, }, }, "range": [ - 8273, - 8274, + 8759, + 8760, ], - "start": 8273, + "start": 8759, "type": "Punctuator", - "value": "{", + "value": "/", }, { - "end": 8275, + "end": 8766, "loc": { "end": { - "column": 6, - "line": 350, - "offset": 8275, + "column": 8, + "line": 362, + "offset": 8766, }, "start": { - "column": 5, - "line": 350, - "offset": 8274, + "column": 2, + "line": 362, + "offset": 8760, }, }, "range": [ - 8274, - 8275, + 8760, + 8766, ], - "start": 8274, - "type": "Punctuator", - "value": "{", + "start": 8760, + "type": "JSXIdentifier", + "value": "Canvas", }, { - "end": 8290, + "end": 8767, "loc": { "end": { - "column": 14, - "line": 351, - "offset": 8290, + "column": 9, + "line": 362, + "offset": 8767, }, "start": { - "column": 6, - "line": 351, - "offset": 8282, + "column": 8, + "line": 362, + "offset": 8766, }, }, "range": [ - 8282, - 8290, + 8766, + 8767, ], - "start": 8282, - "type": "Identifier", - "value": "template", + "start": 8766, + "type": "Punctuator", + "value": ">", }, { - "end": 8291, + "end": 8796, "loc": { "end": { - "column": 15, - "line": 351, - "offset": 8291, + "column": 27, + "line": 364, + "offset": 8796, }, "start": { - "column": 14, - "line": 351, - "offset": 8290, + "column": 3, + "line": 364, + "offset": 8772, }, }, "range": [ - 8290, - 8291, + 8772, + 8796, ], - "start": 8290, - "type": "Punctuator", - "value": ":", + "start": 8772, + "type": "JSXText", + "value": "TabGroupComponent Inputs", }, { - "end": 8738, + "end": 8802, "loc": { "end": { - "column": 7, - "line": 359, - "offset": 8738, + "column": 4, + "line": 366, + "offset": 8802, }, "start": { - "column": 27, - "line": 351, - "offset": 8303, + "column": 2, + "line": 366, + "offset": 8800, }, }, "range": [ - 8303, - 8738, + 8800, + 8802, ], - "start": 8303, - "type": "Template", - "value": "\` - - Title - Content 1 - Content 2 - Content 3 - Content 4 - - \`", + "start": 8800, + "type": "JSXText", + "value": "名称", }, { - "end": 8739, + "end": 8816, "loc": { "end": { - "column": 8, - "line": 359, - "offset": 8739, + "column": 18, + "line": 366, + "offset": 8816, }, "start": { - "column": 7, - "line": 359, - "offset": 8738, + "column": 16, + "line": 366, + "offset": 8814, }, }, "range": [ - 8738, - 8739, + 8814, + 8816, ], - "start": 8738, - "type": "Punctuator", - "value": ",", + "start": 8814, + "type": "JSXText", + "value": "类型", }, { - "end": 8745, + "end": 8825, "loc": { "end": { - "column": 5, - "line": 360, - "offset": 8745, + "column": 27, + "line": 366, + "offset": 8825, }, "start": { - "column": 4, - "line": 360, - "offset": 8744, + "column": 24, + "line": 366, + "offset": 8822, }, }, "range": [ - 8744, - 8745, + 8822, + 8825, ], - "start": 8744, - "type": "Punctuator", - "value": "}", + "start": 8822, + "type": "JSXText", + "value": "默认值", }, { - "end": 8746, + "end": 8838, "loc": { "end": { - "column": 6, - "line": 360, - "offset": 8746, + "column": 40, + "line": 366, + "offset": 8838, }, "start": { - "column": 5, - "line": 360, - "offset": 8745, + "column": 38, + "line": 366, + "offset": 8836, }, }, "range": [ - 8745, - 8746, + 8836, + 8838, ], - "start": 8745, - "type": "Punctuator", - "value": "}", + "start": 8836, + "type": "JSXText", + "value": "描述", }, { - "end": 8750, + "end": 8921, "loc": { "end": { - "column": 3, - "line": 361, - "offset": 8750, + "column": 6, + "line": 368, + "offset": 8921, }, "start": { "column": 2, - "line": 361, - "offset": 8749, + "line": 368, + "offset": 8917, }, }, "range": [ - 8749, - 8750, + 8917, + 8921, ], - "start": 8749, - "type": "Punctuator", - "value": "<", + "start": 8917, + "type": "JSXText", + "value": "type", }, { - "end": 8751, + "end": 8940, "loc": { "end": { - "column": 4, - "line": 361, - "offset": 8751, + "column": 25, + "line": 368, + "offset": 8940, }, "start": { - "column": 3, - "line": 361, - "offset": 8750, + "column": 18, + "line": 368, + "offset": 8933, }, }, "range": [ - 8750, - 8751, + 8933, + 8940, ], - "start": 8750, - "type": "Punctuator", - "value": "/", + "start": 8933, + "type": "JSXText", + "value": "TabType", }, { - "end": 8756, + "end": 8955, "loc": { "end": { - "column": 9, - "line": 361, - "offset": 8756, + "column": 40, + "line": 368, + "offset": 8955, }, "start": { - "column": 4, - "line": 361, - "offset": 8751, + "column": 28, + "line": 368, + "offset": 8943, }, }, "range": [ - 8751, - 8756, + 8943, + 8955, ], - "start": 8751, - "type": "JSXIdentifier", - "value": "Story", + "start": 8943, + "type": "JSXText", + "value": "TabType.Line", }, { - "end": 8757, + "end": 8964, "loc": { "end": { - "column": 10, - "line": 361, - "offset": 8757, + "column": 49, + "line": 368, + "offset": 8964, }, "start": { - "column": 9, - "line": 361, - "offset": 8756, + "column": 45, + "line": 368, + "offset": 8960, }, }, "range": [ - 8756, - 8757, + 8960, + 8964, ], - "start": 8756, - "type": "Punctuator", - "value": ">", + "start": 8960, + "type": "JSXText", + "value": "样式主题", }, { - "end": 8759, + "end": 8980, "loc": { "end": { - "column": 1, - "line": 362, - "offset": 8759, + "column": 6, + "line": 369, + "offset": 8980, }, "start": { - "column": 0, - "line": 362, - "offset": 8758, + "column": 2, + "line": 369, + "offset": 8976, }, }, "range": [ - 8758, - 8759, + 8976, + 8980, ], - "start": 8758, - "type": "Punctuator", - "value": "<", + "start": 8976, + "type": "JSXText", + "value": "size", }, { - "end": 8760, + "end": 8999, "loc": { "end": { - "column": 2, - "line": 362, - "offset": 8760, + "column": 25, + "line": 369, + "offset": 8999, }, "start": { - "column": 1, - "line": 362, - "offset": 8759, + "column": 18, + "line": 369, + "offset": 8992, }, }, "range": [ - 8759, - 8760, + 8992, + 8999, ], - "start": 8759, - "type": "Punctuator", - "value": "/", + "start": 8992, + "type": "JSXText", + "value": "TabSize", }, { - "end": 8766, + "end": 9016, "loc": { "end": { - "column": 8, - "line": 362, - "offset": 8766, + "column": 42, + "line": 369, + "offset": 9016, }, "start": { - "column": 2, - "line": 362, - "offset": 8760, + "column": 28, + "line": 369, + "offset": 9002, }, }, "range": [ - 8760, - 8766, + 9002, + 9016, ], - "start": 8760, - "type": "JSXIdentifier", - "value": "Canvas", + "start": 9002, + "type": "JSXText", + "value": "TabSize.Medium", }, { - "end": 8767, + "end": 9021, "loc": { "end": { - "column": 9, - "line": 362, - "offset": 8767, + "column": 47, + "line": 369, + "offset": 9021, }, "start": { - "column": 8, - "line": 362, - "offset": 8766, + "column": 45, + "line": 369, + "offset": 9019, }, }, "range": [ - 8766, - 8767, + 9019, + 9021, ], - "start": 8766, - "type": "Punctuator", - "value": ">", + "start": 9019, + "type": "JSXText", + "value": "尺寸", }, { - "end": 8796, + "end": 9040, "loc": { "end": { - "column": 27, - "line": 364, - "offset": 8796, + "column": 5, + "line": 370, + "offset": 9040, }, "start": { - "column": 3, - "line": 364, - "offset": 8772, + "column": 2, + "line": 370, + "offset": 9037, }, }, "range": [ - 8772, - 8796, + 9037, + 9040, ], - "start": 8772, + "start": 9037, "type": "JSXText", - "value": "TabGroupComponent Inputs", + "value": "tab", }, { - "end": 8802, + "end": 9059, "loc": { "end": { - "column": 4, - "line": 366, - "offset": 8802, + "column": 24, + "line": 370, + "offset": 9059, }, "start": { - "column": 2, - "line": 366, - "offset": 8800, + "column": 18, + "line": 370, + "offset": 9053, }, }, "range": [ - 8800, - 8802, + 9053, + 9059, ], - "start": 8800, + "start": 9053, "type": "JSXText", - "value": "名称", + "value": "string", }, { - "end": 8816, + "end": 9064, "loc": { "end": { - "column": 18, - "line": 366, - "offset": 8816, + "column": 29, + "line": 370, + "offset": 9064, }, "start": { - "column": 16, - "line": 366, - "offset": 8814, + "column": 28, + "line": 370, + "offset": 9063, }, }, "range": [ - 8814, - 8816, + 9063, + 9064, ], - "start": 8814, + "start": 9063, "type": "JSXText", - "value": "类型", + "value": "-", }, { - "end": 8825, + "end": 9090, "loc": { "end": { - "column": 27, - "line": 366, - "offset": 8825, + "column": 55, + "line": 370, + "offset": 9090, }, "start": { - "column": 24, - "line": 366, - "offset": 8822, + "column": 45, + "line": 370, + "offset": 9080, }, }, "range": [ - 8822, - 8825, + 9080, + 9090, ], - "start": 8822, + "start": 9080, "type": "JSXText", - "value": "默认值", + "value": "选中 Tab 的名称", }, { - "end": 8838, + "end": 9108, "loc": { "end": { - "column": 40, - "line": 366, - "offset": 8838, + "column": 15, + "line": 371, + "offset": 9108, }, "start": { - "column": 38, - "line": 366, - "offset": 8836, + "column": 2, + "line": 371, + "offset": 9095, }, }, "range": [ - 8836, - 8838, - ], - "start": 8836, - "type": "JSXText", - "value": "描述", - }, - { - "end": 8921, - "loc": { - "end": { - "column": 6, - "line": 368, - "offset": 8921, - }, - "start": { - "column": 2, - "line": 368, - "offset": 8917, - }, - }, - "range": [ - 8917, - 8921, + 9095, + 9108, ], - "start": 8917, + "start": 9095, "type": "JSXText", - "value": "type", + "value": "selectedIndex", }, { - "end": 8940, + "end": 9117, "loc": { "end": { - "column": 25, - "line": 368, - "offset": 8940, + "column": 24, + "line": 371, + "offset": 9117, }, "start": { "column": 18, - "line": 368, - "offset": 8933, + "line": 371, + "offset": 9111, }, }, "range": [ - 8933, - 8940, + 9111, + 9117, ], - "start": 8933, + "start": 9111, "type": "JSXText", - "value": "TabType", + "value": "number", }, { - "end": 8955, + "end": 9122, "loc": { "end": { - "column": 40, - "line": 368, - "offset": 8955, + "column": 29, + "line": 371, + "offset": 9122, }, "start": { "column": 28, - "line": 368, - "offset": 8943, + "line": 371, + "offset": 9121, }, }, "range": [ - 8943, - 8955, + 9121, + 9122, ], - "start": 8943, + "start": 9121, "type": "JSXText", - "value": "TabType.Line", + "value": "-", }, { - "end": 8964, + "end": 9148, "loc": { "end": { - "column": 49, - "line": 368, - "offset": 8964, + "column": 55, + "line": 371, + "offset": 9148, }, "start": { "column": 45, - "line": 368, - "offset": 8960, + "line": 371, + "offset": 9138, }, }, "range": [ - 8960, - 8964, + 9138, + 9148, ], - "start": 8960, + "start": 9138, "type": "JSXText", - "value": "样式主题", + "value": "选中 Tab 的索引", }, { - "end": 8980, + "end": 9157, "loc": { "end": { "column": 6, - "line": 369, - "offset": 8980, + "line": 372, + "offset": 9157, }, "start": { "column": 2, - "line": 369, - "offset": 8976, + "line": 372, + "offset": 9153, }, }, "range": [ - 8976, - 8980, + 9153, + 9157, ], - "start": 8976, + "start": 9153, "type": "JSXText", - "value": "size", + "value": "lazy", }, { - "end": 8999, + "end": 9176, "loc": { "end": { "column": 25, - "line": 369, - "offset": 8999, + "line": 372, + "offset": 9176, }, "start": { "column": 18, - "line": 369, - "offset": 8992, + "line": 372, + "offset": 9169, }, }, "range": [ - 8992, - 8999, + 9169, + 9176, ], - "start": 8992, + "start": 9169, "type": "JSXText", - "value": "TabSize", + "value": "boolean", }, { - "end": 9016, + "end": 9184, "loc": { "end": { - "column": 42, - "line": 369, - "offset": 9016, + "column": 33, + "line": 372, + "offset": 9184, }, "start": { "column": 28, - "line": 369, - "offset": 9002, + "line": 372, + "offset": 9179, }, }, "range": [ - 9002, - 9016, + 9179, + 9184, ], - "start": 9002, + "start": 9179, "type": "JSXText", - "value": "TabSize.Medium", + "value": "false", }, { - "end": 9021, + "end": 9201, "loc": { "end": { - "column": 47, - "line": 369, - "offset": 9021, + "column": 50, + "line": 372, + "offset": 9201, }, "start": { "column": 45, - "line": 369, - "offset": 9019, + "line": 372, + "offset": 9196, }, }, "range": [ - 9019, - 9021, + 9196, + 9201, ], - "start": 9019, + "start": 9196, "type": "JSXText", - "value": "尺寸", + "value": "懒加载模式", }, { - "end": 9040, + "end": 9238, "loc": { "end": { - "column": 5, - "line": 370, - "offset": 9040, + "column": 28, + "line": 374, + "offset": 9238, }, "start": { - "column": 2, - "line": 370, - "offset": 9037, + "column": 3, + "line": 374, + "offset": 9213, }, }, "range": [ - 9037, - 9040, + 9213, + 9238, ], - "start": 9037, + "start": 9213, "type": "JSXText", - "value": "tab", + "value": "TabGroupComponent Outputs", }, { - "end": 9059, + "end": 9320, "loc": { "end": { - "column": 24, - "line": 370, - "offset": 9059, + "column": 4, + "line": 383, + "offset": 9320, }, "start": { - "column": 18, - "line": 370, - "offset": 9053, + "column": 2, + "line": 383, + "offset": 9318, }, }, "range": [ - 9053, - 9059, + 9318, + 9320, ], - "start": 9053, + "start": 9318, "type": "JSXText", - "value": "string", + "value": "名称", }, { - "end": 9064, + "end": 9340, "loc": { "end": { - "column": 29, - "line": 370, - "offset": 9064, + "column": 24, + "line": 383, + "offset": 9340, }, "start": { - "column": 28, - "line": 370, - "offset": 9063, + "column": 22, + "line": 383, + "offset": 9338, }, }, "range": [ - 9063, - 9064, + 9338, + 9340, ], - "start": 9063, + "start": 9338, "type": "JSXText", - "value": "-", + "value": "类型", }, { - "end": 9090, + "end": 9355, "loc": { "end": { - "column": 55, - "line": 370, - "offset": 9090, + "column": 39, + "line": 383, + "offset": 9355, }, "start": { - "column": 45, - "line": 370, - "offset": 9080, + "column": 37, + "line": 383, + "offset": 9353, }, }, "range": [ - 9080, - 9090, + 9353, + 9355, ], - "start": 9080, + "start": 9353, "type": "JSXText", - "value": "选中 Tab 的名称", + "value": "描述", }, { - "end": 9108, + "end": 9467, "loc": { "end": { - "column": 15, - "line": 371, - "offset": 9108, + "column": 11, + "line": 385, + "offset": 9467, }, "start": { "column": 2, - "line": 371, - "offset": 9095, + "line": 385, + "offset": 9458, }, }, "range": [ - 9095, - 9108, + 9458, + 9467, ], - "start": 9095, + "start": 9458, "type": "JSXText", - "value": "selectedIndex", + "value": "tabChange", }, { - "end": 9117, + "end": 9486, "loc": { "end": { - "column": 24, - "line": 371, - "offset": 9117, + "column": 30, + "line": 385, + "offset": 9486, }, "start": { - "column": 18, - "line": 371, - "offset": 9111, + "column": 24, + "line": 385, + "offset": 9480, }, }, "range": [ - 9111, - 9117, + 9480, + 9486, ], - "start": 9111, + "start": 9480, "type": "JSXText", - "value": "number", + "value": "string", }, { - "end": 9122, + "end": 9514, "loc": { "end": { - "column": 29, - "line": 371, - "offset": 9122, + "column": 58, + "line": 385, + "offset": 9514, }, "start": { - "column": 28, - "line": 371, - "offset": 9121, + "column": 41, + "line": 385, + "offset": 9497, }, }, "range": [ - 9121, - 9122, + 9497, + 9514, ], - "start": 9121, + "start": 9497, "type": "JSXText", - "value": "-", + "value": "Tab 切换时发射 Tab 的名称", }, { - "end": 9148, + "end": 9542, "loc": { "end": { - "column": 55, - "line": 371, - "offset": 9148, + "column": 21, + "line": 386, + "offset": 9542, }, "start": { - "column": 45, - "line": 371, - "offset": 9138, + "column": 2, + "line": 386, + "offset": 9523, }, }, "range": [ - 9138, - 9148, + 9523, + 9542, ], - "start": 9138, + "start": 9523, "type": "JSXText", - "value": "选中 Tab 的索引", + "value": "selectedIndexChange", }, { - "end": 9157, + "end": 9551, "loc": { "end": { - "column": 6, - "line": 372, - "offset": 9157, + "column": 30, + "line": 386, + "offset": 9551, }, "start": { - "column": 2, - "line": 372, - "offset": 9153, + "column": 24, + "line": 386, + "offset": 9545, }, }, "range": [ - 9153, - 9157, + 9545, + 9551, ], - "start": 9153, + "start": 9545, "type": "JSXText", - "value": "lazy", + "value": "number", }, { - "end": 9176, + "end": 9579, "loc": { "end": { - "column": 25, - "line": 372, - "offset": 9176, + "column": 58, + "line": 386, + "offset": 9579, }, "start": { - "column": 18, - "line": 372, - "offset": 9169, + "column": 41, + "line": 386, + "offset": 9562, }, }, "range": [ - 9169, - 9176, + 9562, + 9579, ], - "start": 9169, + "start": 9562, "type": "JSXText", - "value": "boolean", + "value": "Tab 切换时发射 Tab 的索引", }, { - "end": 9184, + "end": 9605, "loc": { "end": { - "column": 33, - "line": 372, - "offset": 9184, + "column": 19, + "line": 387, + "offset": 9605, }, "start": { - "column": 28, - "line": 372, - "offset": 9179, + "column": 2, + "line": 387, + "offset": 9588, }, }, "range": [ - 9179, - 9184, + 9588, + 9605, ], - "start": 9179, + "start": 9588, "type": "JSXText", - "value": "false", + "value": "selectedTabChange", }, { - "end": 9201, + "end": 9624, "loc": { "end": { - "column": 50, - "line": 372, - "offset": 9201, + "column": 38, + "line": 387, + "offset": 9624, }, "start": { - "column": 45, - "line": 372, - "offset": 9196, + "column": 24, + "line": 387, + "offset": 9610, }, }, "range": [ - 9196, - 9201, + 9610, + 9624, ], - "start": 9196, + "start": 9610, "type": "JSXText", - "value": "懒加载模式", + "value": "TabChangeEvent", }, { - "end": 9238, + "end": 9651, "loc": { "end": { - "column": 28, - "line": 374, - "offset": 9238, + "column": 65, + "line": 387, + "offset": 9651, }, "start": { - "column": 3, - "line": 374, - "offset": 9213, + "column": 41, + "line": 387, + "offset": 9627, }, }, "range": [ - 9213, - 9238, + 9627, + 9651, ], - "start": 9213, + "start": 9627, "type": "JSXText", - "value": "TabGroupComponent Outputs", + "value": "Tab 切换时发射 TabChangeEvent", }, { - "end": 9320, + "end": 9667, "loc": { "end": { - "column": 4, - "line": 383, - "offset": 9320, + "column": 13, + "line": 388, + "offset": 9667, }, "start": { "column": 2, - "line": 383, - "offset": 9318, + "line": 388, + "offset": 9656, }, }, "range": [ - 9318, - 9320, + 9656, + 9667, ], - "start": 9318, + "start": 9656, "type": "JSXText", - "value": "名称", + "value": "focusChange", }, { - "end": 9340, + "end": 9692, "loc": { "end": { - "column": 24, - "line": 383, - "offset": 9340, + "column": 38, + "line": 388, + "offset": 9692, }, "start": { - "column": 22, - "line": 383, - "offset": 9338, + "column": 24, + "line": 388, + "offset": 9678, }, }, "range": [ - 9338, - 9340, + 9678, + 9692, ], - "start": 9338, + "start": 9678, "type": "JSXText", - "value": "类型", + "value": "TabChangeEvent", }, { - "end": 9355, + "end": 9699, "loc": { "end": { - "column": 39, - "line": 383, - "offset": 9355, + "column": 45, + "line": 388, + "offset": 9699, }, "start": { - "column": 37, - "line": 383, - "offset": 9353, + "column": 41, + "line": 388, + "offset": 9695, }, }, "range": [ - 9353, - 9355, + 9695, + 9699, ], - "start": 9353, + "start": 9695, "type": "JSXText", - "value": "描述", + "value": "Tab ", }, { - "end": 9467, + "end": 9712, "loc": { "end": { - "column": 11, - "line": 385, - "offset": 9467, + "column": 58, + "line": 388, + "offset": 9712, }, "start": { - "column": 2, - "line": 385, - "offset": 9458, + "column": 52, + "line": 388, + "offset": 9706, }, }, "range": [ - 9458, - 9467, + 9706, + 9712, ], - "start": 9458, + "start": 9706, "type": "JSXText", - "value": "tabChange", + "value": " 切换时发射", }, { - "end": 9486, + "end": 9745, "loc": { "end": { - "column": 30, - "line": 385, - "offset": 9486, + "column": 22, + "line": 390, + "offset": 9745, }, "start": { - "column": 24, - "line": 385, - "offset": 9480, + "column": 3, + "line": 390, + "offset": 9726, }, }, "range": [ - 9480, - 9486, + 9726, + 9745, ], - "start": 9480, + "start": 9726, "type": "JSXText", - "value": "string", + "value": "TabComponent Inputs", }, { - "end": 9514, + "end": 9751, "loc": { "end": { - "column": 58, - "line": 385, - "offset": 9514, + "column": 4, + "line": 392, + "offset": 9751, }, "start": { - "column": 41, - "line": 385, - "offset": 9497, + "column": 2, + "line": 392, + "offset": 9749, }, }, "range": [ - 9497, - 9514, + 9749, + 9751, ], - "start": 9497, + "start": 9749, "type": "JSXText", - "value": "Tab 切换时发射 Tab 的名称", + "value": "名称", }, { - "end": 9542, + "end": 9761, "loc": { "end": { - "column": 21, - "line": 386, - "offset": 9542, + "column": 14, + "line": 392, + "offset": 9761, }, "start": { - "column": 2, - "line": 386, - "offset": 9523, + "column": 12, + "line": 392, + "offset": 9759, }, }, "range": [ - 9523, - 9542, + 9759, + 9761, ], - "start": 9523, + "start": 9759, "type": "JSXText", - "value": "selectedIndexChange", + "value": "类型", }, { - "end": 9551, + "end": 9770, "loc": { "end": { - "column": 30, - "line": 386, - "offset": 9551, + "column": 23, + "line": 392, + "offset": 9770, }, "start": { - "column": 24, - "line": 386, - "offset": 9545, + "column": 20, + "line": 392, + "offset": 9767, }, }, "range": [ - 9545, - 9551, + 9767, + 9770, ], - "start": 9545, + "start": 9767, "type": "JSXText", - "value": "number", + "value": "默认值", }, { - "end": 9579, + "end": 9775, "loc": { "end": { - "column": 58, - "line": 386, - "offset": 9579, + "column": 28, + "line": 392, + "offset": 9775, }, "start": { - "column": 41, - "line": 386, - "offset": 9562, + "column": 26, + "line": 392, + "offset": 9773, }, }, "range": [ - 9562, - 9579, + 9773, + 9775, ], - "start": 9562, + "start": 9773, "type": "JSXText", - "value": "Tab 切换时发射 Tab 的索引", + "value": "说明", }, { - "end": 9605, + "end": 9848, "loc": { "end": { - "column": 19, - "line": 387, - "offset": 9605, + "column": 6, + "line": 394, + "offset": 9848, }, "start": { "column": 2, - "line": 387, - "offset": 9588, + "line": 394, + "offset": 9844, }, }, "range": [ - 9588, - 9605, + 9844, + 9848, ], - "start": 9588, + "start": 9844, "type": "JSXText", - "value": "selectedTabChange", + "value": "name", }, { - "end": 9624, + "end": 9862, "loc": { "end": { - "column": 38, - "line": 387, - "offset": 9624, + "column": 20, + "line": 394, + "offset": 9862, }, "start": { - "column": 24, - "line": 387, - "offset": 9610, + "column": 14, + "line": 394, + "offset": 9856, }, }, "range": [ - 9610, - 9624, + 9856, + 9862, ], - "start": 9610, + "start": 9856, "type": "JSXText", - "value": "TabChangeEvent", + "value": "string", }, { - "end": 9651, + "end": 9867, "loc": { "end": { - "column": 65, - "line": 387, - "offset": 9651, + "column": 25, + "line": 394, + "offset": 9867, }, "start": { - "column": 41, - "line": 387, - "offset": 9627, + "column": 24, + "line": 394, + "offset": 9866, }, }, "range": [ - 9627, - 9651, + 9866, + 9867, ], - "start": 9627, + "start": 9866, "type": "JSXText", - "value": "Tab 切换时发射 TabChangeEvent", + "value": "-", }, { - "end": 9667, + "end": 9882, "loc": { "end": { - "column": 13, - "line": 388, - "offset": 9667, + "column": 40, + "line": 394, + "offset": 9882, }, "start": { - "column": 2, - "line": 388, - "offset": 9656, + "column": 33, + "line": 394, + "offset": 9875, }, }, "range": [ - 9656, - 9667, + 9875, + 9882, ], - "start": 9656, + "start": 9875, "type": "JSXText", - "value": "focusChange", + "value": "tab 的名称", }, { - "end": 9692, + "end": 9898, "loc": { "end": { - "column": 38, - "line": 388, - "offset": 9692, + "column": 7, + "line": 395, + "offset": 9898, }, "start": { - "column": 24, - "line": 388, - "offset": 9678, + "column": 2, + "line": 395, + "offset": 9893, }, }, "range": [ - 9678, - 9692, + 9893, + 9898, ], - "start": 9678, + "start": 9893, "type": "JSXText", - "value": "TabChangeEvent", + "value": "label", }, { - "end": 9699, + "end": 9911, "loc": { "end": { - "column": 45, - "line": 388, - "offset": 9699, + "column": 20, + "line": 395, + "offset": 9911, }, "start": { - "column": 41, - "line": 388, - "offset": 9695, + "column": 14, + "line": 395, + "offset": 9905, }, }, "range": [ - 9695, - 9699, + 9905, + 9911, ], - "start": 9695, + "start": 9905, "type": "JSXText", - "value": "Tab ", + "value": "string", }, { - "end": 9712, + "end": 9916, "loc": { "end": { - "column": 58, - "line": 388, - "offset": 9712, + "column": 25, + "line": 395, + "offset": 9916, }, "start": { - "column": 52, - "line": 388, - "offset": 9706, + "column": 24, + "line": 395, + "offset": 9915, }, }, "range": [ - 9706, - 9712, + 9915, + 9916, ], - "start": 9706, + "start": 9915, "type": "JSXText", - "value": " 切换时发射", + "value": "-", }, { - "end": 9745, + "end": 9932, "loc": { "end": { - "column": 22, - "line": 390, - "offset": 9745, + "column": 41, + "line": 395, + "offset": 9932, }, "start": { - "column": 3, - "line": 390, - "offset": 9726, + "column": 33, + "line": 395, + "offset": 9924, }, }, "range": [ - 9726, - 9745, + 9924, + 9932, ], - "start": 9726, + "start": 9924, "type": "JSXText", - "value": "TabComponent Inputs", + "value": "文字 label", }, { - "end": 9751, + "end": 9952, "loc": { "end": { - "column": 4, - "line": 392, - "offset": 9751, + "column": 11, + "line": 396, + "offset": 9952, }, "start": { "column": 2, - "line": 392, - "offset": 9749, + "line": 396, + "offset": 9943, }, }, "range": [ - 9749, - 9751, + 9943, + 9952, ], - "start": 9749, + "start": 9943, "type": "JSXText", - "value": "名称", + "value": "closeable", }, { - "end": 9761, + "end": 9962, "loc": { "end": { - "column": 14, - "line": 392, - "offset": 9761, + "column": 21, + "line": 396, + "offset": 9962, }, "start": { - "column": 12, - "line": 392, - "offset": 9759, + "column": 14, + "line": 396, + "offset": 9955, }, }, "range": [ - 9759, - 9761, + 9955, + 9962, ], - "start": 9759, + "start": 9955, "type": "JSXText", - "value": "类型", + "value": "boolean", }, { - "end": 9770, + "end": 9970, "loc": { "end": { - "column": 23, - "line": 392, - "offset": 9770, + "column": 29, + "line": 396, + "offset": 9970, }, "start": { - "column": 20, - "line": 392, - "offset": 9767, + "column": 24, + "line": 396, + "offset": 9965, }, }, "range": [ - 9767, - 9770, + 9965, + 9970, ], - "start": 9767, + "start": 9965, "type": "JSXText", - "value": "默认值", + "value": "false", }, { - "end": 9775, + "end": 9982, "loc": { "end": { - "column": 28, - "line": 392, - "offset": 9775, + "column": 41, + "line": 396, + "offset": 9982, }, "start": { - "column": 26, - "line": 392, - "offset": 9773, + "column": 33, + "line": 396, + "offset": 9974, }, }, "range": [ - 9773, - 9775, + 9974, + 9982, ], - "start": 9773, + "start": 9974, "type": "JSXText", - "value": "说明", + "value": "是否显示关闭按键", }, { - "end": 9848, + "end": 9995, "loc": { "end": { - "column": 6, - "line": 394, - "offset": 9848, + "column": 10, + "line": 397, + "offset": 9995, }, "start": { "column": 2, - "line": 394, - "offset": 9844, + "line": 397, + "offset": 9987, }, }, "range": [ - 9844, - 9848, + 9987, + 9995, ], - "start": 9844, + "start": 9987, "type": "JSXText", - "value": "name", + "value": "disabled", }, { - "end": 9862, + "end": 10006, "loc": { "end": { - "column": 20, - "line": 394, - "offset": 9862, + "column": 21, + "line": 397, + "offset": 10006, }, "start": { "column": 14, - "line": 394, - "offset": 9856, + "line": 397, + "offset": 9999, }, }, "range": [ - 9856, - 9862, + 9999, + 10006, ], - "start": 9856, + "start": 9999, "type": "JSXText", - "value": "string", + "value": "boolean", }, { - "end": 9867, + "end": 10014, "loc": { "end": { - "column": 25, - "line": 394, - "offset": 9867, + "column": 29, + "line": 397, + "offset": 10014, }, "start": { "column": 24, - "line": 394, - "offset": 9866, + "line": 397, + "offset": 10009, }, }, "range": [ - 9866, - 9867, + 10009, + 10014, ], - "start": 9866, + "start": 10009, "type": "JSXText", - "value": "-", + "value": "false", }, { - "end": 9882, + "end": 10027, "loc": { "end": { - "column": 40, - "line": 394, - "offset": 9882, + "column": 42, + "line": 397, + "offset": 10027, }, "start": { "column": 33, - "line": 394, - "offset": 9875, + "line": 397, + "offset": 10018, }, }, "range": [ - 9875, - 9882, + 10018, + 10027, ], - "start": 9875, + "start": 10018, "type": "JSXText", - "value": "tab 的名称", + "value": "是否禁用此 tab", }, { - "end": 9898, + "end": 10056, "loc": { "end": { - "column": 7, - "line": 395, - "offset": 9898, + "column": 23, + "line": 399, + "offset": 10056, }, "start": { - "column": 2, - "line": 395, - "offset": 9893, + "column": 3, + "line": 399, + "offset": 10036, }, }, "range": [ - 9893, - 9898, + 10036, + 10056, ], - "start": 9893, + "start": 10036, "type": "JSXText", - "value": "label", + "value": "TabComponent Outputs", }, { - "end": 9911, + "end": 10062, "loc": { "end": { - "column": 20, - "line": 395, - "offset": 9911, + "column": 4, + "line": 401, + "offset": 10062, }, "start": { - "column": 14, - "line": 395, - "offset": 9905, + "column": 2, + "line": 401, + "offset": 10060, }, }, "range": [ - 9905, - 9911, + 10060, + 10062, ], - "start": 9905, + "start": 10060, "type": "JSXText", - "value": "string", + "value": "名称", }, { - "end": 9916, + "end": 10068, "loc": { "end": { - "column": 25, - "line": 395, - "offset": 9916, + "column": 10, + "line": 401, + "offset": 10068, }, "start": { - "column": 24, - "line": 395, - "offset": 9915, + "column": 8, + "line": 401, + "offset": 10066, }, }, "range": [ - 9915, - 9916, + 10066, + 10068, ], - "start": 9915, + "start": 10066, "type": "JSXText", - "value": "-", + "value": "类型", }, { - "end": 9932, + "end": 10073, "loc": { "end": { - "column": 41, - "line": 395, - "offset": 9932, + "column": 15, + "line": 401, + "offset": 10073, }, "start": { - "column": 33, - "line": 395, - "offset": 9924, + "column": 13, + "line": 401, + "offset": 10071, }, }, "range": [ - 9924, - 9932, + 10071, + 10073, ], - "start": 9924, + "start": 10071, "type": "JSXText", - "value": "文字 label", + "value": "描述", }, { - "end": 9952, + "end": 10139, "loc": { "end": { - "column": 11, - "line": 396, - "offset": 9952, + "column": 7, + "line": 403, + "offset": 10139, }, "start": { "column": 2, - "line": 396, - "offset": 9943, + "line": 403, + "offset": 10134, }, }, "range": [ - 9943, - 9952, + 10134, + 10139, ], - "start": 9943, + "start": 10134, "type": "JSXText", - "value": "closeable", + "value": "close", }, { - "end": 9962, + "end": 10146, "loc": { "end": { - "column": 21, - "line": 396, - "offset": 9962, + "column": 14, + "line": 403, + "offset": 10146, }, "start": { - "column": 14, - "line": 396, - "offset": 9955, + "column": 10, + "line": 403, + "offset": 10142, }, }, "range": [ - 9955, - 9962, + 10142, + 10146, ], - "start": 9955, + "start": 10142, "type": "JSXText", - "value": "boolean", + "value": "void", }, { - "end": 9970, + "end": 10159, "loc": { "end": { - "column": 29, - "line": 396, - "offset": 9970, + "column": 27, + "line": 403, + "offset": 10159, }, "start": { - "column": 24, - "line": 396, - "offset": 9965, + "column": 17, + "line": 403, + "offset": 10149, }, }, "range": [ - 9965, - 9970, + 10149, + 10159, ], - "start": 9965, + "start": 10149, "type": "JSXText", - "value": "false", + "value": "关闭按键被点击时发射", }, { - "end": 9982, + "end": 10176, "loc": { "end": { - "column": 41, - "line": 396, - "offset": 9982, + "column": 13, + "line": 405, + "offset": 10176, }, "start": { - "column": 33, - "line": 396, - "offset": 9974, + "column": 3, + "line": 405, + "offset": 10166, }, }, "range": [ - 9974, - 9982, + 10166, + 10176, ], - "start": 9974, + "start": 10166, "type": "JSXText", - "value": "是否显示关闭按键", + "value": "Directives", }, { - "end": 9995, + "end": 10182, "loc": { "end": { - "column": 10, - "line": 397, - "offset": 9995, + "column": 4, + "line": 407, + "offset": 10182, }, "start": { "column": 2, - "line": 397, - "offset": 9987, + "line": 407, + "offset": 10180, }, }, "range": [ - 9987, - 9995, + 10180, + 10182, ], - "start": 9987, + "start": 10180, "type": "JSXText", - "value": "disabled", + "value": "名称", }, { - "end": 10006, + "end": 10202, "loc": { "end": { - "column": 21, - "line": 397, - "offset": 10006, + "column": 24, + "line": 407, + "offset": 10202, }, "start": { - "column": 14, - "line": 397, - "offset": 9999, + "column": 20, + "line": 407, + "offset": 10198, }, }, "range": [ - 9999, - 10006, + 10198, + 10202, ], - "start": 9999, + "start": 10198, "type": "JSXText", - "value": "boolean", + "value": "作用范围", }, { - "end": 10014, + "end": 10216, "loc": { "end": { - "column": 29, - "line": 397, - "offset": 10014, + "column": 38, + "line": 407, + "offset": 10216, }, "start": { - "column": 24, - "line": 397, - "offset": 10009, + "column": 36, + "line": 407, + "offset": 10214, }, }, "range": [ - 10009, - 10014, + 10214, + 10216, ], - "start": 10009, + "start": 10214, "type": "JSXText", - "value": "false", + "value": "描述", }, { - "end": 10027, + "end": 10333, "loc": { "end": { - "column": 42, - "line": 397, - "offset": 10027, + "column": 19, + "line": 409, + "offset": 10333, }, "start": { - "column": 33, - "line": 397, - "offset": 10018, + "column": 2, + "line": 409, + "offset": 10316, }, }, "range": [ - 10018, - 10027, + 10316, + 10333, ], - "start": 10018, + "start": 10316, "type": "JSXText", - "value": "是否禁用此 tab", + "value": "auiTabHeaderAddon", }, { - "end": 10056, + "end": 10353, "loc": { "end": { - "column": 23, - "line": 399, - "offset": 10056, + "column": 39, + "line": 409, + "offset": 10353, }, "start": { - "column": 3, - "line": 399, - "offset": 10036, + "column": 22, + "line": 409, + "offset": 10336, }, }, "range": [ - 10036, - 10056, + 10336, + 10353, ], - "start": 10036, + "start": 10336, "type": "JSXText", - "value": "TabComponent Outputs", + "value": "TabGroupComponent", }, { - "end": 10062, + "end": 10372, "loc": { "end": { - "column": 4, - "line": 401, - "offset": 10062, + "column": 58, + "line": 409, + "offset": 10372, }, "start": { - "column": 2, - "line": 401, - "offset": 10060, + "column": 42, + "line": 409, + "offset": 10356, }, }, "range": [ - 10060, - 10062, + 10356, + 10372, ], - "start": 10060, + "start": 10356, "type": "JSXText", - "value": "名称", + "value": "自定义 Group Header", }, { - "end": 10068, + "end": 10396, "loc": { "end": { - "column": 10, - "line": 401, - "offset": 10068, + "column": 13, + "line": 410, + "offset": 10396, }, "start": { - "column": 8, - "line": 401, - "offset": 10066, + "column": 2, + "line": 410, + "offset": 10385, }, }, "range": [ - 10066, - 10068, + 10385, + 10396, ], - "start": 10066, + "start": 10385, "type": "JSXText", - "value": "类型", + "value": "auiTabLabel", }, { - "end": 10073, + "end": 10417, "loc": { "end": { - "column": 15, - "line": 401, - "offset": 10073, + "column": 34, + "line": 410, + "offset": 10417, }, "start": { - "column": 13, - "line": 401, - "offset": 10071, + "column": 22, + "line": 410, + "offset": 10405, }, }, "range": [ - 10071, - 10073, + 10405, + 10417, ], - "start": 10071, + "start": 10405, "type": "JSXText", - "value": "描述", + "value": "TabComponent", }, { - "end": 10139, + "end": 10438, "loc": { "end": { - "column": 7, - "line": 403, - "offset": 10139, + "column": 55, + "line": 410, + "offset": 10438, }, "start": { - "column": 2, - "line": 403, - "offset": 10134, + "column": 42, + "line": 410, + "offset": 10425, }, }, "range": [ - 10134, - 10139, + 10425, + 10438, ], - "start": 10134, + "start": 10425, "type": "JSXText", - "value": "close", + "value": "自定义 Tab Label", }, { - "end": 10146, + "end": 10467, "loc": { "end": { - "column": 14, - "line": 403, - "offset": 10146, + "column": 15, + "line": 411, + "offset": 10467, }, "start": { - "column": 10, - "line": 403, - "offset": 10142, + "column": 2, + "line": 411, + "offset": 10454, }, }, "range": [ - 10142, - 10146, + 10454, + 10467, ], - "start": 10142, + "start": 10454, "type": "JSXText", - "value": "void", + "value": "auiTabContent", }, { - "end": 10159, + "end": 10486, "loc": { "end": { - "column": 27, - "line": 403, - "offset": 10159, + "column": 34, + "line": 411, + "offset": 10486, }, "start": { - "column": 17, - "line": 403, - "offset": 10149, + "column": 22, + "line": 411, + "offset": 10474, }, }, "range": [ - 10149, - 10159, + 10474, + 10486, ], - "start": 10149, + "start": 10474, "type": "JSXText", - "value": "关闭按键被点击时发射", + "value": "TabComponent", }, { - "end": 10176, + "end": 10512, "loc": { "end": { - "column": 13, - "line": 405, - "offset": 10176, + "column": 60, + "line": 411, + "offset": 10512, }, "start": { - "column": 3, - "line": 405, - "offset": 10166, + "column": 42, + "line": 411, + "offset": 10494, }, }, "range": [ - 10166, - 10176, + 10494, + 10512, ], - "start": 10166, + "start": 10494, "type": "JSXText", - "value": "Directives", + "value": "Tab 内容区域,lazy 模式必用", }, + ], + "type": "Program", +} +`; + +exports[`parser should match all AST snapshots: 391.mdx 1`] = ` +{ + "body": [ { - "end": 10182, - "loc": { - "end": { - "column": 4, - "line": 407, - "offset": 10182, + "end": 41, + "expression": { + "children": [], + "closingElement": null, + "end": 41, + "loc": { + "end": { + "column": 7, + "line": 7, + "offset": 41, + }, + "start": { + "column": 0, + "line": 7, + "offset": 34, + }, }, - "start": { - "column": 2, - "line": 407, - "offset": 10180, + "openingElement": { + "attributes": [], + "end": 41, + "loc": { + "end": { + "column": 7, + "line": 7, + "offset": 41, + }, + "start": { + "column": 0, + "line": 7, + "offset": 34, + }, + }, + "name": { + "end": 38, + "loc": { + "end": { + "column": 4, + "line": 7, + "offset": 38, + }, + "start": { + "column": 1, + "line": 7, + "offset": 35, + }, + }, + "name": "Foo", + "range": [ + 35, + 38, + ], + "raw": "Foo", + "start": 35, + "type": "JSXIdentifier", + }, + "range": [ + 34, + 41, + ], + "raw": "", + "selfClosing": true, + "start": 34, + "type": "JSXOpeningElement", }, + "range": [ + 34, + 41, + ], + "raw": "", + "start": 34, + "type": "JSXElement", }, - "range": [ - 10180, - 10182, - ], - "start": 10180, - "type": "JSXText", - "value": "名称", - }, - { - "end": 10202, "loc": { "end": { - "column": 24, - "line": 407, - "offset": 10202, + "column": 8, + "line": 7, + "offset": 41, }, "start": { - "column": 20, - "line": 407, - "offset": 10198, + "column": 1, + "line": 7, + "offset": 34, }, }, "range": [ - 10198, - 10202, + 34, + 41, ], - "start": 10198, - "type": "JSXText", - "value": "作用范围", - }, - { - "end": 10216, - "loc": { - "end": { - "column": 38, - "line": 407, - "offset": 10216, - }, - "start": { - "column": 36, - "line": 407, - "offset": 10214, - }, - }, - "range": [ - 10214, - 10216, - ], - "start": 10214, - "type": "JSXText", - "value": "描述", - }, - { - "end": 10333, - "loc": { - "end": { - "column": 19, - "line": 409, - "offset": 10333, - }, - "start": { - "column": 2, - "line": 409, - "offset": 10316, - }, - }, - "range": [ - 10316, - 10333, - ], - "start": 10316, - "type": "JSXText", - "value": "auiTabHeaderAddon", + "start": 34, + "type": "ExpressionStatement", }, - { - "end": 10353, - "loc": { - "end": { - "column": 39, - "line": 409, - "offset": 10353, - }, - "start": { - "column": 22, - "line": 409, - "offset": 10336, - }, - }, - "range": [ - 10336, - 10353, - ], - "start": 10336, - "type": "JSXText", - "value": "TabGroupComponent", + ], + "comments": [], + "end": 62, + "loc": { + "end": { + "column": 1, + "line": 12, + "offset": 62, }, - { - "end": 10372, - "loc": { - "end": { - "column": 58, - "line": 409, - "offset": 10372, - }, - "start": { - "column": 42, - "line": 409, - "offset": 10356, - }, - }, - "range": [ - 10356, - 10372, - ], - "start": 10356, - "type": "JSXText", - "value": "自定义 Group Header", + "start": { + "column": 1, + "line": 1, + "offset": 0, }, + }, + "range": [ + 0, + 62, + ], + "sourceType": undefined, + "start": 0, + "tokens": [ { - "end": 10396, + "end": 13, "loc": { "end": { "column": 13, - "line": 410, - "offset": 10396, + "line": 1, + "offset": 13, }, "start": { "column": 2, - "line": 410, - "offset": 10385, - }, - }, - "range": [ - 10385, - 10396, - ], - "start": 10385, - "type": "JSXText", - "value": "auiTabLabel", - }, - { - "end": 10417, - "loc": { - "end": { - "column": 34, - "line": 410, - "offset": 10417, - }, - "start": { - "column": 22, - "line": 410, - "offset": 10405, + "line": 1, + "offset": 2, }, }, "range": [ - 10405, - 10417, + 2, + 13, ], - "start": 10405, + "start": 2, "type": "JSXText", - "value": "TabComponent", + "value": "Hello world", }, { - "end": 10438, + "end": 35, "loc": { "end": { - "column": 55, - "line": 410, - "offset": 10438, + "column": 1, + "line": 7, + "offset": 35, }, "start": { - "column": 42, - "line": 410, - "offset": 10425, + "column": 0, + "line": 7, + "offset": 34, }, }, "range": [ - 10425, - 10438, + 34, + 35, ], - "start": 10425, - "type": "JSXText", - "value": "自定义 Tab Label", + "start": 34, + "type": "Punctuator", + "value": "<", }, { - "end": 10467, + "end": 38, "loc": { "end": { - "column": 15, - "line": 411, - "offset": 10467, + "column": 4, + "line": 7, + "offset": 38, }, "start": { - "column": 2, - "line": 411, - "offset": 10454, + "column": 1, + "line": 7, + "offset": 35, }, }, "range": [ - 10454, - 10467, + 35, + 38, ], - "start": 10454, - "type": "JSXText", - "value": "auiTabContent", + "start": 35, + "type": "JSXIdentifier", + "value": "Foo", }, { - "end": 10486, + "end": 40, "loc": { "end": { - "column": 34, - "line": 411, - "offset": 10486, + "column": 6, + "line": 7, + "offset": 40, }, "start": { - "column": 22, - "line": 411, - "offset": 10474, + "column": 5, + "line": 7, + "offset": 39, }, }, "range": [ - 10474, - 10486, + 39, + 40, ], - "start": 10474, - "type": "JSXText", - "value": "TabComponent", + "start": 39, + "type": "Punctuator", + "value": "/", }, { - "end": 10512, + "end": 41, "loc": { "end": { - "column": 60, - "line": 411, - "offset": 10512, + "column": 7, + "line": 7, + "offset": 41, }, "start": { - "column": 42, - "line": 411, - "offset": 10494, + "column": 6, + "line": 7, + "offset": 40, }, }, "range": [ - 10494, - 10512, + 40, + 41, ], - "start": 10494, - "type": "JSXText", - "value": "Tab 内容区域,lazy 模式必用", + "start": 40, + "type": "Punctuator", + "value": ">", }, ], "type": "Program", } `; -exports[`parser should match all AST snapshots: 391.mdx 1`] = ` +exports[`parser should match all AST snapshots: 429.mdx 1`] = ` { "body": [ { - "end": 41, - "expression": { - "children": [], - "closingElement": null, - "end": 41, - "loc": { - "end": { - "column": 7, - "line": 7, - "offset": 41, - }, - "start": { - "column": 0, - "line": 7, - "offset": 34, - }, - }, - "openingElement": { - "attributes": [], - "end": 41, - "loc": { - "end": { - "column": 7, - "line": 7, - "offset": 41, - }, - "start": { - "column": 0, - "line": 7, - "offset": 34, - }, - }, - "name": { - "end": 38, - "loc": { - "end": { - "column": 4, - "line": 7, - "offset": 38, - }, - "start": { - "column": 1, - "line": 7, - "offset": 35, - }, - }, - "name": "Foo", - "range": [ - 35, - 38, - ], - "raw": "Foo", - "start": 35, - "type": "JSXIdentifier", - }, - "range": [ - 34, - 41, - ], - "raw": "", - "selfClosing": true, - "start": 34, - "type": "JSXOpeningElement", - }, - "range": [ - 34, - 41, - ], - "raw": "", - "start": 34, - "type": "JSXElement", - }, - "loc": { - "end": { - "column": 8, - "line": 7, - "offset": 41, - }, - "start": { - "column": 1, - "line": 7, - "offset": 34, - }, - }, - "range": [ - 34, - 41, - ], - "start": 34, - "type": "ExpressionStatement", - }, - ], - "comments": [], - "end": 62, - "loc": { - "end": { - "column": 1, - "line": 12, - "offset": 62, - }, - "start": { - "column": 1, - "line": 1, - "offset": 0, - }, - }, - "range": [ - 0, - 62, - ], - "sourceType": undefined, - "start": 0, - "tokens": [ - { - "end": 13, - "loc": { - "end": { - "column": 13, - "line": 1, - "offset": 13, - }, - "start": { - "column": 2, - "line": 1, - "offset": 2, - }, - }, - "range": [ - 2, - 13, - ], - "start": 2, - "type": "JSXText", - "value": "Hello world", - }, - { - "end": 35, - "loc": { - "end": { - "column": 1, - "line": 7, - "offset": 35, - }, - "start": { - "column": 0, - "line": 7, - "offset": 34, - }, - }, - "range": [ - 34, - 35, - ], - "start": 34, - "type": "Punctuator", - "value": "<", - }, - { - "end": 38, - "loc": { - "end": { - "column": 4, - "line": 7, - "offset": 38, - }, - "start": { - "column": 1, - "line": 7, - "offset": 35, - }, - }, - "range": [ - 35, - 38, - ], - "start": 35, - "type": "JSXIdentifier", - "value": "Foo", - }, - { - "end": 40, - "loc": { - "end": { - "column": 6, - "line": 7, - "offset": 40, - }, - "start": { - "column": 5, - "line": 7, - "offset": 39, - }, - }, - "range": [ - 39, - 40, - ], - "start": 39, - "type": "Punctuator", - "value": "/", - }, - { - "end": 41, - "loc": { - "end": { - "column": 7, - "line": 7, - "offset": 41, - }, - "start": { - "column": 6, - "line": 7, - "offset": 40, - }, - }, - "range": [ - 40, - 41, - ], - "start": 40, - "type": "Punctuator", - "value": ">", - }, - ], - "type": "Program", -} -`; - -exports[`parser should match all AST snapshots: 429.mdx 1`] = ` -{ - "body": [ - { - "end": 31, + "end": 31, "expression": { "children": [], "closingElement": { @@ -30411,214 +29883,1524 @@ exports[`parser should match all AST snapshots: 429.mdx 1`] = ` "offset": 22, }, "start": { - "column": 17, - "line": 1, - "offset": 17, + "column": 17, + "line": 1, + "offset": 17, + }, + }, + "range": [ + 17, + 22, + ], + "start": 17, + "type": "JSXText", + "value": "Hello", + }, + { + "end": 23, + "loc": { + "end": { + "column": 23, + "line": 1, + "offset": 23, + }, + "start": { + "column": 22, + "line": 1, + "offset": 22, + }, + }, + "range": [ + 22, + 23, + ], + "start": 22, + "type": "Punctuator", + "value": "<", + }, + { + "end": 24, + "loc": { + "end": { + "column": 24, + "line": 1, + "offset": 24, + }, + "start": { + "column": 23, + "line": 1, + "offset": 23, + }, + }, + "range": [ + 23, + 24, + ], + "start": 23, + "type": "Punctuator", + "value": "/", + }, + { + "end": 30, + "loc": { + "end": { + "column": 30, + "line": 1, + "offset": 30, + }, + "start": { + "column": 24, + "line": 1, + "offset": 24, + }, + }, + "range": [ + 24, + 30, + ], + "start": 24, + "type": "JSXIdentifier", + "value": "button", + }, + { + "end": 31, + "loc": { + "end": { + "column": 31, + "line": 1, + "offset": 31, + }, + "start": { + "column": 30, + "line": 1, + "offset": 30, + }, + }, + "range": [ + 30, + 31, + ], + "start": 30, + "type": "Punctuator", + "value": ">", + }, + { + "end": 34, + "loc": { + "end": { + "column": 1, + "line": 3, + "offset": 34, + }, + "start": { + "column": 0, + "line": 3, + "offset": 33, + }, + }, + "range": [ + 33, + 34, + ], + "start": 33, + "type": "Punctuator", + "value": "<", + }, + { + "end": 40, + "loc": { + "end": { + "column": 7, + "line": 3, + "offset": 40, + }, + "start": { + "column": 1, + "line": 3, + "offset": 34, + }, + }, + "range": [ + 34, + 40, + ], + "start": 34, + "type": "JSXIdentifier", + "value": "button", + }, + { + "end": 49, + "loc": { + "end": { + "column": 16, + "line": 3, + "offset": 49, + }, + "start": { + "column": 8, + "line": 3, + "offset": 41, + }, + }, + "range": [ + 41, + 49, + ], + "start": 41, + "type": "JSXIdentifier", + "value": "disabled", + }, + { + "end": 50, + "loc": { + "end": { + "column": 17, + "line": 3, + "offset": 50, + }, + "start": { + "column": 16, + "line": 3, + "offset": 49, + }, + }, + "range": [ + 49, + 50, + ], + "start": 49, + "type": "Punctuator", + "value": "/", + }, + { + "end": 51, + "loc": { + "end": { + "column": 18, + "line": 3, + "offset": 51, + }, + "start": { + "column": 17, + "line": 3, + "offset": 50, + }, + }, + "range": [ + 50, + 51, + ], + "start": 50, + "type": "Punctuator", + "value": ">", + }, + ], + "type": "Program", +} +`; + +exports[`parser should match all AST snapshots: 435.mdx 1`] = ` +{ + "body": [ + { + "end": 88, + "expression": { + "children": [], + "closingElement": { + "end": 88, + "loc": { + "end": { + "column": 9, + "line": 8, + "offset": 88, + }, + "start": { + "column": 0, + "line": 8, + "offset": 79, + }, + }, + "name": { + "end": 87, + "loc": { + "end": { + "column": 8, + "line": 8, + "offset": 87, + }, + "start": { + "column": 2, + "line": 8, + "offset": 81, + }, + }, + "name": "button", + "range": [ + 81, + 87, + ], + "raw": "button", + "start": 81, + "type": "JSXIdentifier", + }, + "range": [ + 79, + 88, + ], + "raw": "", + "start": 79, + "type": "JSXClosingElement", + }, + "end": 88, + "loc": { + "end": { + "column": 9, + "line": 8, + "offset": 88, + }, + "start": { + "column": 0, + "line": 1, + "offset": 0, + }, + }, + "openingElement": { + "attributes": [ + { + "end": 14, + "loc": { + "end": { + "column": 6, + "line": 2, + "offset": 14, + }, + "start": { + "column": 1, + "line": 2, + "offset": 9, + }, + }, + "name": { + "end": 14, + "loc": { + "end": { + "column": 6, + "line": 2, + "offset": 14, + }, + "start": { + "column": 1, + "line": 2, + "offset": 9, + }, + }, + "name": "style", + "range": [ + 9, + 14, + ], + "raw": "style", + "start": 9, + "type": "JSXIdentifier", + }, + "range": [ + 9, + 14, + ], + "raw": "style", + "start": 9, + "type": "JSXAttribute", + "value": { + "end": 69, + "expression": { + "end": 68, + "loc": { + "end": { + "column": 2, + "line": 5, + "offset": 68, + }, + "start": { + "column": 8, + "line": 2, + "offset": 16, + }, + }, + "properties": [ + { + "computed": false, + "end": 37, + "key": { + "end": 30, + "loc": { + "end": { + "column": 12, + "line": 3, + "offset": 30, + }, + "start": { + "column": 2, + "line": 3, + "offset": 20, + }, + }, + "name": "background", + "range": [ + 20, + 30, + ], + "start": 20, + "type": "Identifier", + }, + "kind": "init", + "loc": { + "end": { + "column": 19, + "line": 3, + "offset": 37, + }, + "start": { + "column": 2, + "line": 3, + "offset": 20, + }, + }, + "method": false, + "range": [ + 20, + 37, + ], + "shorthand": false, + "start": 20, + "type": "Property", + "value": { + "end": 37, + "loc": { + "end": { + "column": 19, + "line": 3, + "offset": 37, + }, + "start": { + "column": 14, + "line": 3, + "offset": 32, + }, + }, + "range": [ + 32, + 37, + ], + "raw": "'red'", + "start": 32, + "type": "Literal", + "value": "red", + }, + }, + { + "computed": false, + "end": 64, + "key": { + "end": 47, + "loc": { + "end": { + "column": 8, + "line": 4, + "offset": 47, + }, + "start": { + "column": 2, + "line": 4, + "offset": 41, + }, + }, + "name": "border", + "range": [ + 41, + 47, + ], + "start": 41, + "type": "Identifier", + }, + "kind": "init", + "loc": { + "end": { + "column": 25, + "line": 4, + "offset": 64, + }, + "start": { + "column": 2, + "line": 4, + "offset": 41, + }, + }, + "method": false, + "range": [ + 41, + 64, + ], + "shorthand": false, + "start": 41, + "type": "Property", + "value": { + "end": 64, + "loc": { + "end": { + "column": 25, + "line": 4, + "offset": 64, + }, + "start": { + "column": 10, + "line": 4, + "offset": 49, + }, + }, + "range": [ + 49, + 64, + ], + "raw": "'1px solid red'", + "start": 49, + "type": "Literal", + "value": "1px solid red", + }, + }, + ], + "range": [ + 16, + 68, + ], + "start": 16, + "type": "ObjectExpression", + }, + "loc": { + "end": { + "column": 3, + "line": 5, + "offset": 69, + }, + "start": { + "column": 7, + "line": 2, + "offset": 15, + }, + }, + "range": [ + 15, + 69, + ], + "raw": "{{ + background: 'red', + border: '1px solid red', + }}", + "start": 15, + "type": "JSXExpressionContainer", + }, + }, + ], + "end": 71, + "loc": { + "end": { + "column": 1, + "line": 6, + "offset": 71, + }, + "start": { + "column": 0, + "line": 1, + "offset": 0, + }, + }, + "name": { + "end": 7, + "loc": { + "end": { + "column": 7, + "line": 1, + "offset": 7, + }, + "start": { + "column": 1, + "line": 1, + "offset": 1, + }, + }, + "name": "button", + "range": [ + 1, + 7, + ], + "raw": "button", + "start": 1, + "type": "JSXIdentifier", + }, + "range": [ + 0, + 71, + ], + "raw": "", + "start": 0, + "type": "JSXElement", + }, + "loc": { + "end": { + "column": 10, + "line": 8, + "offset": 88, + }, + "start": { + "column": 1, + "line": 1, + "offset": 0, + }, + }, + "range": [ + 0, + 88, + ], + "start": 0, + "type": "ExpressionStatement", + }, + { + "end": 133, + "expression": { + "children": [], + "closingElement": null, + "end": 133, + "loc": { + "end": { + "column": 9, + "line": 13, + "offset": 133, + }, + "start": { + "column": 4, + "line": 12, + "offset": 104, + }, + }, + "openingElement": { + "attributes": [ + { + "end": 120, + "loc": { + "end": { + "column": 20, + "line": 12, + "offset": 120, + }, + "start": { + "column": 16, + "line": 12, + "offset": 116, + }, + }, + "name": { + "end": 120, + "loc": { + "end": { + "column": 20, + "line": 12, + "offset": 120, + }, + "start": { + "column": 16, + "line": 12, + "offset": 116, + }, + }, + "name": "data", + "range": [ + 116, + 120, + ], + "raw": "data", + "start": 116, + "type": "JSXIdentifier", + }, + "range": [ + 116, + 120, + ], + "raw": "data", + "start": 116, + "type": "JSXAttribute", + "value": { + "end": 130, + "expression": { + "end": 129, + "expressions": [], + "loc": { + "end": { + "column": 5, + "line": 13, + "offset": 129, + }, + "start": { + "column": 22, + "line": 12, + "offset": 122, + }, + }, + "quasis": [ + { + "end": 129, + "loc": { + "end": { + "column": 5, + "line": 13, + "offset": 128, + }, + "start": { + "column": 22, + "line": 12, + "offset": 123, + }, + }, + "range": [ + 122, + 129, + ], + "start": 122, + "tail": true, + "type": "TemplateElement", + "value": { + "cooked": " +", + "raw": " +", + }, + }, + ], + "range": [ + 122, + 129, + ], + "start": 122, + "type": "TemplateLiteral", + }, + "loc": { + "end": { + "column": 6, + "line": 13, + "offset": 130, + }, + "start": { + "column": 21, + "line": 12, + "offset": 121, + }, + }, + "range": [ + 121, + 130, + ], + "raw": "{\` + \`}", + "start": 121, + "type": "JSXExpressionContainer", + }, + }, + ], + "end": 133, + "loc": { + "end": { + "column": 9, + "line": 13, + "offset": 133, + }, + "start": { + "column": 4, + "line": 12, + "offset": 104, + }, + }, + "name": { + "end": 115, + "loc": { + "end": { + "column": 15, + "line": 12, + "offset": 115, + }, + "start": { + "column": 5, + "line": 12, + "offset": 105, + }, + }, + "name": "Components", + "range": [ + 105, + 115, + ], + "raw": "Components", + "start": 105, + "type": "JSXIdentifier", + }, + "range": [ + 104, + 133, + ], + "raw": "", + "selfClosing": true, + "start": 104, + "type": "JSXOpeningElement", + }, + "range": [ + 104, + 133, + ], + "raw": "", + "start": 104, + "type": "JSXElement", + }, + "loc": { + "end": { + "column": 10, + "line": 13, + "offset": 133, + }, + "start": { + "column": 5, + "line": 12, + "offset": 104, + }, + }, + "range": [ + 104, + 133, + ], + "start": 104, + "type": "ExpressionStatement", + }, + ], + "comments": [], + "end": 134, + "loc": { + "end": { + "column": 1, + "line": 14, + "offset": 134, + }, + "start": { + "column": 1, + "line": 1, + "offset": 0, + }, + }, + "range": [ + 0, + 134, + ], + "sourceType": undefined, + "start": 0, + "tokens": [ + { + "end": 1, + "loc": { + "end": { + "column": 1, + "line": 1, + "offset": 1, + }, + "start": { + "column": 0, + "line": 1, + "offset": 0, + }, + }, + "range": [ + 0, + 1, + ], + "start": 0, + "type": "Punctuator", + "value": "<", + }, + { + "end": 7, + "loc": { + "end": { + "column": 7, + "line": 1, + "offset": 7, + }, + "start": { + "column": 1, + "line": 1, + "offset": 1, + }, + }, + "range": [ + 1, + 7, + ], + "start": 1, + "type": "JSXIdentifier", + "value": "button", + }, + { + "end": 14, + "loc": { + "end": { + "column": 6, + "line": 2, + "offset": 14, + }, + "start": { + "column": 1, + "line": 2, + "offset": 9, + }, + }, + "range": [ + 9, + 14, + ], + "start": 9, + "type": "JSXIdentifier", + "value": "style", + }, + { + "end": 15, + "loc": { + "end": { + "column": 7, + "line": 2, + "offset": 15, + }, + "start": { + "column": 6, + "line": 2, + "offset": 14, + }, + }, + "range": [ + 14, + 15, + ], + "start": 14, + "type": "Punctuator", + "value": "=", + }, + { + "end": 16, + "loc": { + "end": { + "column": 8, + "line": 2, + "offset": 16, + }, + "start": { + "column": 7, + "line": 2, + "offset": 15, + }, + }, + "range": [ + 15, + 16, + ], + "start": 15, + "type": "Punctuator", + "value": "{", + }, + { + "end": 17, + "loc": { + "end": { + "column": 9, + "line": 2, + "offset": 17, + }, + "start": { + "column": 8, + "line": 2, + "offset": 16, + }, + }, + "range": [ + 16, + 17, + ], + "start": 16, + "type": "Punctuator", + "value": "{", + }, + { + "end": 30, + "loc": { + "end": { + "column": 12, + "line": 3, + "offset": 30, + }, + "start": { + "column": 2, + "line": 3, + "offset": 20, + }, + }, + "range": [ + 20, + 30, + ], + "start": 20, + "type": "Identifier", + "value": "background", + }, + { + "end": 31, + "loc": { + "end": { + "column": 13, + "line": 3, + "offset": 31, + }, + "start": { + "column": 12, + "line": 3, + "offset": 30, + }, + }, + "range": [ + 30, + 31, + ], + "start": 30, + "type": "Punctuator", + "value": ":", + }, + { + "end": 37, + "loc": { + "end": { + "column": 19, + "line": 3, + "offset": 37, + }, + "start": { + "column": 14, + "line": 3, + "offset": 32, + }, + }, + "range": [ + 32, + 37, + ], + "start": 32, + "type": "String", + "value": "'red'", + }, + { + "end": 38, + "loc": { + "end": { + "column": 20, + "line": 3, + "offset": 38, + }, + "start": { + "column": 19, + "line": 3, + "offset": 37, + }, + }, + "range": [ + 37, + 38, + ], + "start": 37, + "type": "Punctuator", + "value": ",", + }, + { + "end": 47, + "loc": { + "end": { + "column": 8, + "line": 4, + "offset": 47, + }, + "start": { + "column": 2, + "line": 4, + "offset": 41, + }, + }, + "range": [ + 41, + 47, + ], + "start": 41, + "type": "Identifier", + "value": "border", + }, + { + "end": 48, + "loc": { + "end": { + "column": 9, + "line": 4, + "offset": 48, + }, + "start": { + "column": 8, + "line": 4, + "offset": 47, + }, + }, + "range": [ + 47, + 48, + ], + "start": 47, + "type": "Punctuator", + "value": ":", + }, + { + "end": 64, + "loc": { + "end": { + "column": 25, + "line": 4, + "offset": 64, + }, + "start": { + "column": 10, + "line": 4, + "offset": 49, + }, + }, + "range": [ + 49, + 64, + ], + "start": 49, + "type": "String", + "value": "'1px solid red'", + }, + { + "end": 65, + "loc": { + "end": { + "column": 26, + "line": 4, + "offset": 65, + }, + "start": { + "column": 25, + "line": 4, + "offset": 64, + }, + }, + "range": [ + 64, + 65, + ], + "start": 64, + "type": "Punctuator", + "value": ",", + }, + { + "end": 68, + "loc": { + "end": { + "column": 2, + "line": 5, + "offset": 68, + }, + "start": { + "column": 1, + "line": 5, + "offset": 67, + }, + }, + "range": [ + 67, + 68, + ], + "start": 67, + "type": "Punctuator", + "value": "}", + }, + { + "end": 69, + "loc": { + "end": { + "column": 3, + "line": 5, + "offset": 69, + }, + "start": { + "column": 2, + "line": 5, + "offset": 68, + }, + }, + "range": [ + 68, + 69, + ], + "start": 68, + "type": "Punctuator", + "value": "}", + }, + { + "end": 78, + "loc": { + "end": { + "column": 6, + "line": 7, + "offset": 78, + }, + "start": { + "column": 1, + "line": 7, + "offset": 73, + }, + }, + "range": [ + 73, + 78, + ], + "start": 73, + "type": "JSXText", + "value": "Hello", + }, + { + "end": 80, + "loc": { + "end": { + "column": 1, + "line": 8, + "offset": 80, + }, + "start": { + "column": 0, + "line": 8, + "offset": 79, + }, + }, + "range": [ + 79, + 80, + ], + "start": 79, + "type": "Punctuator", + "value": "<", + }, + { + "end": 81, + "loc": { + "end": { + "column": 2, + "line": 8, + "offset": 81, + }, + "start": { + "column": 1, + "line": 8, + "offset": 80, + }, + }, + "range": [ + 80, + 81, + ], + "start": 80, + "type": "Punctuator", + "value": "/", + }, + { + "end": 87, + "loc": { + "end": { + "column": 8, + "line": 8, + "offset": 87, + }, + "start": { + "column": 2, + "line": 8, + "offset": 81, + }, + }, + "range": [ + 81, + 87, + ], + "start": 81, + "type": "JSXIdentifier", + "value": "button", + }, + { + "end": 88, + "loc": { + "end": { + "column": 9, + "line": 8, + "offset": 88, + }, + "start": { + "column": 8, + "line": 8, + "offset": 87, + }, + }, + "range": [ + 87, + 88, + ], + "start": 87, + "type": "Punctuator", + "value": ">", + }, + { + "end": 98, + "loc": { + "end": { + "column": 8, + "line": 10, + "offset": 98, + }, + "start": { + "column": 4, + "line": 10, + "offset": 94, }, }, "range": [ - 17, - 22, + 94, + 98, ], - "start": 17, + "start": 94, "type": "JSXText", - "value": "Hello", + "value": "list", }, { - "end": 23, + "end": 105, "loc": { "end": { - "column": 23, - "line": 1, - "offset": 23, + "column": 5, + "line": 12, + "offset": 105, }, "start": { - "column": 22, - "line": 1, - "offset": 22, + "column": 4, + "line": 12, + "offset": 104, }, }, "range": [ - 22, - 23, + 104, + 105, ], - "start": 22, + "start": 104, "type": "Punctuator", "value": "<", }, { - "end": 24, + "end": 115, "loc": { "end": { - "column": 24, - "line": 1, - "offset": 24, + "column": 15, + "line": 12, + "offset": 115, }, "start": { - "column": 23, - "line": 1, - "offset": 23, + "column": 5, + "line": 12, + "offset": 105, }, }, "range": [ - 23, - 24, + 105, + 115, ], - "start": 23, - "type": "Punctuator", - "value": "/", + "start": 105, + "type": "JSXIdentifier", + "value": "Components", }, { - "end": 30, + "end": 120, "loc": { "end": { - "column": 30, - "line": 1, - "offset": 30, + "column": 20, + "line": 12, + "offset": 120, }, "start": { - "column": 24, - "line": 1, - "offset": 24, + "column": 16, + "line": 12, + "offset": 116, }, }, "range": [ - 24, - 30, + 116, + 120, ], - "start": 24, + "start": 116, "type": "JSXIdentifier", - "value": "button", + "value": "data", }, { - "end": 31, + "end": 121, "loc": { "end": { - "column": 31, - "line": 1, - "offset": 31, + "column": 21, + "line": 12, + "offset": 121, }, "start": { - "column": 30, - "line": 1, - "offset": 30, + "column": 20, + "line": 12, + "offset": 120, }, }, "range": [ - 30, - 31, + 120, + 121, ], - "start": 30, + "start": 120, "type": "Punctuator", - "value": ">", + "value": "=", }, { - "end": 34, + "end": 122, "loc": { "end": { - "column": 1, - "line": 3, - "offset": 34, + "column": 22, + "line": 12, + "offset": 122, }, "start": { - "column": 0, - "line": 3, - "offset": 33, + "column": 21, + "line": 12, + "offset": 121, }, }, "range": [ - 33, - 34, + 121, + 122, ], - "start": 33, + "start": 121, "type": "Punctuator", - "value": "<", + "value": "{", }, { - "end": 40, + "end": 129, "loc": { "end": { - "column": 7, - "line": 3, - "offset": 40, + "column": 5, + "line": 13, + "offset": 129, }, "start": { - "column": 1, - "line": 3, - "offset": 34, + "column": 22, + "line": 12, + "offset": 122, }, }, "range": [ - 34, - 40, + 122, + 129, ], - "start": 34, - "type": "JSXIdentifier", - "value": "button", + "start": 122, + "type": "Template", + "value": "\` + \`", }, { - "end": 49, + "end": 130, "loc": { "end": { - "column": 16, - "line": 3, - "offset": 49, + "column": 6, + "line": 13, + "offset": 130, }, "start": { - "column": 8, - "line": 3, - "offset": 41, + "column": 5, + "line": 13, + "offset": 129, }, }, "range": [ - 41, - 49, + 129, + 130, ], - "start": 41, - "type": "JSXIdentifier", - "value": "disabled", + "start": 129, + "type": "Punctuator", + "value": "}", }, { - "end": 50, + "end": 132, "loc": { "end": { - "column": 17, - "line": 3, - "offset": 50, + "column": 8, + "line": 13, + "offset": 132, }, "start": { - "column": 16, - "line": 3, - "offset": 49, + "column": 7, + "line": 13, + "offset": 131, }, }, "range": [ - 49, - 50, + 131, + 132, ], - "start": 49, + "start": 131, "type": "Punctuator", "value": "/", }, { - "end": 51, + "end": 133, "loc": { "end": { - "column": 18, - "line": 3, - "offset": 51, + "column": 9, + "line": 13, + "offset": 133, }, "start": { - "column": 17, - "line": 3, - "offset": 50, + "column": 8, + "line": 13, + "offset": 132, }, }, "range": [ - 50, - 51, + 132, + 133, ], - "start": 50, + "start": 132, "type": "Punctuator", "value": ">", }, @@ -37556,50 +38338,6 @@ exports[`parser should match all AST snapshots: basic.mdx 1`] = ` "type": "String", "value": "'./basic'", }, - { - "end": 29, - "loc": { - "end": { - "column": 0, - "line": 3, - "offset": 29, - }, - "start": { - "column": 0, - "line": 3, - "offset": 29, - }, - }, - "range": [ - 29, - 29, - ], - "start": 29, - "type": "Keyword", - "value": "var", - }, - { - "end": 29, - "loc": { - "end": { - "column": 0, - "line": 3, - "offset": 29, - }, - "start": { - "column": 0, - "line": 3, - "offset": 29, - }, - }, - "range": [ - 29, - 29, - ], - "start": 29, - "type": "Identifier", - "value": "Basic", - }, { "end": 35, "loc": { @@ -37820,28 +38558,6 @@ exports[`parser should match all AST snapshots: basic.mdx 1`] = ` "type": "Punctuator", "value": "}", }, - { - "end": 72, - "loc": { - "end": { - "column": 1, - "line": 5, - "offset": 72, - }, - "start": { - "column": 0, - "line": 5, - "offset": 71, - }, - }, - "range": [ - 71, - 72, - ], - "start": 71, - "type": "Punctuator", - "value": "}", - }, { "end": 85, "loc": { diff --git a/test/fixtures/435.mdx b/test/fixtures/435.mdx new file mode 100644 index 00000000..51dc036a --- /dev/null +++ b/test/fixtures/435.mdx @@ -0,0 +1,13 @@ + + +- list + + diff --git a/yarn.lock b/yarn.lock index 28700ed9..7e724e6a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -35,86 +35,86 @@ "@commitlint/config-lerna-scopes" "^17.0.2" "@pkgr/utils" "^2.3.1" -"@1stg/common-config@^8.1.0": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-8.1.0.tgz#1e7124c46bc723fa3abf9a2881274168d92583b4" - integrity sha512-nZJ8s0qJ61i+Mt9DJNzNAZ2WdqZSSg/0RA+P01i72YV71vFGQmohUYJyWmEAEPZpEDrUg65Ue8A1a6crIni5Kg== +"@1stg/common-config@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-9.0.0.tgz#7755fb2b47f7e5020c7a65944aaaca4a02bba8a4" + integrity sha512-4eObSMl7h7ZJZeat82SQykv4H38QVp38kB/nxZyIwRWhBptHpXvEIA62AQ5pear/+qJkQ6blq78X86lgbh90dg== dependencies: "@1stg/babel-preset" "^3.2.3" "@1stg/commitlint-config" "^3.2.0" - "@1stg/eslint-config" "^6.2.0" + "@1stg/eslint-config" "^7.0.0" "@1stg/lint-staged" "^3.4.1" - "@1stg/markuplint-config" "^3.0.0" + "@1stg/markuplint-config" "^3.0.1" "@1stg/prettier-config" "^3.9.2" "@1stg/remark-preset" "^2.0.0" "@1stg/simple-git-hooks" "^0.2.3" "@1stg/tsconfig" "^2.3.2" - "@babel/core" "^7.21.5" - "@commitlint/cli" "^17.6.1" - eslint "^8.39.0" + "@babel/core" "^7.22.5" + "@commitlint/cli" "^17.6.5" + eslint "^8.43.0" lint-staged "^13.2.2" npm-run-all "^4.1.5" prettier "^2.8.8" simple-git-hooks "^2.8.1" - tslib "^2.5.0" + tslib "^2.5.3" "@1stg/config@^0.2.1": version "0.2.1" resolved "https://registry.yarnpkg.com/@1stg/config/-/config-0.2.1.tgz#12d35ff8e243bd4b35b55c2f244cd5cbfea844d4" integrity sha512-fStBgzyQnL0/bdIcHCplmrjFN9SBfnkldQ+TnpKnBFmp7jIxoggSRL3kaEFbGlq2lbV/H7Udy3bmJWTtdDH5Iw== -"@1stg/eslint-config@^6.2.0": - version "6.2.0" - resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-6.2.0.tgz#a61dec551aa41844fcb9a949a2b59f2d18677145" - integrity sha512-c69nxC21yRiFGVWyTnprvHn7hbL6kxP/3UzCnk1dZmsSgnW0Xk3kAdxvG69+MbHndv4h4p7KrMyH2wPL3H+4yQ== +"@1stg/eslint-config@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-7.0.0.tgz#986eb594bc3cb6957cbb30e2a1ebddfda071b472" + integrity sha512-J1+0FbTvZK2CB/JokzP/D37GhAtJi42yAJep1wBw213QdDhktI2iV7VmwKvoPlLL8CB8JwF955UFKusG9lC7tA== dependencies: "@1stg/config" "^0.2.1" - "@angular-eslint/eslint-plugin" "^15.2.1" - "@angular-eslint/eslint-plugin-template" "^15.2.1" - "@angular-eslint/template-parser" "^15.2.1" - "@babel/eslint-parser" "^7.21.3" - "@babel/eslint-plugin" "^7.19.1" + "@angular-eslint/eslint-plugin" "^16.0.3" + "@angular-eslint/eslint-plugin-template" "^16.0.3" + "@angular-eslint/template-parser" "^16.0.3" + "@babel/eslint-parser" "^7.22.5" + "@babel/eslint-plugin" "^7.22.5" "@eslint-community/eslint-plugin-eslint-comments" "^3.2.1" - "@pkgr/utils" "^2.3.1" - "@typescript-eslint/eslint-plugin" "^5.59.2" - "@typescript-eslint/parser" "^5.59.2" + "@pkgr/utils" "^2.4.1" + "@typescript-eslint/eslint-plugin" "^5.60.0" + "@typescript-eslint/parser" "^5.60.0" angular-eslint-template-parser "^0.1.1" eslint-config-prettier "^8.8.0" - eslint-config-standard "^17.0.0" + eslint-config-standard "^17.1.0" eslint-config-standard-jsx "^11.0.0" eslint-config-standard-react "^13.0.0" eslint-formatter-friendly "^7.0.0" eslint-import-resolver-typescript "^3.5.5" - eslint-plugin-css "^0.7.0" - eslint-plugin-es-x "^6.1.0" + eslint-plugin-css "^0.8.0" + eslint-plugin-es-x "^7.1.0" eslint-plugin-import "npm:eslint-plugin-i@^2.27.5" - eslint-plugin-jest "^27.2.1" - eslint-plugin-jsdoc "^43.1.1" - eslint-plugin-jsonc "^2.7.0" + eslint-plugin-jest "^27.2.2" + eslint-plugin-jsdoc "^46.2.6" + eslint-plugin-jsonc "^2.9.0" eslint-plugin-markup "^0.11.0" - eslint-plugin-mdx "^2.0.5" - eslint-plugin-n "^15.7.0" + eslint-plugin-mdx "^2.1.0" + eslint-plugin-n "^16.0.0" eslint-plugin-prettier "^4.2.1" eslint-plugin-promise "^6.1.1" eslint-plugin-react "^7.32.2" eslint-plugin-react-hooks "^4.6.0" - eslint-plugin-regexp "^1.14.0" + eslint-plugin-regexp "^1.15.0" eslint-plugin-simple-import-sort "^10.0.0" - eslint-plugin-sonar "^0.11.1" + eslint-plugin-sonar "^0.12.0" eslint-plugin-sonarjs "^0.19.0" - eslint-plugin-svelte "^2.27.2" - eslint-plugin-toml "^0.4.0" - eslint-plugin-unicorn "^46.0.0" - eslint-plugin-vue "^9.11.0" - eslint-plugin-yml "^1.5.0" + eslint-plugin-svelte "^2.31.0" + eslint-plugin-toml "^0.5.0" + eslint-plugin-unicorn "^47.0.0" + eslint-plugin-vue "^9.15.0" + eslint-plugin-yml "^1.8.0" -"@1stg/lib-config@^11.1.0": - version "11.1.0" - resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-11.1.0.tgz#a40c6ae1159abaacf072f04b77f1f4b63ea1b685" - integrity sha512-cSSGTeXFnD9/sl+A2GKUckNHVJfQneFQXO8Qif16hmBwq3uTBkrwGPmtyo/hC3LcAsUB1iy9GBS2soP2y+yKmQ== +"@1stg/lib-config@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-12.0.0.tgz#843891ecd0478efd5ae28b74c22d88d9f6884dce" + integrity sha512-Dkz0ouc5M9DvkY0EG/RXNjTkcE544e5gScU2mKBInc8W7QOidBjji9OCsw29jxjS0o6cPRSELXZJbSJC2xfkrg== dependencies: - "@1stg/common-config" "^8.1.0" - "@pkgr/rollup" "^4.0.0" + "@1stg/common-config" "^9.0.0" + "@pkgr/rollup" "^4.1.1" "@1stg/lint-staged@^3.4.1": version "3.4.1" @@ -127,14 +127,14 @@ "@pkgr/utils" "^2.3.1" prettier "^2.7.1" -"@1stg/markuplint-config@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@1stg/markuplint-config/-/markuplint-config-3.0.0.tgz#e3aa69ada93cfb0ad66b325540903695634ff7d0" - integrity sha512-hsjiThQgnCCmbBqyafq6V60qkkAmHBRIif6MAraFMqXwYaAmsgrldnnRcD+GevYSA2PC6TDjZ4h7ATUPqeHKFQ== +"@1stg/markuplint-config@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@1stg/markuplint-config/-/markuplint-config-3.0.1.tgz#573fa4d906a387060b8de864a39f4b71165d2af9" + integrity sha512-75unMHUJDrYe25wVfo5RrzdXpxF3b18yhSinOnTu04wagOiJ5GKGrc/E5bgotGsgElvQI4+An+OYRTj/QVuL/g== dependencies: - "@markuplint/svelte-parser" "^3.6.1" - "@markuplint/vue-parser" "^3.6.1" - "@markuplint/vue-spec" "^3.6.1" + "@markuplint/svelte-parser" "^3.8.0" + "@markuplint/vue-parser" "^3.8.0" + "@markuplint/vue-spec" "^3.9.0" markuplint-angular-parser "^2.0.0" "@1stg/prettier-config@^3.9.2": @@ -182,7 +182,12 @@ resolved "https://registry.yarnpkg.com/@1stg/tsconfig/-/tsconfig-2.3.2.tgz#d843c542845d4d14350162507f711f216159cd8c" integrity sha512-vNYoC1cvdGHCA3tJMUskaVsNVTt6QIOFO+eDtdO4JvqHllvi+o2QSqy5vTpAGMODSqbyFcLdPW7sD5kj9VQmNA== -"@ampproject/remapping@^2.2.0": +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@ampproject/remapping@^2.2.0", "@ampproject/remapping@^2.2.1": version "2.2.1" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== @@ -190,46 +195,46 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@angular-eslint/bundled-angular-compiler@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.1.tgz#7c77a4a19942868d844372b5b3b562c0d630de1e" - integrity sha512-LO7Am8eVCr7oh6a0VmKSL7K03CnQEQhFO7Wt/YtbfYOxVjrbwmYLwJn+wZPOT7A02t/BttOD/WXuDrOWtSMQ/Q== - -"@angular-eslint/eslint-plugin-template@^15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.1.tgz#af39f66e9d971d7f7635add9cf1a396f1766fd64" - integrity sha512-IeiSLk6YxapFdH2z5o/O3R7VwtBd2T6fWmhLFPwDYMDknrwegnOjwswCdBplOccpUp0wqlCeGUx7LTsuzwaz7w== - dependencies: - "@angular-eslint/bundled-angular-compiler" "15.2.1" - "@angular-eslint/utils" "15.2.1" - "@typescript-eslint/type-utils" "5.48.2" - "@typescript-eslint/utils" "5.48.2" - aria-query "5.1.3" +"@angular-eslint/bundled-angular-compiler@16.1.0": + version "16.1.0" + resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.1.0.tgz#59fd1ff6423b02d6fa7eeb9ea30581a839471f2c" + integrity sha512-5EFAWXuFJADr3imo/ZYshY8s0K7U7wyysnE2LXnpT9PAi5rmkzt70UNZNRuamCbXr4tdIiu+fXWOj7tUuJKnnw== + +"@angular-eslint/eslint-plugin-template@^16.0.3": + version "16.1.0" + resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.1.0.tgz#3d88fba2baff4debf2d332fc3d2eea53a32b4efe" + integrity sha512-wQHWR5vqWGgO7mqoG5ixXeplIlz/OmxBJE9QMLPTZE8GdaTx8+F/5J37OWh84zCpD3mOa/FHYZxBDm2MfUmA1Q== + dependencies: + "@angular-eslint/bundled-angular-compiler" "16.1.0" + "@angular-eslint/utils" "16.1.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" + aria-query "5.3.0" axobject-query "3.1.1" -"@angular-eslint/eslint-plugin@^15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.1.tgz#616e7aa1f3aea6203e887c20749b87d08bb95d3e" - integrity sha512-OM7b1kS4E4CkXjkaWN+lEzawh4VxY6l7FO1Cuk4s7iv3/YpZG3rJxIZBqnFLTixwrBuqw8y4FNBzF3eDgmFAUw== +"@angular-eslint/eslint-plugin@^16.0.3": + version "16.1.0" + resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-16.1.0.tgz#23492eaad1d44dd90793cf0534c7177a028af226" + integrity sha512-BFzzJJlgQgWc8avdSBkaDWAzNSUqcwWy0L1iZSBdXGoIOxj72kLbwe99emb8M+rUfCveljQkeM2pcYu8XLbJIA== dependencies: - "@angular-eslint/utils" "15.2.1" - "@typescript-eslint/utils" "5.48.2" + "@angular-eslint/utils" "16.1.0" + "@typescript-eslint/utils" "5.62.0" -"@angular-eslint/template-parser@^15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-15.2.1.tgz#dbe4978afdcea81b9d5cac3d672c20de5821dc54" - integrity sha512-ViCi79gC2aKJecmYLkOT+QlT5WMRNXeYz0Dr9Pr8qXzIbY0oAWE7nOT5jkXwQ9oUk+ybtGCWHma5JVJWVJsIog== +"@angular-eslint/template-parser@^16.0.3": + version "16.1.0" + resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-16.1.0.tgz#c919c26aa1154b88d1403f4b8e657613c29fe3cf" + integrity sha512-DOQtzVehtbO7+BQ+FMOXRsxGRjHb3ve6M+S4qASKTiI+twtONjRODcHezD3N4PDkjpKPbOnk7YnFsHur5csUNw== dependencies: - "@angular-eslint/bundled-angular-compiler" "15.2.1" + "@angular-eslint/bundled-angular-compiler" "16.1.0" eslint-scope "^7.0.0" -"@angular-eslint/utils@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-15.2.1.tgz#b286fddb1b8b43d96b91009237da7f74d9e64dda" - integrity sha512-++FneAJHxJqcSu0igVN6uOkSoHxlzgLoMBswuovYJy3UKwm33/T6WFku8++753Ca/JucIoR1gdUfO7SoSspMDg== +"@angular-eslint/utils@16.1.0": + version "16.1.0" + resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-16.1.0.tgz#46e6aafc8b4ca0f6e86cca9ec36f61034f984974" + integrity sha512-u5XscYUq1F/7RuwyVIV2a280QL27lyQz434VYR+Np/oO21NGj5jxoRKb55xhXT9EFVs5Sy4JYeEUp6S75J/cUw== dependencies: - "@angular-eslint/bundled-angular-compiler" "15.2.1" - "@typescript-eslint/utils" "5.48.2" + "@angular-eslint/bundled-angular-compiler" "16.1.0" + "@typescript-eslint/utils" "5.62.0" "@babel/code-frame@7.0.0": version "7.0.0" @@ -238,61 +243,61 @@ dependencies: "@babel/highlight" "^7.0.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== dependencies: - "@babel/highlight" "^7.18.6" + "@babel/highlight" "^7.22.5" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5", "@babel/compat-data@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730" + integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.21.5": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f" + integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helpers" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.9" + "@babel/helper-module-transforms" "^7.22.9" + "@babel/helpers" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.8" + "@babel/types" "^7.22.5" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.2" - semver "^6.3.0" + semver "^6.3.1" -"@babel/eslint-parser@^7.21.3": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz#59fb6fc4f3b017ab86987c076226ceef7b2b2ef2" - integrity sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ== +"@babel/eslint-parser@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.9.tgz#75f8aa978d1e76c87cc6f26c1ea16ae58804d390" + integrity sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" - semver "^6.3.0" + semver "^6.3.1" -"@babel/eslint-plugin@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/eslint-plugin/-/eslint-plugin-7.19.1.tgz#8bfde4b6e4380ea038e7947a765fe536c3057a4c" - integrity sha512-ElGPkQPapKMa3zVqXHkZYzuL7I5LbRw9UWBUArgWsdWDDb9XcACqOpBib5tRPA9XvbVZYrFUkoQPbiJ4BFvu4w== +"@babel/eslint-plugin@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/eslint-plugin/-/eslint-plugin-7.22.5.tgz#47407d8c9e527b62ff75ee11e4baa6de3da7cf0e" + integrity sha512-lDXW06rf1sXywWWw+UdS/iYxRjrqhH4AXdPeKE4+fEgEoGBXcdIDQ+uCJOUcvCb0jCTvfwHOSXkwnfd24EAkLQ== dependencies: eslint-rule-composer "^0.3.0" -"@babel/generator@^7.0.0-beta.44", "@babel/generator@^7.21.5", "@babel/generator@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== +"@babel/generator@^7.0.0-beta.44", "@babel/generator@^7.22.7", "@babel/generator@^7.22.9", "@babel/generator@^7.7.2": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.9.tgz#572ecfa7a31002fa1de2a9d91621fd895da8493d" + integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw== dependencies: - "@babel/types" "^7.21.5" + "@babel/types" "^7.22.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -311,16 +316,16 @@ dependencies: "@babel/types" "^7.21.5" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5", "@babel/helper-compilation-targets@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892" + integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw== dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" + "@babel/compat-data" "^7.22.9" + "@babel/helper-validator-option" "^7.22.5" + browserslist "^4.21.9" lru-cache "^5.1.1" - semver "^6.3.0" + semver "^6.3.1" "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0": version "7.21.8" @@ -358,25 +363,25 @@ resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5", "@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0", "@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== +"@babel/helper-hoist-variables@^7.18.6", "@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" "@babel/helper-member-expression-to-functions@^7.21.5": version "7.21.5" @@ -385,26 +390,23 @@ dependencies: "@babel/types" "^7.21.5" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.44", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.44", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4", "@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== dependencies: - "@babel/types" "^7.21.4" + "@babel/types" "^7.22.5" -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5", "@babel/helper-module-transforms@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129" + integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ== dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.5" "@babel/helper-optimise-call-expression@^7.18.6": version "7.18.6" @@ -440,12 +442,12 @@ "@babel/traverse" "^7.21.5" "@babel/types" "^7.21.5" -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== +"@babel/helper-simple-access@^7.21.5", "@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== dependencies: - "@babel/types" "^7.21.5" + "@babel/types" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers@^7.20.0": version "7.20.0" @@ -454,27 +456,27 @@ dependencies: "@babel/types" "^7.20.0" -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== +"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== -"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== +"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0", "@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== "@babel/helper-wrap-function@^7.18.6", "@babel/helper-wrap-function@^7.18.9": version "7.20.5" @@ -486,28 +488,28 @@ "@babel/traverse" "^7.20.5" "@babel/types" "^7.20.5" -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== +"@babel/helpers@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" + integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.6" + "@babel/types" "^7.22.5" -"@babel/highlight@^7.0.0", "@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== +"@babel/highlight@^7.0.0", "@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== dependencies: - "@babel/helper-validator-identifier" "^7.18.6" + "@babel/helper-validator-identifier" "^7.22.5" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" + integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" @@ -1351,38 +1353,38 @@ dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.0.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.21.5", "@babel/traverse@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.5" - "@babel/types" "^7.21.5" +"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.5", "@babel/template@^7.3.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.21.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" + integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.7" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/types" "^7.22.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" + integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -1395,13 +1397,13 @@ resolved "https://registry.yarnpkg.com/@bloomberg/record-tuple-polyfill/-/record-tuple-polyfill-0.0.4.tgz#9ef3df44e472ceb9a0a2010d858a526f2021fefa" integrity sha512-h0OYmPR3A5Dfbetra/GzxBAzQk8sH7LhRkRUTdagX6nrtlUgJGYCTv4bBK33jsTQw9HDd8PE2x1Ma+iRKEDUsw== -"@changesets/apply-release-plan@^6.1.3": - version "6.1.3" - resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.3.tgz#3bcc0bd57ba00d50d20df7d0141f1a9b2134eaf7" - integrity sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg== +"@changesets/apply-release-plan@^6.1.4": + version "6.1.4" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.4.tgz#09293256090737ecd2f683842d6d732034a5e3c8" + integrity sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/config" "^2.3.0" + "@changesets/config" "^2.3.1" "@changesets/get-version-range-type" "^0.3.2" "@changesets/git" "^2.0.0" "@changesets/types" "^5.2.1" @@ -1412,19 +1414,19 @@ outdent "^0.5.0" prettier "^2.7.1" resolve-from "^5.0.0" - semver "^5.4.1" + semver "^7.5.3" -"@changesets/assemble-release-plan@^5.2.3": - version "5.2.3" - resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.3.tgz#5ce6191c6e193d40b566a7b0e01690cfb106f4db" - integrity sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g== +"@changesets/assemble-release-plan@^5.2.4": + version "5.2.4" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.4.tgz#d42fd63f4297a2e630e8e0a49f07d4ff5f5ef7bc" + integrity sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg== dependencies: "@babel/runtime" "^7.20.1" "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/get-dependents-graph" "^1.3.6" "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" - semver "^5.4.1" + semver "^7.5.3" "@changesets/changelog-git@^0.1.14": version "0.1.14" @@ -1442,19 +1444,19 @@ "@changesets/types" "^5.2.1" dotenv "^8.1.0" -"@changesets/cli@^2.26.1": - version "2.26.1" - resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.26.1.tgz#2d10858d7d32314a524e383111c96d831eb0402f" - integrity sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ== +"@changesets/cli@^2.26.2": + version "2.26.2" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.26.2.tgz#8914dd6ef3ea425a7d5935f6c35a8b7ccde54e45" + integrity sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/apply-release-plan" "^6.1.3" - "@changesets/assemble-release-plan" "^5.2.3" + "@changesets/apply-release-plan" "^6.1.4" + "@changesets/assemble-release-plan" "^5.2.4" "@changesets/changelog-git" "^0.1.14" - "@changesets/config" "^2.3.0" + "@changesets/config" "^2.3.1" "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" - "@changesets/get-release-plan" "^3.0.16" + "@changesets/get-dependents-graph" "^1.3.6" + "@changesets/get-release-plan" "^3.0.17" "@changesets/git" "^2.0.0" "@changesets/logger" "^0.0.5" "@changesets/pre" "^1.0.14" @@ -1463,7 +1465,7 @@ "@changesets/write" "^0.2.3" "@manypkg/get-packages" "^1.1.3" "@types/is-ci" "^3.0.0" - "@types/semver" "^6.0.0" + "@types/semver" "^7.5.0" ansi-colors "^4.1.3" chalk "^2.1.0" enquirer "^2.3.0" @@ -1476,18 +1478,18 @@ p-limit "^2.2.0" preferred-pm "^3.0.0" resolve-from "^5.0.0" - semver "^5.4.1" + semver "^7.5.3" spawndamnit "^2.0.0" term-size "^2.1.0" tty-table "^4.1.5" -"@changesets/config@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.0.tgz#bff074d6492fa772cee139f9a04efa4cd56445bb" - integrity sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ== +"@changesets/config@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.1.tgz#3d4a1dc866c3623375180b30f69fccdf0e3efebf" + integrity sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w== dependencies: "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/get-dependents-graph" "^1.3.6" "@changesets/logger" "^0.0.5" "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" @@ -1501,16 +1503,16 @@ dependencies: extendable-error "^0.1.5" -"@changesets/get-dependents-graph@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.5.tgz#f94c6672d2f9a87aa35512eea74550585ba41c21" - integrity sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA== +"@changesets/get-dependents-graph@^1.3.6": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.6.tgz#5e19e7b0bfbc7dc38e1986eaaa7016ff377ed888" + integrity sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q== dependencies: "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" chalk "^2.1.0" fs-extra "^7.0.1" - semver "^5.4.1" + semver "^7.5.3" "@changesets/get-github-info@^0.5.2": version "0.5.2" @@ -1520,14 +1522,14 @@ dataloader "^1.4.0" node-fetch "^2.5.0" -"@changesets/get-release-plan@^3.0.16": - version "3.0.16" - resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.16.tgz#5d9cfc4ffda02c496ef0fde407210de8e3a0fb19" - integrity sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg== +"@changesets/get-release-plan@^3.0.17": + version "3.0.17" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.17.tgz#8aabced2795ffeae864696b60ee3031f8a94c5f3" + integrity sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/assemble-release-plan" "^5.2.3" - "@changesets/config" "^2.3.0" + "@changesets/assemble-release-plan" "^5.2.4" + "@changesets/config" "^2.3.1" "@changesets/pre" "^1.0.14" "@changesets/read" "^0.5.9" "@changesets/types" "^5.2.1" @@ -1612,14 +1614,14 @@ human-id "^1.0.2" prettier "^2.7.1" -"@commitlint/cli@^17.6.1": - version "17.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.6.1.tgz#571a1272a656cd316f4b601cbb0fcb2ef50bfc7a" - integrity sha512-kCnDD9LE2ySiTnj/VPaxy4/oRayRcdv4aCuVxtoum8SxIU7OADHc0nJPQfheE8bHcs3zZdWzDMWltRosuT13bg== +"@commitlint/cli@^17.6.5": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.6.7.tgz#1d352a6cfdb6b6a6ae49a959e6c13dcef1b63782" + integrity sha512-nzZmfO5KIOupYppn1MsnYX/80I+KDlxiwkks3CJT0XT+t34UgqGi3eSyEuzgcIjPlORk5/GMaAEiys78iLfGMg== dependencies: "@commitlint/format" "^17.4.4" - "@commitlint/lint" "^17.6.1" - "@commitlint/load" "^17.5.0" + "@commitlint/lint" "^17.6.7" + "@commitlint/load" "^17.6.7" "@commitlint/read" "^17.5.1" "@commitlint/types" "^17.4.4" execa "^5.0.0" @@ -1629,34 +1631,34 @@ yargs "^17.0.0" "@commitlint/config-conventional@^17.1.0": - version "17.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-17.6.1.tgz#ab07c82c88f99ffee89ae321f1f49f1798127fbb" - integrity sha512-ng/ybaSLuTCH9F+7uavSOnEQ9EFMl7lHEjfAEgRh1hwmEe8SpLKpQeMo2aT1IWvHaGMuTb+gjfbzoRf2IR23NQ== + version "17.6.3" + resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-17.6.3.tgz#21f5835235493e386effeaa98b898124230b1000" + integrity sha512-bLyHEjjRWqlLQWIgYFHmUPbEFMOOLXeF3QbUinDIJev/u9e769tkoTH9YPknEywiuIrAgZaVo+OfzAIsJP0fsw== dependencies: conventional-changelog-conventionalcommits "^5.0.0" "@commitlint/config-lerna-scopes@^17.0.2": - version "17.4.2" - resolved "https://registry.yarnpkg.com/@commitlint/config-lerna-scopes/-/config-lerna-scopes-17.4.2.tgz#6979712c39d7c1bd01781f01ca7597dea8105126" - integrity sha512-uqunHW7LWBkjEflRAxmzlNu4l3n6Yh/W4EN7eUs404dNj8jhX/K05/ZcFq9i7KzadVp70MUIpZEXfWBTqR9Jyg== + version "17.6.3" + resolved "https://registry.yarnpkg.com/@commitlint/config-lerna-scopes/-/config-lerna-scopes-17.6.3.tgz#36d4f7b19f913a02b833e7c5d0dfde28d6946a31" + integrity sha512-mjT+cvc/aOOV2hH9UDOD4uT25MUqjFg1dFV+ol1w2ESv/VwLZEMUpQ+DPMkOlaH/et8c7BIaEZYyKByoNO9Ukw== dependencies: + "@lerna/project" "^6.0.0" glob "^8.0.3" import-from "4.0.0" - resolve-pkg "2.0.0" - semver "7.3.8" + semver "7.5.0" -"@commitlint/config-validator@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.4.4.tgz#d0742705719559a101d2ee49c0c514044af6d64d" - integrity sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg== +"@commitlint/config-validator@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz#c664d42a1ecf5040a3bb0843845150f55734df41" + integrity sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ== dependencies: "@commitlint/types" "^17.4.4" ajv "^8.11.0" -"@commitlint/ensure@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-17.4.4.tgz#a36e7719bdb9c2b86c8b8c2e852b463a7bfda5fa" - integrity sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g== +"@commitlint/ensure@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-17.6.7.tgz#77a77a0c05e6a1c34589f59e82e6cb937101fc4b" + integrity sha512-mfDJOd1/O/eIb/h4qwXzUxkmskXDL9vNPnZ4AKYKiZALz4vHzwMxBSYtyL2mUIDeU9DRSpEUins8SeKtFkYHSw== dependencies: "@commitlint/types" "^17.4.4" lodash.camelcase "^4.3.0" @@ -1678,32 +1680,32 @@ "@commitlint/types" "^17.4.4" chalk "^4.1.0" -"@commitlint/is-ignored@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-17.4.4.tgz#82e03f1abe2de2c0c8c162a250b8d466225e922b" - integrity sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw== +"@commitlint/is-ignored@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-17.6.7.tgz#711897f19180f1121ecf302a3c5496f9a920a59e" + integrity sha512-vqyNRqtbq72P2JadaoWiuoLtXIs9SaAWDqdtef6G2zsoXqKFc7vqj1f+thzVgosXG3X/5K9jNp+iYijmvOfc/g== dependencies: "@commitlint/types" "^17.4.4" - semver "7.3.8" + semver "7.5.2" -"@commitlint/lint@^17.6.1": - version "17.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-17.6.1.tgz#52275acc6b3d92a9ad466535331c5dd8e85b6f42" - integrity sha512-VARJ9kxH64isgwVnC+ABPafCYzqxpsWJIpDaTuI0gh8aX4GQ0i7cn9tvxtFNfJj4ER2BAJeWJ0vURdNYjK2RQQ== +"@commitlint/lint@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-17.6.7.tgz#fb49c2722749e3ef83e2b41258fc32531068a13b" + integrity sha512-TW+AozfuOFMrHn+jdwtz0IWu8REKFp0eryOvoBp2r8IXNc4KihKB1spAiUB6SFyHD6hVVeolz12aHnJ3Mb+xVQ== dependencies: - "@commitlint/is-ignored" "^17.4.4" - "@commitlint/parse" "^17.4.4" - "@commitlint/rules" "^17.6.1" + "@commitlint/is-ignored" "^17.6.7" + "@commitlint/parse" "^17.6.7" + "@commitlint/rules" "^17.6.7" "@commitlint/types" "^17.4.4" -"@commitlint/load@^17.5.0": - version "17.5.0" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.5.0.tgz#be45dbbb50aaf5eb7e8e940e1e0d6171d1426bab" - integrity sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q== +"@commitlint/load@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.6.7.tgz#c63b18ca8942a8fc095ec7a7ff7aa52f3854f6ba" + integrity sha512-QZ2rJTbX55BQdYrCm/p6+hh/pFBgC9nTJxfsrK6xRPe2thiQzHN0AQDBqBwAirn6gIkHrjIbCbtAE6kiDYLjrw== dependencies: - "@commitlint/config-validator" "^17.4.4" + "@commitlint/config-validator" "^17.6.7" "@commitlint/execute-rule" "^17.4.0" - "@commitlint/resolve-extends" "^17.4.4" + "@commitlint/resolve-extends" "^17.6.7" "@commitlint/types" "^17.4.4" "@types/node" "*" chalk "^4.1.0" @@ -1721,10 +1723,10 @@ resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-17.4.2.tgz#f4753a79701ad6db6db21f69076e34de6580e22c" integrity sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== -"@commitlint/parse@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-17.4.4.tgz#8311b12f2b730de6ea0679ae2a37b386bcc5b04b" - integrity sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg== +"@commitlint/parse@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-17.6.7.tgz#b87c61213653d670f956faafe7783aef9ef13020" + integrity sha512-ibO03BgEns+JJpohpBZYD49mCdSNMg6fTv7vA5yqzEFWkBQk5NWhEBw2yG+Z1UClStIRkMkAYyI2HzoQG9tCQQ== dependencies: "@commitlint/types" "^17.4.4" conventional-changelog-angular "^5.0.11" @@ -1741,24 +1743,24 @@ git-raw-commits "^2.0.11" minimist "^1.2.6" -"@commitlint/resolve-extends@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz#8f931467dea8c43b9fe38373e303f7c220de6fdc" - integrity sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A== +"@commitlint/resolve-extends@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz#9c53a4601c96ab2dd20b90fb35c988639307735d" + integrity sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg== dependencies: - "@commitlint/config-validator" "^17.4.4" + "@commitlint/config-validator" "^17.6.7" "@commitlint/types" "^17.4.4" import-fresh "^3.0.0" lodash.mergewith "^4.6.2" resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^17.6.1": - version "17.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-17.6.1.tgz#dff529b8d1e0455808fe7e3e1fa70617e4eb2759" - integrity sha512-lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw== +"@commitlint/rules@^17.6.7": + version "17.6.7" + resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-17.6.7.tgz#2dbf52e82b5bcb1c74445637c6a9974571ab54b6" + integrity sha512-x/SDwDTN3w3Gr5xkhrIORu96rlKCc8ZLYEMXRqi9+MB33st2mKcGvKa5uJuigHlbl3xm75bAAubATrodVrjguQ== dependencies: - "@commitlint/ensure" "^17.4.4" + "@commitlint/ensure" "^17.6.7" "@commitlint/message" "^17.4.2" "@commitlint/to-lines" "^17.4.0" "@commitlint/types" "^17.4.4" @@ -1790,124 +1792,124 @@ dependencies: "@jridgewell/trace-mapping" "0.3.9" -"@es-joy/jsdoccomment@~0.37.1": - version "0.37.1" - resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.37.1.tgz#fa32a41ba12097452693343e09ad4d26d157aedd" - integrity sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg== +"@es-joy/jsdoccomment@~0.39.4": + version "0.39.4" + resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.39.4.tgz#6b8a62e9b3077027837728818d3c4389a898b392" + integrity sha512-Jvw915fjqQct445+yron7Dufix9A+m9j1fCJYlCo1FWlRvTxa3pjJelxdSTdaLWcTwRU6vbL+NYjO4YuNIS5Qg== dependencies: comment-parser "1.3.1" esquery "^1.5.0" jsdoc-type-pratt-parser "~4.0.0" -"@esbuild/android-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz#4aa8d8afcffb4458736ca9b32baa97d7cb5861ea" - integrity sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw== - -"@esbuild/android-arm@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.18.tgz#74a7e95af4ee212ebc9db9baa87c06a594f2a427" - integrity sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw== - -"@esbuild/android-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.18.tgz#1dcd13f201997c9fe0b204189d3a0da4eb4eb9b6" - integrity sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg== - -"@esbuild/darwin-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz#444f3b961d4da7a89eb9bd35cfa4415141537c2a" - integrity sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ== - -"@esbuild/darwin-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz#a6da308d0ac8a498c54d62e0b2bfb7119b22d315" - integrity sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A== - -"@esbuild/freebsd-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz#b83122bb468889399d0d63475d5aea8d6829c2c2" - integrity sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA== - -"@esbuild/freebsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz#af59e0e03fcf7f221b34d4c5ab14094862c9c864" - integrity sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew== - -"@esbuild/linux-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz#8551d72ba540c5bce4bab274a81c14ed01eafdcf" - integrity sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ== - -"@esbuild/linux-arm@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz#e09e76e526df4f665d4d2720d28ff87d15cdf639" - integrity sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg== - -"@esbuild/linux-ia32@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz#47878860ce4fe73a36fd8627f5647bcbbef38ba4" - integrity sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ== - -"@esbuild/linux-loong64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz#3f8fbf5267556fc387d20b2e708ce115de5c967a" - integrity sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ== - -"@esbuild/linux-mips64el@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz#9d896d8f3c75f6c226cbeb840127462e37738226" - integrity sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA== - -"@esbuild/linux-ppc64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz#3d9deb60b2d32c9985bdc3e3be090d30b7472783" - integrity sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ== - -"@esbuild/linux-riscv64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz#8a943cf13fd24ff7ed58aefb940ef178f93386bc" - integrity sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA== - -"@esbuild/linux-s390x@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz#66cb01f4a06423e5496facabdce4f7cae7cb80e5" - integrity sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw== - -"@esbuild/linux-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz#23c26050c6c5d1359c7b774823adc32b3883b6c9" - integrity sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA== - -"@esbuild/netbsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz#789a203d3115a52633ff6504f8cbf757f15e703b" - integrity sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg== - -"@esbuild/openbsd-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz#d7b998a30878f8da40617a10af423f56f12a5e90" - integrity sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA== - -"@esbuild/sunos-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz#ecad0736aa7dae07901ba273db9ef3d3e93df31f" - integrity sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg== - -"@esbuild/win32-arm64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz#58dfc177da30acf956252d7c8ae9e54e424887c4" - integrity sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg== - -"@esbuild/win32-ia32@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz#340f6163172b5272b5ae60ec12c312485f69232b" - integrity sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw== - -"@esbuild/win32-x64@0.17.18": - version "0.17.18" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz#3a8e57153905308db357fd02f57c180ee3a0a1fa" - integrity sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg== +"@esbuild/android-arm64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz#9e00eb6865ed5f2dbe71a1e96f2c52254cd92903" + integrity sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg== + +"@esbuild/android-arm@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.17.tgz#1aa013b65524f4e9f794946b415b32ae963a4618" + integrity sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg== + +"@esbuild/android-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.17.tgz#c2bd0469b04ded352de011fae34a7a1d4dcecb79" + integrity sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw== + +"@esbuild/darwin-arm64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz#0c21a59cb5bd7a2cec66c7a42431dca42aefeddd" + integrity sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g== + +"@esbuild/darwin-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz#92f8763ff6f97dff1c28a584da7b51b585e87a7b" + integrity sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g== + +"@esbuild/freebsd-arm64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz#934f74bdf4022e143ba2f21d421b50fd0fead8f8" + integrity sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ== + +"@esbuild/freebsd-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz#16b6e90ba26ecc865eab71c56696258ec7f5d8bf" + integrity sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA== + +"@esbuild/linux-arm64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz#179a58e8d4c72116eb068563629349f8f4b48072" + integrity sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ== + +"@esbuild/linux-arm@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz#9d78cf87a310ae9ed985c3915d5126578665c7b5" + integrity sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg== + +"@esbuild/linux-ia32@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz#6fed202602d37361bca376c9d113266a722a908c" + integrity sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg== + +"@esbuild/linux-loong64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz#cdc60304830be1e74560c704bfd72cab8a02fa06" + integrity sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg== + +"@esbuild/linux-mips64el@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz#c367b2855bb0902f5576291a2049812af2088086" + integrity sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ== + +"@esbuild/linux-ppc64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz#7fdc0083d42d64a4651711ee0a7964f489242f45" + integrity sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ== + +"@esbuild/linux-riscv64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz#5198a417f3f5b86b10c95647b8bc032e5b6b2b1c" + integrity sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g== + +"@esbuild/linux-s390x@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz#7459c2fecdee2d582f0697fb76a4041f4ad1dd1e" + integrity sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg== + +"@esbuild/linux-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz#948cdbf46d81c81ebd7225a7633009bc56a4488c" + integrity sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ== + +"@esbuild/netbsd-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz#6bb89668c0e093c5a575ded08e1d308bd7fd63e7" + integrity sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ== + +"@esbuild/openbsd-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz#abac2ae75fef820ef6c2c48da4666d092584c79d" + integrity sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA== + +"@esbuild/sunos-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz#74a45fe1db8ea96898f1a9bb401dcf1dadfc8371" + integrity sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g== + +"@esbuild/win32-arm64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz#fd95ffd217995589058a4ed8ac17ee72a3d7f615" + integrity sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw== + +"@esbuild/win32-ia32@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz#9b7ef5d0df97593a80f946b482e34fcba3fa4aaf" + integrity sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg== + +"@esbuild/win32-x64@0.18.17": + version "0.18.17" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz#bcb2e042631b3c15792058e189ed879a22b2968b" + integrity sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA== "@eslint-community/eslint-plugin-eslint-comments@^3.2.1": version "3.2.1" @@ -1917,26 +1919,26 @@ escape-string-regexp "^1.0.5" ignore "^5.2.4" -"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0": +"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.5.0": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" - integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.5.0", "@eslint-community/regexpp@^4.6.0", "@eslint-community/regexpp@^4.6.1": + version "4.6.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" + integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== -"@eslint/eslintrc@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02" - integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ== +"@eslint/eslintrc@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" + integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.1" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1944,15 +1946,15 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.39.0": - version "8.39.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.39.0.tgz#58b536bcc843f4cd1e02a7e6171da5c040f4d44b" - integrity sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng== +"@eslint/js@^8.46.0": + version "8.46.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" + integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" @@ -2013,28 +2015,28 @@ resolved "https://registry.yarnpkg.com/@javascript-obfuscator/estraverse/-/estraverse-5.4.0.tgz#6ddb28617356cfce9046a820f72af029f1bb5287" integrity sha512-CZFX7UZVN9VopGbjTx4UXaXsi9ewoM1buL0kY7j1ftYdSs7p2spv9opxFjHlQ/QGTgh4UqufYqJJ0WKLml7b6w== -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== +"@jest/console@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.6.2.tgz#bf1d4101347c23e07c029a1b1ae07d550f5cc541" + integrity sha512-0N0yZof5hi44HAR2pPS+ikJ3nzKNoZdVu8FffRf3wy47I7Dm7etk/3KetMdRUqzVd16V4O2m2ISpNTbnIuqy1w== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.6.2" + jest-util "^29.6.2" slash "^3.0.0" -"@jest/core@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/reporters" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +"@jest/core@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.6.2.tgz#6f2d1dbe8aa0265fcd4fb8082ae1952f148209c8" + integrity sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg== + dependencies: + "@jest/console" "^29.6.2" + "@jest/reporters" "^29.6.2" + "@jest/test-result" "^29.6.2" + "@jest/transform" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" @@ -2042,81 +2044,81 @@ exit "^0.1.2" graceful-fs "^4.2.9" jest-changed-files "^29.5.0" - jest-config "^29.5.0" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" + jest-config "^29.6.2" + jest-haste-map "^29.6.2" + jest-message-util "^29.6.2" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-resolve-dependencies "^29.5.0" - jest-runner "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - jest-watcher "^29.5.0" + jest-resolve "^29.6.2" + jest-resolve-dependencies "^29.6.2" + jest-runner "^29.6.2" + jest-runtime "^29.6.2" + jest-snapshot "^29.6.2" + jest-util "^29.6.2" + jest-validate "^29.6.2" + jest-watcher "^29.6.2" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.6.2" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== +"@jest/environment@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.6.2.tgz#794c0f769d85e7553439d107d3f43186dc6874a9" + integrity sha512-AEcW43C7huGd/vogTddNNTDRpO6vQ2zaQNrttvWV18ArBx9Z56h7BIsXkNFJVOO4/kblWEQz30ckw0+L3izc+Q== dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/fake-timers" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-mock "^29.5.0" + jest-mock "^29.6.2" -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== +"@jest/expect-utils@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.2.tgz#1b97f290d0185d264dd9fdec7567a14a38a90534" + integrity sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg== dependencies: jest-get-type "^29.4.3" -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== +"@jest/expect@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.6.2.tgz#5a2ad58bb345165d9ce0a1845bbf873c480a4b28" + integrity sha512-m6DrEJxVKjkELTVAztTLyS/7C92Y2b0VYqmDROYKLLALHn8T/04yPs70NADUYPrV3ruI+H3J0iUIuhkjp7vkfg== dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" + expect "^29.6.2" + jest-snapshot "^29.6.2" -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== +"@jest/fake-timers@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.6.2.tgz#fe9d43c5e4b1b901168fe6f46f861b3e652a2df4" + integrity sha512-euZDmIlWjm1Z0lJ1D0f7a0/y5Kh/koLFMUBE5SUYWrmy8oNhJpbTBDAP6CxKnadcMLDoDf4waRYCe35cH6G6PA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.6.2" + jest-mock "^29.6.2" + jest-util "^29.6.2" -"@jest/globals@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== +"@jest/globals@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.6.2.tgz#74af81b9249122cc46f1eb25793617eec69bf21a" + integrity sha512-cjuJmNDjs6aMijCmSa1g2TNG4Lby/AeU7/02VtpW+SLcZXzOLK2GpN2nLqcFjmhy3B3AoPeQVx7BnyOf681bAw== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" + "@jest/environment" "^29.6.2" + "@jest/expect" "^29.6.2" + "@jest/types" "^29.6.1" + jest-mock "^29.6.2" -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== +"@jest/reporters@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.6.2.tgz#524afe1d76da33d31309c2c4a2c8062d0c48780a" + integrity sha512-sWtijrvIav8LgfJZlrGCdN0nP2EWbakglJY49J1Y5QihcQLfy7ovyxxjJBRXMNltgt4uPtEcFmIMbVshEDfFWw== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/console" "^29.6.2" + "@jest/test-result" "^29.6.2" + "@jest/transform" "^29.6.2" + "@jest/types" "^29.6.1" + "@jridgewell/trace-mapping" "^0.3.18" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" @@ -2128,77 +2130,77 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-message-util "^29.6.2" + jest-util "^29.6.2" + jest-worker "^29.6.2" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== +"@jest/schemas@^29.6.0": + version "29.6.0" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040" + integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ== dependencies: - "@sinclair/typebox" "^0.25.16" + "@sinclair/typebox" "^0.27.8" -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== +"@jest/source-map@^29.6.0": + version "29.6.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.0.tgz#bd34a05b5737cb1a99d43e1957020ac8e5b9ddb1" + integrity sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA== dependencies: - "@jridgewell/trace-mapping" "^0.3.15" + "@jridgewell/trace-mapping" "^0.3.18" callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== +"@jest/test-result@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.6.2.tgz#fdd11583cd1608e4db3114e8f0cce277bf7a32ed" + integrity sha512-3VKFXzcV42EYhMCsJQURptSqnyjqCGbtLuX5Xxb6Pm6gUf1wIRIl+mandIRGJyWKgNKYF9cnstti6Ls5ekduqw== dependencies: - "@jest/console" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.6.2" + "@jest/types" "^29.6.1" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== +"@jest/test-sequencer@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.6.2.tgz#585eff07a68dd75225a7eacf319780cb9f6b9bf4" + integrity sha512-GVYi6PfPwVejO7slw6IDO0qKVum5jtrJ3KoLGbgBWyr2qr4GaxFV6su+ZAjdTX75Sr1DkMFRk09r2ZVa+wtCGw== dependencies: - "@jest/test-result" "^29.5.0" + "@jest/test-result" "^29.6.2" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.2" slash "^3.0.0" -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== +"@jest/transform@^29.6.2": + version "29.6.2" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.6.2.tgz#522901ebbb211af08835bc3bcdf765ab778094e3" + integrity sha512-ZqCqEISr58Ce3U+buNFJYUktLJZOggfyvR+bZMaiV1e8B1SIvJbwZMrYz3gx/KAPn9EXmOmN+uB08yLCjWkQQg== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/types" "^29.6.1" + "@jridgewell/trace-mapping" "^0.3.18" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^2.0.0" fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.2" jest-regex-util "^29.4.3" - jest-util "^29.5.0" + jest-util "^29.6.2" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== +"@jest/types@^29.6.1": + version "29.6.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2" + integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.0" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" @@ -2224,11 +2226,16 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14": +"@jridgewell/sourcemap-codec@1.4.14": version "1.4.14" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + "@jridgewell/trace-mapping@0.3.9": version "0.3.9" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" @@ -2237,7 +2244,7 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== @@ -2245,6 +2252,41 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" +"@lerna/package@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-6.4.1.tgz#ebbd4c5f58f4b6cf77019271a686be9585272a3b" + integrity sha512-TrOah58RnwS9R8d3+WgFFTu5lqgZs7M+e1dvcRga7oSJeKscqpEK57G0xspvF3ycjfXQwRMmEtwPmpkeEVLMzA== + dependencies: + load-json-file "^6.2.0" + npm-package-arg "8.1.1" + write-pkg "^4.0.0" + +"@lerna/project@^6.0.0": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-6.4.1.tgz#0519323aa8bde5b73fc0bf1c428385a556a445f0" + integrity sha512-BPFYr4A0mNZ2jZymlcwwh7PfIC+I6r52xgGtJ4KIrIOB6mVKo9u30dgYJbUQxmSuMRTOnX7PJZttQQzSda4gEg== + dependencies: + "@lerna/package" "6.4.1" + "@lerna/validation-error" "6.4.1" + cosmiconfig "^7.0.0" + dedent "^0.7.0" + dot-prop "^6.0.1" + glob-parent "^5.1.1" + globby "^11.0.2" + js-yaml "^4.1.0" + load-json-file "^6.2.0" + npmlog "^6.0.2" + p-map "^4.0.0" + resolve-from "^5.0.0" + write-json-file "^4.3.0" + +"@lerna/validation-error@6.4.1": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-6.4.1.tgz#2cab92c2be395158c3d65fa57ddb73892617d7e8" + integrity sha512-fxfJvl3VgFd7eBfVMRX6Yal9omDLs2mcGKkNYeCEyt4Uwlz1B5tPAXyk/sNMfkKV2Aat/mlK5tnY13vUrMKkyA== + dependencies: + npmlog "^6.0.2" + "@manypkg/find-root@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" @@ -2272,153 +2314,192 @@ resolved "https://registry.yarnpkg.com/@markuplint/config-presets/-/config-presets-3.6.1.tgz#cc019cdd19c8417e8684639a10c7ac3d49cd2e8b" integrity sha512-MGC4i8jZVGMZal01KbFENcJvKP5XlcqBcOF0BAe3D8CKt7zrz41Cv0hdqXklCuCaRZxYHshXGea8+aYteWdT3A== -"@markuplint/create-rule-helper@3.9.1": - version "3.9.1" - resolved "https://registry.yarnpkg.com/@markuplint/create-rule-helper/-/create-rule-helper-3.9.1.tgz#da8854d3538043fe90c7ce47eed4ecdffbc8e6b9" - integrity sha512-0pCNOISul5gcKE9HSoP71TBQ3hHS3HNIDtwRjz7tWRXxcZRrrQggVhTYFNWGf/V462MA5mZxn5dlU++wI+jnJQ== +"@markuplint/create-rule-helper@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/create-rule-helper/-/create-rule-helper-3.10.0.tgz#03c1643d28843b456efd387de18f2176adfadea9" + integrity sha512-NhPty7/RaJaiCDNfA4xhz55QZ9O5eIgShvy+NZPtHu6biuNlQZivWYjxoeYOR7mqukE3xCLa+jFWLG2NuwiMKw== dependencies: - "@markuplint/ml-core" "3.9.0" + "@markuplint/ml-core" "3.10.0" glob "^10.2.2" prettier "^2.8.8" ts-node "^10.9.1" - tslib "^2.4.1" + tslib "^2.5.0" typescript "^5.0.4" -"@markuplint/file-resolver@3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@markuplint/file-resolver/-/file-resolver-3.9.0.tgz#5b9326c2596dcbedd93703e50933ee05cabfba27" - integrity sha512-7rBOfKnGDctgUBF6eEihi/gO8/HPgO57qrRKZGXowpqpKI/OAb43nXlyw7VHhERTlGThDypkqyYhcg8GtYeUCA== +"@markuplint/file-resolver@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/file-resolver/-/file-resolver-3.10.0.tgz#fb1a3162d63df028a88978ed6c642546e5f23c85" + integrity sha512-c6AXWcVQWwZzGffOn+uwtTEtSmTJtJq+xqnnxOA2+FUIZNcGYQ9xnBJeJK1Neoc4PGEFMRIIbGvICrHcnraZFA== dependencies: - "@markuplint/html-parser" "3.7.0" + "@markuplint/html-parser" "3.8.0" "@markuplint/ml-ast" "3.1.0" - "@markuplint/ml-config" "3.8.0" - "@markuplint/ml-core" "3.9.0" - "@markuplint/ml-spec" "3.8.0" + "@markuplint/ml-config" "3.9.0" + "@markuplint/ml-core" "3.10.0" + "@markuplint/ml-spec" "3.9.0" "@markuplint/shared" "3.6.0" - "@types/cosmiconfig" "^6.0.0" - cosmiconfig "^8.0.0" + cosmiconfig "^8.1.3" cosmiconfig-typescript-loader "^4.3.0" glob "^10.2.2" jsonc "^2.0.0" minimatch "^9.0.0" - tslib "^2.4.1" + tslib "^2.5.0" -"@markuplint/html-parser@3.7.0", "@markuplint/html-parser@^3.6.1": - version "3.7.0" - resolved "https://registry.yarnpkg.com/@markuplint/html-parser/-/html-parser-3.7.0.tgz#6eb3c5bf9811a40a1ac27951a7a867c55c47b31d" - integrity sha512-W0NPFRQhIE2fIbNLf+MMcu00c4yeiqamlgZy6wmXI33HP+2uNru8/2ffex7vwUyuzgt0BM0qaH+JQiS1GMiDjA== +"@markuplint/html-parser@3.10.0", "@markuplint/html-parser@^3.6.1": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/html-parser/-/html-parser-3.10.0.tgz#eb353d1c58c762523083b590b77fa0ea2c81ad30" + integrity sha512-+XoUe3Y6kfFfgCZ1K/r46mAPetk8sORoxtwD3ZkcrhR/1yQDbh1iFBBUqTjpZeSMyQaozhNt16ACXTO3vUgvTw== dependencies: - "@markuplint/ml-ast" "3.1.0" - "@markuplint/parser-utils" "3.7.0" + "@markuplint/ml-ast" "3.2.0" + "@markuplint/parser-utils" "3.10.0" parse5 "7.1.2" - tslib "^2.4.1" - type-fest "^3.8.0" + tslib "^2.6.0" + type-fest "^3.12.0" -"@markuplint/html-spec@3.8.0": +"@markuplint/html-parser@3.8.0": version "3.8.0" - resolved "https://registry.yarnpkg.com/@markuplint/html-spec/-/html-spec-3.8.0.tgz#2cfadbf73eb20d3942de3252c8445a0fa8b65e55" - integrity sha512-3os3roH8a2UVX8MSeV5paWkSYItrHyT0YnMuPpnwHLDAXuTNOqBrJYlO+XM9dB1g2OmRC3jjo3e6oP4VOpyIhQ== + resolved "https://registry.yarnpkg.com/@markuplint/html-parser/-/html-parser-3.8.0.tgz#7ae4901f5e6ba6c6195a19e82a0b496cec64080b" + integrity sha512-/K1o5n90NC9gbKbDUFxQGXZfDclHRb1Zrtixhplf2+nc2Fg+eLcrz+t3kf69n1izdbqXNya5y1IJQnhK16IOww== + dependencies: + "@markuplint/ml-ast" "3.1.0" + "@markuplint/parser-utils" "3.8.0" + parse5 "7.1.2" + tslib "^2.5.0" + type-fest "^3.10.0" + +"@markuplint/html-spec@3.9.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/html-spec/-/html-spec-3.9.0.tgz#282cc5a515aa510be2e7f5e98135a9e4b52ae95b" + integrity sha512-d6NgGdeaW2Db6MmhF+bVH7bNA/mF9L6CbW2uJEwjIipIB+uC1YMLq+JBPuAPmM3yj3gqFw2d0tqjhhJr2u16Nw== dependencies: - "@markuplint/ml-spec" "3.8.0" + "@markuplint/ml-spec" "3.9.0" "@markuplint/i18n@3.8.0": version "3.8.0" resolved "https://registry.yarnpkg.com/@markuplint/i18n/-/i18n-3.8.0.tgz#b9ecc8c36c419e1bdfef11d9e3c7b09b40caa058" integrity sha512-xcWHRKviM52T8gli0wqojTaKZpWFYTOmi3BSN/p4Uk8eh9bIKV3o2qgJUYMEABWyxYewZv7ZpaptMt7WmxiDwA== -"@markuplint/ml-ast@3.1.0", "@markuplint/ml-ast@^3.1.0": +"@markuplint/ml-ast@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@markuplint/ml-ast/-/ml-ast-3.1.0.tgz#ce2847a48c2e71a78f12ab2cf7a43c817d362d86" integrity sha512-RDk7V16ObmqtAY8jTS1vgFTly1BNVW/tAlYZcah7Y0OJF9itE42nufYmwKdTNKRS9pq09vMHS39icXBYxpXPZw== -"@markuplint/ml-config@3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@markuplint/ml-config/-/ml-config-3.8.0.tgz#cad8aa39ad31ddfe5e057cc7bf06f83d0dae4ffd" - integrity sha512-bP4y1lTrRAzGi5fHJ2qsP1p7rMnNnvV2R7NNlSN6m0Ux3XIPX/FhYA4B8Nd6IEwZNe1mWIJSawAeHozQRA/1EQ== +"@markuplint/ml-ast@3.2.0", "@markuplint/ml-ast@^3.1.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@markuplint/ml-ast/-/ml-ast-3.2.0.tgz#43c0e432d708ebf45617b7cee29074142be94d68" + integrity sha512-qZJ0GTdGx1+2INEjfpSufu0143RgNqzfs9cA4TMdt9V18qdhSH1swWaMLiY0JJdnfJ4ui2uwxzg9Mhdtu0EINQ== + +"@markuplint/ml-config@3.9.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/ml-config/-/ml-config-3.9.0.tgz#97db8dfcbe5dd84e74a7166c9a823c2780553f3e" + integrity sha512-Q7Yd7t+J8TJlQGL8GGN+5l8QcMsRAAueu9AsSvsqS3mqtUGLPISpUjBfBufXKPgmfUATSQdVrzaPbJqdpWJRqQ== dependencies: "@markuplint/ml-ast" "3.1.0" - "@markuplint/selector" "3.8.0" + "@markuplint/selector" "3.9.0" "@markuplint/shared" "3.6.0" "@types/mustache" "^4.2.2" deepmerge "^4.3.1" is-plain-object "^5.0.0" mustache "^4.2.0" - type-fest "^3.8.0" + type-fest "^3.10.0" -"@markuplint/ml-core@3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@markuplint/ml-core/-/ml-core-3.9.0.tgz#462333486396d46640e6aac2d69c1ee967eadcf3" - integrity sha512-oJNOzetAS5SYAuKsAB7PSk5VJUXSLeiAnCH6QKHfxO5jFhFbrZVLblSAGl4BobwzILVo2hKlaMQ6snDi9urFxw== +"@markuplint/ml-core@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/ml-core/-/ml-core-3.10.0.tgz#40a83c43eddb41e0dfc8693468dce36454bf7aa5" + integrity sha512-a+/vQrScsQr+dXku5WxgkE1NL5WX3f2oCzxIeLz/zjM+LApWaha0zRBvtQbBuRhzU45x/u4XjjiAnmw6hK/AiQ== dependencies: "@markuplint/config-presets" "3.6.1" - "@markuplint/html-parser" "3.7.0" - "@markuplint/html-spec" "3.8.0" + "@markuplint/html-parser" "3.8.0" + "@markuplint/html-spec" "3.9.0" "@markuplint/i18n" "3.8.0" "@markuplint/ml-ast" "3.1.0" - "@markuplint/ml-config" "3.8.0" - "@markuplint/ml-spec" "3.8.0" - "@markuplint/parser-utils" "3.7.0" - "@markuplint/selector" "3.8.0" + "@markuplint/ml-config" "3.9.0" + "@markuplint/ml-spec" "3.9.0" + "@markuplint/parser-utils" "3.8.0" + "@markuplint/selector" "3.9.0" "@types/debug" "^4.1.7" debug "^4.3.4" is-plain-object "^5.0.0" - tslib "^2.4.1" - type-fest "^3.8.0" + tslib "^2.5.0" + type-fest "^3.10.0" -"@markuplint/ml-spec@3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@markuplint/ml-spec/-/ml-spec-3.8.0.tgz#b8980ed0480c0ce5133c3d38c12bc2712d4b7d67" - integrity sha512-B3l6XVQ2KO/NYucdizXNHM/XHBDFqCpBFQ3p8CKEw9CY7FNd4qqyxa4jDgnOmCLM3yD6l5+SiWTbj2IMBv+/BQ== +"@markuplint/ml-spec@3.11.0": + version "3.11.0" + resolved "https://registry.yarnpkg.com/@markuplint/ml-spec/-/ml-spec-3.11.0.tgz#f78430926b41984c2eb9c6b87c9c8f2a6698ec16" + integrity sha512-wMHwFo1q5VK3ONPtbdpdpHvW8SeTcI4ooctCcTA/5f9tks5axfMekGuDhC41lLIyVDgVO8O6/iCZ8TGIawzwvA== + dependencies: + "@markuplint/ml-ast" "3.2.0" + "@markuplint/types" "3.9.0" + dom-accessibility-api "^0.6.1" + is-plain-object "^5.0.0" + tslib "^2.6.0" + type-fest "^3.12.0" + +"@markuplint/ml-spec@3.9.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/ml-spec/-/ml-spec-3.9.0.tgz#ea5c3d10726622bf5638a778687ee52f1da370dd" + integrity sha512-Mf8o81JAc9iL/w0Zw7CUW7pwbqLQN0buRtA5jEOqdCR5pDW8fIluHoT9hxlZFq+SoS2XDG2xBl7YYnDWDdGDAA== dependencies: "@markuplint/ml-ast" "3.1.0" - "@markuplint/types" "3.6.0" - dom-accessibility-api "^0.5.14" + "@markuplint/types" "3.7.0" + dom-accessibility-api "^0.5.16" is-plain-object "^5.0.0" - tslib "^2.4.1" - type-fest "^3.8.0" + tslib "^2.5.0" + type-fest "^3.10.0" + +"@markuplint/parser-utils@3.10.0", "@markuplint/parser-utils@^3.6.1": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/parser-utils/-/parser-utils-3.10.0.tgz#558add187482492b017075226b9104a1bbebbe79" + integrity sha512-/na4v566HP0MCunJZkdgjhAAhVI4FmIqFnCwezE8zVfZn4Se0VECS5V/AQ9MHBSK7xSufgpEhCmjfBZDDJo+Ag== + dependencies: + "@markuplint/ml-ast" "3.2.0" + "@markuplint/types" "3.9.0" + "@types/uuid" "^9.0.2" + tslib "^2.6.0" + type-fest "^3.12.0" + uuid "^9.0.0" -"@markuplint/parser-utils@3.7.0", "@markuplint/parser-utils@^3.6.1": - version "3.7.0" - resolved "https://registry.yarnpkg.com/@markuplint/parser-utils/-/parser-utils-3.7.0.tgz#7b6ca513e699105e2e2ca82a422727e693620f28" - integrity sha512-vl919E0uIhbY8YERSlSxb6sKXYtaeVtg1wu7PjoElIIN2KZR4Ng/Azc6jfCvd6pGCrzFLxaUNpqDKJd5m611jg== +"@markuplint/parser-utils@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@markuplint/parser-utils/-/parser-utils-3.8.0.tgz#769a79961640c1fe08f3b97a35fe2b8a97c3569f" + integrity sha512-rNihSvUHKlpb3w9fLsPjhuKsEtEYx0B6jCtUNoT4vqZVjJh5CWzLreFNhoCaRvkN81g76tRHU6ST3HlEeRJevg== dependencies: "@markuplint/ml-ast" "3.1.0" - "@markuplint/types" "3.6.0" - "@types/uuid" "^9.0.0" - tslib "^2.4.1" - type-fest "^3.8.0" + "@markuplint/types" "3.7.0" + "@types/uuid" "^9.0.1" + tslib "^2.5.0" + type-fest "^3.10.0" uuid "^9.0.0" -"@markuplint/rules@3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@markuplint/rules/-/rules-3.9.0.tgz#2a69a4f4dce0d7220d4f2c34bcba27b613ca7476" - integrity sha512-NcvvpODgFTvl6M5Wt1PeoqUIOUz3eXcZpt7zAGraekFAlyJZiL4J2tpkyZHW0DeeMHzjWONoxQIt+QU5KQFoxw== +"@markuplint/rules@3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/rules/-/rules-3.10.0.tgz#8344e793b38ce1abad8c8215fa5ab037fdfbf2aa" + integrity sha512-kGIe3B4lGQ2Gyrp4fVi1av15WyxUyQgGRoPlYuz7JO8C+7v2ApvfnsY3D+Y+VaZNC5JUG6zbSRsx12V9f0ANaw== dependencies: - "@markuplint/html-spec" "3.8.0" - "@markuplint/ml-core" "3.9.0" - "@markuplint/ml-spec" "3.8.0" - "@markuplint/selector" "3.8.0" + "@markuplint/html-spec" "3.9.0" + "@markuplint/ml-core" "3.10.0" + "@markuplint/ml-spec" "3.9.0" + "@markuplint/selector" "3.9.0" "@markuplint/shared" "3.6.0" - "@markuplint/types" "3.6.0" + "@markuplint/types" "3.7.0" "@types/debug" "^4.1.7" - "@ungap/structured-clone" "^1.0.1" + "@ungap/structured-clone" "^1.2.0" ansi-colors "^4.1.3" - chrono-node "^2.5.0" + chrono-node "^2.6.3" debug "^4.3.4" - tslib "^2.4.1" - type-fest "^3.8.0" + tslib "^2.5.0" + type-fest "^3.10.0" -"@markuplint/selector@3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@markuplint/selector/-/selector-3.8.0.tgz#c4c7c3bce2a13fed84bcdaa745cb3aff9e89b071" - integrity sha512-ijUt7OKB8DGtiVSfBXE37rGOZ51+jEs6gyLZrBrf/34psmqyumU5VcJq9IzBsrzQgPYF8u4I6zmkGScncwL1cw== +"@markuplint/selector@3.9.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/selector/-/selector-3.9.0.tgz#23d128364cd2c25963631cd842237fb76647d7a1" + integrity sha512-Zy/rHWfGwaDQNRbLkqKcNhLyAMzHo6i6/Of4kBgnXtFh9juytrBvPvqrafJ146eZ7L/XIFXTs8cXmCbqxoO9Kw== dependencies: - "@markuplint/ml-spec" "3.8.0" + "@markuplint/ml-spec" "3.9.0" "@types/debug" "^4.1.7" debug "^4.3.4" - postcss-selector-parser "^6.0.11" - tslib "^2.4.1" - type-fest "^3.8.0" + postcss-selector-parser "^6.0.12" + tslib "^2.5.0" + type-fest "^3.10.0" "@markuplint/shared@3.6.0": version "3.6.0" @@ -2427,21 +2508,21 @@ dependencies: html-entities "^2.3.3" -"@markuplint/svelte-parser@^3.6.1": - version "3.6.2" - resolved "https://registry.yarnpkg.com/@markuplint/svelte-parser/-/svelte-parser-3.6.2.tgz#ca91837d12283743a91ffa3562e3a190413654d7" - integrity sha512-+4qhFyLlFcM+r8kBPCCR+xTVLeOpeMyieCfnVe5i3stR8Vp3FraTk7hTMxD/OixT2mzDXDP8ATBsghFiZGIgPg== +"@markuplint/svelte-parser@^3.8.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/svelte-parser/-/svelte-parser-3.9.0.tgz#390f79edbe91965e93c4f6d652e40b758a868a62" + integrity sha512-HHlXpmdmSf6hPqqYFrk5KsRYasZI4NIEr7KrbP2s8xzt8MAz0QU3ZP30EKJtQH6igwPKDKmgDPCOYWiHl59lEQ== dependencies: - "@markuplint/html-parser" "3.7.0" - "@markuplint/ml-ast" "3.1.0" - "@markuplint/parser-utils" "3.7.0" - svelte "^3.58.0" - tslib "^2.4.1" + "@markuplint/html-parser" "3.10.0" + "@markuplint/ml-ast" "3.2.0" + "@markuplint/parser-utils" "3.10.0" + svelte "^4.0.5" + tslib "^2.6.0" -"@markuplint/types@3.6.0": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@markuplint/types/-/types-3.6.0.tgz#446673a4b0daa15d38f50eb93be018879367d18d" - integrity sha512-cZOSi4tJFUQj9aFjW6/hK26VJdjr/EQjL85JZ6kX8jCkofQYYrN1kJDk66HkqxRy/ApO2YyHln2izJllKY7j0w== +"@markuplint/types@3.7.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@markuplint/types/-/types-3.7.0.tgz#2770abaca508765dddf26ad289cf8ccd6a9b24d9" + integrity sha512-8FqtoaJaY7zOZOpGY4/68BDYwF2v/Oo4JwzeU0BQXx9VJHoqvk+Oafwjc0YGlFcXHdegQ0K3kMZ3hbGAP23RrQ== dependencies: "@types/bcp-47" "1" "@types/css-tree" "^2.0.1" @@ -2451,26 +2532,42 @@ css-tree "^2.3.1" debug "^4.3.4" leven "3" - type-fest "^3.8.0" + type-fest "^3.10.0" whatwg-mimetype "^3.0.0" -"@markuplint/vue-parser@^3.6.1": - version "3.6.2" - resolved "https://registry.yarnpkg.com/@markuplint/vue-parser/-/vue-parser-3.6.2.tgz#ed1e515034aa4bc011619b231c559e9af42c11c6" - integrity sha512-K3MGQkz+omy/rfcOfPCTVMbRO/udcMFqP2dg5/+azfRTl+mthQMXlTWMTBPp7ls7zs8S3Fht0C8D/HFRFdz6mw== +"@markuplint/types@3.9.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/types/-/types-3.9.0.tgz#1be36a7c6b9f8ce0609743958b112e1fd93718a1" + integrity sha512-+z8qlubU9JCzT1GGqXQ1Ue6EET5B+G0ci6Z/IN0XeksvyWYSXYWrHqq4ccaoC+tLBzcoJNyj+eQhDAqQ+6Kg5A== dependencies: - "@markuplint/html-parser" "3.7.0" - "@markuplint/ml-ast" "3.1.0" - "@markuplint/parser-utils" "3.7.0" - tslib "^2.4.1" - vue-eslint-parser "^9.1.1" + "@types/bcp-47" "1" + "@types/css-tree" "^2.0.1" + "@types/debug" "^4.1.8" + "@types/whatwg-mimetype" "3.0.0" + bcp-47 "1" + css-tree "^2.3.1" + debug "^4.3.4" + leven "3" + type-fest "^3.12.0" + whatwg-mimetype "^3.0.0" + +"@markuplint/vue-parser@^3.8.0": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@markuplint/vue-parser/-/vue-parser-3.9.0.tgz#4a967ac4e10a7894d5a05e44177dd823b92a0709" + integrity sha512-H0artq2zpG6A8Mh+Qo50Xq8QX2ff5ZPmCp3kBgEOxgEpQAPoTkhQgY/HYB6/euei4DzLJChciTtorciThZ9NiA== + dependencies: + "@markuplint/html-parser" "3.10.0" + "@markuplint/ml-ast" "3.2.0" + "@markuplint/parser-utils" "3.10.0" + tslib "^2.6.0" + vue-eslint-parser "^9.3.1" -"@markuplint/vue-spec@^3.6.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@markuplint/vue-spec/-/vue-spec-3.7.1.tgz#cca15982cef06fabd29919ac29953c473c37a83c" - integrity sha512-XFU3h3XkzOXjxechLFOxk/SAYm8+BHGWQl2Q2qbatqLBbvxAB/cNeugpd8SFF073EF5d2fnY0k2tftQtcZvcxQ== +"@markuplint/vue-spec@^3.9.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@markuplint/vue-spec/-/vue-spec-3.10.0.tgz#4f4cd769b5577e38bbb3559fbbe0110e2edae2e9" + integrity sha512-KGcs0upW3KrqTbPsV324HjoxP3FKeuf7rCOSv4igj1P21C/Ad+ogcRpSP3sxAaNPpgzXLRi0DyBEqzMmw7iT1g== dependencies: - "@markuplint/ml-spec" "3.8.0" + "@markuplint/ml-spec" "3.11.0" "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": version "5.1.1-v1" @@ -2538,35 +2635,35 @@ resolved "https://registry.yarnpkg.com/@pkgr/es-modules/-/es-modules-0.6.3.tgz#ac6508af00ca42bcedf5e10505018b5a0a2634dd" integrity sha512-YUbEfRmjVW/CCjL8yUyawS8IAYmbWliaGlYUmYBNJpHyIDusrrvjbTQ+NwRemPfgNRW7/YbOUW7S6rFAlfD8Qg== -"@pkgr/rollup@^4.0.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@pkgr/rollup/-/rollup-4.1.0.tgz#99e8231668e1104769b41fe1893e73020fdf1989" - integrity sha512-q71Ji0QeCjTUBG1DcYTgS6rI0eabE6JIeuZEtziijnwjL9NyZ6vBHWUpf5fbYO6wz4SSKvw69MC8fbrhmfkbxA== +"@pkgr/rollup@^4.1.1": + version "4.1.2" + resolved "https://registry.yarnpkg.com/@pkgr/rollup/-/rollup-4.1.2.tgz#fe9d06b221861e8644dafaf9f697619220308ec5" + integrity sha512-fEiAzeWOSq6+3lp/S/wGGRDSpgYsunmYqfo7LzMeZYbjcTlw1jnoPFfOEapQEhw85VIShmHpoVeyKi0/upJqoA== dependencies: "@pkgr/es-modules" "^0.6.3" "@pkgr/umd-globals" "^0.8.3" - "@pkgr/utils" "^2.4.0" + "@pkgr/utils" "^2.4.2" "@rollup/plugin-alias" "^5.0.0" - "@rollup/plugin-commonjs" "^24.1.0" + "@rollup/plugin-commonjs" "^25.0.2" "@rollup/plugin-json" "^6.0.0" - "@rollup/plugin-node-resolve" "^15.0.2" + "@rollup/plugin-node-resolve" "^15.1.0" "@rollup/plugin-url" "^8.0.1" builtin-modules "^3.3.0" - commander "^10.0.1" - core-js "^3.30.1" + commander "^11.0.0" + core-js "^3.31.1" debug "^4.3.4" - esbuild "^0.17.18" + esbuild "^0.18.11" is-glob "^4.0.3" jsox "^1.2.118" lodash-es "^4.17.21" micromatch "^4.0.5" - rollup "^3.21.3" + rollup "^3.26.1" rollup-plugin-copy "^3.4.0" rollup-plugin-esbuild "^5.0.0" rollup-plugin-unassert "^0.6.0" rollup-plugin-vue "^6.0.0" rollup-plugin-vue-jsx-compat "^0.0.6" - tslib "^2.5.0" + tslib "^2.6.0" unassert "^2.0.2" "@pkgr/umd-globals@^0.8.3": @@ -2574,24 +2671,24 @@ resolved "https://registry.yarnpkg.com/@pkgr/umd-globals/-/umd-globals-0.8.3.tgz#229d5df38e1dd2ec29c04a3c69ebbbb0e120bf17" integrity sha512-Q9W/XvQmoz2jXsQbCUA3iI3rO7Xufvmx0QE/2wAUEUwNzCQwkv8+Xm7isLWh3Y9K6IEDgdQqigLPq440Gw1CiQ== -"@pkgr/utils@^2.3.1", "@pkgr/utils@^2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.0.tgz#b6373d2504aedaf2fc7cdf2d13ab1f48fa5f12d5" - integrity sha512-2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw== +"@pkgr/utils@^2.3.1", "@pkgr/utils@^2.4.1", "@pkgr/utils@^2.4.2": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" + integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== dependencies: cross-spawn "^7.0.3" - fast-glob "^3.2.12" + fast-glob "^3.3.0" is-glob "^4.0.3" open "^9.1.0" picocolors "^1.0.0" - tslib "^2.5.0" + tslib "^2.6.0" "@prettier/plugin-pug@^2.2.0": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@prettier/plugin-pug/-/plugin-pug-2.4.2.tgz#22b5840845901442530da51d5e9d73c57f90939b" - integrity sha512-NYno1b0ZIY/2/wIiPSIWVRbWdhJ7KPkwjOo/xzWOZYUA35ZrwaEQshoEoLEizUrnizBuIgW93E9kqIrJEjBang== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@prettier/plugin-pug/-/plugin-pug-2.5.0.tgz#dd10a099c802326638b2a0596bccd98816884a29" + integrity sha512-wanovQUyfTLPGp6M622R7qPX7QMsJHmxFCMckOdOtZd0cWr7zv6uI7EGXOAL4qUp5wY9ZolIxp23JkMCWX5Mvg== dependencies: - pug-lexer "^5.0.0" + pug-lexer "^5.0.1" "@prettier/plugin-ruby@^3.2.1": version "3.2.2" @@ -2615,10 +2712,10 @@ dependencies: slash "^4.0.0" -"@rollup/plugin-commonjs@^24.1.0": - version "24.1.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-24.1.0.tgz#79e54bd83bb64396761431eee6c44152ef322100" - integrity sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ== +"@rollup/plugin-commonjs@^25.0.2": + version "25.0.3" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.3.tgz#eb5217ebae43d63a172b516655be270ed258bdcc" + integrity sha512-uBdtWr/H3BVcgm97MUdq2oJmqBR23ny1hOrWe2PKo9FTbjsGqg32jfasJUKYAI5ouqacjRnj65mBB/S79F+GQA== dependencies: "@rollup/pluginutils" "^5.0.1" commondir "^1.0.1" @@ -2634,10 +2731,10 @@ dependencies: "@rollup/pluginutils" "^5.0.1" -"@rollup/plugin-node-resolve@^15.0.2": - version "15.0.2" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.0.2.tgz#8183a80c2cbf7b471f5ac86b16747997f3b5d185" - integrity sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg== +"@rollup/plugin-node-resolve@^15.1.0": + version "15.1.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.1.0.tgz#9ffcd8e8c457080dba89bb9fcb583a6778dc757e" + integrity sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA== dependencies: "@rollup/pluginutils" "^5.0.1" "@types/resolve" "1.20.2" @@ -2672,24 +2769,24 @@ estree-walker "^2.0.2" picomatch "^2.3.1" -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== -"@sinonjs/commons@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" - integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== +"@sinonjs/commons@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": - version "10.0.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" - integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== + version "10.1.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.1.0.tgz#3595e42b3f0a7df80a9681cf58d8cb418eac1e99" + integrity sha512-w1qd368vtrwttm1PRJWPW1QHlbmHrVDGs1eBH/jZvRPUFS4MNXV9Q33EQdjOdeAxZ7O8+3wM7zxztm2nfUSyKw== dependencies: - "@sinonjs/commons" "^2.0.0" + "@sinonjs/commons" "^3.0.0" "@toml-tools/lexer@^0.3.1": version "0.3.1" @@ -2722,9 +2819,9 @@ integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== "@tsconfig/node16@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" - integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== "@types/acorn@^4.0.0": version "4.0.6" @@ -2783,22 +2880,15 @@ dependencies: "@types/node" "*" -"@types/cosmiconfig@^6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@types/cosmiconfig/-/cosmiconfig-6.0.0.tgz#ffb5494a91feab3088985caeb089a9ff851795a2" - integrity sha512-KxKYXK5K1W+SVj1wjBBlwUs43K2D4iteye+r2ObPPQ7+NVASxSPfTb5H8iPW0bLswapMvaA4YMnxdKx7M4k29A== - dependencies: - cosmiconfig "*" - "@types/css-tree@^2.0.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@types/css-tree/-/css-tree-2.3.1.tgz#f359cf7ad9318d51b173b923bb8e8d81e21329a1" integrity sha512-3m636Jz4d9d+lHVMp6FNLsUWQrfOx1xpm1SBxPbQYSNNgXMe+XswcsDeo1ldyULiuzYyWKk1kmvkLTgNq+215Q== -"@types/debug@^4.0.0", "@types/debug@^4.1.7": - version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" - integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg== +"@types/debug@^4.0.0", "@types/debug@^4.1.7", "@types/debug@^4.1.8": + version "4.1.8" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" + integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ== dependencies: "@types/ms" "*" @@ -2810,10 +2900,10 @@ "@types/eslint" "*" "@types/unist" "*" -"@types/eslint@*", "@types/eslint@^8.37.0": - version "8.37.0" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.37.0.tgz#29cebc6c2a3ac7fea7113207bf5a828fdf4d7ef1" - integrity sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ== +"@types/eslint@*", "@types/eslint@^8.44.1": + version "8.44.1" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.1.tgz#d1811559bb6bcd1a76009e3f7883034b78a0415e" + integrity sha512-XpNDc4Z5Tb4x+SW1MriMVeIsMoONHCkWFMkR/aPJbzEsxqHy+4Glu/BqTdPrApfDeMaXbtNh6bseNgl5KaWrSg== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -2897,10 +2987,10 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^29.5.1": - version "29.5.1" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.1.tgz#83c818aa9a87da27d6da85d3378e5a34d2f31a47" - integrity sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ== +"@types/jest@^29.5.3": + version "29.5.3" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.3.tgz#7a35dc0044ffb8b56325c6802a4781a626b05777" + integrity sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -2944,35 +3034,40 @@ resolved "https://registry.yarnpkg.com/@types/mustache/-/mustache-4.2.2.tgz#825bf5c214c3ab84d0b23fef2c8eb898f3ff8717" integrity sha512-MUSpfpW0yZbTgjekDbH0shMYBUD+X/uJJJMm9LXN1d5yjl5lCY1vN/eWKD6D1tOtjA6206K0zcIPnUaFMurdNA== -"@types/node@*", "@types/node@^18.0.0", "@types/node@^18.16.3": - version "18.16.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.3.tgz#6bda7819aae6ea0b386ebc5b24bdf602f1b42b01" - integrity sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q== +"@types/node@*", "@types/node@^20.4.6": + version "20.4.6" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.6.tgz#b66b66c9bb5d49b199f03399e341c9d6036e9e88" + integrity sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA== "@types/node@^12.7.1": version "12.20.55" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== +"@types/node@^18.0.0": + version "18.16.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.12.tgz#f11e19055c5b3daeb79dc6eb7ccdd3d036313034" + integrity sha512-tIRrjbY9C277MOfP8M3zjMIhtMlUJ6YVqkGgLjz+74jVsdf4/UjC6Hku4+1N0BS0qyC0JAS6tJLUk9H6JUKviQ== + "@types/normalize-package-data@^2.4.0": version "2.4.1" resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== -"@types/prettier@^2.1.5": - version "2.7.2" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0" - integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prop-types@*": version "15.7.5" resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== -"@types/react@^18.2.0": - version "18.2.0" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.0.tgz#15cda145354accfc09a18d2f2305f9fc099ada21" - integrity sha512-0FLj93y5USLHdnhIhABk83rm8XEGA7kH3cr+YUlvxoUGp1xNt/DINUMvqPxLyOQMzLmZe8i4RTHbvb8MC7NmrA== +"@types/react@^18.2.18": + version "18.2.18" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.18.tgz#c8b233919eef1bdc294f6f34b37f9727ad677516" + integrity sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -2988,15 +3083,10 @@ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== -"@types/semver@^6.0.0": - version "6.2.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" - integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== - -"@types/semver@^7.3.12": - version "7.3.13" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" - integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== +"@types/semver@^7.3.12", "@types/semver@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== "@types/stack-utils@^2.0.0": version "2.0.1" @@ -3013,10 +3103,10 @@ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== -"@types/uuid@^9.0.0": - version "9.0.1" - resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.1.tgz#98586dc36aee8dacc98cc396dbca8d0429647aa6" - integrity sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA== +"@types/uuid@^9.0.1", "@types/uuid@^9.0.2": + version "9.0.2" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.2.tgz#ede1d1b1e451548d44919dc226253e32a6952c4b" + integrity sha512-kNnC1GFBLuhImSnV7w4njQkUiJi0ZXUycu1rUaouPqiKlXkh77JKgdRnTAp1x5eBwcIwbtI+3otwzuIDEuDoxQ== "@types/whatwg-mimetype@3.0.0": version "3.0.0" @@ -3035,152 +3125,94 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^5.57.0", "@typescript-eslint/eslint-plugin@^5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz#684a2ce7182f3b4dac342eef7caa1c2bae476abd" - integrity sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A== +"@typescript-eslint/eslint-plugin@^5.60.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== dependencies: "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/type-utils" "5.59.2" - "@typescript-eslint/utils" "5.59.2" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" natural-compare-lite "^1.4.0" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.2.tgz#c2c443247901d95865b9f77332d9eee7c55655e8" - integrity sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ== +"@typescript-eslint/parser@^5.60.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/typescript-estree" "5.59.2" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz#bb7676cb78f1e94921eaab637a4b5d596f838abc" - integrity sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw== - dependencies: - "@typescript-eslint/types" "5.48.2" - "@typescript-eslint/visitor-keys" "5.48.2" - -"@typescript-eslint/scope-manager@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz#f699fe936ee4e2c996d14f0fdd3a7da5ba7b9a4c" - integrity sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== dependencies: - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/visitor-keys" "5.59.2" - -"@typescript-eslint/type-utils@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz#7d3aeca9fa37a7ab7e3d9056a99b42f342c48ad7" - integrity sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew== - dependencies: - "@typescript-eslint/typescript-estree" "5.48.2" - "@typescript-eslint/utils" "5.48.2" - debug "^4.3.4" - tsutils "^3.21.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" -"@typescript-eslint/type-utils@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz#0729c237503604cd9a7084b5af04c496c9a4cdcf" - integrity sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ== +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== dependencies: - "@typescript-eslint/typescript-estree" "5.59.2" - "@typescript-eslint/utils" "5.59.2" + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.48.2.tgz#635706abb1ec164137f92148f06f794438c97b8e" - integrity sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== -"@typescript-eslint/types@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.2.tgz#b511d2b9847fe277c5cb002a2318bd329ef4f655" - integrity sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w== - -"@typescript-eslint/typescript-estree@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz#6e206b462942b32383582a6c9251c05021cc21b0" - integrity sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg== - dependencies: - "@typescript-eslint/types" "5.48.2" - "@typescript-eslint/visitor-keys" "5.48.2" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/typescript-estree@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz#6e2fabd3ba01db5d69df44e0b654c0b051fe9936" - integrity sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/visitor-keys" "5.59.2" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.48.2.tgz#3777a91dcb22b8499a25519e06eef2e9569295a3" - integrity sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow== - dependencies: - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.48.2" - "@typescript-eslint/types" "5.48.2" - "@typescript-eslint/typescript-estree" "5.48.2" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - semver "^7.3.7" - -"@typescript-eslint/utils@5.59.2", "@typescript-eslint/utils@^5.10.0": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.2.tgz#0c45178124d10cc986115885688db6abc37939f4" - integrity sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ== +"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.10.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/typescript-estree" "5.59.2" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" eslint-scope "^5.1.1" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.48.2": - version "5.48.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz#c247582a0bcce467461d7b696513bf9455000060" - integrity sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ== - dependencies: - "@typescript-eslint/types" "5.48.2" - eslint-visitor-keys "^3.3.0" - -"@typescript-eslint/visitor-keys@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz#37a419dc2723a3eacbf722512b86d6caf7d3b750" - integrity sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig== +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== dependencies: - "@typescript-eslint/types" "5.59.2" + "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" -"@ungap/structured-clone@^1.0.1": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.1.0.tgz#b0a0c84346777b0c62054ced8f2302df03987457" - integrity sha512-STuj8TmTgsylkA5A1ZGRhxDuewFY+duPp9l+TUZxENsGVMkb+b7U6KVCIPED6Ny8RWOgSreZhywzfz0OPMQWqQ== +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== "@vue/babel-helper-vue-jsx-merge-props@^1.4.0": version "1.4.0" @@ -3322,10 +3354,10 @@ acorn@^7.1.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.0.0, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.8.0, acorn@^8.8.2: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.0.0, acorn@^8.10.0, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.8.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== aggregate-error@^3.0.0: version "3.1.0" @@ -3335,7 +3367,7 @@ aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" -ajv@^6.10.0, ajv@^6.12.4: +ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -3431,11 +3463,24 @@ anymatch@^3.0.3, anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + are-docs-informative@^0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/are-docs-informative/-/are-docs-informative-0.0.2.tgz#387f0e93f5d45280373d387a59d34c96db321963" integrity sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig== +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + arg@^4.1.0: version "4.1.3" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" @@ -3453,12 +3498,12 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== +aria-query@5.3.0, aria-query@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: - deep-equal "^2.0.5" + dequal "^2.0.3" array-buffer-byte-length@^1.0.0: version "1.0.0" @@ -3552,12 +3597,19 @@ axobject-query@3.1.1: dependencies: deep-equal "^2.0.5" -babel-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" - integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== +axobject-query@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" + +babel-jest@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.6.2.tgz#cada0a59e07f5acaeb11cbae7e3ba92aec9c1126" + integrity sha512-BYCzImLos6J3BH/+HvUCHG1dTf2MzmAB4jaVxHV+29RZLjR29XuYTmsf2sdDwkrb+FczkGo3kOhE7ga6sI0P4A== dependencies: - "@jest/transform" "^29.5.0" + "@jest/transform" "^29.6.2" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" babel-preset-jest "^29.5.0" @@ -3769,15 +3821,15 @@ breakword@^1.0.5: dependencies: wcwidth "^1.0.1" -browserslist@^4.21.3, browserslist@^4.21.5: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== +browserslist@^4.21.5, browserslist@^4.21.9: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" bs-logger@0.x: version "0.2.6" @@ -3803,6 +3855,11 @@ builtin-modules@^3.3.0: resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + builtins@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" @@ -3854,10 +3911,10 @@ camelcase@^6.0.0, camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001449: - version "1.0.30001482" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz#8b3fad73dc35b2674a5c96df2d4f9f1c561435de" - integrity sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ== +caniuse-lite@^1.0.30001517: + version "1.0.30001519" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001519.tgz#3e7b8b8a7077e78b0eb054d69e6edf5c7df35601" + integrity sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg== ccount@^2.0.0: version "2.0.1" @@ -3967,14 +4024,14 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chrono-node@^2.5.0: +chrono-node@^2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/chrono-node/-/chrono-node-2.6.3.tgz#fa257cffb2dfc33fa5a01b26bd86f93741ca6dc5" integrity sha512-VkWaaZnNulqzNH9i4XCdyI05OX6MFEnCMNKdZOR4w//wS5/E2qkwAss/O5sj6SfTZK84fX4SSOG4pzqjqIseiA== dependencies: dayjs "^1.10.0" -ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.6.1, ci-info@^3.7.0: +ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.7.0, ci-info@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== @@ -4058,6 +4115,17 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== +code-red@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/code-red/-/code-red-1.0.3.tgz#bbd3b0a27dc53c9af13f6756120a9dbcdd68a5f2" + integrity sha512-kVwJELqiILQyG5aeuyKFbdsI1fmQy1Cmf7dQ8eGmVuJoaRVdwey7WaMknr2ZFeVSYSKT0rExsa8EGw0aoI/1QQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.14" + "@types/estree" "^1.0.0" + acorn "^8.8.2" + estree-walker "^3.0.3" + periscopic "^3.1.0" + collect-v8-coverage@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" @@ -4087,6 +4155,11 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + colord@^2.9.1: version "2.9.3" resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" @@ -4107,10 +4180,10 @@ commander@^10.0.0, commander@^10.0.1: resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== -commander@^9.4.1: - version "9.5.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" - integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== +commander@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-11.0.0.tgz#43e19c25dbedc8256203538e8d7e9346877a6f67" + integrity sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ== comment-parser@1.3.1, comment-parser@^1.1.2: version "1.3.1" @@ -4150,6 +4223,11 @@ concat-stream@^2.0.0: readable-stream "^3.0.2" typedarray "^0.0.6" +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + conventional-changelog-angular@^5.0.11: version "5.0.13" resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" @@ -4190,23 +4268,34 @@ convert-source-map@^2.0.0: integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== core-js-compat@^3.25.1: - version "3.30.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.1.tgz#961541e22db9c27fc48bfc13a3cafa8734171dfe" - integrity sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw== + version "3.30.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b" + integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA== dependencies: browserslist "^4.21.5" -core-js@^3.25.2, core-js@^3.30.1: - version "3.30.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.30.1.tgz#fc9c5adcc541d8e9fa3e381179433cbf795628ba" - integrity sha512-ZNS5nbiSwDTq4hFosEDqm65izl2CWmLz0hARJMyNQBgkUZMIF51cQiMvIQKA6hvuaeWxQDP3hEedM1JZIgTldQ== +core-js@^3.25.2, core-js@^3.31.1: + version "3.32.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.32.0.tgz#7643d353d899747ab1f8b03d2803b0312a0fb3b6" + integrity sha512-rd4rYZNlF3WuoYuRIDEmbR/ga9CeuWX9U05umAvgrrZoHY4Z++cp/xwPQMvUpBB4Ag6J8KfD80G0zwCyaSxDww== cosmiconfig-typescript-loader@^4.0.0, cosmiconfig-typescript-loader@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz#c4259ce474c9df0f32274ed162c0447c951ef073" integrity sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q== -cosmiconfig@*, cosmiconfig@^8.0.0, cosmiconfig@^8.1.3: +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cosmiconfig@^8.0.0, cosmiconfig@^8.1.3: version "8.1.3" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== @@ -4369,6 +4458,11 @@ dedent@^0.7.0: resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== +dedent@^1.0.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" + integrity sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg== + deep-equal@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" @@ -4441,11 +4535,21 @@ define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -dequal@^2.0.0: +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +dequal@^2.0.0, dequal@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== +detect-indent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== + detect-indent@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" @@ -4499,11 +4603,16 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -dom-accessibility-api@^0.5.14: +dom-accessibility-api@^0.5.16: version "0.5.16" resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== +dom-accessibility-api@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.6.1.tgz#630cb063717690fa89a7dca96abae328b987c064" + integrity sha512-WbiG8jCZESbcSwxLmbUiv3WZurc6H4opBIbBkBe/I3OSZvWCXXj+wxPueWodM/p4gegM1CqEr0iFY5DqyrncxA== + dot-prop@^5.1.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" @@ -4511,6 +4620,13 @@ dot-prop@^5.1.0: dependencies: is-obj "^2.0.0" +dot-prop@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== + dependencies: + is-obj "^2.0.0" + dot-properties@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/dot-properties/-/dot-properties-1.0.1.tgz#f0b8f7bf378de3ee119ff9a2d47495ca7d19553c" @@ -4526,10 +4642,10 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -electron-to-chromium@^1.4.284: - version "1.4.379" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.379.tgz#c9b597e090ce738e7a76db84e5678f27817bd644" - integrity sha512-eRMq6Cf4PhjB14R9U6QcXM/VRQ54Gc3OL9LKnFugUIh2AXm3KJlOizlSfVIgjH76bII4zHGK4t0PVTE5qq8dZg== +electron-to-chromium@^1.4.477: + version "1.4.482" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.482.tgz#77c5ed37b93d4dda860e27538e0e2a01d6a19e02" + integrity sha512-h+UqpfmEr1Qkk0zp7ej/jid7CXoq4m4QzW6wNTb0ELJ/BZCpA4wgUylBIMGCe621tnr4l5VmoHjdoSx2lbnNJA== emittery@^0.13.1: version "0.13.1" @@ -4554,9 +4670,9 @@ end-of-stream@^1.1.0: once "^1.4.0" enhanced-resolve@^5.12.0: - version "5.13.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz#26d1ecc448c02de997133217b5c1053f34a0a275" - integrity sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg== + version "5.14.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz#0b6c676c8a3266c99fa281e4433a706f5c0c61c4" + integrity sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -4701,33 +4817,33 @@ es6-weak-map@^2.0.3: es6-iterator "^2.0.3" es6-symbol "^3.1.1" -esbuild@^0.17.18: - version "0.17.18" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.18.tgz#f4f8eb6d77384d68cd71c53eb6601c7efe05e746" - integrity sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== +esbuild@^0.18.11: + version "0.18.17" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.17.tgz#2aaf6bc6759b0c605777fdc435fea3969e091cad" + integrity sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg== optionalDependencies: - "@esbuild/android-arm" "0.17.18" - "@esbuild/android-arm64" "0.17.18" - "@esbuild/android-x64" "0.17.18" - "@esbuild/darwin-arm64" "0.17.18" - "@esbuild/darwin-x64" "0.17.18" - "@esbuild/freebsd-arm64" "0.17.18" - "@esbuild/freebsd-x64" "0.17.18" - "@esbuild/linux-arm" "0.17.18" - "@esbuild/linux-arm64" "0.17.18" - "@esbuild/linux-ia32" "0.17.18" - "@esbuild/linux-loong64" "0.17.18" - "@esbuild/linux-mips64el" "0.17.18" - "@esbuild/linux-ppc64" "0.17.18" - "@esbuild/linux-riscv64" "0.17.18" - "@esbuild/linux-s390x" "0.17.18" - "@esbuild/linux-x64" "0.17.18" - "@esbuild/netbsd-x64" "0.17.18" - "@esbuild/openbsd-x64" "0.17.18" - "@esbuild/sunos-x64" "0.17.18" - "@esbuild/win32-arm64" "0.17.18" - "@esbuild/win32-ia32" "0.17.18" - "@esbuild/win32-x64" "0.17.18" + "@esbuild/android-arm" "0.18.17" + "@esbuild/android-arm64" "0.18.17" + "@esbuild/android-x64" "0.18.17" + "@esbuild/darwin-arm64" "0.18.17" + "@esbuild/darwin-x64" "0.18.17" + "@esbuild/freebsd-arm64" "0.18.17" + "@esbuild/freebsd-x64" "0.18.17" + "@esbuild/linux-arm" "0.18.17" + "@esbuild/linux-arm64" "0.18.17" + "@esbuild/linux-ia32" "0.18.17" + "@esbuild/linux-loong64" "0.18.17" + "@esbuild/linux-mips64el" "0.18.17" + "@esbuild/linux-ppc64" "0.18.17" + "@esbuild/linux-riscv64" "0.18.17" + "@esbuild/linux-s390x" "0.18.17" + "@esbuild/linux-x64" "0.18.17" + "@esbuild/netbsd-x64" "0.18.17" + "@esbuild/openbsd-x64" "0.18.17" + "@esbuild/sunos-x64" "0.18.17" + "@esbuild/win32-arm64" "0.18.17" + "@esbuild/win32-ia32" "0.18.17" + "@esbuild/win32-x64" "0.18.17" escalade@^3.1.1: version "3.1.1" @@ -4769,10 +4885,10 @@ eslint-config-standard-react@^13.0.0: resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-13.0.0.tgz#dcc85bc3210dac858bc94ac53d024a5488ce5568" integrity sha512-HrVPGj8UncHfV+BsdJTuJpVsomn6AIrke3Af2Fh4XFvQQDU+iO6N2ZL+UsC+scExft4fU3uf7fJwj7PKWnXJDA== -eslint-config-standard@^17.0.0: - version "17.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz#fd5b6cf1dcf6ba8d29f200c461de2e19069888cf" - integrity sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg== +eslint-config-standard@^17.1.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz#40ffb8595d47a6b242e07cbfd49dc211ed128975" + integrity sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q== eslint-formatter-friendly@^7.0.0: version "7.0.0" @@ -4815,31 +4931,23 @@ eslint-module-utils@^2.7.4: dependencies: debug "^3.2.7" -eslint-plugin-css@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-css/-/eslint-plugin-css-0.7.0.tgz#fd481fc685ba65d82001ac90dd0a241647cc9455" - integrity sha512-i74YaSOfUutOvad7kbhApsCclAGifUTzRvM8Q1qRIC//q4RMCk8XJTkOuUDidVEtUoQjNkRKdd25PNypmL3c5A== +eslint-plugin-css@^0.8.0: + version "0.8.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-css/-/eslint-plugin-css-0.8.1.tgz#dc4fb624ebc8c5ac26c9e217fe2bb43922c4c236" + integrity sha512-VXtpriHRGWAz875jZZ5RW6XAM4UB0XdNRfzMiBkUMF46oIiKuMzwjjNxOIMpqEg86B9xMoph7TuInBxUkvJ4kQ== dependencies: "@eslint-community/eslint-utils" "^4.3.0" colord "^2.9.1" - known-css-properties "^0.27.0" + known-css-properties "^0.28.0" postcss-value-parser "^4.1.0" -eslint-plugin-es-x@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-6.1.0.tgz#d7b97f34775c34117a0f3dc256b74c3a1543d37c" - integrity sha512-f6dHOuVDDYHOCu3w+EledZnUkDdCa71GGHxZ0DMNfalM/2Upl0t/ks0+d5W5YDQJEQmvthE3WYv7RI/9Fl+csQ== +eslint-plugin-es-x@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.2.0.tgz#5779d742ad31f8fd780b9481331481e142b72311" + integrity sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA== dependencies: "@eslint-community/eslint-utils" "^4.1.2" - "@eslint-community/regexpp" "^4.5.0" - -eslint-plugin-es@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz#f0822f0c18a535a97c3e714e89f88586a7641ec9" - integrity sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ== - dependencies: - eslint-utils "^2.0.0" - regexpp "^3.0.0" + "@eslint-community/regexpp" "^4.6.0" "eslint-plugin-import@npm:eslint-plugin-i@^2.27.5": version "2.27.5" @@ -4862,40 +4970,41 @@ eslint-plugin-es@^4.1.0: resolve "^1.22.1" semver "^6.3.0" -eslint-plugin-jest@^27.2.1: - version "27.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz#b85b4adf41c682ea29f1f01c8b11ccc39b5c672c" - integrity sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg== +eslint-plugin-jest@^27.2.2: + version "27.2.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.3.tgz#6f8a4bb2ca82c0c5d481d1b3be256ab001f5a3ec" + integrity sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ== dependencies: "@typescript-eslint/utils" "^5.10.0" -eslint-plugin-jsdoc@^43.1.1: - version "43.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz#fc72ba21597cc99b1a0dc988aebb9bb57d0ec492" - integrity sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA== +eslint-plugin-jsdoc@^46.2.6: + version "46.4.5" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.5.tgz#f06fd71505d60078a8e4dff792f7cb20261e7e58" + integrity sha512-HjTuxqDYplAQFu29F3MHFCDDBgeqOxPXI6TyBhL0u2rr4XntJ0z3C9PmJvpjFscKdHwkZDN/0l1QCG0QwyRi4g== dependencies: - "@es-joy/jsdoccomment" "~0.37.1" + "@es-joy/jsdoccomment" "~0.39.4" are-docs-informative "^0.0.2" comment-parser "1.3.1" debug "^4.3.4" escape-string-regexp "^4.0.0" esquery "^1.5.0" - semver "^7.5.0" + is-builtin-module "^3.2.1" + semver "^7.5.4" spdx-expression-parse "^3.0.1" -eslint-plugin-jsonc@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.7.0.tgz#ffce6c670f76aeb74765ac2f0fd97071d791d188" - integrity sha512-DZgC71h/hZ9t5k/OGAKOMdJCleg2neZLL7No+YYi2ZMroCN4X5huZdrLf1USbrc6UTHwYujd1EDwXHg1qJ6CYw== +eslint-plugin-jsonc@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.9.0.tgz#df3bff1339e10bdef72aafef3b2c132a1a08c23f" + integrity sha512-RK+LeONVukbLwT2+t7/OY54NJRccTXh/QbnXzPuTLpFMVZhPuq1C9E07+qWenGx7rrQl0kAalAWl7EmB+RjpGA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" jsonc-eslint-parser "^2.0.4" natural-compare "^1.4.0" -eslint-plugin-markdown@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.0.tgz#69a63ab3445076a3c2eb6fce6f5114785b19d318" - integrity sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg== +eslint-plugin-markdown@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.1.tgz#fc6765bdb5f82a75e2438d7fac619602f2abc38c" + integrity sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A== dependencies: mdast-util-from-markdown "^0.8.5" @@ -4910,19 +5019,19 @@ eslint-plugin-markup@^0.11.0: synckit "^0.8.5" tslib "^2.5.0" -eslint-plugin-n@^15.7.0: - version "15.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz#e29221d8f5174f84d18f2eb94765f2eeea033b90" - integrity sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q== +eslint-plugin-n@^16.0.0: + version "16.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-16.0.1.tgz#baa62bb3af52940a53ba15386348ad9b0b425ada" + integrity sha512-CDmHegJN0OF3L5cz5tATH84RPQm9kG+Yx39wIqIwPR2C0uhBGMWfbbOtetR83PQjjidA5aXMu+LEFw1jaSwvTA== dependencies: + "@eslint-community/eslint-utils" "^4.4.0" builtins "^5.0.1" - eslint-plugin-es "^4.1.0" - eslint-utils "^3.0.0" - ignore "^5.1.1" - is-core-module "^2.11.0" + eslint-plugin-es-x "^7.1.0" + ignore "^5.2.4" + is-core-module "^2.12.1" minimatch "^3.1.2" - resolve "^1.22.1" - semver "^7.3.8" + resolve "^1.22.2" + semver "^7.5.3" eslint-plugin-prettier@^4.2.1: version "4.2.1" @@ -4962,10 +5071,10 @@ eslint-plugin-react@^7.32.2: semver "^6.3.0" string.prototype.matchall "^4.0.8" -eslint-plugin-regexp@^1.14.0: - version "1.14.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-1.14.0.tgz#42dadd3217b0200c8f478922e429411448a7d3e4" - integrity sha512-5+bBSsRTTtkSf8+/iNSjiOW6qbjAdGyqv88HxPaBNFKxROK+UAdOGDl5Jr+csV5wW2BuOOvaG82zsvTriQBRFA== +eslint-plugin-regexp@^1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-1.15.0.tgz#2717cd4867418287b36d9569c72fca7d242c59b3" + integrity sha512-YEtQPfdudafU7RBIFci81R/Q1yErm0mVh3BkGnXD2Dk8DLwTFdc2ITYH1wCnHKim2gnHfPFgrkh+b2ozyyU7ag== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.4.0" @@ -4981,13 +5090,13 @@ eslint-plugin-simple-import-sort@^10.0.0: resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz#cc4ceaa81ba73252427062705b64321946f61351" integrity sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw== -eslint-plugin-sonar@^0.11.1: - version "0.11.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-sonar/-/eslint-plugin-sonar-0.11.1.tgz#0f9fc7d6ea4dbe1a1f8fc441a2f5122edd96541f" - integrity sha512-KBBmC9ifQHHbHElMRVECURrbUvVd15F7kzujKoKNqQyZoxgnQFym0Wzzgd/kbsGgO4yKAjqIJksR8pwwb6B0rg== +eslint-plugin-sonar@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-sonar/-/eslint-plugin-sonar-0.12.0.tgz#3227ea8e7e9d21eab4eb104b4aa26105de633262" + integrity sha512-49linjQRXazFXZR4PXHwgMkkrnLavZTeSkxJ5+k3PoNqGm/shgJCVmdQAki3AJNqM+huZSwYxwsWS+LSpB48cQ== dependencies: - "@babel/eslint-parser" "^7.21.3" - "@typescript-eslint/eslint-plugin" "^5.57.0" + "@babel/eslint-parser" "^7.22.5" + "@typescript-eslint/eslint-plugin" "^5.60.0" builtin-modules "^3.3.0" bytes "^3.1.2" eslint-plugin-react "^7.32.2" @@ -4995,7 +5104,7 @@ eslint-plugin-sonar@^0.11.1: eslint-plugin-sonarjs "^0.19.0" functional-red-black-tree "^1.0.1" regexpp "^3.2.0" - scslre "^0.1.6" + scslre "^0.2.0" tmp "^0.2.1" eslint-plugin-sonarjs@^0.19.0: @@ -5003,48 +5112,50 @@ eslint-plugin-sonarjs@^0.19.0: resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.19.0.tgz#6654bc1c6d24c2183891b8bfe1175004dbba1e3c" integrity sha512-6+s5oNk5TFtVlbRxqZN7FIGmjdPCYQKaTzFPmqieCmsU1kBYDzndTeQav0xtQNwZJWu5awWfTGe8Srq9xFOGnw== -eslint-plugin-svelte@^2.27.2: - version "2.27.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.27.2.tgz#32b275cd7fc565f6efb93e6ce13af664be1996ad" - integrity sha512-1tIl65TMF0MtY26+O/1Y5S5HEFc0vRzzoX3m9FHI6VuiruqFU9PBr8WzoqdaSPlcL/q7xPUzQYl4Fzg/3GBpcg== +eslint-plugin-svelte@^2.31.0: + version "2.32.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.32.4.tgz#815a534a15982483f1a5d2076764956797891ca9" + integrity sha512-VJ12i2Iogug1jvhwxSlognnfGj76P5gks/V4pUD4SCSVQOp14u47MNP0zAG8AQR3LT0Fi1iUvIFnY4l9z5Rwbg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@jridgewell/sourcemap-codec" "^1.4.14" debug "^4.3.1" esutils "^2.0.3" - known-css-properties "^0.27.0" + known-css-properties "^0.28.0" postcss "^8.4.5" postcss-load-config "^3.1.4" postcss-safe-parser "^6.0.0" - svelte-eslint-parser "^0.27.0" + postcss-selector-parser "^6.0.11" + semver "^7.5.3" + svelte-eslint-parser "^0.32.2" -eslint-plugin-toml@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-toml/-/eslint-plugin-toml-0.4.0.tgz#68a7c2223b14e9bd19d11aab5a9de929c43a30c7" - integrity sha512-z9LaGc7hRl+TDOUhqep7NPOe4mXev4Kime9cgoo82aTSAeK7RxR1ihHApCWeQVh7QKvZH1tkKnbErgWPw4Ol0A== +eslint-plugin-toml@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-toml/-/eslint-plugin-toml-0.5.0.tgz#c4c4d8bc1e2fe09327a40df8586d13a0c7dcffd3" + integrity sha512-EnnC+/PEdaScDmQWrJeQlOFSLdulyVkRAbWX4X97Tju7Y2W/2pT6f1BVqEAjHAMjl9daRh+cS2U3Ik6i5E+C5Q== dependencies: debug "^4.1.1" lodash "^4.17.19" - toml-eslint-parser "^0.5.0" + toml-eslint-parser "^0.6.0" -eslint-plugin-unicorn@^46.0.0: - version "46.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz#b5cdcc9465fd6e46ab7968b87dd4a43adc8d6031" - integrity sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA== +eslint-plugin-unicorn@^47.0.0: + version "47.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-47.0.0.tgz#960e9d3789f656ba3e21982420793b069a911011" + integrity sha512-ivB3bKk7fDIeWOUmmMm9o3Ax9zbMz1Bsza/R2qm46ufw4T6VBFBaJIR1uN3pCKSmSXm8/9Nri8V+iUut1NhQGA== dependencies: "@babel/helper-validator-identifier" "^7.19.1" - "@eslint-community/eslint-utils" "^4.1.2" - ci-info "^3.6.1" + "@eslint-community/eslint-utils" "^4.4.0" + ci-info "^3.8.0" clean-regexp "^1.0.0" - esquery "^1.4.0" + esquery "^1.5.0" indent-string "^4.0.0" - is-builtin-module "^3.2.0" + is-builtin-module "^3.2.1" jsesc "^3.0.2" lodash "^4.17.21" pluralize "^8.0.0" read-pkg-up "^7.0.1" regexp-tree "^0.1.24" - regjsparser "^0.9.1" + regjsparser "^0.10.0" safe-regex "^2.1.1" semver "^7.3.8" strip-indent "^3.0.0" @@ -5054,28 +5165,28 @@ eslint-plugin-utils@^0.3.2: resolved "https://registry.yarnpkg.com/eslint-plugin-utils/-/eslint-plugin-utils-0.3.2.tgz#f5bac41e9be29ed20ae3f4d68b7e2378ef51198c" integrity sha512-bVqX9NKhBFBliANqExEVaJhkgIGoHJg7FlGWNnlTxTapCTEOO5gEfvPR4+2mF4Xn37DZHYrQhOCkK1TSInf6GQ== -eslint-plugin-vue@^9.11.0: - version "9.11.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.11.0.tgz#99a247455c02181f24d9240d422380fd16dd630c" - integrity sha512-bBCJAZnkBV7ATH4Z1E7CvN3nmtS4H7QUU3UBxPdo8WohRU+yHjnQRALpTbxMVcz0e4Mx3IyxIdP5HYODMxK9cQ== +eslint-plugin-vue@^9.15.0: + version "9.16.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.16.1.tgz#3508d9279d797b40889db76da2fd26524e9144e6" + integrity sha512-2FtnTqazA6aYONfDuOZTk0QzwhAwi7Z4+uJ7+GHeGxcKapjqWlDsRWDenvyG/utyOfAS5bVRmAG3cEWiYEz2bA== dependencies: - "@eslint-community/eslint-utils" "^4.3.0" + "@eslint-community/eslint-utils" "^4.4.0" natural-compare "^1.4.0" - nth-check "^2.0.1" - postcss-selector-parser "^6.0.9" - semver "^7.3.5" - vue-eslint-parser "^9.0.1" + nth-check "^2.1.1" + postcss-selector-parser "^6.0.13" + semver "^7.5.4" + vue-eslint-parser "^9.3.1" xml-name-validator "^4.0.0" -eslint-plugin-yml@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-yml/-/eslint-plugin-yml-1.5.0.tgz#e7eb4ae96701ec0f7f9689f9dc84a49f41833240" - integrity sha512-iygN054g+ZrnYmtOXMnT+sx9iDNXt89/m0+506cQHeG0+5jJN8hY5iOPQLd3yfd50AfK/mSasajBWruf1SoHpQ== +eslint-plugin-yml@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-yml/-/eslint-plugin-yml-1.8.0.tgz#f3d2779ea92692b902fefa4755ec075d7b364c1d" + integrity sha512-fgBiJvXD0P2IN7SARDJ2J7mx8t0bLdG6Zcig4ufOqW5hOvSiFxeUyc2g5I1uIm8AExbo26NNYCcTGZT0MXTsyg== dependencies: debug "^4.3.2" lodash "^4.17.21" natural-compare "^1.4.0" - yaml-eslint-parser "^1.1.0" + yaml-eslint-parser "^1.2.1" eslint-rule-composer@^0.3.0: version "0.3.0" @@ -5090,64 +5201,45 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.0.0, eslint-scope@^7.1.1, eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== +eslint-scope@^7.0.0, eslint-scope@^7.1.1, eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-utils@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: +eslint-visitor-keys@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc" - integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ== +eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" + integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== -eslint@^8.39.0: - version "8.39.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.39.0.tgz#7fd20a295ef92d43809e914b70c39fd5a23cf3f1" - integrity sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og== +eslint@^8.43.0: + version "8.46.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" + integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.2" - "@eslint/js" "8.39.0" - "@humanwhocodes/config-array" "^0.11.8" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.1" + "@eslint/js" "^8.46.0" + "@humanwhocodes/config-array" "^0.11.10" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.0" - espree "^9.5.1" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.2" + espree "^9.6.1" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -5155,32 +5247,29 @@ eslint@^8.39.0: find-up "^5.0.0" glob-parent "^6.0.2" globals "^13.19.0" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" - js-sdsl "^4.1.4" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.0.0, espree@^9.3.1, espree@^9.5.1: - version "9.5.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4" - integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg== +espree@^9.0.0, espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" @@ -5234,6 +5323,13 @@ estree-walker@^2.0.1, estree-walker@^2.0.2: resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== +estree-walker@^3.0.0, estree-walker@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== + dependencies: + "@types/estree" "^1.0.0" + esutils@^2.0.2, esutils@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" @@ -5304,16 +5400,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect@^29.0.0, expect@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== +expect@^29.0.0, expect@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.2.tgz#7b08e83eba18ddc4a2cf62b5f2d1918f5cd84521" + integrity sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA== dependencies: - "@jest/expect-utils" "^29.5.0" + "@jest/expect-utils" "^29.6.2" + "@types/node" "*" jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-matcher-utils "^29.6.2" + jest-message-util "^29.6.2" + jest-util "^29.6.2" ext@^1.1.2: version "1.7.0" @@ -5369,10 +5466,10 @@ fast-diff@^1.1.2: resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== -fast-glob@3, fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== +fast-glob@3, fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -5566,6 +5663,20 @@ functions-have-names@^1.2.2, functions-have-names@^1.2.3: resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== +gauge@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -5584,12 +5695,13 @@ get-installed-path@^2.0.3: global-modules "1.0.0" get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" + has-proto "^1.0.1" has-symbols "^1.0.3" get-package-type@^0.1.0: @@ -5643,7 +5755,7 @@ github-slugger@^2.0.0: resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-2.0.0.tgz#52cf2f9279a21eb6c59dd385b410f0c0adda8f1a" integrity sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw== -glob-parent@^5.1.2, glob-parent@~5.1.2: +glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -5658,14 +5770,14 @@ glob-parent@^6.0.2: is-glob "^4.0.3" glob@^10.2.2: - version "10.2.2" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.2.tgz#ce2468727de7e035e8ecf684669dc74d0526ab75" - integrity sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ== + version "10.2.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.4.tgz#f5bf7ddb080e3e9039b148a9e2aef3d5ebfc0a25" + integrity sha512-fDboBse/sl1oXSLhIp0FcCJgzW9KmhC/q8ULTKC82zc+DL3TL7FNb8qlt5qqXN53MsKEUSIcb+7DLmEygOE5Yw== dependencies: foreground-child "^3.1.0" jackspeak "^2.0.3" minimatch "^9.0.0" - minipass "^5.0.0" + minipass "^5.0.0 || ^6.0.0" path-scurry "^1.7.0" glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: @@ -5751,7 +5863,7 @@ globby@10.0.1: merge2 "^1.2.3" slash "^3.0.0" -globby@^11.0.0, globby@^11.1.0: +globby@^11.0.0, globby@^11.0.2, globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -5791,6 +5903,11 @@ grapheme-splitter@^1.0.4: resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + gray-matter@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" @@ -5845,6 +5962,11 @@ has-tostringtag@^1.0.0: dependencies: has-symbols "^1.0.2" +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + has-yarn@*, has-yarn@2: version "2.1.0" resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" @@ -5874,6 +5996,13 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== +hosted-git-info@^3.0.6: + version "3.0.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" + integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== + dependencies: + lru-cache "^6.0.0" + hosted-git-info@^4.0.1: version "4.1.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" @@ -5995,9 +6124,9 @@ ini@^1.3.4: integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== ini@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.0.tgz#3bca65a0ae224f07f8f8b3392d8c94a7f1bb007b" - integrity sha512-HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ== + version "4.1.1" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" + integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: version "1.0.5" @@ -6088,7 +6217,7 @@ is-buffer@^2.0.0: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== -is-builtin-module@^3.2.0, is-builtin-module@^3.2.1: +is-builtin-module@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== @@ -6107,10 +6236,10 @@ is-ci@^3.0.1: dependencies: ci-info "^3.2.0" -is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.9.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" - integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ== +is-core-module@^2.11.0, is-core-module@^2.12.1, is-core-module@^2.5.0, is-core-module@^2.9.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== dependencies: has "^1.0.3" @@ -6240,11 +6369,16 @@ is-path-inside@^3.0.3: resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== -is-plain-obj@^1.1.0: +is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== +is-plain-obj@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + is-plain-obj@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" @@ -6272,6 +6406,13 @@ is-reference@1.2.1: dependencies: "@types/estree" "*" +is-reference@^3.0.0, is-reference@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.1.tgz#d400f4260f7e55733955e60d361d827eb4d3b831" + integrity sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w== + dependencies: + "@types/estree" "*" + is-regex@^1.0.3, is-regex@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" @@ -6341,6 +6482,11 @@ is-typed-array@^1.1.10, is-typed-array@^1.1.9: gopd "^1.0.1" has-tostringtag "^1.0.0" +is-typedarray@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + is-weakmap@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" @@ -6426,9 +6572,9 @@ istanbul-reports@^3.1.3: istanbul-lib-report "^3.0.0" jackspeak@^2.0.3: - version "2.1.5" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.1.5.tgz#9a6741037b58257dc92eb28e9c8f54d33a1c09ba" - integrity sha512-NeK3mbF9vwNS3SjhzlEfO6WREJqoKtCwLoUPoUVtGJrpecxN3ZxlDuF22MzNSbOk/AA/VFWi+nFMV89xkXh2og== + version "2.2.0" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.0.tgz#497cbaedc902ec3f31d5d61be804d2364ff9ddad" + integrity sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ== dependencies: "@isaacs/cliui" "^8.0.2" optionalDependencies: @@ -6442,87 +6588,87 @@ jest-changed-files@^29.5.0: execa "^5.0.0" p-limit "^3.1.0" -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== +jest-circus@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.6.2.tgz#1e6ffca60151ac66cad63fce34f443f6b5bb4258" + integrity sha512-G9mN+KOYIUe2sB9kpJkO9Bk18J4dTDArNFPwoZ7WKHKel55eKIS/u2bLthxgojwlf9NLCVQfgzM/WsOVvoC6Fw== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.6.2" + "@jest/expect" "^29.6.2" + "@jest/test-result" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - dedent "^0.7.0" + dedent "^1.0.0" is-generator-fn "^2.0.0" - jest-each "^29.5.0" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-each "^29.6.2" + jest-matcher-utils "^29.6.2" + jest-message-util "^29.6.2" + jest-runtime "^29.6.2" + jest-snapshot "^29.6.2" + jest-util "^29.6.2" p-limit "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.6.2" pure-rand "^6.0.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== +jest-cli@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.6.2.tgz#edb381763398d1a292cd1b636a98bfa5644b8fda" + integrity sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q== dependencies: - "@jest/core" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.6.2" + "@jest/test-result" "^29.6.2" + "@jest/types" "^29.6.1" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-config "^29.6.2" + jest-util "^29.6.2" + jest-validate "^29.6.2" prompts "^2.0.1" yargs "^17.3.1" -jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== +jest-config@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.6.2.tgz#c68723f06b31ca5e63030686e604727d406cd7c3" + integrity sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.5.0" - "@jest/types" "^29.5.0" - babel-jest "^29.5.0" + "@jest/test-sequencer" "^29.6.2" + "@jest/types" "^29.6.1" + babel-jest "^29.6.2" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^29.5.0" - jest-environment-node "^29.5.0" + jest-circus "^29.6.2" + jest-environment-node "^29.6.2" jest-get-type "^29.4.3" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-runner "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-resolve "^29.6.2" + jest-runner "^29.6.2" + jest-util "^29.6.2" + jest-validate "^29.6.2" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^29.5.0" + pretty-format "^29.6.2" slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== +jest-diff@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.2.tgz#c36001e5543e82a0805051d3ceac32e6825c1c46" + integrity sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA== dependencies: chalk "^4.0.0" diff-sequences "^29.4.3" jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.2" jest-docblock@^29.4.3: version "29.4.3" @@ -6531,94 +6677,94 @@ jest-docblock@^29.4.3: dependencies: detect-newline "^3.0.0" -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== +jest-each@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.6.2.tgz#c9e4b340bcbe838c73adf46b76817b15712d02ce" + integrity sha512-MsrsqA0Ia99cIpABBc3izS1ZYoYfhIy0NNWqPSE0YXbQjwchyt6B1HD2khzyPe1WiJA7hbxXy77ZoUQxn8UlSw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" chalk "^4.0.0" jest-get-type "^29.4.3" - jest-util "^29.5.0" - pretty-format "^29.5.0" + jest-util "^29.6.2" + pretty-format "^29.6.2" -jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== +jest-environment-node@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.6.2.tgz#a9ea2cabff39b08eca14ccb32c8ceb924c8bb1ad" + integrity sha512-YGdFeZ3T9a+/612c5mTQIllvWkddPbYcN2v95ZH24oWMbGA4GGS2XdIF92QMhUhvrjjuQWYgUGW2zawOyH63MQ== dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.6.2" + "@jest/fake-timers" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-mock "^29.6.2" + jest-util "^29.6.2" jest-get-type@^29.4.3: version "29.4.3" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== +jest-haste-map@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.6.2.tgz#298c25ea5255cfad8b723179d4295cf3a50a70d1" + integrity sha512-+51XleTDAAysvU8rT6AnS1ZJ+WHVNqhj1k6nTvN2PYP+HjU3kqlaKQ1Lnw3NYW3bm2r8vq82X0Z1nDDHZMzHVA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-util "^29.6.2" + jest-worker "^29.6.2" micromatch "^4.0.4" walker "^1.0.8" optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== +jest-leak-detector@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.6.2.tgz#e2b307fee78cab091c37858a98c7e1d73cdf5b38" + integrity sha512-aNqYhfp5uYEO3tdWMb2bfWv6f0b4I0LOxVRpnRLAeque2uqOVVMLh6khnTcE2qJ5wAKop0HcreM1btoysD6bPQ== dependencies: jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.2" -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== +jest-matcher-utils@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.2.tgz#39de0be2baca7a64eacb27291f0bd834fea3a535" + integrity sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ== dependencies: chalk "^4.0.0" - jest-diff "^29.5.0" + jest-diff "^29.6.2" jest-get-type "^29.4.3" - pretty-format "^29.5.0" + pretty-format "^29.6.2" -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== +jest-message-util@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.2.tgz#af7adc2209c552f3f5ae31e77cf0a261f23dc2bb" + integrity sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.6.2" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== +jest-mock@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.6.2.tgz#ef9c9b4d38c34a2ad61010a021866dad41ce5e00" + integrity sha512-hoSv3lb3byzdKfwqCuT6uTscan471GUECqgNYykg6ob0yiAw3zYc7OrPnI9Qv8Wwoa4lC7AZ9hyS4AiIx5U2zg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.6.2" jest-pnp-resolver@^1.2.2: version "1.2.3" @@ -6630,181 +6776,173 @@ jest-regex-util@^29.4.3: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== +jest-resolve-dependencies@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.2.tgz#36435269b6672c256bcc85fb384872c134cc4cf2" + integrity sha512-LGqjDWxg2fuQQm7ypDxduLu/m4+4Lb4gczc13v51VMZbVP5tSBILqVx8qfWcsdP8f0G7aIqByIALDB0R93yL+w== dependencies: jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" + jest-snapshot "^29.6.2" -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== +jest-resolve@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.6.2.tgz#f18405fe4b50159b7b6d85e81f6a524d22afb838" + integrity sha512-G/iQUvZWI5e3SMFssc4ug4dH0aZiZpsDq9o1PtXTV1210Ztyb2+w+ZgQkB3iOiC5SmAEzJBOHWz6Hvrd+QnNPw== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.6.2" jest-pnp-resolver "^1.2.2" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-util "^29.6.2" + jest-validate "^29.6.2" resolve "^1.20.0" resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/environment" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runner@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.6.2.tgz#89e8e32a8fef24781a7c4c49cd1cb6358ac7fc01" + integrity sha512-wXOT/a0EspYgfMiYHxwGLPCZfC0c38MivAlb2lMEAlwHINKemrttu1uSbcGbfDV31sFaPWnWJPmb2qXM8pqZ4w== + dependencies: + "@jest/console" "^29.6.2" + "@jest/environment" "^29.6.2" + "@jest/test-result" "^29.6.2" + "@jest/transform" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" emittery "^0.13.1" graceful-fs "^4.2.9" jest-docblock "^29.4.3" - jest-environment-node "^29.5.0" - jest-haste-map "^29.5.0" - jest-leak-detector "^29.5.0" - jest-message-util "^29.5.0" - jest-resolve "^29.5.0" - jest-runtime "^29.5.0" - jest-util "^29.5.0" - jest-watcher "^29.5.0" - jest-worker "^29.5.0" + jest-environment-node "^29.6.2" + jest-haste-map "^29.6.2" + jest-leak-detector "^29.6.2" + jest-message-util "^29.6.2" + jest-resolve "^29.6.2" + jest-runtime "^29.6.2" + jest-util "^29.6.2" + jest-watcher "^29.6.2" + jest-worker "^29.6.2" p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/globals" "^29.5.0" - "@jest/source-map" "^29.4.3" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runtime@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.6.2.tgz#692f25e387f982e89ab83270e684a9786248e545" + integrity sha512-2X9dqK768KufGJyIeLmIzToDmsN0m7Iek8QNxRSI/2+iPFYHF0jTwlO3ftn7gdKd98G/VQw9XJCk77rbTGZnJg== + dependencies: + "@jest/environment" "^29.6.2" + "@jest/fake-timers" "^29.6.2" + "@jest/globals" "^29.6.2" + "@jest/source-map" "^29.6.0" + "@jest/test-result" "^29.6.2" + "@jest/transform" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" + jest-haste-map "^29.6.2" + jest-message-util "^29.6.2" + jest-mock "^29.6.2" jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-resolve "^29.6.2" + jest-snapshot "^29.6.2" + jest-util "^29.6.2" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== +jest-snapshot@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.6.2.tgz#9b431b561a83f2bdfe041e1cab8a6becdb01af9c" + integrity sha512-1OdjqvqmRdGNvWXr/YZHuyhh5DeaLp1p/F8Tht/MrMw4Kr1Uu/j4lRG+iKl1DAqUJDWxtQBMk41Lnf/JETYBRA== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" "@babel/plugin-syntax-jsx" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" + "@jest/expect-utils" "^29.6.2" + "@jest/transform" "^29.6.2" + "@jest/types" "^29.6.1" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^29.5.0" + expect "^29.6.2" graceful-fs "^4.2.9" - jest-diff "^29.5.0" + jest-diff "^29.6.2" jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-matcher-utils "^29.6.2" + jest-message-util "^29.6.2" + jest-util "^29.6.2" natural-compare "^1.4.0" - pretty-format "^29.5.0" - semver "^7.3.5" + pretty-format "^29.6.2" + semver "^7.5.3" -jest-util@^29.0.0, jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== +jest-util@^29.0.0, jest-util@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.2.tgz#8a052df8fff2eebe446769fd88814521a517664d" + integrity sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" "@types/node" "*" chalk "^4.0.0" ci-info "^3.2.0" graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== +jest-validate@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.6.2.tgz#25d972af35b2415b83b1373baf1a47bb266c1082" + integrity sha512-vGz0yMN5fUFRRbpJDPwxMpgSXW1LDKROHfBopAvDcmD6s+B/s8WJrwi+4bfH4SdInBA5C3P3BI19dBtKzx1Arg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.1" camelcase "^6.2.0" chalk "^4.0.0" jest-get-type "^29.4.3" leven "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.6.2" -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== +jest-watcher@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.6.2.tgz#77c224674f0620d9f6643c4cfca186d8893ca088" + integrity sha512-GZitlqkMkhkefjfN/p3SJjrDaxPflqxEAv3/ik10OirZqJGYH5rPiIsgVcfof0Tdqg3shQGdEIxDBx+B4tuLzA== dependencies: - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/test-result" "^29.6.2" + "@jest/types" "^29.6.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.13.1" - jest-util "^29.5.0" + jest-util "^29.6.2" string-length "^4.0.1" -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== +jest-worker@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.6.2.tgz#682fbc4b6856ad0aa122a5403c6d048b83f3fb44" + integrity sha512-l3ccBOabTdkng8I/ORCkADz4eSMKejTYv1vB/Z83UiubqhC1oQ5Li6dWCyqOIvSifGjUBxuvxvlm6KGK2DtuAQ== dependencies: "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.6.2" merge-stream "^2.0.0" supports-color "^8.0.0" -jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" - integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== +jest@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.6.2.tgz#3bd55b9fd46a161b2edbdf5f1d1bd0d1eab76c42" + integrity sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg== dependencies: - "@jest/core" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.6.2" + "@jest/types" "^29.6.1" import-local "^3.0.2" - jest-cli "^29.5.0" + jest-cli "^29.6.2" joycon@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== -js-sdsl@^4.1.4: - version "4.4.0" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" - integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -6880,15 +7018,22 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stable-stringify@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz#e06f23128e0bbe342dc996ed5a19e28b57b580e0" + integrity sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g== + dependencies: + jsonify "^0.0.1" + json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonc-eslint-parser@^2.0.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-2.2.0.tgz#01ec9933dc3cc8302abb0c29884bf854c4f627e4" - integrity sha512-x5QjzBOORd+T2EjErIxJnkOEbLVEdD1ILEeBbIJt8Eq/zUn7P7M8qdnWiNVBK5f8oxnJpc6SBHOeeIEl/swPjg== + version "2.3.0" + resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz#7c2de97d01bff7227cbef2f25d1025d42a36198b" + integrity sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ== dependencies: acorn "^8.5.0" eslint-visitor-keys "^3.0.0" @@ -6928,6 +7073,11 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + jsonparse@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" @@ -6968,10 +7118,10 @@ kleur@^4.0.3, kleur@^4.1.5: resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== -known-css-properties@^0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.27.0.tgz#82a9358dda5fe7f7bd12b5e7142c0a205393c0c5" - integrity sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg== +known-css-properties@^0.28.0: + version "0.28.0" + resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.28.0.tgz#8a8be010f368b3036fe6ab0ef4bbbed972bd6274" + integrity sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ== lcid@^3.0.0: version "3.1.1" @@ -7064,6 +7214,16 @@ load-json-file@^4.0.0: pify "^3.0.0" strip-bom "^3.0.0" +load-json-file@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" + integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== + dependencies: + graceful-fs "^4.1.15" + parse-json "^5.0.0" + strip-bom "^4.0.0" + type-fest "^0.6.0" + load-plugin@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/load-plugin/-/load-plugin-5.1.0.tgz#15600f5191c742b16e058cfc908c227c13db0104" @@ -7082,6 +7242,11 @@ load-yaml-file@^0.2.0: pify "^4.0.1" strip-bom "^3.0.0" +locate-character@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-character/-/locate-character-3.0.0.tgz#0305c5b8744f61028ef5d01f444009e00779f974" + integrity sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA== + locate-path@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" @@ -7215,7 +7380,7 @@ lru-cache@^7.5.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== -lru-cache@^9.0.0: +lru-cache@^9.1.1: version "9.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-9.1.1.tgz#c58a93de58630b688de39ad04ef02ef26f1902f1" integrity sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A== @@ -7234,6 +7399,21 @@ magic-string@^0.27.0: dependencies: "@jridgewell/sourcemap-codec" "^1.4.13" +magic-string@^0.30.0: + version "0.30.2" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.2.tgz#dcf04aad3d0d1314bc743d076c50feb29b3c7aca" + integrity sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + +make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + make-dir@^3.0.0, make-dir@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" @@ -7288,26 +7468,26 @@ markuplint-angular-parser@^2.0.0: tslib "^2.5.0" markuplint@^3.7.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/markuplint/-/markuplint-3.9.1.tgz#c4a47a85521302d680745645b965545af861752c" - integrity sha512-5o2EFL1hSByokd3a0WJaAloaiZZ8nx8NJjiIEjHSmvFLgCQ0mJ0JLAytUhMtn76aJdDBmyOrzQCB5D5GeUf2zA== - dependencies: - "@markuplint/create-rule-helper" "3.9.1" - "@markuplint/file-resolver" "3.9.0" - "@markuplint/html-parser" "3.7.0" - "@markuplint/html-spec" "3.8.0" + version "3.10.0" + resolved "https://registry.yarnpkg.com/markuplint/-/markuplint-3.10.0.tgz#201b6c2a5964eeedafcfb648bf791e25a4c07d1e" + integrity sha512-W4zuPJ62rxMbIAW3xTcgO0D6FPflpVEKwst/mfzAVYT7ddIS99ks41z4TnQzCZH3d752XAxxclDXIqE7X2clcA== + dependencies: + "@markuplint/create-rule-helper" "3.10.0" + "@markuplint/file-resolver" "3.10.0" + "@markuplint/html-parser" "3.8.0" + "@markuplint/html-spec" "3.9.0" "@markuplint/i18n" "3.8.0" "@markuplint/ml-ast" "3.1.0" - "@markuplint/ml-config" "3.8.0" - "@markuplint/ml-core" "3.9.0" - "@markuplint/ml-spec" "3.8.0" - "@markuplint/rules" "3.9.0" + "@markuplint/ml-config" "3.9.0" + "@markuplint/ml-core" "3.10.0" + "@markuplint/ml-spec" "3.9.0" + "@markuplint/rules" "3.10.0" "@markuplint/shared" "3.6.0" "@types/cli-color" "^2.0.2" "@types/debug" "^4.1.7" "@types/has-yarn" "^1.0.1" "@types/meow" "^6.0.0" - "@types/uuid" "^9.0.0" + "@types/uuid" "^9.0.1" chokidar "^3.5.3" cli-color "^2.0.3" debug "^4.3.4" @@ -7322,8 +7502,8 @@ markuplint@^3.7.0: os-locale "5" strict-event-emitter "^0.5.0" strip-ansi "6" - tslib "^2.4.1" - type-fest "^3.8.0" + tslib "^2.5.0" + type-fest "^3.10.0" uuid "^9.0.0" mdast-comment-marker@^2.0.0: @@ -7459,9 +7639,9 @@ mdast-util-mdx-expression@^1.0.0, mdast-util-mdx-expression@^1.1.0: mdast-util-to-markdown "^1.0.0" mdast-util-mdx-jsx@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz#694a46164db10c0e9d674a3772b8748dfddd0817" - integrity sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA== + version "2.1.3" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.3.tgz#4a2d7ae6715c46705aaa2c04acfdf825dc052d64" + integrity sha512-NlnLUrnNkBjzI5UyqlqmYHo6KDJ6sTnuHSFmU2ei8qIHFxQTBoPcffBvdQ2PKrmwHpVUgCmA5o1T1JG2oClpBw== dependencies: "@types/estree-jsx" "^1.0.0" "@types/hast" "^2.0.0" @@ -7696,9 +7876,9 @@ micromark-extension-gfm-strikethrough@^1.0.0: uvu "^0.5.0" micromark-extension-gfm-table@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz#7b708b728f8dc4d95d486b9e7a2262f9cddbcbb4" - integrity sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg== + version "1.0.6" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.6.tgz#22b2b18dff9db39bdb29d6017e53bdd370672c8e" + integrity sha512-92pq7Q+T+4kXH4M6kL+pc8WU23Z9iuhcqmtYFWdFWjm73ZscFpH2xE28+XFpGWlvgq3LUwcN0XC0PGCicYFpgA== dependencies: micromark-factory-space "^1.0.0" micromark-util-character "^1.0.0" @@ -7725,9 +7905,9 @@ micromark-extension-gfm-task-list-item@^1.0.0: uvu "^0.5.0" micromark-extension-gfm@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz#40f3209216127a96297c54c67f5edc7ef2d1a2a2" - integrity sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA== + version "2.0.3" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz#e517e8579949a5024a493e49204e884aa74f5acf" + integrity sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ== dependencies: micromark-extension-gfm-autolink-literal "^1.0.0" micromark-extension-gfm-footnote "^1.0.0" @@ -7739,9 +7919,9 @@ micromark-extension-gfm@^2.0.0: micromark-util-types "^1.0.0" micromark-extension-mdx-expression@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz#33fe2c6ee214738255de175a084281c11894ddda" - integrity sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw== + version "1.0.5" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.5.tgz#6fb6e870460f3f9ba98ba5b4f279cf80f5628e43" + integrity sha512-/ruJEj+Qpgar/P+b6z0firNIbY5VMHFdL3MJDvsnVVY+RnecmGNpN7YUZhb51NfBtk7iQnNCl5xeb4E5cWxXvw== dependencies: micromark-factory-mdx-expression "^1.0.0" micromark-factory-space "^1.0.0" @@ -7752,9 +7932,9 @@ micromark-extension-mdx-expression@^1.0.0: uvu "^0.5.0" micromark-extension-mdx-jsx@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz#9f196be5f65eb09d2a49b237a7b3398bba2999be" - integrity sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.4.tgz#eb982cae04f4a18e8976ee84da910d42cbc1726e" + integrity sha512-Jq4O738s2PvxJJSMZhV+y/7uq+pGI/ugQvHJBQelWpE3ECYvJMtF2duwfHQoAuUnIKSvg8b0dU1D+EXTAYE5ww== dependencies: "@types/acorn" "^4.0.0" estree-util-is-identifier-name "^2.0.0" @@ -7767,16 +7947,16 @@ micromark-extension-mdx-jsx@^1.0.0: vfile-message "^3.0.0" micromark-extension-mdx-md@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22" - integrity sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw== + version "1.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a" + integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA== dependencies: micromark-util-types "^1.0.0" micromark-extension-mdxjs-esm@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz#630d9dc9db2c2fd470cac8c1e7a824851267404d" - integrity sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A== + version "1.0.4" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.4.tgz#72a91e89fab028086bfb6e0eee76a14ce68c577b" + integrity sha512-mmyCf6baCbLf+OHTCZdj+f8lDY8GBae4qhbffrJDqM1KltghsZz2k3nbvRfEwm301G62nhrlom9M9OheQwrssg== dependencies: micromark-core-commonmark "^1.0.0" micromark-util-character "^1.0.0" @@ -7788,9 +7968,9 @@ micromark-extension-mdxjs-esm@^1.0.0: vfile-message "^3.0.0" micromark-extension-mdxjs@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd" - integrity sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ== + version "1.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8" + integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q== dependencies: acorn "^8.0.0" acorn-jsx "^5.0.0" @@ -7821,11 +8001,11 @@ micromark-factory-label@^1.0.0: uvu "^0.5.0" micromark-factory-mdx-expression@^1.0.0: - version "1.0.7" - resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz#e38298dc1f7eaf6ba1d9f210531ceae17155c00f" - integrity sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ== + version "1.0.8" + resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.8.tgz#02044dd91992ce09db98aba7fc737648eb0e0c76" + integrity sha512-/GWj6h6bDFCDCkxOCb/xXpgKGonhBXEqMnhTThVo0nlIN/i8z6L6YrmRq+N91oerxY97fEz7vHSCSIcW7fGFhQ== dependencies: - micromark-factory-space "^1.0.0" + "@types/estree" "^1.0.0" micromark-util-character "^1.0.0" micromark-util-events-to-acorn "^1.0.0" micromark-util-symbol "^1.0.0" @@ -7918,16 +8098,17 @@ micromark-util-encode@^1.0.0: integrity sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA== micromark-util-events-to-acorn@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz#d5b9dfbc589ece7917de24de0a57b909c0d36583" - integrity sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg== + version "1.2.3" + resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557" + integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w== dependencies: "@types/acorn" "^4.0.0" "@types/estree" "^1.0.0" + "@types/unist" "^2.0.0" estree-util-visit "^1.0.0" + micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" uvu "^0.5.0" - vfile-location "^4.0.0" vfile-message "^3.0.0" micromark-util-html-tag-name@^1.0.0: @@ -8037,7 +8218,14 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -"minimatch@3 || 4 || 5 || 6 || 7", minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +"minimatch@6 || 7 || 8 || 9", minimatch@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" + integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -8051,13 +8239,6 @@ minimatch@^5.0.1: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" - integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== - dependencies: - brace-expansion "^2.0.1" - minimist-options@4.1.0, minimist-options@^4.0.2: version "4.1.0" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" @@ -8072,10 +8253,10 @@ minimist@1, minimist@^1.2.6: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== +"minipass@^5.0.0 || ^6.0.0": + version "6.0.1" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.1.tgz#315417c259cb32a1b2fc530c0e7f55c901a60a6d" + integrity sha512-Tenl5QPpgozlOGBiveNYHg2f6y+VpxsXRoIHFUVJuSmTonXRAE6q9b8Mp/O46762/2AlW4ye4Nkyvx0fgWDKbw== mixme@^0.5.1: version "0.5.9" @@ -8142,9 +8323,9 @@ nice-try@^1.0.4: integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== node-fetch@2, node-fetch@^2.5.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" - integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== dependencies: whatwg-url "^5.0.0" @@ -8153,10 +8334,10 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== nodent-runtime@^3.2.1: version "3.2.1" @@ -8201,9 +8382,18 @@ normalize-path@3, normalize-path@^3.0.0, normalize-path@~3.0.0: integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== npm-normalize-package-bin@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz#6097436adb4ef09e2628b59a7882576fe53ce485" - integrity sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q== + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" + integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== + +npm-package-arg@8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04" + integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg== + dependencies: + hosted-git-info "^3.0.6" + semver "^7.0.0" + validate-npm-package-name "^3.0.0" npm-run-all@^4.1.5: version "4.1.5" @@ -8234,7 +8424,17 @@ npm-run-path@^5.1.0: dependencies: path-key "^4.0.0" -nth-check@^2.0.1: +npmlog@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + +nth-check@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== @@ -8360,17 +8560,17 @@ optionator@^0.8.1: type-check "~0.3.2" word-wrap "~1.2.3" -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" os-locale@5: version "5.0.0" @@ -8526,10 +8726,10 @@ parse5@7.1.2: dependencies: entities "^4.4.0" -patch-package@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-7.0.0.tgz#5c646b6b4b4bf37e5184a6950777b21dea6bb66e" - integrity sha512-eYunHbnnB2ghjTNc5iL1Uo7TsGMuXk0vibX3RFcE/CdVdXzmdbMsG/4K4IgoSuIkLTI5oHrMQk4+NkFqSed0BQ== +patch-package@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== dependencies: "@yarnpkg/lockfile" "^1.1.0" chalk "^4.1.2" @@ -8537,11 +8737,12 @@ patch-package@^7.0.0: cross-spawn "^7.0.3" find-yarn-workspace-root "^2.0.0" fs-extra "^9.0.0" + json-stable-stringify "^1.0.2" klaw-sync "^6.0.0" minimist "^1.2.6" open "^7.4.2" rimraf "^2.6.3" - semver "^5.6.0" + semver "^7.5.3" slash "^2.0.0" tmp "^0.0.33" yaml "^2.2.2" @@ -8577,12 +8778,12 @@ path-parse@^1.0.7: integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.7.0.tgz#99c741a2cfbce782294a39994d63748b5a24f6db" - integrity sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg== + version "1.9.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.9.1.tgz#838566bb22e38feaf80ecd49ae06cd12acd782ee" + integrity sha512-UgmoiySyjFxP6tscZDgWGEAgsW5ok8W3F5CJDnnH2pozwSTGE6eH7vwTotMwATWA2r5xqdkKdxYPkwlJjAI/3g== dependencies: - lru-cache "^9.0.0" - minipass "^5.0.0" + lru-cache "^9.1.1" + minipass "^5.0.0 || ^6.0.0" path-type@^3.0.0: version "3.0.0" @@ -8596,6 +8797,15 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +periscopic@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" + integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^3.0.0" + is-reference "^3.0.0" + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -8656,10 +8866,15 @@ postcss-safe-parser@^6.0.0: resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.9: - version "6.0.12" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" - integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== +postcss-scss@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.6.tgz#5d62a574b950a6ae12f2aa89b60d63d9e4432bfd" + integrity sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ== + +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.12, postcss-selector-parser@^6.0.13: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -8669,10 +8884,10 @@ postcss-value-parser@^4.1.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.5: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== +postcss@^8.4.25, postcss@^8.4.5: + version "8.4.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" + integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -8758,12 +8973,12 @@ prettier@>=2.3, prettier@>=2.3.0, prettier@>=2.4.0, prettier@^1.16.0, prettier@^ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== -pretty-format@^29.0.0, pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== +pretty-format@^29.0.0, pretty-format@^29.6.2: + version "29.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.2.tgz#3d5829261a8a4d89d8b9769064b29c50ed486a47" + integrity sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.0" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -8806,7 +9021,7 @@ pug-error@^2.0.0: resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5" integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ== -pug-lexer@^5.0.0: +pug-lexer@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5" integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== @@ -8911,7 +9126,7 @@ read-yaml-file@^1.1.0: pify "^4.0.1" strip-bom "^3.0.0" -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2: +readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.6.0: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -8942,13 +9157,6 @@ refa@^0.11.0: dependencies: "@eslint-community/regexpp" "^4.5.0" -refa@^0.9.0: - version "0.9.1" - resolved "https://registry.yarnpkg.com/refa/-/refa-0.9.1.tgz#12731fce378d235731b1f73182b20083c8a75ca8" - integrity sha512-egU8LgFq2VXlAfUi8Jcbr5X38wEOadMFf8tCbshgcpVCYlE7k84pJOSlnvXF+muDB4igkdVMq7Z/kiNPqDT9TA== - dependencies: - regexpp "^3.2.0" - regenerate-unicode-properties@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" @@ -8973,14 +9181,6 @@ regenerator-transform@^0.15.1: dependencies: "@babel/runtime" "^7.8.4" -regexp-ast-analysis@^0.2.3: - version "0.2.4" - resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.2.4.tgz#a497a7c8bfbba51438693821e4b0e3ed43e20f1b" - integrity sha512-8L7kOZQaKPxKKAwGuUZxTQtlO3WZ+tiXy4s6G6PKL6trbOXcZoumwC3AOHHFtI/xoSbNxt7jgLvCnP1UADLWqg== - dependencies: - refa "^0.9.0" - regexpp "^3.2.0" - regexp-ast-analysis@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.6.0.tgz#c0b648728c85d266a409ce00a6440c01c9834c61" @@ -9013,7 +9213,7 @@ regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: define-properties "^1.2.0" functions-have-names "^1.2.3" -regexpp@^3.0.0, regexpp@^3.2.0: +regexpp@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== @@ -9030,6 +9230,13 @@ regexpu-core@^5.3.1: unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" +regjsparser@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz#b1ed26051736b436f22fdec1c8f72635f9f44892" + integrity sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA== + dependencies: + jsesc "~0.5.0" + regjsparser@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" @@ -9058,9 +9265,9 @@ remark-gfm@^3.0.1: unified "^10.0.0" remark-lint-blockquote-indentation@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-3.1.1.tgz#756c099efd43a125f04df329bfe84398358758b6" - integrity sha512-u9cjedM6zcK8vRicis5n/xeOSDIC3FGBCKc3K9pqw+nNrOjY85FwxDQKZZ/kx7rmkdRZEhgyHak+wzPBllcxBQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-3.1.2.tgz#0d35b4da3731eb4885ea0e794e60d8ede8e1f78a" + integrity sha512-5DOrFsZd5dXqA4p/VZvWSrqIWNFbBXjX7IV/FkVkxlNhNF/0FMf/4v8x1I2W3mzaZ7yDsWS/egpZnmligq1ckQ== dependencies: "@types/mdast" "^3.0.0" pluralize "^8.0.0" @@ -9071,9 +9278,9 @@ remark-lint-blockquote-indentation@^3.0.0: unist-util-visit "^4.0.0" remark-lint-checkbox-character-style@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-checkbox-character-style/-/remark-lint-checkbox-character-style-4.1.1.tgz#8d42edf52e7b359cf76ff7a6ba344dc70c933025" - integrity sha512-KPSW3wfHfB8m9hzrtHiBHCTUIsOPX5nZR7VM+2pMjwqnhI6Mp94DKprkNo1ekNZALNeoZIDWZUSYxSiiwFfmVQ== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-checkbox-character-style/-/remark-lint-checkbox-character-style-4.1.2.tgz#84c1c980a6a1f05b79f299af5bdd8ac3352d1055" + integrity sha512-5ITz+1cCuJ3Jv/Q7rKgDEucCOnIgjWDnSHPJA1tb4TI/D316h+ALbDhZIpP8gyfAm6sBAh3Pwz9XZJN2uJB5UQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9082,9 +9289,9 @@ remark-lint-checkbox-character-style@^4.0.0: unist-util-visit "^4.0.0" remark-lint-code-block-style@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/remark-lint-code-block-style/-/remark-lint-code-block-style-3.1.0.tgz#5a2d122d01f9175e762f81a144fc18e1a91a104c" - integrity sha512-Hv4YQ8ueLGpjItla4CkcOkcfGj+nlquqylDgCm1/xKnW+Ke2a4qVTMVJrP9Krp4FWmXgktJLDHjhRH+pzhDXLg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-code-block-style/-/remark-lint-code-block-style-3.1.2.tgz#5f2ba66240a1c890ebe7a5f84496029a67cff929" + integrity sha512-3wsWmzzdyEsB9sOzBOf46TSkwwVKXN2JpTEQb6feN0Tl6Vg75F7T9MHqMz7aqk/56bOXSxUzdpXDscGBhziLRA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9094,9 +9301,9 @@ remark-lint-code-block-style@^3.0.0: unist-util-visit "^4.0.0" remark-lint-definition-case@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-definition-case/-/remark-lint-definition-case-3.1.1.tgz#583483e783d43b4b5e110864584dce48f23a4386" - integrity sha512-dirX0BSfbm1Ixx4Hv4xRQliEP1rw8dDitw2Om3XcO2QqF8bWrzF06/xeMlDNAaT77Cxqb9S7bODo/q+CYUxyWQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-definition-case/-/remark-lint-definition-case-3.1.2.tgz#45c2810fb751ee821e31d6ab0614c25f5ac61314" + integrity sha512-/VxucJKEFykOe2ILgi0LLia0RaSyOPQXpR+tuX4MK3iKxIm7aT2oINgR9ugLpI15xJ463LyTi5mXf+BGveXeWA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9105,9 +9312,9 @@ remark-lint-definition-case@^3.0.0: unist-util-visit "^4.0.0" remark-lint-definition-spacing@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-definition-spacing/-/remark-lint-definition-spacing-3.1.1.tgz#403cb3a486cbc2cb703358e78115507f6ee1fc2b" - integrity sha512-PR+cYvc0FMtFWjkaXePysW88r7Y7eIwbpUGPFDIWE48fiRiz8U3VIk05P3loQCpCkbmUeInAAYD8tIFPTg4Jlg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-definition-spacing/-/remark-lint-definition-spacing-3.1.2.tgz#8055497c0b293fa0a803f1a156d555e340fd4dc3" + integrity sha512-l058jAKfZfCOmlbIzoTll+CrZm9Bh42ZVCHcODPSZC8Yx4terCKgIoks+RWJDEdUbEw0YQoYvPc59ZVmp3BIew== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9116,9 +9323,9 @@ remark-lint-definition-spacing@^3.0.0: unist-util-visit "^4.0.0" remark-lint-emphasis-marker@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-3.1.1.tgz#3f3336ba4be97b8296eb1019338237d61b4e3db8" - integrity sha512-VduuT+KAr0vA78xBLJdIcenCQja4mAd81aNACfdz7BUPLphIQa84D5uzl+nZatSaCXLebCNp5jP/bzVUsBmRKw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-3.1.2.tgz#f86034ce0641fcf38590a4cd83e310d491be6390" + integrity sha512-hPZ8vxZrIfxmLA5B66bA8y3PdHjcCQuaLsySIqi5PM2DkpN6a7zAP3v1znyRSaYJ1ANVWcu00/0bNzuUjflGCA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9127,9 +9334,9 @@ remark-lint-emphasis-marker@^3.0.0: unist-util-visit "^4.0.0" remark-lint-fenced-code-flag@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-3.1.1.tgz#b1fccd801a79c302543302dd3041fa325d1bd727" - integrity sha512-FFVZmYsBccKIIEgOtgdZEpQdARtAat1LTLBydnIpyNIvcntzWwtrtlj9mtjL8ZoSRre8HtwmEnBFyOfmM/NWaA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-3.1.2.tgz#a7b8040cdc78414f5fe742e2a28b6ef5dac14a79" + integrity sha512-yh4m3dlPmRsqM/BFhpqHYfrmBvFQ+D5dZZKDDYP2rf3YEoXlEVt8T8lWQueTTSxcq6yXAqL/XQL/iqqUHlLcHw== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9139,9 +9346,9 @@ remark-lint-fenced-code-flag@^3.0.0: unist-util-visit "^4.0.0" remark-lint-fenced-code-marker@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-3.1.1.tgz#ee977552bd130f1f1305301f97160d31ff6b7461" - integrity sha512-x/t8sJWPvE46knKz6zW03j9VX5477srHUmRFbnXhZ3K8e37cYVUIvfbPhcPCAosSsOki9+dvGfZsWQiKuUNNfQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-3.1.2.tgz#6ffdba7f311066e4e42fdefbcbdb54aca28b0bba" + integrity sha512-6XNqjOuhT+0c7Q/22aCsMz61ne9g8HRpYF79EXQPdbzYa+PcfPXMiQKStONY3PfC8OE2/3WXI2zcs8w9x+8+VQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9150,18 +9357,18 @@ remark-lint-fenced-code-marker@^3.0.0: unist-util-visit "^4.0.0" remark-lint-file-extension@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-file-extension/-/remark-lint-file-extension-2.1.1.tgz#780ef3c3a2e5713a44f82f24eb45e075ce9ba428" - integrity sha512-r6OMe27YZzr2NFjPMbBxgm8RZxigRwzeFSjapPlqcxk0Q0w/6sosJsceBNlGGlk00pltvv7NPqSexbXUjirrQQ== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-file-extension/-/remark-lint-file-extension-2.1.2.tgz#691aad28b9002107c3dc78d29fbbd62fc3d650a3" + integrity sha512-Nq54F5R7F1gyj/IMW6SvkAbVNrH+p38WK3//KCoZLDUYFrH0oXgXXFGHi9CT/O0VEopW+bWJfTn8YAJRs0qI5Q== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-final-definition@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-final-definition/-/remark-lint-final-definition-3.1.1.tgz#c1077176e41b675302abf5057a82d7d5602df149" - integrity sha512-94hRV+EBIuLVFooiimsZwh5ZPEcTqjy5wr7LgqxoUUWy+srTanndaLoki7bxQJeIcWUnomZncsJAyL0Lo7toxw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-final-definition/-/remark-lint-final-definition-3.1.2.tgz#9a147b456df3049b8f32570265736a6cfea19a5a" + integrity sha512-3O3JT6xqlrgq+UjhMPxshgMtwXn99w0BEO9JwbDls49N0XCu0n22Pq1n6X3tEVzskPLo3YYyVYfW2Z2C2rneKQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9171,18 +9378,18 @@ remark-lint-final-definition@^3.0.0: unist-util-visit "^4.0.0" remark-lint-final-newline@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-final-newline/-/remark-lint-final-newline-2.1.1.tgz#dac4e5ae92638808fb6e2de6164c43890f1248a5" - integrity sha512-cgKYaI7ujUse/kV4KajLv2j1kmi1CxpAu+w7wIU0/Faihhb3sZAf4a5ACf2Wu8NoTSIr1Q//3hDysG507PIoDg== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-final-newline/-/remark-lint-final-newline-2.1.2.tgz#c67267f6feede083f034d1f43ff22c5056bc0fe0" + integrity sha512-K0FdPGPyEB94PwNgopwVJFE8oRWi7IhY2ycXFVAMReI51el7EHB8F1gX14tB6p6zyGy6mUh69bCVU9mMTNeOUg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-hard-break-spaces@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-3.1.1.tgz#daaa6fbc9d08a0501dc6e3d4a844dc4783bdfaea" - integrity sha512-UfwFvESpX32qwyHJeluuUuRPWmxJDTkmjnWv2r49G9fC4Jrzm4crdJMs3sWsrGiQ3mSex6bgp/8rqDgtBng2IA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-3.1.2.tgz#c14cec655c697bcd76c1c65bdfb81a82b42b3160" + integrity sha512-HaW0xsl3TI7VFAqGWWcZtPqyz0NWu19KKjSO7OGFTUJU4S9YiRnhIxmSFM0ZLSsVAynE+dhzVKa8U7dOpWDcOg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9192,9 +9399,9 @@ remark-lint-hard-break-spaces@^3.0.0: unist-util-visit "^4.0.0" remark-lint-heading-increment@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-heading-increment/-/remark-lint-heading-increment-3.1.1.tgz#d12c9c1965e9eb44f090202d5d808a144c8ee884" - integrity sha512-DtiMwZNAE/iAZWuZGjTXxYjNDQ375r59C99aVeVp1nKaovIufKuHWAm9U/9FAGBJNgBx6Ovfdej4YwIxd0yAPw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-heading-increment/-/remark-lint-heading-increment-3.1.2.tgz#bef7e7cf8a6292b2869a0cb03944094504d984ad" + integrity sha512-+fMfZmFh6ie6MmbRCVW77Rha15zDmnHWKiA0Do08OTrfngPTv8ZKXYLmxhUpL+xV9ts9q+9Kz5rv0L4QD4sEwQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9203,9 +9410,9 @@ remark-lint-heading-increment@^3.0.0: unist-util-visit "^4.0.0" remark-lint-heading-style@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-heading-style/-/remark-lint-heading-style-3.1.1.tgz#19e321db9dc6c697f3ef8bf514a8b15323422776" - integrity sha512-Qm7ZAF+s46ns0Wo5TlHGIn/PPMMynytn8SSLEdMIo6Uo/+8PAcmQ3zU1pj57KYxfyDoN5iQPgPIwPYMLYQ2TSQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-heading-style/-/remark-lint-heading-style-3.1.2.tgz#62a191d14889be41d8cc8c8e0a150b6249d74286" + integrity sha512-0RkcRPV/H2bPFgeInzBkK1cWUwtFTm83I+Db/Z5tDY02GzKOosHLvxtJyj/1391/opAH1LYbHtHWffir99IUgw== dependencies: "@types/mdast" "^3.0.0" mdast-util-heading-style "^2.0.0" @@ -9215,9 +9422,9 @@ remark-lint-heading-style@^3.0.0: unist-util-visit "^4.0.0" remark-lint-link-title-style@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-link-title-style/-/remark-lint-link-title-style-3.1.1.tgz#eb1a773816b4bee43170745245e9fed776633a7d" - integrity sha512-JWWiuUFy/N2iwQ3eWIxFy6olX8D7xCFw8LoM0vZI2CHTZJrmDMaWwnl8jziP+HHHheFX3wkVqsoaYod536ArRw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-link-title-style/-/remark-lint-link-title-style-3.1.2.tgz#c32d943ef5d0d2d3807e573786ecdae5c04787ee" + integrity sha512-if4MahYJVvQUWlrXDF8GSv4b9VtLSgMSDHeikQp1/hGYlihLl9uGw3nlL5Lf9DqTN0qaT6RPbXOjuuzHlk38sg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9227,9 +9434,9 @@ remark-lint-link-title-style@^3.0.0: vfile-location "^4.0.0" remark-lint-list-item-bullet-indent@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-4.1.1.tgz#1ff4498b680bb4a8ce94a4192a1b52eca4c9fe48" - integrity sha512-NFvXVj1Nm12+Ma48NOjZCGb/D0IhmUcxyrTCpPp+UNJhEWrmFxM8nSyIiZgXadgXErnuv+xm2Atw7TAcZ9a1Cg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-4.1.2.tgz#20f0d147e2670956d7e09c8ed5b81212cc9c1f2f" + integrity sha512-WgU5nooqIEm6f35opcbHKBzWrdFJA3XcyTfB3nv/v0KX43/h6qFGmmMJ5kEiaFExuQp3dZSdatWuY0YZ9YRbUg== dependencies: "@types/mdast" "^3.0.0" pluralize "^8.0.0" @@ -9238,9 +9445,9 @@ remark-lint-list-item-bullet-indent@^4.0.0: unist-util-visit "^4.0.0" remark-lint-list-item-content-indent@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-3.1.1.tgz#9fff6bf4e1a08e86d99430838b822b8209dca15e" - integrity sha512-gcZhAXLd1onkutTEqQTybyANjdxvlOlu0y/AU4H3f6L99UGC85ymRhEeu5vGSkvsKKPR1FrMTEH6G2nNgtavgg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-3.1.2.tgz#ca9f2ebe58174ddb8da2bb7a1e767ad236d6992a" + integrity sha512-TB0pmrWiRaQW80Y/PILFQTnHDghRxXNzMwyawlP+DBF9gNom3pEBmb4ZlGQlN0aa3r8VWeIKdv1ylHrfXE0vqA== dependencies: "@types/mdast" "^3.0.0" pluralize "^8.0.0" @@ -9250,9 +9457,9 @@ remark-lint-list-item-content-indent@^3.0.0: unist-util-visit "^4.0.0" remark-lint-list-item-indent@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-list-item-indent/-/remark-lint-list-item-indent-3.1.1.tgz#1591d291a9f81c8f14219bdb63f226a5e9f271c3" - integrity sha512-OSTG64e52v8XBmmeT0lefpiAfCMYHJxMMUrMnhTjLVyWAbEO0vqqR5bLvfLwzK+P4nY2D/8XKku0hw35dM86Rw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-list-item-indent/-/remark-lint-list-item-indent-3.1.2.tgz#8b7e8eafe78ea2308c61ee9ff239ecf46b6f2bd6" + integrity sha512-tkrra1pxZVE4OVJGfN435u/v0ljruXU+dHzWiKDYeifquD4aWhJxvSApu7+FbE098D/4usVXgMxwFkNhrpZcSQ== dependencies: "@types/mdast" "^3.0.0" pluralize "^8.0.0" @@ -9263,9 +9470,9 @@ remark-lint-list-item-indent@^3.0.0: unist-util-visit "^4.0.0" remark-lint-list-item-spacing@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-4.1.1.tgz#93473e79965c3f21c0dc8830b18be790033485fd" - integrity sha512-MqXmahPgYrvfA7SPqmcAC6fI40jIgXG33EeE/MhFvMLWh04k+fqGf2O2aH1KT664MlwM4oETbTI4xj3/KCIHZA== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-4.1.2.tgz#8366a288ee1560bc798e3e7e45d4ec36fe27c834" + integrity sha512-RHscGCa81PzcI09H0JAKXGyUiIMRTg5u4G8/p1zqnfEeOgG1R+87mLEJrOC9tUWGjuVoyd7T8Q2DMxg1Iep9ow== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9275,9 +9482,9 @@ remark-lint-list-item-spacing@^4.0.0: unist-util-visit "^4.0.0" remark-lint-maximum-heading-length@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-3.1.1.tgz#dd90ef7f18ff20789f9c533e2bdbcd4b4d92a7cd" - integrity sha512-hTOvRDnULpu0S+k51lovT28TLBgtw8XR0qq+mECSsoyuT4C38UBjQRic5OPo68AZMH0ad/93uj6yvfFtH0K8Lg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-3.1.2.tgz#20225d60dd7985f10dfcbac49decfac04c7ee160" + integrity sha512-gkmZxjlzEmNjBRBwef0L/Qmoabxxof0mryOxWzRZSu1xz4Qsp+UFWMhiHGXbE9WJL6EBW8yNTOpgnNgUOzqDiQ== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9287,9 +9494,9 @@ remark-lint-maximum-heading-length@^3.0.0: unist-util-visit "^4.0.0" remark-lint-maximum-line-length@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-3.1.2.tgz#4c5c499279c80938878194d4e52102525b7a9e1b" - integrity sha512-KwddpVmNifTHNXwTQQgVufuUvv0hhu9kJVvmpNdEvfEc7tc3wBkaavyi3kKsUB8WwMhGtZuXVWy6OdPC1axzhw== + version "3.1.3" + resolved "https://registry.yarnpkg.com/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-3.1.3.tgz#9299a5282ba74c4937443c5267dcb473b7bff97c" + integrity sha512-TA7IE+0c8agRm1k7JZr7ZZFiL44JMBAj1KlMxSTACBuebdPJe7IPaLIQga10bnz75jfWMzSiRURMFHo4lt3kdw== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9299,9 +9506,9 @@ remark-lint-maximum-line-length@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-blockquote-without-marker@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-5.1.1.tgz#e07233866a742c41368886663d7caebbdebb1074" - integrity sha512-7jL7eKS25kKRhQ7SKKB5eRfNleDMWKWAmZ5Y/votJdDoM+6qsopLLumPWaSzP0onyV3dyHRhPfBtqelt3hvcyA== + version "5.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-5.1.2.tgz#647de3297d8bca29e6591a2ba24ba50a8d711a9c" + integrity sha512-QPbqsrt7EfpSWqTkZJ9tepabPIhBDlNqZkuxxMQYD0OQ2N+tHDUq3zE1JxI5ts1V9o/mWApgySocqGd3jlcKmQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9312,9 +9519,9 @@ remark-lint-no-blockquote-without-marker@^5.0.0: vfile-location "^4.0.0" remark-lint-no-consecutive-blank-lines@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-4.1.2.tgz#77d5c433830c306898deefbab370c0c5732ff99a" - integrity sha512-wRsR3kFgHaZ4mO3KASU43oXGLGezNZ64yNs1ChPUacKh0Bm7cwGnxN9GHGAbOXspwrYrN2eCDxzCbdPEZi2qKw== + version "4.1.3" + resolved "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-4.1.3.tgz#929979b682c173472e23c94150e7c096cac83677" + integrity sha512-yU3jH6UMHvaxX3DPBen+7CoPiCcqJ4BeteyOKeKX+tKWCWKILpiz+TVToRbeLnWO4IvFNnSRFMSXmcWSDdbY4w== dependencies: "@types/mdast" "^3.0.0" "@types/unist" "^2.0.0" @@ -9326,9 +9533,9 @@ remark-lint-no-consecutive-blank-lines@^4.0.0: unist-util-visit "^4.0.0" remark-lint-no-duplicate-definitions@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-definitions/-/remark-lint-no-duplicate-definitions-3.1.1.tgz#2f5042b8d2274d94a9423767c6e714b57c6a2dbf" - integrity sha512-9p+nBz8VvV+t4g/ALNLVN8naV+ffAzC4ADyg9QivzmKwLjyF93Avt4HYNlb2GZ+aoXRQSVG1wjjWFeDC9c7Tdg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-definitions/-/remark-lint-no-duplicate-definitions-3.1.2.tgz#6acb7b7cee7c8f063399a50c2c76ae19894d6057" + integrity sha512-vi0nXA7p+pjQOorZOkr9E+QDhG74JAdbzqglWPrWWNI3z2rUYWYHTNSyWJbwEXaIIcev1ZAw8SCAOis5MNm+pA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9339,9 +9546,9 @@ remark-lint-no-duplicate-definitions@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-duplicate-headings-in-section@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-headings-in-section/-/remark-lint-no-duplicate-headings-in-section-3.1.1.tgz#67363ab1c9d8aa3c6151b4f2a80174508cfefd86" - integrity sha512-hv8GJXcPmpMdIxyQUuem7OUe9pR475Tmq+7ocyRDGODMpgBfMSO6gvNGJkdZin1zeGba0EF8ku3ksvkyodKX1Q== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-headings-in-section/-/remark-lint-no-duplicate-headings-in-section-3.1.2.tgz#788330e63a13b48e39d5d379e52f7064da35872b" + integrity sha512-wzdGY3XbMeJILEgtrRsSNDvG4b+tfcYSnZW5qMeQOkh8L6tAm1s0K5frmunKriuYr7WvFcRq9YBRbQO7S02X+g== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9353,9 +9560,9 @@ remark-lint-no-duplicate-headings-in-section@^3.1.1: unist-util-visit "^4.0.0" remark-lint-no-duplicate-headings@^3.0.0, remark-lint-no-duplicate-headings@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-3.1.1.tgz#5cee9867b01e296dda7940a7c2546cb43f2be523" - integrity sha512-gSO/BngGkxF35Fsctzt3YMwGEZ8F7f71zx7h0Y97DylyL6WXVuWP4saCmQTlbB4FpD0UXEnRROJ6fBFDvJlzOA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-3.1.2.tgz#3ab2fa5d71b91ad942dfb40712e404e8a6ea893d" + integrity sha512-atBlykGOx9BhpXGp0BUMWxn/T89+hC0Gel8xOIMaFkDhRcLlLVt+/F/aJGhM2Sp0R9NTQ6ejn+JYMLl5Aw2Z+g== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9367,9 +9574,9 @@ remark-lint-no-duplicate-headings@^3.0.0, remark-lint-no-duplicate-headings@^3.1 unist-util-visit "^4.0.0" remark-lint-no-emphasis-as-heading@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-3.1.1.tgz#8279e3905fbc5117f195a65396ce50d08648d611" - integrity sha512-F45yuLsYVP4r6OjVtePKk7Aymnf3rBLHXYjnSJggEaYn0j+72xOBLrqmj6ii5YGfDsBwG2pDNTBx4vm3xM7P0Q== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-3.1.2.tgz#6810b1a26364fd18e4f0a42a62284750ce21cfdb" + integrity sha512-2DDx0VkqSExR6oqBiQtOsmdDwT7f3hpnPwPvBCk7BDeDU53JWY1kBAkRObkEptgH3GfpwxIQymIdHXesBpAQAg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9378,54 +9585,54 @@ remark-lint-no-emphasis-as-heading@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-file-name-articles@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-2.1.1.tgz#9a202242fae3d9f6d7037bb71821659887ee84a4" - integrity sha512-7fiHKQUGvP4WOsieZ1dxm8WQWWjXjPj0Uix6pk2dSTJqxvaosjKH1AV0J/eVvliat0BGH8Cz4SUbuz5vG6YbdQ== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-2.1.2.tgz#cb5823ef460a651f8486f11491d23d017724904c" + integrity sha512-kM4vwBkne7f9euDKsuyxTtrsiafjH+KOwu8ZmuSVWh5U+u0EMcPyN5fxfaQIW+5FkrJA1jwnRu7ciXJBJt74Og== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-no-file-name-consecutive-dashes@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-2.1.1.tgz#d0d36ae694a486a9d8a39d9f3823f11234ed45c2" - integrity sha512-tM4IpURGuresyeIBsXT5jsY3lZakgO6IO59ixcFt015bFjTOW54MrBvdJxA60QHhf5DAyHzD8wGeULPSs7ZQfg== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-2.1.2.tgz#fceae4d1a3b86e2ddf0e0eaac2f90ee94e88b5e6" + integrity sha512-gw06jaaFwBR3s+3E2kJlv+E7rAzS7Nj+MFU7TViwbsYnR7PA96htLVDCjClyNUE7JHUNcv93HdLm8ykg8kRyNA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-no-file-name-irregular-characters@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-2.1.1.tgz#8f9dd0c22cf7ee5ca3860b949256e3eaf5baa5b0" - integrity sha512-rVeCv1XRdLtp/rxLaiFKElaIHuIlokypV/c2aCG3VVYcQ4+ZmJxq018kEsolR2+Dv9m3vKp8Fy1482US4g4WKA== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-2.1.2.tgz#8dbca858c37e46f08cf5051b5a55945381bf4aab" + integrity sha512-2tcqzLm39Jc4THNP2yvJruOz2HtV4yh+eePiySKmhfZk/6ifMyOF/wlKHKcswczSGE4InNTfxJnc/AoxOJEdkw== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-no-file-name-mixed-case@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-2.1.1.tgz#adac709a0961609ba305b46dd01035b4fba4ae84" - integrity sha512-mJU3hYzyXNo8NkoSafPcsgr+Gema+vDCzNWlLw05UdFXJK/cVy+6DVsbrEFjrz8L+WF7uQmUHBtTvd91SqoItg== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-2.1.2.tgz#7b33fdc2c234ca2c20ef0e6244ca48a7f07d48f7" + integrity sha512-0mTrjxBB4/0rV7sef+xjV5Aeb6LuW19X4QbNHW2RW7aMy+mtgJU03wdb8Y0LTnWVFHjUbc+iHrsFeCA/Pu1kew== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-no-file-name-outer-dashes@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-2.1.1.tgz#d0956441d1df6fb0a04a0efd375a739729fe5213" - integrity sha512-2kRcVNzZb0zS3jE+Iaa6MEpplhqXSdsHBILS+BxJ4cDGAAIdeipY8hKaDLdZi+34wvrfnDxNgvNLcHpgqO+OZA== + version "2.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-2.1.2.tgz#452cdcbebaed68359a9e87a973d37a74f1c0db09" + integrity sha512-VrbHg25Oo9k/bNbS7ye1X7F6ER4uZSubO+t5DHJ4WZ6iVbNtBar/JwzVelY1YxUAutv42OvHfuveh4vKlcNgVA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" unified-lint-rule "^2.0.0" remark-lint-no-heading-content-indent@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-4.1.1.tgz#e4afb9872d12b29805c183999f5cb3adca9f394c" - integrity sha512-W4zF7MA72IDC5JB0qzciwsnioL5XlnoE0r1F7sDS0I5CJfQtHYOLlxb3UAIlgRCkBokPWCp0E4o1fsY/gQUKVg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-4.1.2.tgz#fdc57ed0b40209ed09d25366b61d445399f1562b" + integrity sha512-TTxFsm1f4ZHFxZQCuz7j0QK4RvP6oArTiwazKLr16yaZe1608ypogMek4A30j2xX8WuO9+2uBzLXCY5OBo5x5Q== dependencies: "@types/mdast" "^3.0.0" mdast-util-heading-style "^2.0.0" @@ -9437,9 +9644,9 @@ remark-lint-no-heading-content-indent@^4.0.0: unist-util-visit "^4.0.0" remark-lint-no-heading-punctuation@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-3.1.1.tgz#ba2159170778bfdec8947e1a71d1e152431cd9ce" - integrity sha512-ZexHx4rmsjKVF1/Fvdig0yOgpWl0wFa43+sqg880HT3PW9KmEczjSRkwlMaTlVgDzC0paNn2FXfQMuEQW4YDLg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-3.1.2.tgz#7bf808106de768467216c34db0dc586cb248056e" + integrity sha512-KnvHEVB/DcxJOhUvVteiovAy1+32YY5Vm0UBJqYCFrrHnN/y9ETvOJzlxFy47TaB8x2UyncSEg2JuT66UL4ONQ== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9449,9 +9656,9 @@ remark-lint-no-heading-punctuation@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-inline-padding@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-4.1.1.tgz#2f1dda78556f1f8a98b4cad52ff74f6a56b55c58" - integrity sha512-++IMm6ohOPKNOrybqjP9eiclEtVX/Rd2HpF2UD9icrC1X5nvrI6tlfN55tePaFvWAB7pe6MW4LzNEMnWse61Lw== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-4.1.2.tgz#f1e8bd21694f9f773078ff977934edea8ffd842d" + integrity sha512-dGyhWsiqCZS3Slob0EVBUfsFBbdpMIBCvb56LlCgaHbnLsnNYx8PpF/wA5CgsN8BXIbXfRpyPB5cIJwIq5taYg== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9461,9 +9668,9 @@ remark-lint-no-inline-padding@^4.0.0: unist-util-visit "^4.0.0" remark-lint-no-literal-urls@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-3.1.1.tgz#9e3b71c013ffa3d3a493c98b54c3d5bd0ea0ad23" - integrity sha512-tZZ4gtZMA//ZAf7GJTE8S9yjzqXUfUTlR/lvU7ffc7NeSurqCBwAtHqeXVCHiD39JnlHVSW2MLYhvHp53lBGvA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-3.1.2.tgz#9a261f810c5b5edbb3ed2903c3d03dc9c5e4b575" + integrity sha512-4tV9JGLKxAMFSuWDMOqLozkFJ3HyRvhzgrPrxASoziaml23m7UXAozk5dkIrFny1cN2oG988Z8tORxX2FL1Ilw== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-string "^3.0.0" @@ -9474,9 +9681,9 @@ remark-lint-no-literal-urls@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-multiple-toplevel-headings@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-3.1.1.tgz#0a0058b03e5d8c3539230a5987e0ef11edd987f2" - integrity sha512-bM//SIBvIkoGUpA8hR5QibJ+7C2R50PTIRrc4te93YNRG+ie8bJzjwuO9jIMedoDfJB6/+7EqO9FYBivjBZ3MA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-3.1.2.tgz#e4eb81f01b81e346431314df611c75213f019724" + integrity sha512-9rJSsrwdzwKmtuloBjJobLzjGL7Lgtk3+vMNUyuH9z/nBfkUCN3qxn3Nt9AxL+wwSAsHV6e74W+W2S1ohBLt6A== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9487,9 +9694,9 @@ remark-lint-no-multiple-toplevel-headings@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-shell-dollars@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-3.1.1.tgz#27deee278650d72bca795788e195927f03059f9d" - integrity sha512-Q3Ad1TaOPxbYog5+Of/quPG3Fy+dMKiHjT8KsU7NDiHG6YJOnAJ3f3w+y13CIlNIaKc/MrisgcthhrZ7NsgXfA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-3.1.2.tgz#3663591611516a8eb3faf1251c95f7b9c14b1a02" + integrity sha512-np2MDEhXHviXhbQFjnC1QYv5/fxCV1cIHfGMoJpqiW7Zcu/UGCOo5TE3XswZH4ukHZJ65c3X2A6qfLDW+ur3CQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9498,9 +9705,9 @@ remark-lint-no-shell-dollars@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-shortcut-reference-image@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-3.1.1.tgz#3714f31e98ca2063c43bb4cc4d7206e0581da501" - integrity sha512-m8tH+loDagd1JUns/T4eyulVXgVvE+ZSs7owRUOmP+dgsKJuO5sl1AdN9eyKDVMEvxHF3Pm5WqE62QIRNM48mA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-3.1.2.tgz#bae29d978fc1fedfd750feb23bb00c3b28d56416" + integrity sha512-NX4XJFPyDeJJ77pmETxRj4oM/zayf7Lmn/O87HgExBkQIPz2NYbDeKD8QEyliLaV/oKA2rQufpzuFw55xa1Tww== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9509,9 +9716,9 @@ remark-lint-no-shortcut-reference-image@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-shortcut-reference-link@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-3.1.1.tgz#b29bc4bfdb02b30a596b5fed235c99e470805130" - integrity sha512-oDJ92/jXQ842HgrBGgZdP7FA+N2jBMCBU2+jRElkS+OWVut0UaDILtNavNy/e85B3SLPj3RoXKF96M4vfJ7B2A== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-3.1.2.tgz#451d867b58fcf20f6fcacf3da64fedf86b07bcf2" + integrity sha512-/9iPN7FLKaaIzw4tLWKu7Rx0wAP7E2EuzIeentQlkY0rO/mMHipmT3IlgiebsAInKagzTY6TNFoG1rq2VnaCcA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9520,9 +9727,9 @@ remark-lint-no-shortcut-reference-link@^3.0.0: unist-util-visit "^4.0.0" remark-lint-no-table-indentation@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-4.1.1.tgz#985a0a1f7a533b58c9829db6579c7cac899e55e1" - integrity sha512-eklvBxUSrkVbJxeokepOvFZ3n2V6zaJERIiOowR+y/Bz4dRHDMij1Ojg55AMO9yUMvxWPV3JPOeThliAcPmrMg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-4.1.2.tgz#08ef417f7f280c11521ff85a5d3d243aad08e443" + integrity sha512-5lkO+Yrtni/CDMZi7mlwbB2zzRQLH94DesboXg51aO2UfZlSn5dZNhmN5wkyCU2AiApUhlFNbxfKMHOWFPLdog== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9532,9 +9739,9 @@ remark-lint-no-table-indentation@^4.0.0: vfile-location "^4.0.0" remark-lint-no-undefined-references@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-4.2.0.tgz#11a3e579b9107493d7781973dde8517793f52e0c" - integrity sha512-EDV9B1ZXMLcKVtMQFvfvtbag4AkLcu8aUNGXoez5GJLcCAQ8Q+sG74yOtIW4xNVlVubEjl0vdkFhaKYLxvn2Sw== + version "4.2.1" + resolved "https://registry.yarnpkg.com/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-4.2.1.tgz#191fbd4f05162b2595765351bcc75a41919e2fab" + integrity sha512-HdNg5b2KiuNplcuVvRtsrUiROw557kAG1CiZYB7jQrrVWFgd86lKTa3bDiywe+87dGrGmHd3qQ28eZYTuHz2Nw== dependencies: "@types/mdast" "^3.0.0" micromark-util-normalize-identifier "^1.0.0" @@ -9546,9 +9753,9 @@ remark-lint-no-undefined-references@^4.0.0: vfile-location "^4.0.0" remark-lint-no-unused-definitions@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-3.1.1.tgz#584fcd0b1ad569d3e1933256e85b9fb308e88695" - integrity sha512-/GtyBukhAxi5MEX/g/m+FzDEflSbTe2/cpe2H+tJZyDmiLhjGXRdwWnPRDp+mB9g1iIZgVRCk7T4v90RbQX/mw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-3.1.2.tgz#491dcef1dd284060f0222d11b9c38bd90c2d76fd" + integrity sha512-bOcaJAnjKxT3kASFquUA3fO9xem9wZhVqt8TbqjA84+G4n40qjaLXDs/4vq73aMsSde73K0f3j1u0pMe7et8yQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9557,9 +9764,9 @@ remark-lint-no-unused-definitions@^3.0.0: unist-util-visit "^4.0.0" remark-lint-ordered-list-marker-style@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-3.1.1.tgz#5431100f048ef44daa90a32251e8056f2de58449" - integrity sha512-IWcWaJoaSb4yoSOuvDbj9B2uXp9kSj58DqtrMKo8MoRShmbj1onVfulTxoTLeLtI11NvW+mj3jPSpqjMjls+5Q== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-3.1.2.tgz#9c7b38fb80784a7bd966f888f87aa83bff282d14" + integrity sha512-62iVE/YQsA0Azaqt8yAJWPplWLS47kDLjXeC2PlRIAzCqbNt9qH3HId8vZ15QTSrp8rHmJwrCMdcqV6AZUi7gQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9569,9 +9776,9 @@ remark-lint-ordered-list-marker-style@^3.0.0: unist-util-visit "^4.0.0" remark-lint-ordered-list-marker-value@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-3.1.1.tgz#fed1bafdaa8ada89d037e411e35d4c2b3f7cdda9" - integrity sha512-+bQZbo+v/A8CuLrO71gobJuKR4/sfnPgWyEggSa+zq+LXPK1HiMDjap0Wr07uYgcUXsXIPh+HD/5J5by6JL+vg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-3.1.2.tgz#a2bb783c184a76b73eee2560916fa2bd43494239" + integrity sha512-kG08nhsFk8rhoXK5EeDN/wN28CxefraDud/MaZnji8LEyxF3HAkzFuETr9laOn8Ey+n8h/C0mpqAwUf4thyJ5g== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9581,9 +9788,9 @@ remark-lint-ordered-list-marker-value@^3.0.0: unist-util-visit "^4.0.0" remark-lint-rule-style@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-rule-style/-/remark-lint-rule-style-3.1.1.tgz#163b4f394422496c065c95227970657a57c786cf" - integrity sha512-+oZe0ph4DWHGwPkQ/FpqiGp4WULTXB1edftnnNbizYT+Wr+/ux7GNTx78oXH/PHwlnOtVIExMc4W/vDXrUj/DQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-rule-style/-/remark-lint-rule-style-3.1.2.tgz#001c8aca23464bf68ff00c2bd0c73b1de557a61c" + integrity sha512-0CsX2XcX9pIhAP5N7Y8mhYXp3/Ld+NvxXY1p0LHAq0NZu17UsZLuegvx/s25uFbQs08DcmSqyKnepU9qGGqmTQ== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9592,9 +9799,9 @@ remark-lint-rule-style@^3.0.0: unist-util-visit "^4.0.0" remark-lint-strong-marker@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-strong-marker/-/remark-lint-strong-marker-3.1.1.tgz#4f77ba095cacbd8a8bcd7dd834dd792b50b1f3cb" - integrity sha512-tX9Os2C48Hh8P8CouY4dcnAhGnR3trL+NCDqIvJvFDR9Rvm9yfNQaY2N4ZHWVY0iUicq9DpqEiJTgUsT8AGv/w== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-strong-marker/-/remark-lint-strong-marker-3.1.2.tgz#55ff84a696f8453900daf511488f8f2e85edf551" + integrity sha512-U/g4wngmiI0Q6WBRQG6pZxnDS33Wt/0QYA3+KNFBDykoi1vXsDEorIqy3dEag9z6XHwcMvFDsff6VRUhaOJWQg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9603,9 +9810,9 @@ remark-lint-strong-marker@^3.0.0: unist-util-visit "^4.0.0" remark-lint-table-cell-padding@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-4.1.2.tgz#a7087f4513523ca0473986a7a9348847d52e6dad" - integrity sha512-cx5BXjHtpACa7Z51Vuqzy9BI4Z8Hnxz7vklhhrubkoB7mbctP/mR+Nh4B8eE5VtgFYJNHFwIltl96PuoctFCeQ== + version "4.1.3" + resolved "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-4.1.3.tgz#6ea87aebd8485824fe5c38a3400b93b1a4d56814" + integrity sha512-N9xtnS6MG/H3srAMjqqaF26A7socr87pIgt64dr5rxoSbDRWRPChGQ8y7wKyV8VeyRNF37e3E5KB3bQVqjSYaQ== dependencies: "@types/mdast" "^3.0.0" "@types/unist" "^2.0.0" @@ -9615,9 +9822,9 @@ remark-lint-table-cell-padding@^4.0.0: unist-util-visit "^4.0.0" remark-lint-table-pipe-alignment@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-3.1.1.tgz#dc9381f1b8437d3a96c3309ed8277ab003e84955" - integrity sha512-WOHv2yL4ZwXHM06MIyQNnGFYKz9m2k/GFIA/6hpArF8Ph/3v8CF0J/Hb3Yyfg39e5nODw3D2G3okCO+xgyGQGA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-3.1.2.tgz#c12542f31cf1ea2901030a94eb4d25ab18233316" + integrity sha512-6WRWgsMtfeLDEHbxnXZucTBQvxpEsw+QpNy7qEDqllnTo6OySgZPUodFAyI7s4t0ugqAfWf3lcCdMYkOL9kwBg== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9626,9 +9833,9 @@ remark-lint-table-pipe-alignment@^3.0.0: unist-util-visit "^4.0.0" remark-lint-table-pipes@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-4.1.1.tgz#8a9badb0daed86d561db681c150966549eb8528d" - integrity sha512-mJnB2FpjJTE4s9kE1JX8gcCjCFvtGPjzXUiQy0sbPHn2YM9EWG7kvFWYoqWK4w569CEQJyxZraEPltmhDjQTjg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-4.1.2.tgz#abdd6f9c4be7f7575a3054d06d57d8534b596ccf" + integrity sha512-Ex2cJDXA0hdD9CC5Nu0p3K5LP+AhzPvk4sIOSbevCTSRyCS/SkNk4CQ6pwWBxuPVuHQUkqXkT8lgu8wwr/9A3A== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9637,9 +9844,9 @@ remark-lint-table-pipes@^4.0.0: unist-util-visit "^4.0.0" remark-lint-unordered-list-marker-style@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-3.1.1.tgz#ad9a2aaa705bf3c1ec147f493c7b453ea612238f" - integrity sha512-JwH8oIDi9f5Z8cTQLimhJ/fkbPwI3OpNSifjYyObNNuc4PG4/NUoe5ZuD10uPmPYHZW+713RZ8S5ucVCkI8dDA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-3.1.2.tgz#7675ad4ffd91613a51c5a908061d9eb79df63160" + integrity sha512-JFiyB4ZprJGGndCaFB8FssXd48m4Kh+CUqzNgu3lBLEiW8dEAGRlD9M2AzyyA+Q29WJP/FntDCbP22DeON91UA== dependencies: "@types/mdast" "^3.0.0" unified "^10.0.0" @@ -9649,9 +9856,9 @@ remark-lint-unordered-list-marker-style@^3.0.0: unist-util-visit "^4.0.0" remark-lint@^9.0.0, remark-lint@^9.1.1: - version "9.1.1" - resolved "https://registry.yarnpkg.com/remark-lint/-/remark-lint-9.1.1.tgz#58c27adc4edeca93b7ce81e2861f05cbcecef72c" - integrity sha512-zhe6twuqgkx/9KgZyNyaO0cceA4jQuJcyzMOBC+JZiAzMN6mFUmcssWZyY30ko8ut9vQDMX/pyQnolGn+Fg/Tw== + version "9.1.2" + resolved "https://registry.yarnpkg.com/remark-lint/-/remark-lint-9.1.2.tgz#0781e273bba33fbfd26210b639b8a3702d65ad91" + integrity sha512-m9e/aPlh7tsvfJfj8tPxrQzD6oEdb9Foko+Ya/6OwUP9EoGMfehv1Qtv26W1DoH58Wn8rT8CD+KuprTWscMmIA== dependencies: "@types/mdast" "^3.0.0" remark-message-control "^7.0.0" @@ -9676,19 +9883,19 @@ remark-message-control@^7.0.0: unified-message-control "^4.0.0" vfile "^5.0.0" -remark-parse@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775" - integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw== +remark-parse@^10.0.2: + version "10.0.2" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262" + integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw== dependencies: "@types/mdast" "^3.0.0" mdast-util-from-markdown "^1.0.0" unified "^10.0.0" remark-preset-lint-consistent@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/remark-preset-lint-consistent/-/remark-preset-lint-consistent-5.1.1.tgz#c870a2379e109cb6d7a10cd2d3b91f34e3f89e71" - integrity sha512-DZQfomiVi/1x7NRByWrOiIC+olEGa1PpyykKrowvYp5qr/Seq60FqU7OjBJxtcOLzgnQcu9Y2JXdHxFi4AAPXQ== + version "5.1.2" + resolved "https://registry.yarnpkg.com/remark-preset-lint-consistent/-/remark-preset-lint-consistent-5.1.2.tgz#d081ad91ab92367d280a4efe355d6fd0819d109e" + integrity sha512-RQrWBFmyIkKfXtp9P1Fui7UbGSfXth9nuvRJUVnO0vfevBJe02iyMZWPokXSwkDOI/cM539wj0i3vrQupz+v5A== dependencies: "@types/mdast" "^3.0.0" remark-lint "^9.0.0" @@ -9707,9 +9914,9 @@ remark-preset-lint-consistent@^5.1.1: unified "^10.0.0" remark-preset-lint-markdown-style-guide@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-5.1.2.tgz#877a837261df1f6c021557463aeda1e49506dd30" - integrity sha512-MIAhnz0wDOq/MqLucSaAPquKGFE2I5SxqRjgWT+ZGK7TmqTxrro53e11/Pc19xPX4evmzI5CZdvaRnIoxP3ysQ== + version "5.1.3" + resolved "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-5.1.3.tgz#69297ff80f15763c141d0ef4e151ad38deb116c4" + integrity sha512-4zNSPoiwAh4LJCbXh2U8Q9SFUIMw0MwsYJWTXHNiD0bGIUMWYU8ATLzDpWqCkzra6Ih7rLZuqB8tQIlipcM4Hg== dependencies: "@types/mdast" "^3.0.0" remark-lint "^9.0.0" @@ -9759,9 +9966,9 @@ remark-preset-lint-markdown-style-guide@^5.1.2: unified "^10.0.0" remark-preset-lint-recommended@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/remark-preset-lint-recommended/-/remark-preset-lint-recommended-6.1.2.tgz#268eeaab887cef79e6b22fde046e65cf11abcf67" - integrity sha512-x9kWufNY8PNAhY4fsl+KD3atgQdo4imP3GDAQYbQ6ylWVyX13suPRLkqnupW0ODRynfUg8ZRt8pVX0wMHwgPAg== + version "6.1.3" + resolved "https://registry.yarnpkg.com/remark-preset-lint-recommended/-/remark-preset-lint-recommended-6.1.3.tgz#04b89a963bb7721d736fe731a9d8021d78ec95d7" + integrity sha512-DGjbeP2TsFmQeJflUiIvJWAOs1PxJt7SG3WQyMxOppkRr/up+mxWVkuv+6AUuaR0EsuaaFGz7WmZM5TrSSFWJw== dependencies: "@types/mdast" "^3.0.0" remark-lint "^9.0.0" @@ -9786,10 +9993,10 @@ remark-preset-prettier@^2.0.1: resolved "https://registry.yarnpkg.com/remark-preset-prettier/-/remark-preset-prettier-2.0.1.tgz#1b4469fd45b22c7d49e1b2d2594a8e7bba3cdac9" integrity sha512-1+cZaM080zTlhQIvZDOj7SFWvW9zevfxsLjTZspLEsBYivMDwCyTodvNvaZLc9p5dUSMik/BjMFKicfhZXh7qg== -remark-stringify@^10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.2.tgz#50414a6983f5008eb9e72eed05f980582d1f69d7" - integrity sha512-6wV3pvbPvHkbNnWB0wdDvVFHOe1hBRAx1Q/5g/EpH4RppAII6J8Gnwe7VbHuXaoKIF6LAg6ExTel/+kNqSQ7lw== +remark-stringify@^10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.3.tgz#83b43f2445c4ffbb35b606f967d121b2b6d69717" + integrity sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-markdown "^1.0.0" @@ -9859,19 +10066,12 @@ resolve-global@1.0.0, resolve-global@^1.0.0: dependencies: global-dirs "^0.1.1" -resolve-pkg@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41" - integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ== - dependencies: - resolve-from "^5.0.0" - resolve.exports@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1: +resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.2: version "1.22.2" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== @@ -9978,10 +10178,10 @@ rollup-pluginutils@^2.8.2: dependencies: estree-walker "^0.6.1" -rollup@^3.21.3: - version "3.21.3" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.3.tgz#b3f1920a9d35a9de70f120a1d085753e41997941" - integrity sha512-VnPfEG51nIv2xPLnZaekkuN06q9ZbnyDcLkaBdJa/W7UddyhOfMP2yOPziYQfeY7k++fZM8FdQIummFN5y14kA== +rollup@^3.26.1: + version "3.27.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.27.1.tgz#e6c7340889f33042b4c3247a2acb38ebcfc3a98c" + integrity sha512-tXNDFwOkN6C2w5Blj1g6ForKeFw6c1mDu5jxoeDO3/pmYjgt+8yvIFjKzH5FQUq70OKZBkOt0zzv0THXL7vwzQ== optionalDependencies: fsevents "~2.3.2" @@ -10044,15 +10244,6 @@ sax@~1.2.4: resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -scslre@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/scslre/-/scslre-0.1.6.tgz#71a2832e4bf3a9254973a04fbed90aec94f75757" - integrity sha512-JORxVRlQTfjvlOAaiQKebgFElyAm5/W8b50lgaZ0OkEnKnagJW2ufDh3xRfU75UD9z3FGIu1gL1IyR3Poa6Qmw== - dependencies: - refa "^0.9.0" - regexp-ast-analysis "^0.2.3" - regexpp "^3.2.0" - scslre@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/scslre/-/scslre-0.2.0.tgz#b604eedbab76f87003738d00de44d7601a78609e" @@ -10070,29 +10261,36 @@ section-matter@^1.0.0: extend-shallow "^2.0.1" kind-of "^6.0.0" -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.3.8: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" - -semver@7.x, semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0: +semver@7.5.0: version "7.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@7.5.2: + version "7.5.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" + integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== + dependencies: + lru-cache "^6.0.0" + +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0, semver@^7.5.3, semver@^7.5.4: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" set-blocking@^2.0.0: version "2.0.0" @@ -10150,9 +10348,9 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signal-exit@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.1.tgz#96a61033896120ec9335d96851d902cc98f0ba2a" - integrity sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" + integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== simple-git-hooks@^2.8.1: version "2.8.1" @@ -10217,6 +10415,20 @@ smartwrap@^2.0.2: wcwidth "^1.0.1" yargs "^15.1.0" +sort-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== + dependencies: + is-plain-obj "^1.0.0" + +sort-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" + integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== + dependencies: + is-plain-obj "^2.0.0" + source-map-js@^1.0.1, source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" @@ -10340,7 +10552,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -10476,7 +10688,7 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" -strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.0.1, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -10524,19 +10736,35 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -svelte-eslint-parser@^0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/svelte-eslint-parser/-/svelte-eslint-parser-0.27.0.tgz#93dd0a662a3f6f27dbf571d11bf450cfe5bd0050" - integrity sha512-x9cBbCZwLdCnNE3yPqGhvAqEl9FCILC6AaV2xRtwzaMCpvpqO7ceONXj9xka3fQFczSqLzkwOxP4Ln4cIQNqXg== +svelte-eslint-parser@^0.32.2: + version "0.32.2" + resolved "https://registry.yarnpkg.com/svelte-eslint-parser/-/svelte-eslint-parser-0.32.2.tgz#542042254feef50962dc6cb6451234f3103476ef" + integrity sha512-Ok9D3A4b23iLQsONrjqtXtYDu5ZZ/826Blaw2LeFZVTg1pwofKDG4mz3/GYTax8fQ0plRGHI6j+d9VQYy5Lo/A== dependencies: eslint-scope "^7.0.0" eslint-visitor-keys "^3.0.0" espree "^9.0.0" + postcss "^8.4.25" + postcss-scss "^4.0.6" -svelte@^3.58.0: - version "3.58.0" - resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.58.0.tgz#d3e6f103efd6129e51c7d709225ad3b4c052b64e" - integrity sha512-brIBNNB76mXFmU/Kerm4wFnkskBbluBDCjx/8TcpYRb298Yh2dztS2kQ6bhtjMcvUhd5ynClfwpz5h2gnzdQ1A== +svelte@^4.0.5: + version "4.1.2" + resolved "https://registry.yarnpkg.com/svelte/-/svelte-4.1.2.tgz#fc022854b029b04491e086e0eda7312b4b233eeb" + integrity sha512-/evA8U6CgOHe5ZD1C1W3va9iJG7mWflcCdghBORJaAhD2JzrVERJty/2gl0pIPrJYBGZwZycH6onYf+64XXF9g== + dependencies: + "@ampproject/remapping" "^2.2.1" + "@jridgewell/sourcemap-codec" "^1.4.15" + "@jridgewell/trace-mapping" "^0.3.18" + acorn "^8.9.0" + aria-query "^5.3.0" + axobject-query "^3.2.1" + code-red "^1.0.3" + css-tree "^2.3.1" + estree-walker "^3.0.3" + is-reference "^3.0.1" + locate-character "^3.0.0" + magic-string "^0.30.0" + periscopic "^3.1.0" svg-tags@^1.0.0: version "1.0.0" @@ -10644,10 +10872,10 @@ to-vfile@^7.0.0: is-buffer "^2.0.0" vfile "^5.1.0" -toml-eslint-parser@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/toml-eslint-parser/-/toml-eslint-parser-0.5.0.tgz#db95b86ce8c59ae7743ba6beef75a73d11c1aab9" - integrity sha512-SrneDiwkE/iQ3ndP/TkPN6Thfgd+ZGbtm7tV8WXlmVzUP2DIYXSCporm0Rgy/C40h7r9ANZfIW9YwQMUepqAmw== +toml-eslint-parser@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/toml-eslint-parser/-/toml-eslint-parser-0.6.0.tgz#aaf394f2efd94d84d881113479d57d7597dc5d47" + integrity sha512-aTmQa0RFb+2URe8IZOfo/oxt3b5rlXlpG9xE+6FmeI8immCGLnZYvKVxbnCYJx4bIKIaEwl0BnCDhwO70yeWSA== dependencies: eslint-visitor-keys "^3.0.0" @@ -10666,10 +10894,10 @@ trough@^2.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== -ts-jest@^29.1.0: - version "29.1.0" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" - integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== +ts-jest@^29.1.1: + version "29.1.1" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b" + integrity sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" @@ -10677,7 +10905,7 @@ ts-jest@^29.1.0: json5 "^2.2.3" lodash.memoize "4.x" make-error "1.x" - semver "7.x" + semver "^7.5.3" yargs-parser "^21.0.1" ts-node@^10.8.1, ts-node@^10.9.1: @@ -10699,10 +10927,10 @@ ts-node@^10.8.1, ts-node@^10.9.1: v8-compile-cache-lib "^3.0.1" yn "3.1.1" -"tslib@1 || 2", tslib@^2.1.0, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== +"tslib@1 || 2", tslib@^2.1.0, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.5.3, tslib@^2.6.0, tslib@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410" + integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== tslib@^1.8.1: version "1.14.1" @@ -10743,24 +10971,24 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -type-coverage-core@^2.25.0: - version "2.25.0" - resolved "https://registry.yarnpkg.com/type-coverage-core/-/type-coverage-core-2.25.0.tgz#87c1697fdcbc6f3e35b808da7d1f3b252fa6b13d" - integrity sha512-+ROv68mmveRCpYKq4kLEPDerCqj2YGzR8tSPXH2LLMxY5xk3zJM23Ztv/cAGoHEge4CI3S4xrcTJoWlwlhEKYA== +type-coverage-core@^2.26.0: + version "2.26.0" + resolved "https://registry.yarnpkg.com/type-coverage-core/-/type-coverage-core-2.26.0.tgz#65674366f3804962a89ea2136cc742d7fd26d439" + integrity sha512-/9VQ0ySU1CKbWd/BNnbVYMJ67oOt7qdXXxm4W5VIM07AUB5eelcDjrWG7qdIj0ZafnNkpv+v5qcD68ExOVK+Sw== dependencies: fast-glob "3" - minimatch "3 || 4 || 5 || 6 || 7" + minimatch "6 || 7 || 8 || 9" normalize-path "3" tslib "1 || 2" tsutils "3" -type-coverage@^2.25.0: - version "2.25.0" - resolved "https://registry.yarnpkg.com/type-coverage/-/type-coverage-2.25.0.tgz#f2afc16809a6ec72a7df929c70ccd6915ae8f815" - integrity sha512-Zp4x/yQlv5Le8nNR3vXlaZRtPUvtbqSXFpGhcEvocbMxVD359GsQctCUlHgHmT42CURnvRJL0PHIaFlewL64aw== +type-coverage@^2.26.0: + version "2.26.0" + resolved "https://registry.yarnpkg.com/type-coverage/-/type-coverage-2.26.0.tgz#1635b8c3904dcb369d9caf9321cb7a6ad8861cf5" + integrity sha512-ZYtfBoifzuyiZteZeqBiauugvgIVV0orMqo2jZuOGOBCndLWhQF3Iv9bbFXyyUf/1lC/+k/ZN6Noqbh2afX3LQ== dependencies: minimist "1" - type-coverage-core "^2.25.0" + type-coverage-core "^2.26.0" type-detect@4.0.8: version "4.0.8" @@ -10787,6 +11015,11 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +type-fest@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" + integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -10797,10 +11030,10 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^3.8.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.9.0.tgz#36a9e46e6583649f9e6098b267bc577275e9e4f4" - integrity sha512-hR8JP2e8UiH7SME5JZjsobBlEiatFoxpzCP+R3ZeCo7kAaG1jXQE5X/buLzogM6GJu8le9Y4OcfNuIQX0rZskA== +type-fest@^3.10.0, type-fest@^3.12.0: + version "3.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" + integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== type@^1.0.1: version "1.2.0" @@ -10821,15 +11054,22 @@ typed-array-length@^1.0.4: for-each "^0.3.3" is-typed-array "^1.1.9" +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== -"typescript@^4.6.4 || ^5.0.0", typescript@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== +"typescript@^4.6.4 || ^5.0.0", typescript@^5.0.4, typescript@^5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" + integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== unassert@^2.0.0, unassert@^2.0.2: version "2.0.2" @@ -10900,9 +11140,9 @@ unified-engine@^10.0.1, unified-engine@^10.1.0: yaml "^2.0.0" unified-lint-rule@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/unified-lint-rule/-/unified-lint-rule-2.1.1.tgz#2363f27064f0b44675d11119bb573a738e346f24" - integrity sha512-vsLHyLZFstqtGse2gvrGwasOmH8M2y+r2kQMoDSWzSqUkQx2MjHjvZuGSv5FUaiv4RQO1bHRajy7lSGp7XWq5A== + version "2.1.2" + resolved "https://registry.yarnpkg.com/unified-lint-rule/-/unified-lint-rule-2.1.2.tgz#3ca2c6199b84aa8b48b60fda0f61b8eba55807d5" + integrity sha512-JWudPtRN7TLFHVLEVZ+Rm8FUb6kCAtHxEXFgBGDxRSdNMnGyTU5zyYvduHSF/liExlFB3vdFvsAHnNVE/UjAwA== dependencies: "@types/unist" "^2.0.0" trough "^2.0.0" @@ -11038,7 +11278,7 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== -update-browserslist-db@^1.0.10: +update-browserslist-db@^1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== @@ -11095,6 +11335,13 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + dependencies: + builtins "^1.0.3" + vfile-location@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.1.0.tgz#69df82fb9ef0a38d0d02b90dd84620e120050dd0" @@ -11151,10 +11398,10 @@ vfile@^5.0.0, vfile@^5.1.0, vfile@^5.3.7: unist-util-stringify-position "^3.0.0" vfile-message "^3.0.0" -vue-eslint-parser@^9.0.1, vue-eslint-parser@^9.1.1: - version "9.1.1" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.1.1.tgz#3f4859be7e9bb7edaa1dc7edb05abffee72bf3dd" - integrity sha512-C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA== +vue-eslint-parser@^9.3.1: + version "9.3.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz#429955e041ae5371df5f9e37ebc29ba046496182" + integrity sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g== dependencies: debug "^4.3.4" eslint-scope "^7.1.1" @@ -11261,7 +11508,14 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -word-wrap@^1.2.3, word-wrap@~1.2.3: +wide-align@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== @@ -11298,6 +11552,25 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== +write-file-atomic@^2.4.2: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + write-file-atomic@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" @@ -11306,6 +11579,39 @@ write-file-atomic@^4.0.2: imurmurhash "^0.1.4" signal-exit "^3.0.7" +write-json-file@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" + integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.15" + make-dir "^2.1.0" + pify "^4.0.1" + sort-keys "^2.0.0" + write-file-atomic "^2.4.2" + +write-json-file@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-4.3.0.tgz#908493d6fd23225344af324016e4ca8f702dd12d" + integrity sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ== + dependencies: + detect-indent "^6.0.0" + graceful-fs "^4.1.15" + is-plain-obj "^2.0.0" + make-dir "^3.0.0" + sort-keys "^4.0.0" + write-file-atomic "^3.0.0" + +write-pkg@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039" + integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA== + dependencies: + sort-keys "^2.0.0" + type-fest "^0.4.1" + write-json-file "^3.2.0" + xml-name-validator@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" @@ -11336,16 +11642,16 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml-eslint-parser@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.2.0.tgz#b1a6ce4bd5111596f57a9213ec9c0dd1d0ac7e61" - integrity sha512-OmuvQd5lyIJWfFALc39K5fGqp0aWNc+EtyhVgcQIPZaUKMnTb7An3RMp+QJizJ/x0F4kpgTNe6BL/ctdvoIwIg== +yaml-eslint-parser@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.2.2.tgz#1a9673ebe254328cfc2fa99f297f6d8c9364ccd8" + integrity sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg== dependencies: eslint-visitor-keys "^3.0.0" lodash "^4.17.21" yaml "^2.0.0" -yaml@^1.10.2: +yaml@^1.10.0, yaml@^1.10.2: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== @@ -11403,15 +11709,15 @@ yargs@^17.0.0, yargs@^17.3.1, yargs@^17.7.1: y18n "^5.0.5" yargs-parser "^21.1.1" -yarn-deduplicate@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/yarn-deduplicate/-/yarn-deduplicate-6.0.1.tgz#71d9ee311a10d08edb576a178a5c78fba02f05c2" - integrity sha512-wH2+dyLt1cCMx91kmfiB8GhHiZPVmfD9PULoWGryiqgvA+uvcR3k1yaDbB+K/bTx/NBiMhpnSTFdeWM6MqROYQ== +yarn-deduplicate@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/yarn-deduplicate/-/yarn-deduplicate-6.0.2.tgz#63498d2d4c3a8567e992a994ce0ab51aa5681f2e" + integrity sha512-Efx4XEj82BgbRJe5gvQbZmEO7pU5DgHgxohYZp98/+GwPqdU90RXtzvHirb7hGlde0sQqk5G3J3Woyjai8hVqA== dependencies: "@yarnpkg/lockfile" "^1.1.0" - commander "^9.4.1" - semver "^7.3.8" - tslib "^2.4.1" + commander "^10.0.1" + semver "^7.5.0" + tslib "^2.5.0" yn@3.1.1: version "3.1.1"