diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml
deleted file mode 100644
index 7abbb19..0000000
--- a/.github/workflows/labels.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Test Bit Pull Request Labels
-on:
- pull_request:
- types:
- - opened
- - synchronize
-permissions:
- pull-requests: write
-jobs:
- build:
- runs-on: ubuntu-latest
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- BIT_CONFIG_ACCESS_TOKEN: ${{ secrets.BIT_CONFIG_ACCESS_TOKEN }}
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
- - name: Initialize Bit
- uses: bit-tasks/init@v2
- with:
- ws-dir: 'test-data'
- - name: Bit Pull Request
- uses: bit-tasks/pull-request@main
- with:
- version-labels: true
- clear-labels: true
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 37022a2..bbb34c1 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,10 +1,10 @@
name: Test Bit Pull Request
on:
- workflow_dispatch: # Manual trigger
- # pull_request:
- # types:
- # - opened
- # - synchronize
+ workflow_dispatch:
+ pull_request:
+ types:
+ - opened
+ - synchronize
permissions:
pull-requests: write
jobs:
@@ -20,13 +20,13 @@ jobs:
uses: bit-tasks/init@v2
with:
ws-dir: 'test-data'
- - name: Creating a bare scope
- run: mkdir bit-tasks.test-scope && cd bit-tasks.test-scope && bit init --bare
- - name: Start the server and test
- run: cd bit-tasks.test-scope && bit start --port 4000 --no-browser & sleep 200 && curl http://localhost:4000
- - name: Add remote scope
- run: cd test-data && bit remote add http://localhost:4000
- name: Bit Pull Request
- uses: bit-tasks/pull-request@main
+ uses: bit-tasks/pull-request@use-ci-scripts
+ with:
+ version-labels: true
+ version-labels-color-major: "f0a09f"
+ version-labels-color-minor: "f0e8bd"
+ version-labels-color-patch: "c2e0c6"
+ clear-labels: true
- name: Bit Lanes
run: cd test-data && bit lane list --details
diff --git a/.github/workflows/with-docker.yml b/.github/workflows/with-docker.yml
index afd79f5..585f161 100644
--- a/.github/workflows/with-docker.yml
+++ b/.github/workflows/with-docker.yml
@@ -33,6 +33,6 @@ jobs:
- name: Add remote scope
run: cd test-data && bit remote add http://localhost:4000
- name: Bit Pull Request
- uses: bit-tasks/pull-request@main
+ uses: bit-tasks/pull-request@use-ci-scripts
- name: Bit Lanes
run: cd test-data && bit lane list --details
diff --git a/action.yml b/action.yml
index 4fa0785..ad5164b 100644
--- a/action.yml
+++ b/action.yml
@@ -26,7 +26,14 @@ inputs:
description: "Remove all Bit labels from the Pull Request"
required: false
default: "false"
+ build:
+ description: "Build components in the Action Runner."
+ required: false
+ default: "false"
+ strict:
+ description: "Fail on warnings as well as errors."
+ required: false
+ default: "false"
runs:
using: 'node20'
main: 'dist/index.js'
-
diff --git a/dist/index.js b/dist/index.js
index b6e8645..ff23855 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -10850,62 +10850,64 @@ function wrappy (fn, cb) {
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
"use strict";
-
-var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- var desc = Object.getOwnPropertyDescriptor(m, k);
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
- desc = { enumerable: true, get: function() { return m[k]; } };
- }
- Object.defineProperty(o, k2, desc);
-}) : (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- o[k2] = m[k];
-}));
-var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
-}) : function(o, v) {
- o["default"] = v;
-});
-var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
-};
-var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
-};
-var _a, _b;
-Object.defineProperty(exports, "__esModule", ({ value: true }));
-const core = __importStar(__nccwpck_require__(2186));
-const github_1 = __nccwpck_require__(5438);
-const pull_request_1 = __importDefault(__nccwpck_require__(595));
-try {
- const githubToken = process.env.GITHUB_TOKEN;
- const wsDir = core.getInput("ws-dir") || process.env.WSDIR || "./";
- const versionLabels = core.getInput("version-labels") === "true" ? true : false;
- const versionLabelsColors = {
- major: core.getInput("version-labels-color-major"),
- minor: core.getInput("version-labels-color-minor"),
- patch: core.getInput("version-labels-color-patch")
- };
- const args = process.env.LOG ? [`--log=${process.env.LOG}`] : [];
- const prNumber = (_b = (_a = github_1.context === null || github_1.context === void 0 ? void 0 : github_1.context.payload) === null || _a === void 0 ? void 0 : _a.pull_request) === null || _b === void 0 ? void 0 : _b.number;
- const { owner, repo } = github_1.context === null || github_1.context === void 0 ? void 0 : github_1.context.repo;
- if (!githubToken) {
- throw new Error("GitHub token not found");
- }
- if (!prNumber) {
- throw new Error("Pull Request number is not found");
- }
- const laneName = `pr-${prNumber === null || prNumber === void 0 ? void 0 : prNumber.toString()}`;
- (0, pull_request_1.default)(githubToken, repo, owner, prNumber, laneName, versionLabels, versionLabelsColors, wsDir, args);
-}
-catch (error) {
- core.setFailed(error.message);
-}
+
+var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ var desc = Object.getOwnPropertyDescriptor(m, k);
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
+ desc = { enumerable: true, get: function() { return m[k]; } };
+ }
+ Object.defineProperty(o, k2, desc);
+}) : (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ o[k2] = m[k];
+}));
+var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
+}) : function(o, v) {
+ o["default"] = v;
+});
+var __importStar = (this && this.__importStar) || function (mod) {
+ if (mod && mod.__esModule) return mod;
+ var result = {};
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
+ __setModuleDefault(result, mod);
+ return result;
+};
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+var _a, _b;
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+const core = __importStar(__nccwpck_require__(2186));
+const github_1 = __nccwpck_require__(5438);
+const pull_request_1 = __importDefault(__nccwpck_require__(595));
+try {
+ const githubToken = process.env.GITHUB_TOKEN;
+ const wsDir = core.getInput("ws-dir") || process.env.WSDIR || "./";
+ const build = core.getInput("build") === "true" ? true : false;
+ const strict = core.getInput("strict") === "true" ? true : false;
+ const versionLabels = core.getInput("version-labels") === "true" ? true : false;
+ const versionLabelsColors = {
+ major: core.getInput("version-labels-color-major"),
+ minor: core.getInput("version-labels-color-minor"),
+ patch: core.getInput("version-labels-color-patch")
+ };
+ const args = process.env.LOG ? [`--log=${process.env.LOG}`] : [];
+ const prNumber = (_b = (_a = github_1.context === null || github_1.context === void 0 ? void 0 : github_1.context.payload) === null || _a === void 0 ? void 0 : _a.pull_request) === null || _b === void 0 ? void 0 : _b.number;
+ const { owner, repo } = github_1.context === null || github_1.context === void 0 ? void 0 : github_1.context.repo;
+ if (!githubToken) {
+ throw new Error("GitHub token not found");
+ }
+ if (!prNumber) {
+ throw new Error("Pull Request number is not found");
+ }
+ const laneName = `pr-${prNumber === null || prNumber === void 0 ? void 0 : prNumber.toString()}`;
+ (0, pull_request_1.default)(githubToken, repo, owner, prNumber, laneName, wsDir, args, build, strict, versionLabels, versionLabelsColors);
+}
+catch (error) {
+ core.setFailed(error.message);
+}
/***/ }),
@@ -10914,32 +10916,32 @@ catch (error) {
/***/ ((__unused_webpack_module, exports) => {
"use strict";
-
-Object.defineProperty(exports, "__esModule", ({ value: true }));
-exports.scopeQuery = void 0;
-const GRAPHQL_ENDPOINT = 'https://api.v2.bit.cloud/graphql';
-const scopeQuery = (id, token) => {
- const query = `
- query GET_SCOPE($scopeId: String!) {
- getScope(id: $scopeId) {
- id
- }
- }
- `;
- const variables = { scopeId: id };
- return fetch(GRAPHQL_ENDPOINT, {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- Authorization: `Bearer ${token}`,
- },
- body: JSON.stringify({
- query,
- variables,
- }),
- }).then(response => response.json());
-};
-exports.scopeQuery = scopeQuery;
+
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+exports.scopeQuery = void 0;
+const GRAPHQL_ENDPOINT = 'https://api.v2.bit.cloud/graphql';
+const scopeQuery = (id, token) => {
+ const query = `
+ query GET_SCOPE($scopeId: String!) {
+ getScope(id: $scopeId) {
+ id
+ }
+ }
+ `;
+ const variables = { scopeId: id };
+ return fetch(GRAPHQL_ENDPOINT, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ Authorization: `Bearer ${token}`,
+ },
+ body: JSON.stringify({
+ query,
+ variables,
+ }),
+ }).then(response => response.json());
+};
+exports.scopeQuery = scopeQuery;
/***/ }),
@@ -10948,327 +10950,333 @@ exports.scopeQuery = scopeQuery;
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
"use strict";
-
-var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- var desc = Object.getOwnPropertyDescriptor(m, k);
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
- desc = { enumerable: true, get: function() { return m[k]; } };
- }
- Object.defineProperty(o, k2, desc);
-}) : (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- o[k2] = m[k];
-}));
-var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
-}) : function(o, v) {
- o["default"] = v;
-});
-var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
-};
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-var __asyncValues = (this && this.__asyncValues) || function (o) {
- if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
- var m = o[Symbol.asyncIterator], i;
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
-};
-Object.defineProperty(exports, "__esModule", ({ value: true }));
-const exec_1 = __nccwpck_require__(1514);
-const github_1 = __nccwpck_require__(5438);
-const core = __importStar(__nccwpck_require__(2186));
-const graphql_1 = __nccwpck_require__(8946);
-const createSnapMessageText = (githubToken, repo, owner, prNumber) => __awaiter(void 0, void 0, void 0, function* () {
- const octokit = (0, github_1.getOctokit)(githubToken);
- let messageText = "CI";
- const { data: pr } = yield octokit.rest.pulls.get({
- owner: owner,
- repo: repo,
- pull_number: prNumber,
- });
- const prTitle = pr.title;
- core.info("PR title: " + prTitle);
- if (prTitle) {
- messageText = prTitle;
- }
- else {
- const { data: commits } = yield octokit.rest.pulls.listCommits({
- owner: owner,
- repo: repo,
- pull_number: prNumber,
- });
- if (commits.length > 0) {
- messageText = commits[commits.length - 1].commit.message;
- core.info("Last commit message: " + messageText);
- }
- }
- core.info("Snap message Text: " + messageText);
- return messageText;
-});
-const postOrUpdateComment = (githubToken, repo, owner, prNumber, laneName) => __awaiter(void 0, void 0, void 0, function* () {
- const laneLink = `https://bit.cloud/${process.env.ORG}/${process.env.SCOPE}/~lane/${laneName}`;
- let commentIntro = `⚠️ Please review the changes in the Bit lane: ${laneLink}`;
- const octokit = (0, github_1.getOctokit)(githubToken);
- const comments = yield octokit.rest.issues.listComments({
- owner,
- repo,
- issue_number: prNumber,
- });
- const existingComment = comments.data.find((comment) => {
- var _a, _b;
- return ((_a = comment.body) === null || _a === void 0 ? void 0 : _a.includes("https://bit.cloud")) &&
- ((_b = comment.user) === null || _b === void 0 ? void 0 : _b.login) === "github-actions[bot]";
- });
- if (existingComment) {
- const updatedBody = `${commentIntro}\n\n_Lane updated: ${getHumanReadableTimestamp()}_`;
- yield octokit.rest.issues.updateComment({
- owner,
- repo,
- comment_id: existingComment.id,
- body: updatedBody,
- });
- }
- else {
- const newBody = `${commentIntro}\n\n_Lane created: ${getHumanReadableTimestamp()}_`;
- yield octokit.rest.issues.createComment({
- owner,
- repo,
- issue_number: prNumber,
- body: newBody,
- });
- }
-});
-const getHumanReadableTimestamp = () => {
- const options = {
- year: "numeric",
- month: "long",
- day: "numeric",
- hour: "2-digit",
- minute: "2-digit",
- second: "2-digit",
- timeZone: "UTC",
- };
- return new Date().toLocaleString("en-US", options) + " UTC";
-};
-function paginatedRequest(opts) {
- return __awaiter(this, void 0, void 0, function* () {
- const { octokit, method, owner, repo, params } = opts;
- let page = 1;
- const perPage = 100;
- const results = [];
- let moreResultsExist = true;
- while (moreResultsExist) {
- const response = yield octokit.request(method, Object.assign(Object.assign({ owner,
- repo }, params), { page, per_page: perPage }));
- const data = response.data;
- // Check if more results exist
- if (data.length === 0) {
- moreResultsExist = false;
- }
- else {
- results.push(...data);
- page++;
- }
- }
- return results;
- });
-}
-const createVersionLabels = (githubToken, repo, owner, prNumber, status, versionLabelsColors, clearLabels) => __awaiter(void 0, void 0, void 0, function* () {
- var _a, e_1, _b, _c;
- core.info("Creating version labels for new and modified components");
- const versionLabels = [
- ...(status.newComponents || []),
- ...(status.modifiedComponents || []),
- ].flatMap((componentId) => {
- const baseName = componentId.substring(componentId.indexOf("/") + 1);
- // Generate labels for @patch, @major, and @minor
- return ["patch", "major", "minor"].map((version) => {
- const componentName = `${baseName}@${version}`;
- const name = componentName.length > 50 ? componentName.slice(-50) : componentName;
- const description = componentId;
- const color = versionLabelsColors[version];
- core.info(`Processing label: ${name} with description: ${description} and color: #${color}`);
- return { name, description, color };
- });
- });
- const octokit = (0, github_1.getOctokit)(githubToken);
- // Get existing labels on the PR
- const prLabels = yield paginatedRequest({
- octokit,
- method: "GET /repos/{owner}/{repo}/issues/{issue_number}/labels",
- owner,
- repo,
- params: { issue_number: prNumber },
- });
- // Get all repository labels with pagination
- const repoLabels = yield paginatedRequest({
- octokit,
- method: "GET /repos/{owner}/{repo}/labels",
- owner,
- repo,
- params: {},
- });
- if (clearLabels) {
- core.info("Clearing all Bit labels from the Pull Request");
- // Remove all Bit labels from the Pull Request
- for (const label of repoLabels) {
- if (label.name.endsWith("@patch") ||
- label.name.endsWith("@major") ||
- label.name.endsWith("@minor")) {
- core.info(`Removing Bit label: ${label.name}`);
- yield octokit.request("DELETE /repos/{owner}/{repo}/labels/{name}", {
- owner,
- repo,
- name: label.name,
- });
- }
- }
- }
- // Define the version pattern
- const componentVersionPattern = /@(major|minor|patch)$/;
- // Identify labels to remove
- const labelsToRemove = prLabels.filter((prLabel) => {
- return (componentVersionPattern.test(prLabel.name) &&
- !versionLabels.some((versionLabel) => versionLabel.name.split("@")[0] === prLabel.name.split("@")[0]));
- });
- // Remove labels that match the version pattern and are not in versionLabels from the pull request
- if (labelsToRemove.length > 0) {
- core.info(`Removing labels from PR #${prNumber}: ${labelsToRemove
- .map((prLabel) => prLabel.name)
- .join(", ")}`);
- for (const label of labelsToRemove) {
- yield octokit.rest.issues.removeLabel({
- owner,
- repo,
- issue_number: prNumber,
- name: label.name,
- });
- }
- }
- // Determine which labels need to be created in the repository
- const newLabelsToCreate = clearLabels
- ? // if clearing labels, create all labels again
- versionLabels
- : versionLabels.filter(({ name }) => !repoLabels.some((label) => label.name === name) // Labels not in the repository
- );
- core.info(`Creating ${newLabelsToCreate.length} new labels in the repository`);
- try {
- // Create GitHub labels if they do not exist
- for (var _d = true, newLabelsToCreate_1 = __asyncValues(newLabelsToCreate), newLabelsToCreate_1_1; newLabelsToCreate_1_1 = yield newLabelsToCreate_1.next(), _a = newLabelsToCreate_1_1.done, !_a;) {
- _c = newLabelsToCreate_1_1.value;
- _d = false;
- try {
- const { name, description, color } = _c;
- try {
- core.info(`Creating GitHub repository label: ${name} with description: ${description} and color: #${color}`);
- yield octokit.request("POST /repos/{owner}/{repo}/labels", {
- owner,
- repo,
- name: name,
- color: color,
- description: description,
- headers: {
- "X-GitHub-Api-Version": "2022-11-28",
- },
- });
- }
- catch (error) {
- // Handle rate limit errors
- if (error.message.includes("rate limit")) {
- core.info(`Waiting 30 seconds before retrying to create label ${name}: ${error.message}`);
- yield new Promise((resolve) => setTimeout(resolve, 30000));
- yield octokit.request("POST /repos/{owner}/{repo}/labels", {
- owner,
- repo,
- name: name,
- color: color,
- description: description,
- headers: {
- "X-GitHub-Api-Version": "2022-11-28",
- },
- });
- continue;
- }
- // Handle unexpected errors
- core.info(`Skipped creating label ${name}: ${error.message}`);
- }
- }
- finally {
- _d = true;
- }
- }
- }
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
- finally {
- try {
- if (!_d && !_a && (_b = newLabelsToCreate_1.return)) yield _b.call(newLabelsToCreate_1);
- }
- finally { if (e_1) throw e_1.error; }
- }
-});
-function run(githubToken, repo, owner, prNumber, laneName, versionLabel, versionLabelsColors, wsDir, args) {
- var _a, _b;
- return __awaiter(this, void 0, void 0, function* () {
- const org = process.env.ORG;
- const scope = process.env.SCOPE;
- const token = process.env.BIT_CONFIG_USER_TOKEN || "";
- let statusRaw = "";
- const scopeErrorMessage = `Scope: ${org}.${scope} does not exist or you don't have access to it`;
- try {
- const jsonData = yield (0, graphql_1.scopeQuery)(`${org}.${scope}`, token);
- if (!((_b = (_a = jsonData === null || jsonData === void 0 ? void 0 : jsonData.data) === null || _a === void 0 ? void 0 : _a.getScope) === null || _b === void 0 ? void 0 : _b.id)) {
- throw new Error(scopeErrorMessage);
- }
- }
- catch (error) {
- throw new Error(scopeErrorMessage);
- }
- yield (0, exec_1.exec)("bit", ["status", "--json"], {
- cwd: wsDir,
- listeners: {
- stdout: (data) => {
- statusRaw += data.toString();
- },
- },
- }); // Avoid log param, since output is parsed for next steps
- const status = JSON.parse(statusRaw.trim());
- if (versionLabel) {
- yield createVersionLabels(githubToken, repo, owner, prNumber, status, versionLabelsColors, core.getBooleanInput("clear-labels"));
- }
- yield (0, exec_1.exec)("bit", ["lane", "create", laneName, ...args], { cwd: wsDir });
- const snapMessageText = yield createSnapMessageText(githubToken, repo, owner, prNumber);
- const buildFlag = process.env.RIPPLE === "true" ? [] : ["--build"];
- yield (0, exec_1.exec)("bit", ["snap", "-m", snapMessageText, ...buildFlag, ...args], {
- cwd: wsDir,
- });
- try {
- const lane = `${org}.${scope}/${laneName}`;
- core.info(`Attempting to remove Bit lane if it exists: ${lane}`);
- yield (0, exec_1.exec)("bit", ["lane", "remove", lane, "--remote", "--silent", "--force", ...args], { cwd: wsDir });
- }
- catch (error) {
- core.info("Cannot remove Bit lane. The lane may not exist, or the Bit token may not have sufficient permissions to remove it.");
- }
- yield (0, exec_1.exec)("bit", ["export", ...args], { cwd: wsDir });
- postOrUpdateComment(githubToken, repo, owner, prNumber, laneName);
- });
-}
-exports["default"] = run;
+
+var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ var desc = Object.getOwnPropertyDescriptor(m, k);
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
+ desc = { enumerable: true, get: function() { return m[k]; } };
+ }
+ Object.defineProperty(o, k2, desc);
+}) : (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ o[k2] = m[k];
+}));
+var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
+}) : function(o, v) {
+ o["default"] = v;
+});
+var __importStar = (this && this.__importStar) || function (mod) {
+ if (mod && mod.__esModule) return mod;
+ var result = {};
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
+ __setModuleDefault(result, mod);
+ return result;
+};
+var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
+ return new (P || (P = Promise))(function (resolve, reject) {
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
+ });
+};
+var __asyncValues = (this && this.__asyncValues) || function (o) {
+ if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
+ var m = o[Symbol.asyncIterator], i;
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
+ function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
+ function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
+};
+Object.defineProperty(exports, "__esModule", ({ value: true }));
+const exec_1 = __nccwpck_require__(1514);
+const github_1 = __nccwpck_require__(5438);
+const core = __importStar(__nccwpck_require__(2186));
+const graphql_1 = __nccwpck_require__(8946);
+const createSnapMessageText = (githubToken, repo, owner, prNumber) => __awaiter(void 0, void 0, void 0, function* () {
+ const octokit = (0, github_1.getOctokit)(githubToken);
+ let messageText = "CI";
+ const { data: pr } = yield octokit.rest.pulls.get({
+ owner: owner,
+ repo: repo,
+ pull_number: prNumber,
+ });
+ const prTitle = pr.title;
+ core.info("PR title: " + prTitle);
+ if (prTitle) {
+ messageText = prTitle;
+ }
+ else {
+ const { data: commits } = yield octokit.rest.pulls.listCommits({
+ owner: owner,
+ repo: repo,
+ pull_number: prNumber,
+ });
+ if (commits.length > 0) {
+ messageText = commits[commits.length - 1].commit.message;
+ core.info("Last commit message: " + messageText);
+ }
+ }
+ core.info("Snap message Text: " + messageText);
+ return messageText;
+});
+const postOrUpdateComment = (githubToken, repo, owner, prNumber, laneName) => __awaiter(void 0, void 0, void 0, function* () {
+ const laneLink = `https://bit.cloud/${process.env.ORG}/${process.env.SCOPE}/~lane/${laneName}`;
+ let commentIntro = `⚠️ Please review the changes in the Bit lane: ${laneLink}`;
+ const octokit = (0, github_1.getOctokit)(githubToken);
+ const comments = yield octokit.rest.issues.listComments({
+ owner,
+ repo,
+ issue_number: prNumber,
+ });
+ const existingComment = comments.data.find((comment) => {
+ var _a, _b;
+ return ((_a = comment.body) === null || _a === void 0 ? void 0 : _a.includes("https://bit.cloud")) &&
+ ((_b = comment.user) === null || _b === void 0 ? void 0 : _b.login) === "github-actions[bot]";
+ });
+ if (existingComment) {
+ const updatedBody = `${commentIntro}\n\n_Lane updated: ${getHumanReadableTimestamp()}_`;
+ yield octokit.rest.issues.updateComment({
+ owner,
+ repo,
+ comment_id: existingComment.id,
+ body: updatedBody,
+ });
+ }
+ else {
+ const newBody = `${commentIntro}\n\n_Lane created: ${getHumanReadableTimestamp()}_`;
+ yield octokit.rest.issues.createComment({
+ owner,
+ repo,
+ issue_number: prNumber,
+ body: newBody,
+ });
+ }
+});
+const getHumanReadableTimestamp = () => {
+ const options = {
+ year: "numeric",
+ month: "long",
+ day: "numeric",
+ hour: "2-digit",
+ minute: "2-digit",
+ second: "2-digit",
+ timeZone: "UTC",
+ };
+ return new Date().toLocaleString("en-US", options) + " UTC";
+};
+function paginatedRequest(opts) {
+ return __awaiter(this, void 0, void 0, function* () {
+ const { octokit, method, owner, repo, params } = opts;
+ let page = 1;
+ const perPage = 100;
+ const results = [];
+ let moreResultsExist = true;
+ while (moreResultsExist) {
+ const response = yield octokit.request(method, Object.assign(Object.assign({ owner,
+ repo }, params), { page, per_page: perPage }));
+ const data = response.data;
+ // Check if more results exist
+ if (data.length === 0) {
+ moreResultsExist = false;
+ }
+ else {
+ results.push(...data);
+ page++;
+ }
+ }
+ return results;
+ });
+}
+const createVersionLabels = (githubToken, repo, owner, prNumber, status, versionLabelsColors, clearLabels) => __awaiter(void 0, void 0, void 0, function* () {
+ var _a, e_1, _b, _c;
+ core.info("Creating version labels for new and modified components");
+ const versionLabels = [
+ ...(status.newComponents || []),
+ ...(status.modifiedComponents || []),
+ ].flatMap((componentId) => {
+ const baseName = componentId.substring(componentId.indexOf("/") + 1);
+ // Generate labels for @patch, @major, and @minor
+ return ["patch", "major", "minor"].map((version) => {
+ const componentName = `${baseName}@${version}`;
+ const name = componentName.length > 50 ? componentName.slice(-50) : componentName;
+ const description = componentId;
+ const color = versionLabelsColors[version];
+ core.info(`Processing label: ${name} with description: ${description} and color: #${color}`);
+ return { name, description, color };
+ });
+ });
+ const octokit = (0, github_1.getOctokit)(githubToken);
+ // Get existing labels on the PR
+ const prLabels = yield paginatedRequest({
+ octokit,
+ method: "GET /repos/{owner}/{repo}/issues/{issue_number}/labels",
+ owner,
+ repo,
+ params: { issue_number: prNumber },
+ });
+ // Get all repository labels with pagination
+ const repoLabels = yield paginatedRequest({
+ octokit,
+ method: "GET /repos/{owner}/{repo}/labels",
+ owner,
+ repo,
+ params: {},
+ });
+ if (clearLabels) {
+ core.info("Clearing all Bit labels from the Pull Request");
+ // Remove all Bit labels from the Pull Request
+ for (const label of repoLabels) {
+ if (label.name.endsWith("@patch") ||
+ label.name.endsWith("@major") ||
+ label.name.endsWith("@minor")) {
+ core.info(`Removing Bit label: ${label.name}`);
+ yield octokit.request("DELETE /repos/{owner}/{repo}/labels/{name}", {
+ owner,
+ repo,
+ name: label.name,
+ });
+ }
+ }
+ }
+ // Define the version pattern
+ const componentVersionPattern = /@(major|minor|patch)$/;
+ // Identify labels to remove
+ const labelsToRemove = prLabels.filter((prLabel) => {
+ return (componentVersionPattern.test(prLabel.name) &&
+ !versionLabels.some((versionLabel) => versionLabel.name.split("@")[0] === prLabel.name.split("@")[0]));
+ });
+ // Remove labels that match the version pattern and are not in versionLabels from the pull request
+ if (labelsToRemove.length > 0) {
+ core.info(`Removing labels from PR #${prNumber}: ${labelsToRemove
+ .map((prLabel) => prLabel.name)
+ .join(", ")}`);
+ for (const label of labelsToRemove) {
+ yield octokit.rest.issues.removeLabel({
+ owner,
+ repo,
+ issue_number: prNumber,
+ name: label.name,
+ });
+ }
+ }
+ // Determine which labels need to be created in the repository
+ const newLabelsToCreate = clearLabels
+ ? // if clearing labels, create all labels again
+ versionLabels
+ : versionLabels.filter(({ name }) => !repoLabels.some((label) => label.name === name) // Labels not in the repository
+ );
+ core.info(`Creating ${newLabelsToCreate.length} new labels in the repository`);
+ try {
+ // Create GitHub labels if they do not exist
+ for (var _d = true, newLabelsToCreate_1 = __asyncValues(newLabelsToCreate), newLabelsToCreate_1_1; newLabelsToCreate_1_1 = yield newLabelsToCreate_1.next(), _a = newLabelsToCreate_1_1.done, !_a;) {
+ _c = newLabelsToCreate_1_1.value;
+ _d = false;
+ try {
+ const { name, description, color } = _c;
+ try {
+ core.info(`Creating GitHub repository label: ${name} with description: ${description} and color: #${color}`);
+ yield octokit.request("POST /repos/{owner}/{repo}/labels", {
+ owner,
+ repo,
+ name: name,
+ color: color,
+ description: description,
+ headers: {
+ "X-GitHub-Api-Version": "2022-11-28",
+ },
+ });
+ }
+ catch (error) {
+ // Handle rate limit errors
+ if (error.message.includes("rate limit")) {
+ core.info(`Waiting 30 seconds before retrying to create label ${name}: ${error.message}`);
+ yield new Promise((resolve) => setTimeout(resolve, 30000));
+ yield octokit.request("POST /repos/{owner}/{repo}/labels", {
+ owner,
+ repo,
+ name: name,
+ color: color,
+ description: description,
+ headers: {
+ "X-GitHub-Api-Version": "2022-11-28",
+ },
+ });
+ continue;
+ }
+ // Handle unexpected errors
+ core.info(`Skipped creating label ${name}: ${error.message}`);
+ }
+ }
+ finally {
+ _d = true;
+ }
+ }
+ }
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
+ finally {
+ try {
+ if (!_d && !_a && (_b = newLabelsToCreate_1.return)) yield _b.call(newLabelsToCreate_1);
+ }
+ finally { if (e_1) throw e_1.error; }
+ }
+});
+function run(githubToken, repo, owner, prNumber, laneName, wsDir, args, build, strict, versionLabel, versionLabelsColors) {
+ var _a, _b;
+ return __awaiter(this, void 0, void 0, function* () {
+ const org = process.env.ORG;
+ const scope = process.env.SCOPE;
+ const token = process.env.BIT_CONFIG_USER_TOKEN || "";
+ let statusRaw = "";
+ const scopeErrorMessage = `Scope: ${org}.${scope} does not exist or you don't have access to it`;
+ try {
+ const jsonData = yield (0, graphql_1.scopeQuery)(`${org}.${scope}`, token);
+ if (!((_b = (_a = jsonData === null || jsonData === void 0 ? void 0 : jsonData.data) === null || _a === void 0 ? void 0 : _a.getScope) === null || _b === void 0 ? void 0 : _b.id)) {
+ throw new Error(scopeErrorMessage);
+ }
+ }
+ catch (error) {
+ throw new Error(scopeErrorMessage);
+ }
+ yield (0, exec_1.exec)("bit", ["status", "--json"], {
+ cwd: wsDir,
+ listeners: {
+ stdout: (data) => {
+ statusRaw += data.toString();
+ },
+ },
+ }); // Avoid log param, since output is parsed for next steps
+ const status = JSON.parse(statusRaw.trim());
+ if (versionLabel) {
+ yield createVersionLabels(githubToken, repo, owner, prNumber, status, versionLabelsColors, core.getBooleanInput("clear-labels"));
+ }
+ const snapMessageText = yield createSnapMessageText(githubToken, repo, owner, prNumber);
+ const lane = `${org}.${scope}/${laneName}`;
+ const cliArgs = [
+ "ci",
+ "pr",
+ "--lane",
+ lane,
+ "--message",
+ snapMessageText,
+ ...args,
+ ];
+ if (build) {
+ cliArgs.push("--build");
+ }
+ if (strict) {
+ cliArgs.push("--strict");
+ }
+ yield (0, exec_1.exec)("bit", cliArgs, {
+ cwd: wsDir,
+ env: Object.assign(Object.assign({}, process.env), { BIT_DISABLE_SPINNER: "false" })
+ });
+ postOrUpdateComment(githubToken, repo, owner, prNumber, laneName);
+ });
+}
+exports["default"] = run;
/***/ }),
diff --git a/index.ts b/index.ts
index f3d1878..aa27ebc 100644
--- a/index.ts
+++ b/index.ts
@@ -5,12 +5,15 @@ import run from "./scripts/pull-request";
try {
const githubToken = process.env.GITHUB_TOKEN;
const wsDir: string = core.getInput("ws-dir") || process.env.WSDIR || "./";
+ const build: boolean = core.getInput("build") === "true" ? true : false;
+ const strict: boolean = core.getInput("strict") === "true" ? true : false;
const versionLabels: boolean = core.getInput("version-labels") === "true" ? true : false;
const versionLabelsColors = {
- major: core.getInput("version-labels-color-major"),
- minor: core.getInput("version-labels-color-minor"),
- patch: core.getInput("version-labels-color-patch")
+ major: core.getInput("version-labels-color-major"),
+ minor: core.getInput("version-labels-color-minor"),
+ patch: core.getInput("version-labels-color-patch")
};
+
const args = process.env.LOG ? [`--log=${process.env.LOG}`] : [];
const prNumber = context?.payload?.pull_request?.number;
const { owner, repo } = context?.repo;
@@ -24,7 +27,7 @@ try {
}
const laneName = `pr-${prNumber?.toString()}`;
- run(githubToken, repo, owner, prNumber, laneName, versionLabels, versionLabelsColors, wsDir, args);
+ run(githubToken, repo, owner, prNumber, laneName, wsDir, args, build, strict, versionLabels, versionLabelsColors);
} catch (error) {
core.setFailed((error as Error).message);
}
diff --git a/scripts/pull-request.ts b/scripts/pull-request.ts
index bd1e80a..9ebb3d6 100644
--- a/scripts/pull-request.ts
+++ b/scripts/pull-request.ts
@@ -252,10 +252,10 @@ const createVersionLabels = async (
// Determine which labels need to be created in the repository
const newLabelsToCreate = clearLabels
? // if clearing labels, create all labels again
- versionLabels
+ versionLabels
: versionLabels.filter(
- ({ name }) => !repoLabels.some((label) => label.name === name) // Labels not in the repository
- );
+ ({ name }) => !repoLabels.some((label) => label.name === name) // Labels not in the repository
+ );
core.info(
`Creating ${newLabelsToCreate.length} new labels in the repository`
@@ -309,10 +309,12 @@ export default async function run(
owner: string,
prNumber: number,
laneName: string,
+ wsDir: string,
+ args: string[],
+ build: boolean,
+ strict: boolean,
versionLabel: boolean,
versionLabelsColors: { patch: string; minor: string; major: string },
- wsDir: string,
- args: string[]
) {
const org = process.env.ORG;
const scope = process.env.SCOPE;
@@ -353,7 +355,6 @@ export default async function run(
);
}
- await exec("bit", ["lane", "create", laneName, ...args], { cwd: wsDir });
const snapMessageText = await createSnapMessageText(
githubToken,
repo,
@@ -361,25 +362,32 @@ export default async function run(
prNumber
);
- const buildFlag = process.env.RIPPLE === "true" ? [] : ["--build"];
- await exec("bit", ["snap", "-m", snapMessageText, ...buildFlag, ...args], {
- cwd: wsDir,
- });
+ const lane = `${org}.${scope}/${laneName}`;
+ const cliArgs = [
+ "ci",
+ "pr",
+ "--lane",
+ lane,
+ "--message",
+ snapMessageText,
+ ...args,
+ ];
+
+ if (build) {
+ cliArgs.push("--build");
+ }
- try {
- const lane = `${org}.${scope}/${laneName}`;
- core.info(`Attempting to remove Bit lane if it exists: ${lane}`);
- await exec(
- "bit",
- ["lane", "remove", lane, "--remote", "--silent", "--force", ...args],
- { cwd: wsDir }
- );
- } catch (error) {
- core.info(
- "Cannot remove Bit lane. The lane may not exist, or the Bit token may not have sufficient permissions to remove it."
- );
+ if (strict) {
+ cliArgs.push("--strict");
}
- await exec("bit", ["export", ...args], { cwd: wsDir });
+
+ await exec("bit", cliArgs, {
+ cwd: wsDir,
+ env: {
+ ...process.env,
+ BIT_DISABLE_SPINNER: "false",
+ }
+ });
postOrUpdateComment(githubToken, repo, owner, prNumber, laneName);
-}
+}
\ No newline at end of file
diff --git a/test-data/.bitmap b/test-data/.bitmap
index 43d6c71..85c2497 100644
--- a/test-data/.bitmap
+++ b/test-data/.bitmap
@@ -9,1426 +9,47 @@
*/
{
- "apps/my-app": {
- "name": "apps/my-app",
- "scope": "bit-tasks.test-scope",
- "version": "0.0.9",
- "mainFile": "index.ts",
- "rootDir": "test-scope/apps/my-app"
- },
- "get-hello-world": {
- "name": "get-hello-world",
- "scope": "bit-tasks.test-scope",
- "version": "0.0.5",
- "mainFile": "index.ts",
- "rootDir": "test-scope/get-hello-world"
- },
- "sample-component-1": {
- "name": "sample-component-1",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-1",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-10": {
- "name": "sample-component-10",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-10",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-100": {
- "name": "sample-component-100",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-100",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-11": {
- "name": "sample-component-11",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-11",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-12": {
- "name": "sample-component-12",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-12",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-13": {
- "name": "sample-component-13",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-13",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-14": {
- "name": "sample-component-14",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-14",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-15": {
- "name": "sample-component-15",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-15",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-16": {
- "name": "sample-component-16",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-16",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-17": {
- "name": "sample-component-17",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-17",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-18": {
- "name": "sample-component-18",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-18",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-19": {
- "name": "sample-component-19",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-19",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-2": {
- "name": "sample-component-2",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-2",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-20": {
- "name": "sample-component-20",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-20",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-21": {
- "name": "sample-component-21",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-21",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-22": {
- "name": "sample-component-22",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-22",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-23": {
- "name": "sample-component-23",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-23",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-24": {
- "name": "sample-component-24",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-24",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-25": {
- "name": "sample-component-25",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-25",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-26": {
- "name": "sample-component-26",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-26",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-27": {
- "name": "sample-component-27",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-27",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-28": {
- "name": "sample-component-28",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-28",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-29": {
- "name": "sample-component-29",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-29",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-3": {
- "name": "sample-component-3",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-3",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-30": {
- "name": "sample-component-30",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-30",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-31": {
- "name": "sample-component-31",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-31",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-32": {
- "name": "sample-component-32",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-32",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-33": {
- "name": "sample-component-33",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-33",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-34": {
- "name": "sample-component-34",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-34",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-35": {
- "name": "sample-component-35",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-35",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-36": {
- "name": "sample-component-36",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-36",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-37": {
- "name": "sample-component-37",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-37",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-38": {
- "name": "sample-component-38",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-38",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-39": {
- "name": "sample-component-39",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-39",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-4": {
- "name": "sample-component-4",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-4",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-40": {
- "name": "sample-component-40",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-40",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-41": {
- "name": "sample-component-41",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-41",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-42": {
- "name": "sample-component-42",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-42",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-43": {
- "name": "sample-component-43",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-43",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-44": {
- "name": "sample-component-44",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-44",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-45": {
- "name": "sample-component-45",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-45",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-46": {
- "name": "sample-component-46",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-46",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-47": {
- "name": "sample-component-47",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-47",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-48": {
- "name": "sample-component-48",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-48",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-49": {
- "name": "sample-component-49",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-49",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-5": {
- "name": "sample-component-5",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-5",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-50": {
- "name": "sample-component-50",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-50",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-51": {
- "name": "sample-component-51",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-51",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-52": {
- "name": "sample-component-52",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-52",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-53": {
- "name": "sample-component-53",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-53",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-54": {
- "name": "sample-component-54",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-54",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-55": {
- "name": "sample-component-55",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-55",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-56": {
- "name": "sample-component-56",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-56",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-57": {
- "name": "sample-component-57",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-57",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-58": {
- "name": "sample-component-58",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-58",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-59": {
- "name": "sample-component-59",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-59",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-6": {
- "name": "sample-component-6",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-6",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-60": {
- "name": "sample-component-60",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-60",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-61": {
- "name": "sample-component-61",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-61",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-62": {
- "name": "sample-component-62",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-62",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-63": {
- "name": "sample-component-63",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-63",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-64": {
- "name": "sample-component-64",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-64",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-65": {
- "name": "sample-component-65",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-65",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-66": {
- "name": "sample-component-66",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-66",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-67": {
- "name": "sample-component-67",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-67",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-68": {
- "name": "sample-component-68",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-68",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-69": {
- "name": "sample-component-69",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-69",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-7": {
- "name": "sample-component-7",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-7",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-70": {
- "name": "sample-component-70",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-70",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-71": {
- "name": "sample-component-71",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-71",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-72": {
- "name": "sample-component-72",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-72",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-73": {
- "name": "sample-component-73",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-73",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-74": {
- "name": "sample-component-74",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-74",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-75": {
- "name": "sample-component-75",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-75",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-76": {
- "name": "sample-component-76",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-76",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-77": {
- "name": "sample-component-77",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-77",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-78": {
- "name": "sample-component-78",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-78",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-79": {
- "name": "sample-component-79",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-79",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-8": {
- "name": "sample-component-8",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-8",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-80": {
- "name": "sample-component-80",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-80",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-81": {
- "name": "sample-component-81",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-81",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-82": {
- "name": "sample-component-82",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-82",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-83": {
- "name": "sample-component-83",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-83",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-84": {
- "name": "sample-component-84",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-84",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-85": {
- "name": "sample-component-85",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-85",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-86": {
- "name": "sample-component-86",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-86",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-87": {
- "name": "sample-component-87",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-87",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-88": {
- "name": "sample-component-88",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-88",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-89": {
- "name": "sample-component-89",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-89",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-9": {
- "name": "sample-component-9",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-9",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-90": {
- "name": "sample-component-90",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-90",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-91": {
- "name": "sample-component-91",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-91",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-92": {
- "name": "sample-component-92",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-92",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-93": {
- "name": "sample-component-93",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-93",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-94": {
- "name": "sample-component-94",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-94",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-95": {
- "name": "sample-component-95",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-95",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-96": {
- "name": "sample-component-96",
- "scope": "",
- "version": "",
- "defaultScope": "bit-tasks.test-scope",
- "mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-96",
- "config": {
- "bitdev.node/node-env@4.0.15": {},
- "teambit.envs/envs": {
- "env": "bitdev.node/node-env"
- }
- }
- },
- "sample-component-97": {
- "name": "sample-component-97",
+ "get-message": {
+ "name": "get-message",
"scope": "",
"version": "",
- "defaultScope": "bit-tasks.test-scope",
+ "defaultScope": "frontend.ci-scripts-tests",
"mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-97",
+ "rootDir": "ci-scripts-tests/get-message",
"config": {
- "bitdev.node/node-env@4.0.15": {},
+ "frontend.ci-scripts-tests/my-env": {},
"teambit.envs/envs": {
- "env": "bitdev.node/node-env"
+ "env": "frontend.ci-scripts-tests/my-env"
}
}
},
- "sample-component-98": {
- "name": "sample-component-98",
+ "my-app": {
+ "name": "my-app",
"scope": "",
"version": "",
- "defaultScope": "bit-tasks.test-scope",
+ "defaultScope": "frontend.ci-scripts-tests",
"mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-98",
+ "rootDir": "ci-scripts-tests/my-app",
"config": {
- "bitdev.node/node-env@4.0.15": {},
+ "frontend.ci-scripts-tests/my-env": {},
"teambit.envs/envs": {
- "env": "bitdev.node/node-env"
+ "env": "frontend.ci-scripts-tests/my-env"
}
}
},
- "sample-component-99": {
- "name": "sample-component-99",
+ "my-env": {
+ "name": "my-env",
"scope": "",
"version": "",
- "defaultScope": "bit-tasks.test-scope",
+ "defaultScope": "frontend.ci-scripts-tests",
"mainFile": "index.ts",
- "rootDir": "test-scope/sample-component-99",
+ "rootDir": "ci-scripts-tests/my-env",
"config": {
- "bitdev.node/node-env@4.0.15": {},
+ "bitdev.general/envs/bit-env@3.0.4": {},
"teambit.envs/envs": {
- "env": "bitdev.node/node-env"
+ "env": "bitdev.general/envs/bit-env"
}
}
},
- "ui/hello-world": {
- "name": "ui/hello-world",
- "scope": "bit-tasks.test-scope",
- "version": "0.0.10",
- "mainFile": "index.ts",
- "rootDir": "test-scope/ui/hello-world"
- },
"$schema-version": "17.0.0"
}
\ No newline at end of file
diff --git a/test-data/.eslintrc.json b/test-data/.eslintrc.json
index 07d6303..bff69b6 100644
--- a/test-data/.eslintrc.json
+++ b/test-data/.eslintrc.json
@@ -1,6 +1,6 @@
// bit-generated-eslint-config
{
"extends": [
- "./node_modules/.cache/.eslintrc.bit.7db3f9e83faa9c51f0ce816cfd68c2879ad81df3.json"
+ "./node_modules/.cache/.eslintrc.bit.d1e961fa51317e67fa33e94be09e72a912f81021.json"
]
}
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/get-message/get-message.composition.tsx b/test-data/ci-scripts-tests/get-message/get-message.composition.tsx
new file mode 100644
index 0000000..61c1272
--- /dev/null
+++ b/test-data/ci-scripts-tests/get-message/get-message.composition.tsx
@@ -0,0 +1,7 @@
+import { GetMessage } from './get-message.js';
+
+export const BasicGetMessage = () => {
+ return (
+ hello world!
+ );
+}
diff --git a/test-data/ci-scripts-tests/get-message/get-message.docs.mdx b/test-data/ci-scripts-tests/get-message/get-message.docs.mdx
new file mode 100644
index 0000000..44b3fda
--- /dev/null
+++ b/test-data/ci-scripts-tests/get-message/get-message.docs.mdx
@@ -0,0 +1,19 @@
+---
+description: A GetMessage component.
+---
+
+import { GetMessage } from './get-message';
+
+## Basic usage
+
+Use the get message component:
+
+```js
+
+```
+
+### Display the text
+
+```js live
+Hello world!
+```
diff --git a/test-data/ci-scripts-tests/get-message/get-message.spec.tsx b/test-data/ci-scripts-tests/get-message/get-message.spec.tsx
new file mode 100644
index 0000000..5722540
--- /dev/null
+++ b/test-data/ci-scripts-tests/get-message/get-message.spec.tsx
@@ -0,0 +1,9 @@
+import React from 'react';
+import { render } from '@testing-library/react';
+import { BasicGetMessage } from './get-message.composition.js';
+
+it('should render the correct text', () => {
+ const { getByText } = render();
+ const rendered = getByText('hello world!');
+ expect(rendered).toBeTruthy();
+});
diff --git a/test-data/ci-scripts-tests/get-message/get-message.tsx b/test-data/ci-scripts-tests/get-message/get-message.tsx
new file mode 100644
index 0000000..3ae56be
--- /dev/null
+++ b/test-data/ci-scripts-tests/get-message/get-message.tsx
@@ -0,0 +1,16 @@
+import type { ReactNode } from 'react';
+
+export type GetMessageProps = {
+ /**
+ * sets the component children.
+ */
+ children?: ReactNode;
+};
+
+export function GetMessage({ children }: GetMessageProps) {
+ return (
+
+ {children}!
+
+ );
+}
diff --git a/test-data/ci-scripts-tests/get-message/index.ts b/test-data/ci-scripts-tests/get-message/index.ts
new file mode 100644
index 0000000..1c32b0f
--- /dev/null
+++ b/test-data/ci-scripts-tests/get-message/index.ts
@@ -0,0 +1,2 @@
+export { GetMessage } from './get-message.js';
+export type { GetMessageProps } from './get-message.js';
diff --git a/test-data/test-scope/apps/my-app/index.html b/test-data/ci-scripts-tests/my-app/index.html
similarity index 100%
rename from test-data/test-scope/apps/my-app/index.html
rename to test-data/ci-scripts-tests/my-app/index.html
diff --git a/test-data/test-scope/apps/my-app/index.ts b/test-data/ci-scripts-tests/my-app/index.ts
similarity index 100%
rename from test-data/test-scope/apps/my-app/index.ts
rename to test-data/ci-scripts-tests/my-app/index.ts
diff --git a/test-data/test-scope/apps/my-app/my-app.app-root.tsx b/test-data/ci-scripts-tests/my-app/my-app.app-root.tsx
similarity index 100%
rename from test-data/test-scope/apps/my-app/my-app.app-root.tsx
rename to test-data/ci-scripts-tests/my-app/my-app.app-root.tsx
diff --git a/test-data/test-scope/apps/my-app/my-app.bit-app.ts b/test-data/ci-scripts-tests/my-app/my-app.bit-app.ts
similarity index 100%
rename from test-data/test-scope/apps/my-app/my-app.bit-app.ts
rename to test-data/ci-scripts-tests/my-app/my-app.bit-app.ts
diff --git a/test-data/test-scope/apps/my-app/my-app.composition.tsx b/test-data/ci-scripts-tests/my-app/my-app.composition.tsx
similarity index 100%
rename from test-data/test-scope/apps/my-app/my-app.composition.tsx
rename to test-data/ci-scripts-tests/my-app/my-app.composition.tsx
diff --git a/test-data/test-scope/apps/my-app/my-app.docs.mdx b/test-data/ci-scripts-tests/my-app/my-app.docs.mdx
similarity index 88%
rename from test-data/test-scope/apps/my-app/my-app.docs.mdx
rename to test-data/ci-scripts-tests/my-app/my-app.docs.mdx
index b41445d..3d36315 100644
--- a/test-data/test-scope/apps/my-app/my-app.docs.mdx
+++ b/test-data/ci-scripts-tests/my-app/my-app.docs.mdx
@@ -3,7 +3,7 @@ description: 'A my-app app.'
labels: ['app', 'react']
---
-A React application for my-app. s
+A React application for my-app.
## Run the application
diff --git a/test-data/ci-scripts-tests/my-app/my-app.tsx b/test-data/ci-scripts-tests/my-app/my-app.tsx
new file mode 100644
index 0000000..1e14245
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-app/my-app.tsx
@@ -0,0 +1,10 @@
+import { Routes, Route } from 'react-router-dom';
+import { GetMessage } from '@frontend/ci-scripts-tests.get-message';
+
+export function MyApp() {
+ return (
+
+ Hello World!} />
+
+ );
+}
\ No newline at end of file
diff --git a/test-data/test-scope/apps/my-app/server.app-root.tsx b/test-data/ci-scripts-tests/my-app/server.app-root.tsx
similarity index 100%
rename from test-data/test-scope/apps/my-app/server.app-root.tsx
rename to test-data/ci-scripts-tests/my-app/server.app-root.tsx
diff --git a/test-data/test-scope/apps/my-app/vite.config.js b/test-data/ci-scripts-tests/my-app/vite.config.js
similarity index 100%
rename from test-data/test-scope/apps/my-app/vite.config.js
rename to test-data/ci-scripts-tests/my-app/vite.config.js
diff --git a/test-data/ci-scripts-tests/my-env/.eslintrc.json b/test-data/ci-scripts-tests/my-env/.eslintrc.json
new file mode 100644
index 0000000..e096ea6
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/.eslintrc.json
@@ -0,0 +1,6 @@
+// bit-generated-eslint-config
+{
+ "extends": [
+ "./../../node_modules/.cache/.eslintrc.bit.383f9f8a04ad510c2ff19fd385b99969590ff224.json"
+ ]
+}
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/config/eslintrc.cjs b/test-data/ci-scripts-tests/my-env/config/eslintrc.cjs
new file mode 100644
index 0000000..14ea428
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/eslintrc.cjs
@@ -0,0 +1,6 @@
+/**
+ * @see https://bit.dev/reference/eslint/eslint-config
+ */
+module.exports = {
+ extends: [require.resolve('@bitdev/react.react-env/config/eslintrc.cjs')],
+};
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/config/prettier.config.cjs b/test-data/ci-scripts-tests/my-env/config/prettier.config.cjs
new file mode 100644
index 0000000..027fd72
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/prettier.config.cjs
@@ -0,0 +1,8 @@
+/**
+ * @see https://bit.dev/reference/prettier/prettier-config
+ */
+const prettierConfig = require('@bitdev/react.react-env/config/prettier.config.cjs');
+
+module.exports = {
+ ...prettierConfig,
+};
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/config/tsconfig.json b/test-data/ci-scripts-tests/my-env/config/tsconfig.json
new file mode 100644
index 0000000..cd3e8b4
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/tsconfig.json
@@ -0,0 +1,8 @@
+/**
+ * @see https://bit.dev/reference/typescript/typescript-config
+ */
+{
+ "extends": "@bitdev/react.react-env/config/tsconfig.json",
+ "exclude": ["artifacts", "public", "dist", "node_modules", "package.json", "**/*.cjs"],
+ "include": ["**/*", "**/*.json"]
+}
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/config/vite.config.mjs b/test-data/ci-scripts-tests/my-env/config/vite.config.mjs
new file mode 100644
index 0000000..f75323f
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/vite.config.mjs
@@ -0,0 +1,4 @@
+import { defineConfig } from 'vite';
+
+export default defineConfig({
+});
diff --git a/test-data/ci-scripts-tests/my-env/config/vitest.config.mjs b/test-data/ci-scripts-tests/my-env/config/vitest.config.mjs
new file mode 100644
index 0000000..1634ec9
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/vitest.config.mjs
@@ -0,0 +1,10 @@
+import { defineConfig } from 'vite';
+import react from '@vitejs/plugin-react';
+
+export default defineConfig({
+ plugins: [react()],
+ test: {
+ globals: true,
+ environment: 'jsdom',
+ setupFiles: [import.meta.resolve('./vitest.setup.mjs')],},
+});
diff --git a/test-data/ci-scripts-tests/my-env/config/vitest.setup.mjs b/test-data/ci-scripts-tests/my-env/config/vitest.setup.mjs
new file mode 100644
index 0000000..2f641cb
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/config/vitest.setup.mjs
@@ -0,0 +1,2 @@
+import '@testing-library/jest-dom';
+import '@testing-library/jest-dom/vitest';
diff --git a/test-data/ci-scripts-tests/my-env/env.jsonc b/test-data/ci-scripts-tests/my-env/env.jsonc
new file mode 100644
index 0000000..77b9d8d
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/env.jsonc
@@ -0,0 +1,3 @@
+{
+ "extends": "@bitdev/react.react-env"
+}
diff --git a/test-data/ci-scripts-tests/my-env/index.ts b/test-data/ci-scripts-tests/my-env/index.ts
new file mode 100644
index 0000000..26eb608
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/index.ts
@@ -0,0 +1,4 @@
+import { MyEnv } from './my-env.bit-env.js';
+
+export { MyEnv };
+export default MyEnv;
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/my-env.bit-env.ts b/test-data/ci-scripts-tests/my-env/my-env.bit-env.ts
new file mode 100644
index 0000000..8ec584d
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/my-env.bit-env.ts
@@ -0,0 +1,43 @@
+/**
+* This env uses bitdev.react/react-env, inspect it's config and API - https://bit.cloud/bitdev/react/react-env
+* Learn more on how you can customize your env here - https://bit.dev/docs/react-env/set-up-your-env
+*/
+import { ReactEnv } from '@bitdev/react.react-env';
+import { createRequire } from 'node:module';
+import { dirname } from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const esmRequire = createRequire(import.meta.url);
+
+export class MyEnv extends ReactEnv {
+
+ /* a shorthand name for the env */
+ name = 'my-env';
+
+ /* Typescript config. Learn how to replace compiler - https://bit.dev/reference/compiling/set-up-compiler */
+ protected tsconfigPath = esmRequire.resolve('./config/tsconfig.json');
+
+ protected tsTypesPath = './types';
+
+ /* ESLint config. Learn how to replace linter - https://bit.dev/reference/linting/set-up-linter */
+ protected eslintConfigPath = esmRequire.resolve('./config/eslintrc.cjs');
+
+ /* Prettier config. Learn how to replace formatter - https://bit.dev/reference/formatting/set-up-formatter */
+ protected prettierConfigPath = esmRequire.resolve('./config/prettier.config.cjs');
+
+ /* Vitest config. Learn how to replace tester - https://bit.dev/reference/testing/set-up-tester */
+ protected vitestConfigPath = esmRequire.resolve('./config/vitest.config.mjs');
+
+ /* component mounting and dev-server config. Learn how to replace dev-server - https://bit.dev/reference/preview/setup-preview */
+ protected previewMounter = esmRequire.resolve('./preview/mounter.js');
+
+ /* component docs template. Learn how to replace dev-server - https://bit.dev/reference/preview/setup-preview */
+ protected previewDocsTemplate = esmRequire.resolve('./preview/docs.js');
+
+ /* Vite config for the preview. */
+ protected previewViteConfig = esmRequire.resolve('./config/vite.config.mjs');
+
+ protected dirName = dirname(fileURLToPath(import.meta.url));
+}
+
+export default new MyEnv();
diff --git a/test-data/ci-scripts-tests/my-env/my-env.docs.mdx b/test-data/ci-scripts-tests/my-env/my-env.docs.mdx
new file mode 100644
index 0000000..efe9777
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/my-env.docs.mdx
@@ -0,0 +1,58 @@
+---
+description: 'A React development environment.'
+labels: ['env', 'react', 'dev', 'vite', 'jest', 'webpack']
+---
+
+A reusable development environment for React.
+Use the React environment to create new React components and apps.
+
+Features:
+- ▶️ TypeScript
+- 🧪 Vitest
+- 🧑💻 Generator templates include React UI component, React hook and apps (including Vite + SSR).
+- 🚀 React Workspace starter
+- 🦋 ESLint
+- ⚒️ A React optimized build pipeline.
+- 👓 React Preview
+
+## Use in existing workspaces
+
+Add the development env to your generator configuration on `workspace.jsonc`.
+
+```json
+{
+ "teambit.generator/generator": {
+ "envs": [
+ "my-scope/my-env"
+ ]
+ }
+}
+```
+
+You can see the generator templates in your workspace using `bit templates`.
+
+## Use on an existing component
+
+Use this dev environment on your existing components, by running the following command:
+
+```
+bit env set my-component my-scope/my-env
+```
+
+
+## Create a React workspace
+
+You can create a new React workspace made from this env using the following command:
+
+```
+bit new react my-workspace --aspect my-scope/my-env
+```
+
+## Compose your own env
+
+You can base on this env, and customize it to your needs. To create your env run this command:
+```
+bit create react-env my-new-env
+```
+
+Make sure your new environment class extends this env class and overrides the needed class methods.
diff --git a/test-data/ci-scripts-tests/my-env/preview/docs.tsx b/test-data/ci-scripts-tests/my-env/preview/docs.tsx
new file mode 100644
index 0000000..d0451d3
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/preview/docs.tsx
@@ -0,0 +1,8 @@
+import React from 'react';
+import { createDocsTemplate } from '@bitdev/react.preview.react-docs-template';
+
+/**
+ * customize the bit documentation template or
+ * replace this with one of your own.
+ */
+export default createDocsTemplate();
diff --git a/test-data/ci-scripts-tests/my-env/preview/mounter.tsx b/test-data/ci-scripts-tests/my-env/preview/mounter.tsx
new file mode 100644
index 0000000..88a996e
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/preview/mounter.tsx
@@ -0,0 +1,19 @@
+import React from 'react';
+import { createMounter } from '@teambit/react.mounter';
+
+/**
+ * provide your component compositions (preview) with the context they need to run.
+ * for example, a router, a theme, a data provider, etc.
+ * components added here as providers, should be listed as host-dependencies in your host-dependencies.ts file.
+ * @see https://bit.dev/docs/react-env/component-previews#composition-providers
+ */
+export function MyReactProvider({ children }: { children: React.ReactNode }) {
+ return <>{children}>;
+}
+
+/**
+ * the entry for the app (preview runtime) that renders your component previews.
+ * use the default template or create your own.
+ * @see https://docs/react-env/component-previews#composition-mounter
+ */
+export default createMounter(MyReactProvider) as any;
diff --git a/test-data/ci-scripts-tests/my-env/tsconfig.json b/test-data/ci-scripts-tests/my-env/tsconfig.json
new file mode 100644
index 0000000..eab02ac
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/tsconfig.json
@@ -0,0 +1,5 @@
+// bit-generated-typescript-config
+
+{
+ "extends": "./../../node_modules/.cache/tsconfig.bit.26bc1c6fc92a3806d700afa60baf8fa9f182298f.json"
+}
\ No newline at end of file
diff --git a/test-data/ci-scripts-tests/my-env/types/env.d.ts b/test-data/ci-scripts-tests/my-env/types/env.d.ts
new file mode 100644
index 0000000..a1f0079
--- /dev/null
+++ b/test-data/ci-scripts-tests/my-env/types/env.d.ts
@@ -0,0 +1,16 @@
+
+///
+
+export type ImportMetaEnv = Record;
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv
+}
+
+declare global {
+ namespace NodeJS {
+ interface ProcessEnv {
+ [key: string]: string;
+ }
+ }
+}
\ No newline at end of file
diff --git a/test-data/pnpm-lock.yaml b/test-data/pnpm-lock.yaml
index 535a78c..c82fa7c 100644
--- a/test-data/pnpm-lock.yaml
+++ b/test-data/pnpm-lock.yaml
@@ -10,40 +10,37 @@ importers:
dependencies:
'@apollo/client':
specifier: ^3.8.8
- version: 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@babel/core':
specifier: 7.26.9
version: 7.26.9
+ '@bitdev/node.node-env':
+ specifier: 4.0.27
+ version: 4.0.27(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)
'@bitdev/react.app-types.vite-react':
- specifier: ^2.1.2
- version: 2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: ^2.1.7
+ version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
'@bitdev/react.preview.react-docs-app':
specifier: ^0.0.5
- version: 0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(typescript@5.5.3)
- '@learnbit/hello-world.get-hello-world':
- specifier: ^0.0.15
- version: 0.0.15
- '@learnbit/hello-world.ui.hello-world':
- specifier: ^0.0.19
- version: 0.0.19(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@bitdev/react.preview.react-docs-template':
+ specifier: ^0.0.7
+ version: 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@bitdev/react.react-env':
+ specifier: ^4.1.9
+ version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)
'@mdx-js/mdx':
specifier: 1.6.22
version: 1.6.22
'@mdx-js/react':
specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
+ version: 1.6.22(react@19.0.0)
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@teambit/node.node':
- specifier: ^1.0.101
- version: 1.0.101(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/node@20.12.10)(babel-plugin-macros@3.1.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/react.apps.react-app-types':
- specifier: ^2.0.5
- version: 2.0.5(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(eslint@8.56.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/react.react-env':
- specifier: ^1.0.109
- version: 1.0.109(@babel/core@7.26.9)(@babel/traverse@7.27.0)(babel-plugin-macros@3.1.0)(less@4.2.0)(lightningcss@1.27.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/react.mounter':
+ specifier: ^1.0.49
+ version: 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@testing-library/dom':
specifier: 10.4.0
version: 10.4.0
@@ -52,7 +49,7 @@ importers:
version: 6.4.8
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -61,28 +58,31 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
specifier: 20.12.10
version: 20.12.10
'@types/react':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 19.0.2
+ version: 19.0.2
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
'@vitejs/plugin-react':
- specifier: ^4.3.2
- version: 4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ specifier: ^4.6.0
+ version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
'@vitest/coverage-v8':
- specifier: 2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ specifier: ^2.0.4
+ version: 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
browserslist:
specifier: 4.23.0
version: 4.23.0
@@ -91,10 +91,10 @@ importers:
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -108,11 +108,8 @@ importers:
specifier: 4.6.2
version: 4.6.2(eslint@8.56.0)
graphql:
- specifier: '>=16.9.0 <17.0.0'
- version: 16.9.0
- graphql-tag:
- specifier: ^2.12.6
- version: 2.12.6(graphql@16.9.0)
+ specifier: ^16.8.1
+ version: 16.11.0
jsdom:
specifier: ^24.0.0
version: 24.1.3
@@ -120,66 +117,57 @@ importers:
specifier: 4.5.0
version: 4.5.0
react:
- specifier: '>=18.3.0 <19.0.0'
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: '>=18.3.0 <19.0.0'
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
react-router-dom:
specifier: ^6.26.0
- version: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
rollup:
specifier: 4.22.0
version: 4.22.0
sass:
specifier: ^1.69.5
- version: 1.80.2
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
vitest:
- specifier: 2.0.5
- version: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
webpack:
specifier: ^5.88.2
- version: 5.95.0(esbuild@0.14.29)
+ version: 5.100.2(esbuild@0.14.29)
devDependencies:
- '@bitdev/node.node-env':
- specifier: 4.0.15
- version: 4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)
- '@bitdev/react.react-env':
- specifier: 2.1.9
- version: 2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
+ '@bitdev/general.envs.bit-env':
+ specifier: 3.0.4
+ version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
- node_modules/.bit_roots/bit-tasks.test-scope_apps_my-app:
+ ci-scripts-tests/get-message:
dependencies:
'@apollo/client':
specifier: ^3.8.8
- version: 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.apps.my-app':
- specifier: workspace:*
- version: file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@bit-tasks/test-scope.get-hello-world':
- specifier: workspace:*
- version: file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.sample-component-1':
- specifier: workspace:*
- version: file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.ui.hello-world':
- specifier: workspace:*
- version: file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/react.app-types.vite-react':
- specifier: ^2.1.2
- version: 2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core':
+ specifier: 7.26.9
+ version: 7.26.9
+ '@bitdev/react.preview.react-docs-app':
+ specifier: ^0.0.5
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
'@mdx-js/mdx':
- specifier: ^1.6.22
+ specifier: 1.6.22
version: 1.6.22
'@mdx-js/react':
specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
+ version: 1.6.22(react@19.0.0)
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
'@testing-library/dom':
specifier: 10.4.0
version: 10.4.0
@@ -188,7 +176,7 @@ importers:
version: 6.4.8
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -197,28 +185,25 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
specifier: 20.12.10
version: 20.12.10
'@types/react':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 19.0.2
+ version: 19.0.2
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: ^4.3.2
- version: 4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@vitest/coverage-v8':
- specifier: ^2.0.4
- version: 2.1.3(vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
browserslist:
specifier: 4.23.0
version: 4.23.0
@@ -227,10 +212,10 @@ importers:
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -245,7 +230,7 @@ importers:
version: 4.6.2(eslint@8.56.0)
graphql:
specifier: ^16.8.1
- version: 16.9.0
+ version: 16.11.0
jsdom:
specifier: ^24.0.0
version: 24.1.3
@@ -253,63 +238,65 @@ importers:
specifier: 4.5.0
version: 4.5.0
react:
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
react-router-dom:
specifier: ^6.26.0
- version: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup:
+ specifier: 4.22.0
+ version: 4.22.0
sass:
specifier: ^1.69.5
- version: 1.80.2
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
vitest:
- specifier: ^2.0.4
- version: 2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
webpack:
specifier: ^5.88.2
- version: 5.95.0(esbuild@0.14.29)
- devDependencies:
- '@bitdev/react.react-env':
- specifier: 2.1.9
- version: 2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- dependenciesMeta:
- '@bit-tasks/test-scope.apps.my-app':
- injected: true
- '@bit-tasks/test-scope.get-hello-world':
- injected: true
- '@bit-tasks/test-scope.sample-component-1':
- injected: true
- '@bit-tasks/test-scope.ui.hello-world':
- injected: true
+ version: 5.100.2(esbuild@0.14.29)
- node_modules/.bit_roots/bitdev.node_node-env@2.0.33:
+ ci-scripts-tests/my-app:
dependencies:
- '@bit-tasks/test-scope.apps.my-app':
- specifier: workspace:*
- version: file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@bit-tasks/test-scope.get-hello-world':
- specifier: workspace:*
- version: file:test-scope/get-hello-world(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.sample-component-1':
- specifier: workspace:*
- version: file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.ui.hello-world':
- specifier: workspace:*
- version: file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/node.node-env':
- specifier: 2.0.33
- version: 2.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)
+ '@apollo/client':
+ specifier: ^3.8.8
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core':
+ specifier: 7.26.9
+ version: 7.26.9
+ '@bitdev/react.app-types.vite-react':
+ specifier: ^2.1.7
+ version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@bitdev/react.preview.react-docs-app':
+ specifier: ^0.0.5
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@mdx-js/mdx':
+ specifier: 1.6.22
+ version: 1.6.22
'@mdx-js/react':
specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
+ version: 1.6.22(react@19.0.0)
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
- version: 1.0.7(@types/react@19.0.2)(react@18.3.1)
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@testing-library/dom':
+ specifier: 10.4.0
+ version: 10.4.0
+ '@testing-library/jest-dom':
+ specifier: 6.4.8
+ version: 6.4.8
+ '@testing-library/react':
+ specifier: ^16.0.0
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -318,28 +305,40 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
- specifier: ^20.11.23
+ specifier: 20.12.10
version: 20.12.10
+ '@types/react':
+ specifier: 19.0.2
+ version: 19.0.2
+ '@types/react-dom':
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: 2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitejs/plugin-react':
+ specifier: ^4.6.0
+ version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ browserslist:
+ specifier: 4.23.0
+ version: 4.23.0
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -353,56 +352,59 @@ importers:
specifier: 4.6.2
version: 4.6.2(eslint@8.56.0)
graphql:
- specifier: ^16.9.0
- version: 16.9.0
- graphql-tag:
- specifier: ^2.12.6
- version: 2.12.6(graphql@16.9.0)
+ specifier: ^16.8.1
+ version: 16.11.0
+ jsdom:
+ specifier: ^24.0.0
+ version: 24.1.3
+ pino-pretty:
+ specifier: 4.5.0
+ version: 4.5.0
react:
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
+ react-router-dom:
+ specifier: ^6.26.0
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup:
+ specifier: 4.22.0
+ version: 4.22.0
+ sass:
+ specifier: ^1.69.5
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
vitest:
- specifier: 2.0.5
- version: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- dependenciesMeta:
- '@bit-tasks/test-scope.apps.my-app':
- injected: true
- '@bit-tasks/test-scope.get-hello-world':
- injected: true
- '@bit-tasks/test-scope.sample-component-1':
- injected: true
- '@bit-tasks/test-scope.ui.hello-world':
- injected: true
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack:
+ specifier: ^5.88.2
+ version: 5.100.2(esbuild@0.14.29)
- node_modules/.bit_roots/bitdev.node_node-env@4.0.15:
+ ci-scripts-tests/my-env:
dependencies:
+ '@apollo/client':
+ specifier: ^3.8.8
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@babel/core':
specifier: 7.26.9
version: 7.26.9
- '@bit-tasks/test-scope.apps.my-app':
- specifier: workspace:*
- version: file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@bit-tasks/test-scope.get-hello-world':
- specifier: workspace:*
- version: file:test-scope/get-hello-world(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.sample-component-1':
- specifier: workspace:*
- version: file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.ui.hello-world':
- specifier: workspace:*
- version: file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/node.node-env':
- specifier: 4.0.15
- version: 4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)
'@bitdev/react.preview.react-docs-app':
specifier: ^0.0.5
- version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@bitdev/react.preview.react-docs-template':
+ specifier: ^0.0.7
+ version: 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@bitdev/react.react-env':
+ specifier: ^4.1.9
+ version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)
'@mdx-js/mdx':
specifier: 1.6.22
version: 1.6.22
@@ -412,6 +414,18 @@ importers:
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/react.mounter':
+ specifier: ^1.0.49
+ version: 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/dom':
+ specifier: 10.4.0
+ version: 10.4.0
+ '@testing-library/jest-dom':
+ specifier: 6.4.8
+ version: 6.4.8
+ '@testing-library/react':
+ specifier: ^16.0.0
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -420,28 +434,43 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
- specifier: ^20.11.23
+ specifier: 20.12.10
version: 20.12.10
+ '@types/react':
+ specifier: 19.0.2
+ version: 19.0.2
+ '@types/react-dom':
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitejs/plugin-react':
+ specifier: ^4.6.0
+ version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
'@vitest/coverage-v8':
- specifier: ^2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ specifier: ^2.0.4
+ version: 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ browserslist:
+ specifier: 4.23.0
+ version: 4.23.0
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -455,65 +484,148 @@ importers:
specifier: 4.6.2
version: 4.6.2(eslint@8.56.0)
graphql:
- specifier: ^16.9.0
- version: 16.9.0
- graphql-tag:
- specifier: ^2.12.6
- version: 2.12.6(graphql@16.9.0)
+ specifier: ^16.8.1
+ version: 16.11.0
+ jsdom:
+ specifier: ^24.0.0
+ version: 24.1.3
+ pino-pretty:
+ specifier: 4.5.0
+ version: 4.5.0
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
+ react-router-dom:
+ specifier: ^6.26.0
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
rollup:
specifier: 4.22.0
version: 4.22.0
+ sass:
+ specifier: ^1.69.5
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest:
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack:
+ specifier: ^5.88.2
+ version: 5.100.2(esbuild@0.14.29)
+ devDependencies:
+ '@bitdev/general.envs.bit-env':
+ specifier: 3.0.4
+ version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+
+ node_modules/.bit_roots/bitdev.general_envs_bit-env@3.0.4:
+ dependencies:
+ '@bitdev/general.envs.bit-env':
+ specifier: 3.0.4
+ version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@frontend/ci-scripts-tests.get-message':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.my-app':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@frontend/ci-scripts-tests.my-env':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)
+ '@mdx-js/mdx':
+ specifier: ^1.6.22
+ version: 1.6.22
+ '@mdx-js/react':
+ specifier: 1.6.22
+ version: 1.6.22(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context':
+ specifier: 1.0.7
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@typescript-eslint/eslint-plugin':
+ specifier: 6.19.1
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser':
+ specifier: 6.19.1
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-v8':
+ specifier: ^2.0.4
+ version: 2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ eslint:
+ specifier: 8.56.0
+ version: 8.56.0
+ eslint-plugin-import:
+ specifier: 2.29.1
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest:
+ specifier: 27.6.3
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
+ eslint-plugin-jsx-a11y:
+ specifier: 6.8.0
+ version: 6.8.0(eslint@8.56.0)
+ eslint-plugin-mdx:
+ specifier: ^1.17.1
+ version: 1.17.1(eslint@8.56.0)
+ eslint-plugin-react:
+ specifier: 7.33.2
+ version: 7.33.2(eslint@8.56.0)
+ eslint-plugin-react-hooks:
+ specifier: 4.6.2
+ version: 4.6.2(eslint@8.56.0)
+ react:
+ specifier: 19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
vitest:
- specifier: ^2.0.5
- version: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: 1.3.1
+ version: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
dependenciesMeta:
- '@bit-tasks/test-scope.apps.my-app':
- injected: true
- '@bit-tasks/test-scope.get-hello-world':
+ '@frontend/ci-scripts-tests.get-message':
injected: true
- '@bit-tasks/test-scope.sample-component-1':
+ '@frontend/ci-scripts-tests.my-app':
injected: true
- '@bit-tasks/test-scope.ui.hello-world':
+ '@frontend/ci-scripts-tests.my-env':
injected: true
- node_modules/.bit_roots/bitdev.react_react-env@2.1.9:
+ node_modules/.bit_roots/frontend.ci-scripts-tests_my-app:
dependencies:
'@apollo/client':
specifier: ^3.8.8
- version: 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.apps.my-app':
- specifier: workspace:*
- version: file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@bit-tasks/test-scope.get-hello-world':
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core':
+ specifier: 7.26.9
+ version: 7.26.9
+ '@bitdev/react.app-types.vite-react':
+ specifier: ^2.1.7
+ version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@bitdev/react.preview.react-docs-app':
+ specifier: ^0.0.5
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.get-message':
specifier: workspace:*
- version: file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.sample-component-1':
+ version: file:ci-scripts-tests/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.my-app':
specifier: workspace:*
- version: file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@bit-tasks/test-scope.ui.hello-world':
+ version: file:ci-scripts-tests/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@frontend/ci-scripts-tests.my-env':
specifier: workspace:*
- version: file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/react.react-env':
- specifier: 2.1.9
- version: 2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
+ version: file:ci-scripts-tests/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)
'@mdx-js/mdx':
- specifier: ^1.6.22
+ specifier: 1.6.22
version: 1.6.22
'@mdx-js/react':
specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
+ version: 1.6.22(react@19.0.0)
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
'@testing-library/dom':
specifier: 10.4.0
version: 10.4.0
@@ -522,7 +634,7 @@ importers:
version: 6.4.8
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -531,25 +643,28 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
specifier: 20.12.10
version: 20.12.10
'@types/react':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 19.0.2
+ version: 19.0.2
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: ^2.0.4
- version: 2.1.3(vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitejs/plugin-react':
+ specifier: ^4.6.0
+ version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
browserslist:
specifier: 4.23.0
version: 4.23.0
@@ -558,10 +673,10 @@ importers:
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -576,7 +691,7 @@ importers:
version: 4.6.2(eslint@8.56.0)
graphql:
specifier: ^16.8.1
- version: 16.9.0
+ version: 16.11.0
jsdom:
specifier: ^24.0.0
version: 24.1.3
@@ -584,53 +699,69 @@ importers:
specifier: 4.5.0
version: 4.5.0
react:
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
react-router-dom:
specifier: ^6.26.0
- version: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup:
+ specifier: 4.22.0
+ version: 4.22.0
sass:
specifier: ^1.69.5
- version: 1.80.2
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
vitest:
- specifier: ^2.0.4
- version: 2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
webpack:
specifier: ^5.88.2
- version: 5.95.0(esbuild@0.14.29)
+ version: 5.100.2(esbuild@0.14.29)
dependenciesMeta:
- '@bit-tasks/test-scope.apps.my-app':
- injected: true
- '@bit-tasks/test-scope.get-hello-world':
+ '@frontend/ci-scripts-tests.get-message':
injected: true
- '@bit-tasks/test-scope.sample-component-1':
+ '@frontend/ci-scripts-tests.my-app':
injected: true
- '@bit-tasks/test-scope.ui.hello-world':
+ '@frontend/ci-scripts-tests.my-env':
injected: true
- test-scope/apps/my-app:
+ node_modules/.bit_roots/frontend.ci-scripts-tests_my-env:
dependencies:
'@apollo/client':
specifier: ^3.8.8
- version: 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bitdev/react.app-types.vite-react':
- specifier: ^2.1.2
- version: 2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core':
+ specifier: 7.26.9
+ version: 7.26.9
+ '@bitdev/react.preview.react-docs-app':
+ specifier: ^0.0.5
+ version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.get-message':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.my-app':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@frontend/ci-scripts-tests.my-env':
+ specifier: workspace:*
+ version: file:ci-scripts-tests/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)
'@mdx-js/mdx':
- specifier: ^1.6.22
+ specifier: 1.6.22
version: 1.6.22
'@mdx-js/react':
specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
+ version: 1.6.22(react@19.0.0)
'@teambit/mdx.ui.mdx-scope-context':
specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
+ version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
'@testing-library/dom':
specifier: 10.4.0
version: 10.4.0
@@ -639,7 +770,7 @@ importers:
version: 6.4.8
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint':
specifier: 8.56.0
version: 8.56.0
@@ -648,28 +779,25 @@ importers:
version: 1.1.4
'@types/jest':
specifier: ^29.2.2
- version: 29.5.13
+ version: 29.5.14
'@types/node':
specifier: 20.12.10
version: 20.12.10
'@types/react':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 19.0.2
+ version: 19.0.2
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.2
+ version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitejs/plugin-react':
- specifier: ^4.3.2
- version: 4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@vitest/coverage-v8':
- specifier: ^2.0.4
- version: 2.1.3(vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ version: 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-istanbul':
+ specifier: ^3.1.1
+ version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
browserslist:
specifier: 4.23.0
version: 4.23.0
@@ -678,10 +806,10 @@ importers:
version: 8.56.0
eslint-plugin-import:
specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jest:
specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -696,7 +824,7 @@ importers:
version: 4.6.2(eslint@8.56.0)
graphql:
specifier: ^16.8.1
- version: 16.9.0
+ version: 16.11.0
jsdom:
specifier: ^24.0.0
version: 24.1.3
@@ -704,314 +832,56 @@ importers:
specifier: 4.5.0
version: 4.5.0
react:
- specifier: ^18.3.0
- version: 18.3.1
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@19.0.0)
react-router-dom:
specifier: ^6.26.0
- version: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup:
+ specifier: 4.22.0
+ version: 4.22.0
sass:
specifier: ^1.69.5
- version: 1.80.2
+ version: 1.89.2
vite:
specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
vitest:
- specifier: ^2.0.4
- version: 2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ specifier: ^3.1.1
+ version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
webpack:
specifier: ^5.88.2
- version: 5.95.0(esbuild@0.14.29)
- devDependencies:
- '@bitdev/react.react-env':
- specifier: 2.1.9
- version: 2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
-
- test-scope/get-hello-world:
- dependencies:
- '@mdx-js/react':
- specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context':
- specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@types/eslint':
- specifier: 8.56.0
- version: 8.56.0
- '@types/find-root':
- specifier: ^1.1.4
- version: 1.1.4
- '@types/jest':
- specifier: ^29.2.2
- version: 29.5.13
- '@types/node':
- specifier: ^20.11.23
- version: 20.12.10
- '@typescript-eslint/eslint-plugin':
- specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: 2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-plugin-import:
- specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest:
- specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y:
- specifier: 6.8.0
- version: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx:
- specifier: ^1.17.1
- version: 1.17.1(eslint@8.56.0)
- eslint-plugin-react:
- specifier: 7.33.2
- version: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@8.56.0)
- graphql:
- specifier: ^16.9.0
- version: 16.9.0
- graphql-tag:
- specifier: ^2.12.6
- version: 2.12.6(graphql@16.9.0)
- react:
- specifier: ^18.3.0
- version: 18.3.1
- react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
- vite:
- specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest:
- specifier: 2.0.5
- version: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- devDependencies:
- '@bitdev/node.node-env':
- specifier: 2.0.33
- version: 2.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)
-
- test-scope/sample-component-1:
- dependencies:
- '@babel/core':
- specifier: 7.26.9
- version: 7.26.9
- '@bitdev/react.preview.react-docs-app':
- specifier: ^0.0.5
- version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@mdx-js/mdx':
- specifier: 1.6.22
- version: 1.6.22
- '@mdx-js/react':
- specifier: 1.6.22
- version: 1.6.22(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context':
- specifier: 1.0.7
- version: 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@types/eslint':
- specifier: 8.56.0
- version: 8.56.0
- '@types/find-root':
- specifier: ^1.1.4
- version: 1.1.4
- '@types/jest':
- specifier: ^29.2.2
- version: 29.5.13
- '@types/node':
- specifier: ^20.11.23
- version: 20.12.10
- '@typescript-eslint/eslint-plugin':
- specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: ^2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-plugin-import:
- specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest:
- specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y:
- specifier: 6.8.0
- version: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx:
- specifier: ^1.17.1
- version: 1.17.1(eslint@8.56.0)
- eslint-plugin-react:
- specifier: 7.33.2
- version: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@8.56.0)
- graphql:
- specifier: ^16.9.0
- version: 16.9.0
- graphql-tag:
- specifier: ^2.12.6
- version: 2.12.6(graphql@16.9.0)
- react:
- specifier: 19.0.0
- version: 19.0.0
- react-dom:
- specifier: 19.0.0
- version: 19.0.0(react@19.0.0)
- rollup:
- specifier: 4.22.0
- version: 4.22.0
- vite:
- specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- vitest:
- specifier: ^2.0.5
- version: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- devDependencies:
- '@bitdev/node.node-env':
- specifier: 4.0.15
- version: 4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)
-
- test-scope/ui/hello-world:
- dependencies:
- '@apollo/client':
- specifier: ^3.8.8
- version: 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mdx-js/mdx':
- specifier: ^1.6.22
- version: 1.6.22
- '@mdx-js/react':
- specifier: 1.6.22
- version: 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context':
- specifier: 1.0.7
- version: 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@testing-library/dom':
- specifier: 10.4.0
- version: 10.4.0
- '@testing-library/jest-dom':
- specifier: 6.4.8
- version: 6.4.8
- '@testing-library/react':
- specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/eslint':
- specifier: 8.56.0
- version: 8.56.0
- '@types/find-root':
- specifier: ^1.1.4
- version: 1.1.4
- '@types/jest':
- specifier: ^29.2.2
- version: 29.5.13
- '@types/node':
- specifier: 20.12.10
- version: 20.12.10
- '@types/react':
- specifier: 18.3.0
- version: 18.3.0
- '@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.1
- '@typescript-eslint/eslint-plugin':
- specifier: 6.19.1
- version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser':
- specifier: 6.19.1
- version: 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8':
- specifier: ^2.0.4
- version: 2.1.3(vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist:
- specifier: 4.23.0
- version: 4.23.0
- eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-plugin-import:
- specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest:
- specifier: 27.6.3
- version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y:
- specifier: 6.8.0
- version: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx:
- specifier: ^1.17.1
- version: 1.17.1(eslint@8.56.0)
- eslint-plugin-react:
- specifier: 7.33.2
- version: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks:
- specifier: 4.6.2
- version: 4.6.2(eslint@8.56.0)
- graphql:
- specifier: ^16.8.1
- version: 16.9.0
- jsdom:
- specifier: ^24.0.0
- version: 24.1.3
- pino-pretty:
- specifier: 4.5.0
- version: 4.5.0
- react:
- specifier: ^18.3.0
- version: 18.3.1
- react-dom:
- specifier: ^18.3.0
- version: 18.3.1(react@18.3.1)
- react-router-dom:
- specifier: ^6.26.0
- version: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass:
- specifier: ^1.69.5
- version: 1.80.2
- vite:
- specifier: ^5.3.5
- version: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest:
- specifier: ^2.0.4
- version: 2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack:
- specifier: ^5.88.2
- version: 5.95.0(esbuild@0.14.29)
- devDependencies:
- '@bitdev/react.react-env':
- specifier: 2.1.9
- version: 2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
+ version: 5.100.2(esbuild@0.14.29)
+ dependenciesMeta:
+ '@frontend/ci-scripts-tests.get-message':
+ injected: true
+ '@frontend/ci-scripts-tests.my-app':
+ injected: true
+ '@frontend/ci-scripts-tests.my-env':
+ injected: true
packages:
- '@adobe/css-tools@4.4.0':
- resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
+ '@adobe/css-tools@4.4.3':
+ resolution: {integrity: sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@apollo/client@3.11.8':
- resolution: {integrity: sha512-CgG1wbtMjsV2pRGe/eYITmV5B8lXUCYljB2gB/6jWTFQcrvirUVvKg7qtFdjYkQSFbIffU1IDyxgeaN81eTjbA==}
+ '@apollo/client@3.13.8':
+ resolution: {integrity: sha512-YM9lQpm0VfVco4DSyKooHS/fDTiKQcCHfxr7i3iL6a0kP/jNO5+4NFK6vtRDxaYisd5BrwOZHLJpPBnvRVpKPg==}
peerDependencies:
graphql: ^15.0.0 || ^16.0.0
- graphql-ws: ^5.5.5
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0
+ graphql-ws: ^5.5.5 || ^6.0.3
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
@@ -1023,20 +893,15 @@ packages:
subscriptions-transport-ws:
optional: true
- '@babel/code-frame@7.25.7':
- resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
- engines: {node: '>=6.9.0'}
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
- '@babel/compat-data@7.25.8':
- resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/compat-data@7.28.0':
+ resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
engines: {node: '>=6.9.0'}
'@babel/core@7.11.6':
@@ -1047,46 +912,34 @@ packages:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.19.6':
- resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.26.9':
resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.7':
- resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.27.0':
- resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
+ '@babel/core@7.28.0':
+ resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.7':
- resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
+ '@babel/generator@7.28.0':
+ resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
- resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==}
+ '@babel/helper-annotate-as-pure@7.27.3':
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.7':
- resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.0':
- resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-create-class-features-plugin@7.25.7':
- resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
+ '@babel/helper-create-class-features-plugin@7.27.1':
+ resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.7':
- resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==}
+ '@babel/helper-create-regexp-features-plugin@7.27.1':
+ resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1101,146 +954,111 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-define-polyfill-provider@0.6.2':
- resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ '@babel/helper-define-polyfill-provider@0.6.5':
+ resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.25.7':
- resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.25.7':
- resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.7':
- resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-transforms@7.27.3':
+ resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.7':
- resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.10.4':
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
- '@babel/helper-plugin-utils@7.25.7':
- resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.7':
- resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==}
+ '@babel/helper-remap-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.7':
- resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
+ '@babel/helper-replace-supers@7.27.1':
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.25.7':
- resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
- resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.7':
- resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.25.7':
- resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.7':
- resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-wrap-function@7.27.1':
+ resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.7':
- resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==}
+ '@babel/helpers@7.27.6':
+ resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.7':
- resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.27.0':
- resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.25.7':
- resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.8':
- resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.27.0':
- resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
+ '@babel/parser@7.28.0':
+ resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7':
- resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
+ resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7':
- resolution: {integrity: sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+ resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7':
- resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+ resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7':
- resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7':
- resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1':
+ resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1251,8 +1069,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.25.7':
- resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
+ '@babel/plugin-proposal-decorators@7.28.0':
+ resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1296,8 +1114,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.7':
- resolution: {integrity: sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==}
+ '@babel/plugin-syntax-decorators@7.27.1':
+ resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1312,14 +1130,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.25.7':
- resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==}
+ '@babel/plugin-syntax-import-assertions@7.27.1':
+ resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.25.7':
- resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1344,8 +1162,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.7':
- resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1392,8 +1210,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.7':
- resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1404,32 +1222,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.7':
- resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==}
+ '@babel/plugin-transform-arrow-functions@7.27.1':
+ resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.8':
- resolution: {integrity: sha512-9ypqkozyzpG+HxlH4o4gdctalFGIjjdufzo7I2XPda0iBnZ6a+FO0rIEQcdSPXp02CkvGsII1exJhmROPQd5oA==}
+ '@babel/plugin-transform-async-generator-functions@7.28.0':
+ resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.7':
- resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==}
+ '@babel/plugin-transform-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.25.7':
- resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.27.1':
+ resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.7':
- resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==}
+ '@babel/plugin-transform-block-scoping@7.28.0':
+ resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1440,152 +1258,158 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.7':
- resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==}
+ '@babel/plugin-transform-class-properties@7.27.1':
+ resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.25.8':
- resolution: {integrity: sha512-e82gl3TCorath6YLf9xUwFehVvjvfqFhdOo4+0iVIVju+6XOi5XHkqB3P2AXnSwoeTX0HBoXq5gJFtvotJzFnQ==}
+ '@babel/plugin-transform-class-static-block@7.27.1':
+ resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.7':
- resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==}
+ '@babel/plugin-transform-classes@7.28.0':
+ resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.25.7':
- resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==}
+ '@babel/plugin-transform-computed-properties@7.27.1':
+ resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.7':
- resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==}
+ '@babel/plugin-transform-destructuring@7.28.0':
+ resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.25.7':
- resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==}
+ '@babel/plugin-transform-dotall-regex@7.27.1':
+ resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.7':
- resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==}
+ '@babel/plugin-transform-duplicate-keys@7.27.1':
+ resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.8':
- resolution: {integrity: sha512-gznWY+mr4ZQL/EWPcbBQUP3BXS5FwZp8RUOw06BaRn8tQLzN4XLIxXejpHN9Qo8x8jjBmAAKp6FoS51AgkSA/A==}
+ '@babel/plugin-transform-dynamic-import@7.27.1':
+ resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-explicit-resource-management@7.28.0':
+ resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.25.7':
- resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==}
+ '@babel/plugin-transform-exponentiation-operator@7.27.1':
+ resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.8':
- resolution: {integrity: sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw==}
+ '@babel/plugin-transform-export-namespace-from@7.27.1':
+ resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.25.7':
- resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==}
+ '@babel/plugin-transform-for-of@7.27.1':
+ resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.7':
- resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==}
+ '@babel/plugin-transform-function-name@7.27.1':
+ resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.8':
- resolution: {integrity: sha512-4OMNv7eHTmJ2YXs3tvxAfa/I43di+VcF+M4Wt66c88EAED1RoGaf1D64cL5FkRpNL+Vx9Hds84lksWvd/wMIdA==}
+ '@babel/plugin-transform-json-strings@7.27.1':
+ resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.7':
- resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==}
+ '@babel/plugin-transform-literals@7.27.1':
+ resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.8':
- resolution: {integrity: sha512-f5W0AhSbbI+yY6VakT04jmxdxz+WsID0neG7+kQZbCOjuyJNdL5Nn4WIBm4hRpKnUcO9lP0eipUhFN12JpoH8g==}
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1':
+ resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.7':
- resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==}
+ '@babel/plugin-transform-member-expression-literals@7.27.1':
+ resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.7':
- resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==}
+ '@babel/plugin-transform-modules-amd@7.27.1':
+ resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.25.7':
- resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==}
+ '@babel/plugin-transform-modules-commonjs@7.27.1':
+ resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.7':
- resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==}
+ '@babel/plugin-transform-modules-systemjs@7.27.1':
+ resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.25.7':
- resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==}
+ '@babel/plugin-transform-modules-umd@7.27.1':
+ resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.25.7':
- resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==}
+ '@babel/plugin-transform-new-target@7.27.1':
+ resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.8':
- resolution: {integrity: sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
+ resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.25.8':
- resolution: {integrity: sha512-rm9a5iEFPS4iMIy+/A/PiS0QN0UyjPIeVvbU5EMZFKJZHt8vQnasbpo3T3EFcxzCeYO0BHfc4RqooCZc51J86Q==}
+ '@babel/plugin-transform-numeric-separator@7.27.1':
+ resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1596,164 +1420,170 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.25.8':
- resolution: {integrity: sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g==}
+ '@babel/plugin-transform-object-rest-spread@7.28.0':
+ resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.25.7':
- resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==}
+ '@babel/plugin-transform-object-super@7.27.1':
+ resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.25.8':
- resolution: {integrity: sha512-EbQYweoMAHOn7iJ9GgZo14ghhb9tTjgOc88xFgYngifx7Z9u580cENCV159M4xDh3q/irbhSjZVpuhpC2gKBbg==}
+ '@babel/plugin-transform-optional-catch-binding@7.27.1':
+ resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.25.8':
- resolution: {integrity: sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==}
+ '@babel/plugin-transform-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.25.7':
- resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==}
+ '@babel/plugin-transform-parameters@7.27.7':
+ resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.25.7':
- resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==}
+ '@babel/plugin-transform-private-methods@7.27.1':
+ resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.25.8':
- resolution: {integrity: sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow==}
+ '@babel/plugin-transform-private-property-in-object@7.27.1':
+ resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.25.7':
- resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==}
+ '@babel/plugin-transform-property-literals@7.27.1':
+ resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-constant-elements@7.25.7':
- resolution: {integrity: sha512-/qXt69Em8HgsjCLu7G3zdIQn7A2QwmYND7Wa0LTp09Na+Zn8L5d0A7wSXrKi18TJRc/Q5S1i1De/SU1LzVkSvA==}
+ '@babel/plugin-transform-react-constant-elements@7.27.1':
+ resolution: {integrity: sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.25.7':
- resolution: {integrity: sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==}
+ '@babel/plugin-transform-react-display-name@7.28.0':
+ resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.25.7':
- resolution: {integrity: sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==}
+ '@babel/plugin-transform-react-jsx-development@7.27.1':
+ resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.7':
- resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==}
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.7':
- resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==}
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.7':
- resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==}
+ '@babel/plugin-transform-react-jsx@7.27.1':
+ resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.25.7':
- resolution: {integrity: sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==}
+ '@babel/plugin-transform-react-pure-annotations@7.27.1':
+ resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.25.7':
- resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==}
+ '@babel/plugin-transform-regenerator@7.28.1':
+ resolution: {integrity: sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.25.7':
- resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==}
+ '@babel/plugin-transform-regexp-modifiers@7.27.1':
+ resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-reserved-words@7.27.1':
+ resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.25.7':
- resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==}
+ '@babel/plugin-transform-shorthand-properties@7.27.1':
+ resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.25.7':
- resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==}
+ '@babel/plugin-transform-spread@7.27.1':
+ resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.25.7':
- resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==}
+ '@babel/plugin-transform-sticky-regex@7.27.1':
+ resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.25.7':
- resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==}
+ '@babel/plugin-transform-template-literals@7.27.1':
+ resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.25.7':
- resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==}
+ '@babel/plugin-transform-typeof-symbol@7.27.1':
+ resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.7':
- resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
+ '@babel/plugin-transform-typescript@7.28.0':
+ resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.25.7':
- resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==}
+ '@babel/plugin-transform-unicode-escapes@7.27.1':
+ resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.25.7':
- resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==}
+ '@babel/plugin-transform-unicode-property-regex@7.27.1':
+ resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.25.7':
- resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==}
+ '@babel/plugin-transform-unicode-regex@7.27.1':
+ resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.25.7':
- resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==}
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1':
+ resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1770,8 +1600,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.25.8':
- resolution: {integrity: sha512-58T2yulDHMN8YMUxiLq5YmWUnlDCyY1FsHM+v12VMx+1/FlrUj5tY50iDCpofFQEM8fMYOaY9YRvym2jcjn1Dg==}
+ '@babel/preset-env@7.28.0':
+ resolution: {integrity: sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1787,8 +1617,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-react@7.25.7':
- resolution: {integrity: sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg==}
+ '@babel/preset-react@7.27.1':
+ resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1799,8 +1629,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.25.7':
- resolution: {integrity: sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==}
+ '@babel/preset-typescript@7.27.1':
+ resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1809,135 +1639,116 @@ packages:
resolution: {integrity: sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.25.7':
- resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.25.7':
- resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.27.0':
- resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.25.7':
- resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.27.0':
- resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
+ '@babel/runtime@7.27.6':
+ resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.22.3':
- resolution: {integrity: sha512-P3na3xIQHTKY4L0YOG7pM8M8uoUIB910WQaSiiMCZUC2Cy8XFEQONGABFnHWBa2gpGKODTAJcNhi5Zk0sLRrzg==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.8':
- resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
+ '@babel/traverse@7.28.0':
+ resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.27.0':
- resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
+ '@babel/types@7.28.1':
+ resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@bit-tasks/test-scope.apps.my-app@file:test-scope/apps/my-app':
- resolution: {directory: test-scope/apps/my-app, type: directory}
- peerDependencies:
- react-dom: ^17.0.0 || ^18.0.0
- react-router-dom: ^6.26.0
- vite: ^5.3.5
-
- '@bit-tasks/test-scope.get-hello-world@file:test-scope/get-hello-world':
- resolution: {directory: test-scope/get-hello-world, type: directory}
-
- '@bit-tasks/test-scope.sample-component-1@file:test-scope/sample-component-1':
- resolution: {directory: test-scope/sample-component-1, type: directory}
-
- '@bit-tasks/test-scope.ui.hello-world@file:test-scope/ui/hello-world':
- resolution: {directory: test-scope/ui/hello-world, type: directory}
- peerDependencies:
- '@testing-library/react': ^16.0.0
-
- '@bitdev/node.generators.node-starters@0.0.10':
- resolution: {integrity: sha512-nL64j+0A229zZt3KUUG/pLic0jOOdcYQ83GF2+aByo9eLleo8+8u+jnrxZ4D6rU4cwWqw4NWSeWbLG2y/aZu1w==}
+ '@bitdev/general.envs.bit-env@3.0.4':
+ resolution: {integrity: sha512-ckH0MPUH3dwbM509fMn8ns3Yblbacj7ychD2zWtrPfcJLhVfq+XQWWfDI3m57JcPkYXWgF/6Tuw1mjY8K5a7Qw==}
'@bitdev/node.generators.node-starters@0.0.11':
resolution: {integrity: sha512-q/5Y9NkYQtJS+au/hKp8tZcZdF6/7/wU6c8oEQt43+vql8/uOsd7FcO1Tod5Ur9ZvSUIEhXHZ35ZnaTRIN0fuA==}
- '@bitdev/node.generators.node-templates@2.0.8':
- resolution: {integrity: sha512-eD0kxqVU2oZhrFHbmen2kREqcKL141tf7VclKBsfjV+3z5z96RP3cMdEo6fwQjU5Yg0D8O9Tb6O0G+/qOnGktw==}
-
'@bitdev/node.generators.node-templates@4.0.1':
resolution: {integrity: sha512-0HWNK/EeIr6n+89Mu3RIxyXIjUYwjWpBAa6l53NeGT42S38Lou119TZff48Tl0tjbKmvWzzNAb0SlOvks5LVCg==}
- '@bitdev/node.node-env@2.0.33':
- resolution: {integrity: sha512-OoI2Dfe9MF1GZjudcsaP8I6VIIcFC3mT34HrPS/FIi3Qobt24Z6kEZFA+owYm65Bqutm57Suv47+E+R3UIuc5w==}
+ '@bitdev/node.node-env@4.0.27':
+ resolution: {integrity: sha512-8r9vK5UZc/+yE187NmnH3kWCubHQ7wtuASXzrUDbSejcQAp8oxGkKzrYKAC3k6swGVb4zzUTlEvSRQJkvHJ7GQ==}
- '@bitdev/node.node-env@4.0.15':
- resolution: {integrity: sha512-2Ky8XMAS9IHd0ZluO2LC2D+8R+gf+GTcKZQ8QArMkQR/TIcUTSHiBXa3vpHlKo6CcxZrMQtb+X7epgS+FE1gkg==}
-
- '@bitdev/react.app-types.vite-react@2.1.2':
- resolution: {integrity: sha512-urVh/+Ft9zsjVL/CGvBxhqb1jEITj8wWPohIox5Gk9qld3aQnWcrmBTbjkUISv4Hhd30Wjcq72uiDVV3c+Nhcw==}
+ '@bitdev/react.app-types.vite-react@2.1.7':
+ resolution: {integrity: sha512-NEC23gROq6TSKyrPczf9Q8DK4twRM0gpW+TaRdlf5QJ1i/yQLXIfkd/z3WEpKGzcB6POFA6PYkHzKUeF3qAJ7Q==}
+ peerDependencies:
+ vite: ^5.3.5
- '@bitdev/react.eslint.eslint-config-bit-react@1.1.10':
- resolution: {integrity: sha512-LqfgGHdHSZp2vDihsUb2T7lBMPzqR3imjkreV8/v7ctkWRi1UKxBjeRRNbY9EFhHEvy5JEDy4eyzM3GSujxlWQ==}
+ '@bitdev/react.eslint.eslint-config-bit-react@1.1.14':
+ resolution: {integrity: sha512-/bKeb1BE6rzs+NJvTweaHFpBODXTmrfjLFJmef0wLGmkHsACZuCM77acn7++Ty427tKkmyAQkTaw+4C6Aksgng==}
peerDependencies:
'@typescript-eslint/parser': ^6.19.1
eslint: '> 7.0.0'
eslint-plugin-mdx: ^1.17.1
- '@bitdev/react.eslint.eslint-config-bit-react@1.1.3':
- resolution: {integrity: sha512-tnKeqanOEdhu+sf9mLYSfPUVEsAtUwKsEWVAZVvrk3laoczu42WrZBpfAHsDOeWnKD82ZmMxEZR2tIzHSOC7Pg==}
+ '@bitdev/react.eslint.eslint-config-bit-react@1.1.15':
+ resolution: {integrity: sha512-s4QtA9c1EhS3LBhoFOKBDs0uEJg6J+81jh39G84prScUxHXJ9PPBKsc569EShjONgdVJutVR3+bHC6+SbjByxQ==}
peerDependencies:
'@typescript-eslint/parser': ^6.19.1
eslint: '> 7.0.0'
- eslint-plugin-mdx: 3.1.5
-
- '@bitdev/react.generators.react-starters@1.1.0':
- resolution: {integrity: sha512-r07SxuvCLmEzUF0KmmaaBh2I1eVzGvQBi588hxMXB8CYRlLwgTFqUU1tTPIxrQsxiFLaqKACqDn8n+wfcOsNmg==}
+ eslint-plugin-mdx: ^1.17.1
'@bitdev/react.generators.react-starters@1.1.1':
resolution: {integrity: sha512-LQzLiB1tI26pVHcH1xLc91zLg42aaPd+hNq5OiS7JeDsR5FZoz59s4fqS1UlbDtc/T3RJO3IyNBFwFeY+j6inQ==}
- '@bitdev/react.generators.react-templates@2.1.3':
- resolution: {integrity: sha512-Ki3qC9QPD8YRYbwZXrWXaRjtDWKIQ2Nr2pAfONFS0RYTfV7TzbWHWNLRbc1R3ibsdBZlwzyo6Q0LroaoxDkHDw==}
-
- '@bitdev/react.generators.react-templates@2.1.4':
- resolution: {integrity: sha512-y5a+YV4fZqIPov5RF2vOHpEpGm81PC2h/qxTwKcZZ9uCvkJd5jXcRVGP7mehcbz/xTmgI13vN41HEo9Lbd8N5Q==}
-
'@bitdev/react.generators.react-templates@4.0.2':
resolution: {integrity: sha512-hG8I2rA6K0xXA8tohFwLAd1e4IdiBD2nVv1hZPjmn4Y3wPxKIdvGYINtMAtOy2bnC9vNsb19KEiP2y+J+cFBMg==}
'@bitdev/react.preview.react-docs-app@0.0.5':
resolution: {integrity: sha512-kDzFvU4gwlnAi16RIg31yFSDF8l9XpaYf04PT5mpicrfkKlwS+k7Pav01bqlZtLmvTLw0QBTK7VzplLyvW6x8w==}
- '@bitdev/react.react-env@2.1.7':
- resolution: {integrity: sha512-EI9+Z9HCVft5xp1WID8HyU7S56VeUB58qe8pSN/k5gTWp0GuZTNbSI4YdARIaf16QzVwp2vSs5Uo69E9oNllyA==}
+ '@bitdev/react.preview.react-docs-template@0.0.7':
+ resolution: {integrity: sha512-0rRy5lR8XLeDEb5vDaGczWo8hSjl3dKnyeL78XbFbEAPabz3qDPlSearW82AnOaaGz8gLJzSHNmglyHCR2DhSg==}
+ peerDependencies:
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@bitdev/react.react-env@2.1.9':
- resolution: {integrity: sha512-r6MZa2mdrymC/zCdevf8upC7TqyZmGzdNZq6Da9Xaw61QZg+DsK16qpWjme7NlHCOt0l6jTWAVf89eHVczoZrQ==}
+ '@bitdev/react.react-env@4.1.9':
+ resolution: {integrity: sha512-8WCTDswHgarrYnaqDw8cODd0W3pzxGhEBskuzaJhblyGUlrrhtw9QLYQYwzVn2obpjWBg1YcLlP5ZyQMEw38DA==}
- '@bitdev/react.react-env@4.0.19':
- resolution: {integrity: sha512-B5BWtJPEGjTpVAAeXu0Q0xy2JmyyB8Xa/3kAmAHtjtf0pGDxyxpB946ij9dFX16Eo0WYD4+fNbfOXg/qhnM+Lg==}
+ '@bitdev/react.webpack.refresh-overlay@0.0.5':
+ resolution: {integrity: sha512-/Z6WyK0Y8emzZHG41n9qfxUlt/UGC1RVP8xEE0u/MepDj4/wLLLLEzfh55+AWCBfqkmS6URnGVNb67NyvNWOPg==}
- '@bitdev/react.webpack.refresh-overlay@0.0.2':
- resolution: {integrity: sha512-BBymytsSdizmYe8Q9J0Ln3RcFwf5zbVYvdXuP++pYb7njf2SpTvFoShu6jWLPn7gZjPHRMUIcwBHyMln7R2rmQ==}
+ '@bitdev/react.webpack.refresh-overlay@0.0.6':
+ resolution: {integrity: sha512-1LdQRTehylsvYhRY8t9MgXuGK0Yzx3BYngjarKQ7tPILJsbcP7TjbNV5QimgNJQRIAy65UAyezxtVrAoc8UDMg==}
- '@bitdev/react.webpack.refresh-overlay@0.0.4':
- resolution: {integrity: sha512-wiH88FRJhzK+PCv02e7xTEEuNYHKxne7+Eq1DwsMb+B/Vkeb+DR1FvlkTRIJJv+Kyn4Jn2oHMCQNBfP9mK27fQ==}
+ '@csstools/color-helpers@5.0.2':
+ resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
+ engines: {node: '>=18'}
- '@csstools/normalize.css@12.1.1':
- resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
- '@csstools/postcss-cascade-layers@1.1.1':
- resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
- engines: {node: ^12 || ^14 || >=16}
+ '@csstools/css-color-parser@3.0.10':
+ resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss: ^8.2
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ engines: {node: '>=18'}
+
+ '@csstools/normalize.css@12.1.1':
+ resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
+
+ '@csstools/postcss-cascade-layers@1.1.1':
+ resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
'@csstools/postcss-color-function@1.1.1':
resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==}
@@ -2161,14 +1972,14 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@eslint-community/eslint-utils@4.7.0':
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.1':
- resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -2191,6 +2002,22 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ '@frontend/ci-scripts-tests.get-message@file:ci-scripts-tests/get-message':
+ resolution: {directory: ci-scripts-tests/get-message, type: directory}
+ peerDependencies:
+ '@testing-library/react': ^16.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@frontend/ci-scripts-tests.my-app@file:ci-scripts-tests/my-app':
+ resolution: {directory: ci-scripts-tests/my-app, type: directory}
+ peerDependencies:
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-router-dom: ^6.26.0
+ vite: ^5.3.5
+
+ '@frontend/ci-scripts-tests.my-env@file:ci-scripts-tests/my-env':
+ resolution: {directory: ci-scripts-tests/my-env, type: directory}
+
'@graphql-typed-document-node/core@3.2.0':
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
@@ -2294,34 +2121,21 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
- engines: {node: '>=6.0.0'}
+ '@jridgewell/gen-mapping@0.3.12':
+ resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.2.1':
- resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
- engines: {node: '>=6.0.0'}
-
- '@jridgewell/source-map@0.3.6':
- resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
-
- '@jridgewell/sourcemap-codec@1.5.0':
- resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+ '@jridgewell/source-map@0.3.10':
+ resolution: {integrity: sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==}
- '@jridgewell/trace-mapping@0.3.25':
- resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@jridgewell/sourcemap-codec@1.5.4':
+ resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
- '@learnbit/hello-world.get-hello-world@0.0.15':
- resolution: {integrity: sha512-V+DUrmWziJLbuvHKUCoFHSFGUE5NWtOBNC6W7WKI8jjDHjf43Ppzu4Zuf/TUrlKqCiodVYTiQ74hOIAHsbtosw==}
-
- '@learnbit/hello-world.ui.hello-world@0.0.19':
- resolution: {integrity: sha512-hBirmg9nfTTRA1XETV5HbGG511hupF3e+rg5zZ5qkX1Zu4eRVE4eA8ZY/MizBZffYkvCwkuilqcWZMd48IHrAw==}
- peerDependencies:
- '@testing-library/react': ^12.1.5
+ '@jridgewell/trace-mapping@0.3.29':
+ resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
@@ -2359,88 +2173,94 @@ packages:
resolution: {integrity: sha512-r5tJWe6NF6lesfPw1N3g7N7WUKpHqi2ONnw9wl5ccSGGIxkmgcPaPQxfvmhdjXvQnktSuIOR0HjQXVXu+/en/w==}
engines: {node: '>= 12.0.0'}
- '@parcel/watcher-android-arm64@2.4.1':
- resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ '@parcel/watcher-android-arm64@2.5.1':
+ resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.4.1':
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ '@parcel/watcher-darwin-arm64@2.5.1':
+ resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.4.1':
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ '@parcel/watcher-darwin-x64@2.5.1':
+ resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.4.1':
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ '@parcel/watcher-freebsd-x64@2.5.1':
+ resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.4.1':
- resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
+ resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm-musl@2.5.1':
+ resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
- resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
+ resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.4.1':
- resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
+ resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.4.1':
- resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
+ resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.4.1':
- resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ '@parcel/watcher-linux-x64-musl@2.5.1':
+ resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-win32-arm64@2.4.1':
- resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ '@parcel/watcher-win32-arm64@2.5.1':
+ resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.4.1':
- resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ '@parcel/watcher-win32-ia32@2.5.1':
+ resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.4.1':
- resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ '@parcel/watcher-win32-x64@2.5.1':
+ resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.4.1':
- resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ '@parcel/watcher@2.5.1':
+ resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15':
- resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==}
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.17':
+ resolution: {integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==}
engines: {node: '>= 10.13'}
peerDependencies:
'@types/webpack': 4.x || 5.x
@@ -2468,170 +2288,93 @@ packages:
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
- '@remix-run/router@1.20.0':
- resolution: {integrity: sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==}
+ '@remix-run/router@1.23.0':
+ resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==}
engines: {node: '>=14.0.0'}
+ '@rolldown/pluginutils@1.0.0-beta.19':
+ resolution: {integrity: sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==}
+
'@rollup/rollup-android-arm-eabi@4.22.0':
resolution: {integrity: sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm-eabi@4.24.0':
- resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm64@4.22.0':
resolution: {integrity: sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-android-arm64@4.24.0':
- resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
- cpu: [arm64]
- os: [android]
-
'@rollup/rollup-darwin-arm64@4.22.0':
resolution: {integrity: sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-arm64@4.24.0':
- resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
- cpu: [arm64]
- os: [darwin]
-
'@rollup/rollup-darwin-x64@4.22.0':
resolution: {integrity: sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.0':
- resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
- cpu: [x64]
- os: [darwin]
-
'@rollup/rollup-linux-arm-gnueabihf@4.22.0':
resolution: {integrity: sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
- resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-musleabihf@4.22.0':
resolution: {integrity: sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
- resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm64-gnu@4.22.0':
resolution: {integrity: sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
- resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-musl@4.22.0':
resolution: {integrity: sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.24.0':
- resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
resolution: {integrity: sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
- resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
- cpu: [ppc64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-gnu@4.22.0':
resolution: {integrity: sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
- resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-s390x-gnu@4.22.0':
resolution: {integrity: sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
- resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
- cpu: [s390x]
- os: [linux]
-
'@rollup/rollup-linux-x64-gnu@4.22.0':
resolution: {integrity: sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.24.0':
- resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-musl@4.22.0':
resolution: {integrity: sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.24.0':
- resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-win32-arm64-msvc@4.22.0':
resolution: {integrity: sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
- resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
- cpu: [arm64]
- os: [win32]
-
'@rollup/rollup-win32-ia32-msvc@4.22.0':
resolution: {integrity: sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
- resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
- cpu: [ia32]
- os: [win32]
-
'@rollup/rollup-win32-x64-msvc@4.22.0':
resolution: {integrity: sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.0':
- resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
- cpu: [x64]
- os: [win32]
-
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -2877,7 +2620,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0
'@teambit/base-ui.routing.native-link@1.0.0':
- resolution: {integrity: sha512-yrkm02UxkeCBWyLQC9MG7Jl6JbQrsIBz+9c57mZqAjEcVvQWY2mB3lEY+pNZAuIyOg55/DTqKR1bKQKl6ZAdzg==, tarball: https://registry.npmjs.org/@teambit/base-ui.routing.native-link/-/base-ui.routing.native-link-1.0.0.tgz}
+ resolution: {integrity: sha512-yrkm02UxkeCBWyLQC9MG7Jl6JbQrsIBz+9c57mZqAjEcVvQWY2mB3lEY+pNZAuIyOg55/DTqKR1bKQKl6ZAdzg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
@@ -2967,7 +2710,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0
'@teambit/base-ui.theme.fonts.book@1.0.2':
- resolution: {integrity: sha1-TzaJASmrWjLeCze8rnRp8IZgxwA=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.theme.fonts.book/-/@teambit-base-ui.theme.fonts.book-1.0.2.tgz}
+ resolution: {integrity: sha1-TzaJASmrWjLeCze8rnRp8IZgxwA=}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
@@ -2979,32 +2722,23 @@ packages:
react-dom: ^16.8.0 || ^17.0.0
'@teambit/base-ui.utils.composer@1.0.0':
- resolution: {integrity: sha512-2w+T+WdEJWxWbGcqRueoww08xeDrPyWxDnWFho4N7WsxKS6zaHp/u29b18KV34VDJV9hdHcrXzhUoaLXd8pFSA==, tarball: https://registry.npmjs.org/@teambit/base-ui.utils.composer/-/base-ui.utils.composer-1.0.0.tgz}
+ resolution: {integrity: sha512-2w+T+WdEJWxWbGcqRueoww08xeDrPyWxDnWFho4N7WsxKS6zaHp/u29b18KV34VDJV9hdHcrXzhUoaLXd8pFSA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
'@teambit/base-ui.utils.string.affix@1.0.0':
- resolution: {integrity: sha512-cuXL6MNfP7XPJtJZUVUCj50JJpzF/+pS0RRlnWE1B/rNB9tKyu+QfdZQ+kmSAGwQMT1ZfTufo50Gow/suzZavw==, tarball: https://registry.npmjs.org/@teambit/base-ui.utils.string.affix/-/base-ui.utils.string.affix-1.0.0.tgz}
+ resolution: {integrity: sha512-cuXL6MNfP7XPJtJZUVUCj50JJpzF/+pS0RRlnWE1B/rNB9tKyu+QfdZQ+kmSAGwQMT1ZfTufo50Gow/suzZavw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/bit-error@0.0.394':
- resolution: {integrity: sha512-qp2GJ59LpUevArHCfpSvotB2cpUHV4hDAEBGWE0q6MOdESboHuadZMuVrQO5dmXN5BX6tFN7qfBF+pQKHOfqIg==}
- engines: {node: '>=12.22.0'}
-
'@teambit/bit-error@0.0.404':
resolution: {integrity: sha512-lGK6sZBk28H+MPuqIQp5+JRGw5xuE8MUTNoMQtWyda4/u6drNMgk4eYG1HWVcqbuJbGzrtfEDroDRx4ghBiUOQ==}
engines: {node: '>=12.22.0'}
'@teambit/community.constants.links@0.0.2':
- resolution: {integrity: sha1-cUo3bbFCwlI564kZTrREbBRp234=, tarball: https://node-registry.bit.cloud/@teambit/community.constants.links/-/@teambit-community.constants.links-0.0.2.tgz}
-
- '@teambit/community.ui.content-tabs@1.0.2':
- resolution: {integrity: sha512-gCfyxLGLrvVjGRyrf7Su5Uld4UuLQRMCGtuLWGZFCguB8oTM0wCXMHY1ogfMkc93AmLKIzIxDLe6Z+Oj06NcUw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
+ resolution: {integrity: sha1-cUo3bbFCwlI564kZTrREbBRp234=}
'@teambit/community.ui.content-tabs@1.0.3':
resolution: {integrity: sha512-KE/uUNXEp6Z/ZyuBrLHuRNTrJKEGQhG+QFMA93yDZwQc+3WvvapFUZJhO5B6K3/IWUxPH//a6Bgw8jn6PBpBTA==}
@@ -3014,13 +2748,6 @@ packages:
'@teambit/compilation.compiler-task@1.0.12':
resolution: {integrity: sha512-DDi3ZhrnkFBEDymv4tN2j18F3+GgAp5/ak/kzqU1la1BsJFYbRUNMrs6EbJaoKHcsOIolFUaFu7JxXoD6F38xA==}
- '@teambit/compilation.compiler-task@1.0.9':
- resolution: {integrity: sha512-RATBdI4H6ot8aTFtp90chuCYmAc+LaTiMYWzRdYV+sFv4d45u0l8h9Et0Z/NraMoVB4gUPrdJJkR7RixffUAiA==}
-
- '@teambit/component-id@0.0.402':
- resolution: {integrity: sha512-S8jweaIlvlOuUa8x9qYfUKeAL4K0IozNEJJfnVzJLFZy5922NXrdi0TNW+dbegS9mlIOJ/S7+3TZKeT7ITBhMg==}
- engines: {node: '>=12.22.0'}
-
'@teambit/component-id@1.2.0':
resolution: {integrity: sha512-rdOUec8IfdvPP1jqo/8JpCoLEp8TfTdWdkj5K0oEggSQd1kM9IY2vRoWUguqKAbVVFk7TEnOKGtESOp2mkbglw==}
engines: {node: '>=12.22.0'}
@@ -3029,16 +2756,16 @@ packages:
resolution: {integrity: sha512-rpbKjRHs/mB2HU+yK1T9/P/r1pS9PDSi5tU1+6AK6WjW6QRkqVlf+fyRNfRFX8t31/sdDqLSIEj49WT7TxDLNQ==}
engines: {node: '>=12.22.0'}
- '@teambit/component-version@0.0.395':
- resolution: {integrity: sha512-eT9krk/eOizS9yTXgcD7oIOCtXsCoFUx8P4DO5Crm78RwinsNwNjcd1beeKJqoguAvjQvqy+6WV8U46hBBcJkw==}
+ '@teambit/component-id@1.2.4':
+ resolution: {integrity: sha512-9ekWPf076IUBwu38dm9tOXHnT1ZPy1ifAayeFL4M9lJX1aoSfg/vQqofijMmnrm19LCPGRUkn7iMk7FCvuB6RQ==}
engines: {node: '>=12.22.0'}
'@teambit/component-version@1.0.3':
resolution: {integrity: sha512-0JColk4hcSIATal4DH4tKseeMRsw6Tyq6PhC6dTPYwiUj1CbW+TdJuEZUQmc8sqAnx14doQUw6jbibaUnBBMMg==}
engines: {node: '>=12.22.0'}
- '@teambit/component.modules.component-url@0.0.124':
- resolution: {integrity: sha1-hMQBTfleQnkLfjF4VuHAmNGY8Ho=}
+ '@teambit/component-version@1.0.4':
+ resolution: {integrity: sha512-hh+shvnYks+rtsxCsQaA1l4gByVCF+KTFjDBmvjTCQa/elsV9o4ftIsKB9gHjISufTh/6XMB1KALIIabUbWvwA==}
engines: {node: '>=12.22.0'}
'@teambit/component.modules.component-url@0.0.169':
@@ -3071,6 +2798,15 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
+ '@teambit/compositions.ui.composition-live-controls-react@0.0.3':
+ resolution: {integrity: sha512-ZSf6XfgInp7s0FiPb+KUpK9YxB3QMfVB/J8Ab9qB67QJsHy16449LrCVj+3UcME3pLGmmpECMRGhir/6L3n/Cg==}
+ peerDependencies:
+ '@types/react': ^18.2.12
+ react: ^17.0.0 || ^18.0.0
+
+ '@teambit/compositions.ui.composition-live-controls@0.0.3':
+ resolution: {integrity: sha512-eOsSoZCQcs2LCYLUjwe+F6L7xywl8Jb8cEm+y7q6/sCZmjksMA/b3TMa1IKmIgqo04SU6xgrS+V20P7XBcpqLg==}
+
'@teambit/compositions.ui.compositions-overview@0.0.10':
resolution: {integrity: sha512-Mzr6QQh0fw3quBjC21uNE2CSHrbSTJpzecgLe/kPEuos8pB4IhCQdSbq8NnSOBBpji7inHNXLDe0cQ+gF1WszQ==}
engines: {node: '>=12.22.0'}
@@ -3078,15 +2814,8 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/defender.eslint-linter@1.0.39':
- resolution: {integrity: sha512-b5AZ384E7bGltrxyI3Vm+wZV31qymFH/J63Evy3QkkMi3MGdHnjYoSHXBZfaWn8c6ORWpNQj2yVd9stNHgDUdQ==}
- peerDependencies:
- eslint: '> 7.0.0'
-
- '@teambit/defender.eslint-linter@1.0.42':
- resolution: {integrity: sha512-pRCHpl38eDj7dxhKAeORT7MOPyp5MKM9QBLi6b6FgkxlIAJzpwnKZeGgLYm6gDK03Upy4VHTNh++gA3DiLhEzA==}
- peerDependencies:
- eslint: '> 7.0.0'
+ '@teambit/defender.coverage-report@0.1.0':
+ resolution: {integrity: sha512-dI8yzpp914tPCo8vKJhHKWEdMUX+9yi+510WvwOqR+PBQ0M40lyMPTWYGgbU8nxJ7mIP51x5ZqTBxHIcsQl7ow==}
'@teambit/defender.eslint-linter@1.0.55':
resolution: {integrity: sha512-OEjQYPiDlJrxdfhRlAEaFRsfAxX7Co/y/Sj3wboGAkYgF+7TVPzEQ2rH8M9dGvuIQglz0zDaLZrLcERNELVXlw==}
@@ -3094,41 +2823,19 @@ packages:
eslint: '> 7.0.0 < 9.0.0'
react: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/defender.jest-tester@2.0.12':
- resolution: {integrity: sha512-cQMfta/yySPe9l/w5mmR2z4Z2O9lu+uFQvE947WmN3QscDLVasB1mlP4GpzVV5RhwDGuuLwxQaoSdlXTWqaEIw==}
- peerDependencies:
- jest: 29.3.1
-
- '@teambit/defender.jest-tester@2.0.15':
- resolution: {integrity: sha512-Q88gnScJUE5woqGIFsG5GDGYeXgr3ENIvPvgk7vJr1gzPXAMj8OgzdGojV1IXkgM3t8R81CgTEln3PKjQNNjnw==}
- peerDependencies:
- jest: 29.3.1
-
- '@teambit/defender.jest-tester@2.0.17':
- resolution: {integrity: sha512-hxVYthXoJ+voJjoHzqqYX6AuRAkxKwiwh/j5iVRI6f4wJ7qI2Uei1s7/5QT1+sb12o6RPoFitBZl+JuDIkpDdw==}
+ '@teambit/defender.jest-tester@2.1.0':
+ resolution: {integrity: sha512-X/mwNM3BtI3H/FlkuOhxVR4XZT1Mkx1C6U4klF4jvA6gwV7+MHwAOLzleRC3hyqsxm6QaxcuTPEim1xDLjOHaQ==}
peerDependencies:
jest: 29.3.1
- '@teambit/defender.linter-task@1.0.7':
- resolution: {integrity: sha512-Nln5e49Ogcfd7N0dgPb+OIsJgiKnqDC0uL6RJ9+dOJbArIboFu+pAVFWFlgukYvgsJtmUgMzJku/h9sQfhToVg==}
-
'@teambit/defender.linter-task@1.0.8':
resolution: {integrity: sha512-sjqdIDHI3R9OHcjm/zXu+kCggOU2wzO+D3N0gwbG6CT9P+hGpOEWl7s3V+olGXBdhUG9cCJH4nfYJ5y6jNl7MA==}
- '@teambit/defender.prettier-formatter@1.0.19':
- resolution: {integrity: sha512-cNjp0ub4bd9RhlEIVgiC2cFcb57VyxDKy0Ky/V/iniEfErduWRe4DtZ/bCdh/KkcBXFBVLlP4gM5x0eSlEc68w==}
-
- '@teambit/defender.prettier-formatter@1.0.20':
- resolution: {integrity: sha512-1P8RYO2BdUC0ZBSVOuMVqxtDy8+IkfHFwdSeTGE7wz68VaCtCW+z5gXNfxE1OLr64NxUipB50OmGvbB/ZMd+bw==}
-
'@teambit/defender.prettier-formatter@1.0.23':
resolution: {integrity: sha512-BGvaNxNWovrFT+91XC6sxF6D1Wu1Gp2XW6fDRWVvrZOgUXcvek96pAKZF3MqIdSdqNitC/BXaKlUJ7OZ7St9WA==}
peerDependencies:
react: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/defender.tester-task@1.0.13':
- resolution: {integrity: sha512-eOyZRds1zV9vuB+CZ6PRNYQfGowIuhkBcy3W77ZdWtHVxx2VymEr3WMidW72sBprGXLjQyrtz/rkp+Bgw3Z7sg==}
-
'@teambit/defender.tester-task@1.0.14':
resolution: {integrity: sha512-zV4YSJfWXUfkfP9wPuIPByfTHPGJ22pOqXyp0jNURRN90WKSFH2ZLdHjDaxi8+czfQsVg5dr5dgHJCJBAIDYlg==}
@@ -3214,14 +2921,6 @@ packages:
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
- '@teambit/docs.docs-template@1.0.7':
- resolution: {integrity: sha512-smDZToTVgSVt2IrE4LPn3UedG/ULa/2dTFtc3JdYVnbsQ5q5FGycSCHzVdYmBR8UyqCfjfi3Y+01WyyglvIgig==}
- peerDependencies:
- '@types/react': ^18.2.12
- '@types/react-dom': ^18.2.5
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
-
'@teambit/documenter.code.react-playground@4.1.10':
resolution: {integrity: sha512-nQ6nQlIEOqas26zlDZRwuTRKcre+KBRhEgmQCnbTWkCcoz0rM3natNlILKey2vHE1FHGmhmnSlbpNSPukZEjcw==}
peerDependencies:
@@ -3238,12 +2937,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.markdown.heading@0.1.8':
- resolution: {integrity: sha1-nzm8nvmN4ZhYeKvSemUQ8QCkkmM=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12':
resolution: {integrity: sha512-SiigPvNrOwnNwyFnyt+Vrc6yRnMJvqOw8rfQhL4GDaJuxwKusvzci6yTR5uQMhZXumS1fA6rhUexYPEAU2Lnuw==}
peerDependencies:
@@ -3255,24 +2948,12 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.markdown.mdx@0.1.13':
- resolution: {integrity: sha512-u4GoY6rJK7GWsCBXJZuREazxMLuVvE0pQsHoSTnF9jyv2aiSNZ2KfzLT9KuF74PqW5CiIulyMgMkPg7JzZQZig==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.markdown.mdx@0.1.16':
resolution: {integrity: sha512-HcX9DU97n+EYSIdONIfKor4jzCLb7wZIfRRqFJfmLREcU3P/um2BpZZqoCezr6LnRA7/5GNTWOtfn6Cjd+13bA==}
peerDependencies:
'@mdx-js/react': ^1.6.22
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.routing.external-link@4.1.2':
- resolution: {integrity: sha1-x8BwO3dJWu6xpvFCmhyGxIBGUsk=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.routing.external-link@4.1.4':
resolution: {integrity: sha512-Y3i5aSKtI6GpQmlgJjYmNKcBblK/vsLISQq6/wqvpTZ8aT0UOAw79H8lskcLdcfLW8gQW+iN9IW/t7hLeA5fkw==}
peerDependencies:
@@ -3289,29 +2970,11 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.anchor@4.0.8':
- resolution: {integrity: sha1-uCm/XjJzF/uAWNo0M0ZD+EqSK4w=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/documenter.ui.block-quote@4.0.7':
- resolution: {integrity: sha1-7+GPtKk6G3gN7oPmjt/F4b6F84I=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.block-quote@4.0.9':
resolution: {integrity: sha512-1DLt/R6/l0eRvOed4FSLv7R4WrC6dM/W2Vbf1BN30AVHtwg6sXp5H5xG76CuCrMsuwc4PPCaVvz5/Niw7YJbeA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.bold@4.0.7':
- resolution: {integrity: sha1-9gJM/LIlweId0FfiXSfJe0b8P6Q=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.bold@4.0.9':
resolution: {integrity: sha512-UZVCWz8ng4mBsn8q5B8JxCKwKxFRUiYg9cEcbbK+skOza6hqxMjLh/LD1x7xAIKAr8Q/X69jCHsqKoFBudYV3w==}
peerDependencies:
@@ -3345,45 +3008,21 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.heading@4.1.6':
- resolution: {integrity: sha1-nCoruiI/7n5xcXd4GEMdtuU5nIU=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.heading@4.1.8':
resolution: {integrity: sha512-35h5VOs6LB/6Abfdz9z9mvQ4MofG4eNOl1vHaOzSMzR12CCw3dU/K+yJG5WxG2JzCz8ubBnYUESLFx1f89nDeg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.image@4.0.2':
- resolution: {integrity: sha1-lOGzakfJTF07HAYwkCYPeS3MKwI=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.image@4.0.4':
resolution: {integrity: sha512-ezh4lWoYiREzL1K77M/N2kExnsy6GbFdzGU0B0xA41GNBruYhgTK9Oq264b8tNb4y/4eSaQKfgSynr+EAep3wQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.inline-code@0.1.5':
- resolution: {integrity: sha1-ds6zetV22NrzIjAju0UoDBjePEY=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.inline-code@0.1.7':
resolution: {integrity: sha512-2nQhyEwVpC1irAWMr9CEge2CFEk8SYROxOPdIhr61YzC+z1mbjSpjuzXg9WQrrprZaFJPuOd79wyYfq+sW0ziQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.italic@4.0.7':
- resolution: {integrity: sha1-udDO1kKFVhbtzPHibq1fT3cAjtg=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.italic@4.0.9':
resolution: {integrity: sha512-Or+8hnpriAiMbP0bZ6NfJlaqQzoZEC7XP2KMql5N9dKrq7cyEbh6XuY0kGHGMwKpT2Um4ovsBucqbEL67E2b2A==}
peerDependencies:
@@ -3400,29 +3039,11 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.linked-heading@4.1.8':
- resolution: {integrity: sha1-LGpmPIXZSWsXbYgkS/WR1VxJcCg=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/documenter.ui.ol@4.1.5':
- resolution: {integrity: sha1-lapFqkqFsOmHSTE3otAHINSFdu8=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.ol@4.1.7':
resolution: {integrity: sha512-XoozbsYB26uoaM8Cnw4m3fUDnovOwYseT8zX7IHr/SRbeDj7hiPkzpzA5CVy5SSyJlWZ1jQ/UUWdRaUbOt9MOw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.paragraph@4.1.5':
- resolution: {integrity: sha1-w9jrNz9R2bIsMgLvjNgv9Ycmr3Y=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.paragraph@4.1.8':
resolution: {integrity: sha512-TgJhHpcrWsqkdyQMNPszL+42w3Gp1STtyoSk9rdBNYKsCBmDukdGx2d7d9ruPe57nVcnVXSoLstbAdEegOq96g==}
peerDependencies:
@@ -3439,23 +3060,11 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.separator@4.1.5':
- resolution: {integrity: sha1-xyOoVnbJEVVdAGegDDbr5EXrZH8=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.separator@4.1.7':
resolution: {integrity: sha512-bJQby0KjoiZn6rtpeDV41+ONgKfS377hIRv7NDYQGAQEVruuu89fUjCr+2hY7AKxibEvN/L7z+Z/6UiY+8gwDg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.sup@4.0.7':
- resolution: {integrity: sha1-BsLXxuTjySkYTbpe2bxzPcbamVU=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.sup@4.0.9':
resolution: {integrity: sha512-fJzvJ4MturVUdo9kCPJujRznuOU/xUyfjzshrmlK01LPwM0Kgp6ed5MmNjZSr6EPXsCBdzwA/C3UEXsooYJSDw==}
peerDependencies:
@@ -3482,34 +3091,16 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.table.base-table@4.1.5':
- resolution: {integrity: sha1-bdqA6VoAdA2lDnRjrxeUUjk09UQ=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.table.base-table@4.1.7':
resolution: {integrity: sha512-9UvxVRVbB3bIh1SnFQOXHD1aakBi253qpUAzE8zU7j8c+kkxiG9p/83ZoUMunKgz3u6Oz2mgnFLZr2vVrbUBMA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.table.td@4.1.5':
- resolution: {integrity: sha1-G1IEysSy68nlR2OF+QHUU39HrEw=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.table.td@4.1.7':
resolution: {integrity: sha512-eIqnHewPSO6gxDnGyGnE9rZwIXJXAO/NpRsHCIq7EEhI5uZCNP47i/hxY8bbTcY2OlktLYu9bQQe/x/VD9L+Iw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.table.tr@4.1.5':
- resolution: {integrity: sha1-jNAXpVn9c16u1xtdH/m1beo5TnQ=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.table.tr@4.1.7':
resolution: {integrity: sha512-KTeUJxSHucTO3wJfOFyL/hF/JvhvdnBlyQnJYfJLiutlxMm5cWkB8GX0qMsCdIai+FGdAGFAsoPGAGbD76ocww==}
peerDependencies:
@@ -3520,12 +3111,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/documenter.ui.ul@4.1.5':
- resolution: {integrity: sha1-tRTv2mMIu1ulZTNVLUDzQsDBuyM=}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/documenter.ui.ul@4.1.7':
resolution: {integrity: sha512-xsDbjjgd3enT96sCtB+SwbFsWYu+6kAVRcwn0F8Dc6VO/YiXHeYe7MivXXFdLPGbZtjZk8WifxojIOh9jutkmw==}
peerDependencies:
@@ -3558,10 +3143,6 @@ packages:
peerDependencies:
react: ^17.0.0 || ^18.0.0
- '@teambit/legacy-bit-id@0.0.399':
- resolution: {integrity: sha512-Jy1HDmOWJY0NnW9aKzU9IZbHQc6kl2TuNoJ1hNwUMj93EcowOEBXb3900VlZFuG07tHw30mXDspkCKF3Yfb2Qg==}
- engines: {node: '>=12.22.0'}
-
'@teambit/legacy-bit-id@1.1.0':
resolution: {integrity: sha512-svFHTgVXh24nK3o1JauMs/z5JFmvduqjEYgX7KupBU7hR5+pbTL9ZYq+tZqUPRoueMaPEsPdjAwmhVYHwZ2nZA==}
engines: {node: '>=12.22.0'}
@@ -3570,13 +3151,13 @@ packages:
resolution: {integrity: sha512-dVi0qU0cfS9ZziGHwIrRSXPWslo29zmMjoHS9mXLghCOsPYn1gS0cqDW8SnpfUN/YdYgzYl2WabtGZNgYLu2Ng==}
engines: {node: '>=12.22.0'}
+ '@teambit/legacy-bit-id@1.1.3':
+ resolution: {integrity: sha512-AqlS/ic91dP3U+Jty+WbLq6Hlzk8ou7HBgnos5OTvZorg/knU8CcE5BWP330/hRgY9WuVRtOtqas/T+xlUaD/g==}
+ engines: {node: '>=12.22.0'}
+
'@teambit/mdx.compilers.mdx-transpiler@1.0.6':
resolution: {integrity: sha512-JDpQF9PgvLxEN3B0RIFVHAS0jRDTlg704KYZllWkLoezMHlTDW+/9QIIOtls/n37HE7aQzqBiR/03Cfc1r0Amw==}
- '@teambit/mdx.modules.mdx-loader@1.0.14':
- resolution: {integrity: sha512-geQ9r9mqcOldV6q9pXgzfdf9femqDREUjOJBh58MUodofDOKMXv+OcuPcgwr3NnQfO3Uv2D3cDfQSCOscQrIfA==}
- engines: {node: '>=12.22.0'}
-
'@teambit/mdx.modules.mdx-loader@1.0.15':
resolution: {integrity: sha512-j2TMJxVvnL6L+c5F3mYO65qQMektKu76LbEkFNVVt1+dgrpiP1yhDBQRsAIDST+aP4arUpgYx5Iecfw0/AQ6rQ==}
engines: {node: '>=12.22.0'}
@@ -3601,19 +3182,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0
- '@teambit/mdx.ui.mdx-layout@1.0.9':
- resolution: {integrity: sha512-K+sc2mzapvsJLPjuhTgnnefVFQoLh+9LKtTYr3WlzHGoY/Hx5L/UMd36FEWFscKHONwM7Rc1GrAxv2n9cetIoA==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
-
- '@teambit/mdx.ui.mdx-scope-context@1.0.0':
- resolution: {integrity: sha512-0iaAXiMh0kzHEi6ufS6qman7QrB+J+6PwpCibAtzbjXaH8FHUX7v6r+eV7BFt8zrtTEiUOFz7g1hax5ZOmUKRw==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/mdx.ui.mdx-scope-context@1.0.5':
resolution: {integrity: sha512-5PdFKZPTLspoauN6pd8+uPjORdFWAwK1U/7NPAW//90q/jJFbtvD4NKnAk920qJurwR+B3FDTiLEbPfDtPJY+g==}
engines: {node: '>=12.22.0'}
@@ -3634,100 +3202,66 @@ packages:
'@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a':
resolution: {integrity: sha512-vJrbAt/ci/vPU42f7HsNzYaeub0Okp99oJtAXiA58MwxmeG8oroqP4Z4kxVmAAbbpbI8d3Z4Q6rGBvpfh459CQ==}
- '@teambit/node.generator.node-starters@1.0.0':
- resolution: {integrity: sha512-EkEt8XJVx/+JAiC9eMQR7CH3tgYKGuZ7bu9raFDUi4EpWvdEkjR7Q6enXj/Ifqu3ekXtl2XecN/Nr1VxMBcGsQ==}
-
- '@teambit/node.generator.node-templates@1.0.19':
- resolution: {integrity: sha512-0FF8f8NSEsBc75q/LSfKc2rCUiR7ygl5VjiRqe73OVnhJnpQ77yIr1ZBp0L6+wjUvnEBIRu5mIbrVaJvKW+izg==}
- deprecated: No longer maintained, use bitdev.node/generators/node-templates
-
- '@teambit/node.node@1.0.101':
- resolution: {integrity: sha512-Lh2otMfew/xv7AzfMhD0ueNC2zzK9EZJB+L7aLESIERb+uCRdW1HC7lZoAbJiV7wCpxn3K6DVGArpOMXOXdR+A==}
-
- '@teambit/node.utils.esm-loader@0.0.6':
- resolution: {integrity: sha512-XoOjoDY02H+/jVY6FAI0GqbrWOB/K35KITdboqqSV4KJz31+weaqKe3yD2I6c0FdgMwulsQXHdx5GHuFpGGhhQ==}
-
- '@teambit/preview.react-preview@1.0.53':
- resolution: {integrity: sha512-jl01PQwWNC5D7l5XG8cXTJgwhR4qPeLwdMBXD4WHZz6eaqkisEX+0V6yfBt7eU65+UiRY08zQqUUWrz+IfafAg==}
- peerDependencies:
- '@types/react': ^18.2.12
- '@types/react-dom': ^18.2.5
- react: 18.2.0
-
- '@teambit/preview.react-preview@1.0.64':
- resolution: {integrity: sha512-wL0afP+e1DTPBiJMLxqG/6XEuMRELysV19N6KnY+XinQrj68u+mT16dRVZZY/3hW9QXWpXaq0lQvlOQ2PIlwmg==}
+ '@teambit/preview.react-preview@1.0.91':
+ resolution: {integrity: sha512-EKctiSLhTENd4v/HYhKIWbNkKx50PxM/WCykxnxdm3qYhC7eGmi7M1JoiqOLF82LaI6pB2TdsR6JnKhjk6QRbg==}
peerDependencies:
'@types/react': ^18.2.12
'@types/react-dom': ^18.2.5
- react: 18.2.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/preview.react-preview@1.0.87':
- resolution: {integrity: sha512-lbg2YxZsyKjL4gfi8taLrcH7cMOKQTXw8L6aLQ7Ok8qdpwSJbLRvdEZZ/OxSbYOgmDzC4oKZQ8r8w94VZNgTbg==}
+ '@teambit/preview.react-preview@1.0.93':
+ resolution: {integrity: sha512-YQZ220sn4L2YZdFXI3fy3YBDQG1+EBScWYzeb8/L7mhi+djuSi5p0lgfd7SX6xAAdau0BL/bUY0Q955qlFVYwQ==}
peerDependencies:
'@types/react': ^18.2.12
'@types/react-dom': ^18.2.5
react: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/react.apps.react-app-types@2.0.5':
- resolution: {integrity: sha512-WKGPZIuKW97/y2uCfF7I/Mw1I6YU+3WDL8hMOvtVMHKru1VMBVfjQZn+9L4uWH5dtjWPFLY0f+0Hep+PmzehdA==}
-
- '@teambit/react.babel.bit-react-transformer@1.0.23':
- resolution: {integrity: sha512-4VULdxHIrExSucG6TtY4dTmG30zVh47+u9mbq/4pUhk/MzERF2usdIe/+gGib+kmqRvB4y2Ug3pTw2ZJs/fmLA==}
- engines: {node: '>=12.22.0'}
+ '@teambit/react.apps.react-app-types@2.0.15':
+ resolution: {integrity: sha512-1hKAAxq3lED+nEk5cv4+WRUWPb0qS7IDF+ugPr6K7O6IS4xvoiogQH7iQArTHyiCpggizfV5wSVRETMdyZQ/9Q==}
- '@teambit/react.babel.bit-react-transformer@1.0.28':
- resolution: {integrity: sha512-TX7409vxSyUIjcvuGaVjz6r/q8uQShn/YDJDAQw9Djt+amMIOf7DmdqDXq4q7YPADOtHwEDGxrI+48Adb6irhA==}
+ '@teambit/react.babel.bit-react-transformer@1.0.34':
+ resolution: {integrity: sha512-u98RV02GSaFPnvPVS5+GQm5/3eq97C7J+OOBfL6oqA4KxXsrbL3MdNY/zIE2gMA94OUPLnWIY4/FBt4nTGw7MA==}
engines: {node: '>=12.22.0'}
- '@teambit/react.eslint-config-bit-react@1.0.224':
- resolution: {integrity: sha512-QPuf35lZRxR58FAnFwnl79/zbLygp+ddkwLKYe5sl9SfMvUvpxH3Cs5aO0FqYL2vuQ/128Vbk+dXhODhidtfjg==}
+ '@teambit/react.eslint-config-bit-react@1.0.242':
+ resolution: {integrity: sha512-m5SQIWBqnP06fwZqZVviUa42c5FWpOphgSyJK/1+tqSkvQ2ownZlGln8QRufhpOBiHPcCEKNuxKaNRHlJRq5qQ==}
engines: {node: '>=12.22.0'}
peerDependencies:
eslint: '> 8.0.0'
- '@teambit/react.generator.react-starters@1.0.8':
- resolution: {integrity: sha512-ynQE2sovxbcy4pk2kiUBNUYyISbzPvKWWyKKFoQIV/1j6XsE715fkK6ipJv2HMpKOWd0WYATFamvHEF+gBJ4OQ==}
+ '@teambit/react.generator.react-starters@1.0.9':
+ resolution: {integrity: sha512-HRCtVo4qi642kuh2Eg89ZnT5lqgmptCLnCeu/refjCwzTYhduHVF+v+Xszm2FzuOogmLSgQ2OVi0WMo8EgfhZQ==}
- '@teambit/react.generator.react-templates@1.0.11':
- resolution: {integrity: sha512-qNCGmixy4icVb44s9hwd/GwA5wvORoxb6NEVv1KYU2EKXhS5llJ+bBEJDOBRpVJ+TOKbm/seeEKHcKTxWXeM2A==}
+ '@teambit/react.generator.react-templates@1.0.13':
+ resolution: {integrity: sha512-U6jchBEwYMmFSTh7MJHiKIz1X+nkcNcJnF9lCsyEsWU9QYmPTl+x0A9fIMh2/69OL+5vrAaF+5lX4LZORJxlpA==}
- '@teambit/react.jest.react-jest@1.0.30':
- resolution: {integrity: sha512-Sp2MbNKASZorihocHq6SDk+04MmUYgP/G/+IpyoQQ/x4PT1ua9lofnj7mSW9jx7444q0xmbAyM41w6Mt9GgzPg==}
-
- '@teambit/react.jest.react-jest@1.0.33':
- resolution: {integrity: sha512-WjQxtBu4+hmIysc827BJxGOhL11xI5qtbbML2mmLogjNSsfndKdO6ZIZYWAEatTSEo4Lw8qLBreeZ5kve65xow==}
-
- '@teambit/react.jest.react-jest@1.0.35':
- resolution: {integrity: sha512-WYTVGE7Riee0mYIf0pw/cKRyLFILwVxnMrCrMg6xc2Vr6NS7tbdv54ciwvK2ZCVaDXGE6lzUqo6VZesDeSK2Xg==}
+ '@teambit/react.jest.react-jest@1.0.36':
+ resolution: {integrity: sha512-arCdauA/T+uc03/TSGlYQ7sp0f/y6MuIdfpqhNF0uemRv2K77EPTIWo2HwKVUsI0RFlFOcRyWw1jFNvYWCK7cA==}
'@teambit/react.modules.dom-to-react@0.2.0':
- resolution: {integrity: sha1-ovU1VeKi095JGMnSfCyc4GCW5xU=, tarball: https://node-registry.bit.cloud/@teambit/react.modules.dom-to-react/-/@teambit-react.modules.dom-to-react-0.2.0.tgz}
+ resolution: {integrity: sha1-ovU1VeKi095JGMnSfCyc4GCW5xU=}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.mounter@1.0.18':
- resolution: {integrity: sha512-twoNRrRGYItgqEhU82pjfBPYFARMU43a5uXDIAVsfLOe52CqV9p7TPzlgFx9LoSZOb6eZWmWtjfGf7/3u7HOrw==}
- peerDependencies:
- '@types/react': ^18.2.12
- '@types/react-dom': ^18.2.5
-
- '@teambit/react.mounter@1.0.28':
- resolution: {integrity: sha512-W8BcOrlEeV3R2hJ4ZvnUJfpRwmLbGuBcUawcUF0accKBqGxljYZG5DBCjAV8xE5zZN00yr2Z5UvwyW92n9yZLw==}
+ '@teambit/react.mounter@1.0.47':
+ resolution: {integrity: sha512-mzUB7JJd/9ILk+qpvrG3kHwdftkv3wBVReXl7v/Y1dCp9oSuUNmQuMwnAskz7r8wvvGscGNSOA2NlVW5UEk3jg==}
peerDependencies:
'@types/react': ^18.2.12
'@types/react-dom': ^18.2.5
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
- '@teambit/react.mounter@1.0.46':
- resolution: {integrity: sha512-jxmRa2UmpR/IxUKL1g6hDaWrF4LeA8kNoY6qxb467/X07V/FjR0wbFIb2WzR8gDU4KdMnDPgwNhM+QTz9b9Qzg==}
+ '@teambit/react.mounter@1.0.49':
+ resolution: {integrity: sha512-pnFG0fpQ5XsaUeiWMpILN1ZOtYd45xCvzoIj34SdXkkoYdGBBtlMZsjvQn6lCWK6RczjzYAkl4DyqeTzvcx9ew==}
peerDependencies:
'@types/react': ^18.2.12
'@types/react-dom': ^18.2.5
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
- '@teambit/react.react-env@1.0.109':
- resolution: {integrity: sha512-wUT+ShsvzUmbrMLyZYfYTnIfG9K/5Rah3T8KyrggzsMP3Hu8khNF5LprwMR+4UF8GlMsEq6tjIvj0F5aeGgh2g==}
+ '@teambit/react.react-env@1.0.131':
+ resolution: {integrity: sha512-CvSUdpiCICA8SH2JPm2iCAVbGkyzJud0USALcBaFLcEHfDGah3U+3913yhQvDmGzsrP6b112FHkFuzG0gu8jQg==}
'@teambit/react.rendering.ssr@1.0.2':
resolution: {integrity: sha512-enLbLjRJ5H3wicrPhToRq3G5PzsFY0TMewIDoyFySLOcsbiZMAIZ6ljzNFZPFIncMjfE+jkrrK+yLHxVZaMcxw==}
@@ -3735,20 +3269,14 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.component-highlighter@0.2.2':
- resolution: {integrity: sha512-8hu8GH72ptt20WR40F52M6eBP8jZdNdKHZYKfpqFxcDt6vP0IgpABEcR1sUDMUdBfWuEhdWwGOnwB44511vSAA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/react.ui.component-highlighter@0.2.4':
resolution: {integrity: sha512-PNQjVP0nsNRS/7/cPxmdHxi/ps/027ILshT6KwIdUYrAtyV9MPyvdw8CSM5CDh43u4/HEfFOe5wlchyLGqQM1Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs-app@1.0.21':
- resolution: {integrity: sha512-Ysm1ShXuJTamp8LsnfUk004/sPvqM21LHwTwl5tDRvQfxoIpFMqpgW23LTRzqf50OSn5X65mjV8izJw2dEGWzg==}
+ '@teambit/react.ui.docs-app@1.0.24':
+ resolution: {integrity: sha512-0UWkfXPJbr7KFlaw6SbcQCWQ+OYJsVTF3ZpmBmnoorS9fAEygL1Cp3fk2Iz1lR98F0olKZHyEmJyf9sp7mAo/g==}
engines: {node: '>=12.22.0'}
peerDependencies:
'@types/react': ^17.0.0
@@ -3756,105 +3284,45 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs-app@1.0.24':
- resolution: {integrity: sha512-0UWkfXPJbr7KFlaw6SbcQCWQ+OYJsVTF3ZpmBmnoorS9fAEygL1Cp3fk2Iz1lR98F0olKZHyEmJyf9sp7mAo/g==}
+ '@teambit/react.ui.docs.apply-providers@0.0.22':
+ resolution: {integrity: sha512-wKacgUMCheOZZkcWiQrbY0/JRZ7arADh6A9T4HaWkI7qGMrkWeyS9uCGVuYVPafGslueBgQFiADeXrJF1SOdTQ==}
engines: {node: '>=12.22.0'}
peerDependencies:
- '@types/react': ^17.0.0
- '@types/react-dom': ^17.0.0
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs.apply-providers@0.0.21':
- resolution: {integrity: sha512-VavF6gkZA1Q0VulWuDCB49wmkwLfdTTmGnGHc0Bdl882M6nHogmcBZ12e8XpL55uhA1cGG/CrpcY2Lc6G4x3qQ==}
+ '@teambit/react.ui.docs.compositions-carousel@0.0.27':
+ resolution: {integrity: sha512-IpqA0RL2RyQGJP0fmGJwYJVoQs2bkXj+NfOGovoRrAd8Jyx4I36TGQn6XGI8jZMr2HAEQZ6RzYaCEU5TyBr59Q==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs.apply-providers@0.0.22':
- resolution: {integrity: sha512-wKacgUMCheOZZkcWiQrbY0/JRZ7arADh6A9T4HaWkI7qGMrkWeyS9uCGVuYVPafGslueBgQFiADeXrJF1SOdTQ==}
+ '@teambit/react.ui.docs.docs-content@0.0.32':
+ resolution: {integrity: sha512-KPcyxX2QdWNUCoFzvmCoOuaaii/lA5tqpH4L6iYO3PYjL6cCn6rINcmPw/EG6SVPPZfpPb4ZZTM6uY/BAcMrZA==}
engines: {node: '>=12.22.0'}
peerDependencies:
+ '@types/react': ^17.0.0
+ '@types/react-dom': ^17.0.0
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs.compositions-carousel@0.0.26':
- resolution: {integrity: sha512-K7H7VfE67XQAGb01rLnowkA+HzbOGakQWe4MZOMXe7m2GxlyWzpaTckPmhXds7MHIEGyAbNYCx43XsQd4u0O9A==}
+ '@teambit/react.ui.docs.properties-table@0.0.25':
+ resolution: {integrity: sha512-YSvrh7IrLHzC8EVSj96NuuAYnlY1QSMjuSibQjrxtjL5UIU8sFA4M+FE+IpnODZTpfsrAIH04Q6KJ/HSSEObmA==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs.compositions-carousel@0.0.27':
- resolution: {integrity: sha512-IpqA0RL2RyQGJP0fmGJwYJVoQs2bkXj+NfOGovoRrAd8Jyx4I36TGQn6XGI8jZMr2HAEQZ6RzYaCEU5TyBr59Q==}
+ '@teambit/react.ui.error-fallback@0.0.125':
+ resolution: {integrity: sha512-9jDDRivRavutCePgQZOnZBzT6cluwzTh9rSpIknmIxDoUrjK5Yz33Ck4aP0/q9O+w3Fi4LFmDCV0vVtxQ4Ec/A==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.docs.docs-content@0.0.30':
- resolution: {integrity: sha512-23QQ9iHvG6UemmB8vOpKdbhVNg/Xejt5AV7rfX9RuZucAv9zeIusAdmkHTko7LkVXkdSqwx6YNac/dHhSzortQ==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- '@types/react': ^17.0.0
- '@types/react-dom': ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.docs.docs-content@0.0.32':
- resolution: {integrity: sha512-KPcyxX2QdWNUCoFzvmCoOuaaii/lA5tqpH4L6iYO3PYjL6cCn6rINcmPw/EG6SVPPZfpPb4ZZTM6uY/BAcMrZA==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- '@types/react': ^17.0.0
- '@types/react-dom': ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.docs.properties-table@0.0.24':
- resolution: {integrity: sha512-U+mcLhwb/3rO1fneeHec8FOSnP1vwyNQVO5F7gnrWYUOAexTW8IpjIQt2vKzjjF+YkFm6zdvaacsVhMbXiQDsA==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.docs.properties-table@0.0.25':
- resolution: {integrity: sha512-YSvrh7IrLHzC8EVSj96NuuAYnlY1QSMjuSibQjrxtjL5UIU8sFA4M+FE+IpnODZTpfsrAIH04Q6KJ/HSSEObmA==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.error-fallback@0.0.125':
- resolution: {integrity: sha512-9jDDRivRavutCePgQZOnZBzT6cluwzTh9rSpIknmIxDoUrjK5Yz33Ck4aP0/q9O+w3Fi4LFmDCV0vVtxQ4Ec/A==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.error-fallback@0.0.130':
- resolution: {integrity: sha512-013KoXWP7SbCv2RpvyI2KIcN0xbaubh3v0boaEazX42Dq0bEgt6wnxAc13aeqpg1P9Zd1YyOPUzyt63S1VlOIQ==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.error-fallback@0.0.131':
- resolution: {integrity: sha512-weZ1l3VozsZtG7qNvlnoDAvqulbPiChUbWPBVU/htFdjP8lj8E+46EimBT7VfJIZyhEdF+QEsA44VX5tXQPb6w==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.highlighter-provider@0.0.213':
- resolution: {integrity: sha512-P7wQogNOBaqoId/ccsAyFODOoUj0eVgUn/8+ZjFqARNO6LdqgvP6Sq3jmWYaA8bGufQ0Prddyczggx777deKLg==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
- '@teambit/react.ui.highlighter-provider@0.0.214':
- resolution: {integrity: sha512-yxnXXVm9Cncg7sqoJ34E+4ttcjDlHtzv4aRmBsW+6sBQ46SVaZSgYgJK9l2rOdxB+7/qIMouPPVWwIoveSIWcQ==}
+ '@teambit/react.ui.error-fallback@0.0.131':
+ resolution: {integrity: sha512-weZ1l3VozsZtG7qNvlnoDAvqulbPiChUbWPBVU/htFdjP8lj8E+46EimBT7VfJIZyhEdF+QEsA44VX5tXQPb6w==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
@@ -3874,13 +3342,6 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.41':
- resolution: {integrity: sha512-CcnyDT5A2Ljth02jH3LUUkrI8OC6mCy7wXgK0hiKkwPX31kkJo4WUv/KzwY1na13PM8z5riWLqJ4gO71TWS/lw==}
- engines: {node: '>=12.22.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
-
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42':
resolution: {integrity: sha512-aTCsPSGKMOr87IV2BOT4JjGyCyoQqdFlm6VF3W9G6hGeVPRw/NVJnCkomNGU4tn14qtSxack7wPqz1HyTgkmJQ==}
engines: {node: '>=12.22.0'}
@@ -3889,34 +3350,25 @@ packages:
react-dom: ^16.8.0 || ^17.0.0
'@teambit/react.ui.hover-selector@0.2.0':
- resolution: {integrity: sha1-InitpXgCwfQW/Twb8FIsz6VOrDM=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.hover-selector/-/@teambit-react.ui.hover-selector-0.2.0.tgz}
+ resolution: {integrity: sha1-InitpXgCwfQW/Twb8FIsz6VOrDM=}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/react.webpack.react-webpack@1.0.36':
- resolution: {integrity: sha512-x52JltSJRpWIpedMnvLdfZMaT3/tSXT64QEKdWL8WnW4Bd9P32WZh/rteMGBHGK0ogfe4aVtsjDnIom8KjfXrg==}
-
- '@teambit/react.webpack.react-webpack@1.0.37':
- resolution: {integrity: sha512-mvuN559S08KMSIwNBua3LVpuS1PlzKOYFIKV3bpxShtEzHvOoMajjNFtZs/0IHccVTUfXVGS6b7siq9ysm2zpw==}
-
- '@teambit/react.webpack.react-webpack@1.0.46':
- resolution: {integrity: sha512-cwbfwAdwUuHfeh8xk6pKGZm7XUTSsmRPBYK97m2mc8VEi++eh0rVc/hEG+0R5tK/5xboudvRS7mB7xRW1L/Bbg==}
+ '@teambit/react.webpack.react-webpack@1.0.48':
+ resolution: {integrity: sha512-X5NpkSzuxlgaL16+gF9oBwAcITd63qd4V/uh13h/N4JbVkuEtm1WGj7xXHD7ghZ2HogY/1ExfkPOJeM0UYVI6g==}
peerDependencies:
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/tests-results@1.0.4':
- resolution: {integrity: sha512-UWXLedEa/tsD5UZy9m9eB7I/vTEtEEtfEEJTE+JiNnl7AvfdhWmlpf7jLxRBMF+ZOaT21Pw/qj+njK7TCFkvPA==}
- engines: {node: '>=12.22.0'}
+ '@teambit/react.webpack.react-webpack@1.0.49':
+ resolution: {integrity: sha512-x9Gp3eM3mD/aQj3Y+gyejcAEzFfZUSDZVPOtmcr55zT/1zfXwCODryb4Tjtphkg2eDXo2t6p8BBtct8/ASdX9A==}
+ peerDependencies:
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
'@teambit/tests-results@1.0.5':
resolution: {integrity: sha512-GReOOdEMm6v8C4xPUdf0qleC5lBQPFFGyRREhrpqXgMYB55hL4ZaKZTdii69BwAXC57yTBe86VOpyx6leiu2Kg==}
engines: {node: '>=12.22.0'}
- '@teambit/toolbox.fs.hard-link-directory@0.0.21':
- resolution: {integrity: sha512-+nMapOEAaT2iarwzYTJp7GM0PXx88gFvpZWBg0+W8ZPN5pzkChM2GVjbIW704sB7QcMxQ4bnC9yDNOvOgqr+AA==}
- engines: {node: '>=12.22.0'}
-
'@teambit/toolbox.fs.hard-link-directory@0.0.23':
resolution: {integrity: sha512-7T7aVGcivRjURHY2NRKGxSI9Z84MfugHKE4UYN4rnyIqLSYmXuwlKB/5Mu9GeD6KN6seL8hCI1AvPEhqIPCS7Q==}
engines: {node: '>=12.22.0'}
@@ -3925,40 +3377,27 @@ packages:
resolution: {integrity: sha512-aYcXCtwUe3p9a9GQkGrwgZJY8B1XICYRKEj9XCVMx+qj2waWHXO7ZpxVrM2ix7IMFfxVt7+fSOm2kcaEMDHlHQ==}
engines: {node: '>=12.22.0'}
- '@teambit/toolbox.path.path@0.0.2':
- resolution: {integrity: sha512-I/s91R3V8eYw9Ey8t6iIdL47FWki6/i08uK7CeqpiCDutCm+AF2z8QCJhSEowqHRA66D/w4kTkr9MDQVV9Vk5A==}
+ '@teambit/toolbox.network.get-port@1.0.8':
+ resolution: {integrity: sha512-Z+Y8n22WGp11S7eiCkS4uMOuRBqMwiPShPg2tqk4lgtlNuStCIwxHbyLDip+jnx/IG6twHqoa/ZdyBQtAoZxuQ==}
+ engines: {node: '>=12.22.0'}
'@teambit/toolbox.path.path@0.0.6':
resolution: {integrity: sha512-nck5tADjhIZmfWeacV75D/PIco+3m6p4Xd5iQrs9zMX+f90MqTQQz7LaHDBXKQfLiGct1YqYaps985hyC9v0QQ==}
- '@teambit/toolbox.performance.v8-cache@0.0.33':
- resolution: {integrity: sha512-Y4+aMSOvDm+4kAsNUN7GnXwGc1GyxOtoSHo8qASJDo4JwFeNn43H0oUiexBrQGbc0u0EJi+XHYdlvx/gPWiAsQ==}
- engines: {node: '>=12.22.0'}
-
- '@teambit/toolbox.performance.v8-cache@0.0.34':
- resolution: {integrity: sha512-hoDLn0XtAdf/2YCrboZqXk0Jg3CP8/L/fPRHnLPub6PRBgJgKklmIXIBD+KcGUxVcnKgF8KZ0RmpW88e7V7G3w==}
- engines: {node: '>=12.22.0'}
-
- '@teambit/typescript.typescript-compiler@2.0.44':
- resolution: {integrity: sha512-lh1PSBBeDyi5HzIZocshk51tRhUj/SE2Ct6E3WAh9jP6gd3xqIABWpYn4EcbkU+Ph9/HlH4Ih3a7GDcbnZvPVg==}
-
- '@teambit/typescript.typescript-compiler@2.0.45':
- resolution: {integrity: sha512-5rSixZi9j7HwCJsSckvid01tYNfIyUwvIvlLEW6YJrz15pZIoE/H87oG5I62U9yKsWfC1Y8rUfffh5JbTkh3Qg==}
-
'@teambit/typescript.typescript-compiler@2.0.58':
resolution: {integrity: sha512-LA0RTX58FlbbxFV65yv4Biwd9GCAkhM/OB7JLuPUmhNf0Gj5MRLpKpzt+m/Nax0Ogb2rrCs0QX2V0WbRRFPPlA==}
peerDependencies:
react: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.84':
- resolution: {integrity: sha512-Odjiu1fDYg0dc5VK8oFEAjyAYWWBOVk4i+x74o9lI8hKXbjtVBdSvLcvyvQQKV2wxqlfg9NlslUlHSrsIcMl+g==}
+ '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.85':
+ resolution: {integrity: sha512-EvBsB+Ww5YJz8ELfJdXLQOchFQkKaer4dVr+ASLNM4hsr2d+C8xd7UOtdOcl725Byq1KBkn98hsPfEVSK/vEow==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/ui-foundation.ui.pages.static-error@0.0.104':
- resolution: {integrity: sha512-HAgU67pJToa/goc2AeQZQs8BdjD2C2eV3oeziTyaxQd186gKLptmsCfL1qEPBHNxntjde/XRjoqNoj5Te+XpPg==}
+ '@teambit/ui-foundation.ui.pages.static-error@0.0.106':
+ resolution: {integrity: sha512-rCtEnmWNDUR6kPmpBHQsXeaZ8UeZjt79pUshB55E5/BoPoP/8fiSNY0wyYJbxLAWF5Cgfk52yVnHsumtGzzf8Q==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
@@ -3971,59 +3410,43 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/ui-foundation.ui.rendering.html@0.0.92':
- resolution: {integrity: sha512-iSWxFbDBSdcfXD8+pp8ugGWueUwO55pFZy8sS88aGeiysv6W6kMjY4sXQ1rP6N46uQeF9EhKluVhFZ4L2/cyEA==}
+ '@teambit/ui-foundation.ui.rendering.html@0.0.94':
+ resolution: {integrity: sha512-bb1R6wtKd/+2v+yZLgXXPS/53E4RzCEuYCpV//47Bqrx7a+d7SiFj/twbdFQSlIg7ZBHIwkxs+17tX3IPEYMvQ==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/ui-foundation.ui.use-box.tab@0.0.115':
- resolution: {integrity: sha1-xN+W1U1vCBqIh69sG4yI6FDqLhM=}
+ '@teambit/ui-foundation.ui.rendering.html@0.0.95':
+ resolution: {integrity: sha512-gmiGqXXRtA9rA3VES2fH+Gbx1Oxb+owJMsn9HbdJaez7DpvGqfZBUWNpIAAkKsotNdSyn6akeXrsLQpK8Kr7Lg==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@teambit/vite.vitest-tester@0.2.4':
- resolution: {integrity: sha512-TEXmNv/B8eHCuSuV2iXA7/O4mQ3J1+Qly2GrIqnuQicghUTn+Qs5Ji37gEvh+qXSXXRHSXoAwBUp+v8ZmSgPMQ==}
- peerDependencies:
- vite: ^5.3.4
- vitest: ^2.0.3
-
- '@teambit/vite.vitest-tester@0.2.5':
- resolution: {integrity: sha512-nrB6gN2eQrjr3WMIV2kUAZaU7qtIzfkN0SuP37hKOBVmp7f4SydsEm112sReNMVykIYAtKAhZrTz51QnMRVLMw==}
+ '@teambit/ui-foundation.ui.use-box.tab@0.0.115':
+ resolution: {integrity: sha1-xN+W1U1vCBqIh69sG4yI6FDqLhM=}
+ engines: {node: '>=12.22.0'}
peerDependencies:
- vite: ^5.3.4
- vitest: ^2.0.3
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
- '@teambit/vite.vitest-tester@0.3.7':
- resolution: {integrity: sha512-DM61e6oQxj7iHTIchNKyiabrftpHE7rnzyJP5HRfH3Gx4L5zRwXo0GWEQo1/QMgEKxGAZabw0l4AUdN/Mulh/w==}
+ '@teambit/vite.vitest-tester@0.4.4':
+ resolution: {integrity: sha512-sG5up81JaN+3jmnmmRIBflPXByheiYSAXi6Q205NmfH93eNM4OKEKqdZtV5vWuEbZV04ltbNPaQjYzv4/EkUIg==}
peerDependencies:
- '@vitest/coverage-v8': ^2.0.4
+ '@vitest/coverage-istanbul': 3.2.2
+ '@vitest/coverage-v8': ^3.1.3
vite: ^5.3.5
- vitest: ^2.0.4
-
- '@teambit/webpack.modules.config-mutator@0.0.167':
- resolution: {integrity: sha512-dIahp8WFHmzQ7MRXNeMTQbY4r0FIP/bxj/X/0W5C8Jr8ONDOfxWJUk6+yKyECBNcQEV43hUuqFjSsBl88YmLqA==}
- engines: {node: '>=12.22.0'}
+ vitest: ^3.1.3
'@teambit/webpack.modules.config-mutator@0.0.172':
resolution: {integrity: sha512-3DKNJCgpgkFJF6hLGcWHp1RG0NZhdhFsHf1rgU4PGBmp5z2JkPC//0U7OVvMk3NarK5LKlStUoEr3jijJ0BbcA==}
engines: {node: '>=12.22.0'}
- '@teambit/webpack.modules.generate-style-loaders@1.0.11':
- resolution: {integrity: sha512-+EwAVduVqGBBQqtYvP87p3r4TnBkvU6RjcPmArtAutAm6PpmNz1XB68ZoemwLf9+zZjuVaQe26lpuuA80ZB70Q==}
- engines: {node: '>=12.22.0'}
-
'@teambit/webpack.modules.generate-style-loaders@1.0.13':
resolution: {integrity: sha512-RL89dZ9gu3LDWofpoafU6z3igquJb71I2lrwnKNpA33mCorByslc4UC6mUXhylJL0EEk9krAVKnw9JPTODy4GQ==}
engines: {node: '>=12.22.0'}
- '@teambit/webpack.modules.style-regexps@1.0.6':
- resolution: {integrity: sha512-VEP18wkOMFEaASPz4ytRpCn5BX9zwvBCqeV36RzDbI59IIttFXokVpGHtSCajCBZgStp8Q/rsmlXBgQj1xfyMg==}
- engines: {node: '>=12.22.0'}
-
'@teambit/webpack.modules.style-regexps@1.0.8':
resolution: {integrity: sha512-gVLOZQhkTrZaiOv7uu7DXm/MLYZfVBi6zfEXggaACguyFpzX15u+12BeQPmrAqrDLecY3ALJMt6A9H3Hcl7JRw==}
engines: {node: '>=12.22.0'}
@@ -4031,24 +3454,11 @@ packages:
'@teambit/webpack.transformers.favicon-reload@1.0.0':
resolution: {integrity: sha512-FPKaTpT0G4/OTciVg0A+RRn7zWiJwFLgymB36vhaIt6URsc0V+7mxpVQOSw2+lXQ5Yp9/sRlRd9MjzEpLoTamw==}
- '@teambit/webpack.webpack-bundler@1.0.11':
- resolution: {integrity: sha512-et80FZtf2G0GLt6iG3eby3uW7s9RFpuK+4dw3ys5hPZ1M0irh8XZxNs6bDUiYPvVIVnq0KLFIqhBSA7s13mBTw==}
-
- '@teambit/webpack.webpack-bundler@1.0.12':
- resolution: {integrity: sha512-HE4nn5g5/0JsJyl/Ken+hoQzikbt0a0i1nnbkCl5d9Q17v+BezcoX+Dw02S+VPTPfp7/qtO6mwTt31x8ivpN6w==}
-
'@teambit/webpack.webpack-bundler@1.0.16':
resolution: {integrity: sha512-Do4SlqURVS7pLjk+dxO9kWEcctlRjUre6t+kcHQz3WRM+YxbdWfLAU9l2fGsSOY3KcBm2gBLpN9s2D3vQmQFtQ==}
- '@teambit/webpack.webpack-dev-server@1.0.15':
- resolution: {integrity: sha512-1yAYABM2U2r7Kavq1OxwXzpH44eULUZ+E7794nbfe+O/ZMtq5FFcJxNRif91x7Yc4zyKM4zF3FUGRugMznOV+A==}
- peerDependencies:
- webpack: ^5.88.2
-
- '@teambit/webpack.webpack-dev-server@1.0.16':
- resolution: {integrity: sha512-Iu+SQBYnmE9oN0GvelV1nt7VzTec7cqwcWBNmlCdqyYnhnFL4Ie3uf0mal4U3goGhvo7kSTeWQkPbEx7gtK8xw==}
- peerDependencies:
- webpack: ^5.88.2
+ '@teambit/webpack.webpack-bundler@1.0.17':
+ resolution: {integrity: sha512-tT8E3HznxpW6xI7DgaqdX2FddxRLtv3LSMMoHkV7D6mIcdL4SWbl/EBKB5H8vfOkK3QDxPENYvTbTiE1YerU5g==}
'@teambit/webpack.webpack-dev-server@1.0.23':
resolution: {integrity: sha512-0wR6o8DgN6nxr/7/I8rv+EUYrzRwdFA9P99nPcas0/BUXg/27IjaDuzjVxTQoazsizcyFGKnvz4oUZHbqBFMEg==}
@@ -4098,15 +3508,15 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
- '@testing-library/react@16.0.1':
- resolution: {integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==}
+ '@testing-library/react@16.3.0':
+ resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
engines: {node: '>=18'}
peerDependencies:
'@testing-library/dom': ^10.0.0
- '@types/react': ^18.0.0
- '@types/react-dom': ^18.0.0
- react: ^18.0.0
- react-dom: ^18.0.0
+ '@types/react': ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^18.0.0 || ^19.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4133,27 +3543,33 @@ packages:
'@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- '@types/babel__generator@7.6.8':
- resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.6':
- resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ '@types/babel__traverse@7.20.7':
+ resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+ '@types/body-parser@1.19.6':
+ resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
'@types/bonjour@3.5.13':
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/connect-history-api-fallback@1.5.4':
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
@@ -4163,17 +3579,17 @@ packages:
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express-serve-static-core@5.0.0':
- resolution: {integrity: sha512-AbXMTZGt40T+KON9/Fdxx0B2WK5hsgxcfXJLr5bFpZ7b4JCex2WyQPTEKdXqfHiY5nKKBScZ7yCoO6Pvgxfvnw==}
+ '@types/express-serve-static-core@5.0.7':
+ resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==}
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ '@types/express@4.17.23':
+ resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==}
'@types/find-root@1.1.4':
resolution: {integrity: sha512-2EXK/+gVhVgtt4JqThbEncORvpYJKzi9tQGmI3EkU2jTgMzQsrPm/hbd5xe5uPdeFzIW5gh2PRvvPjaUsI8vpg==}
@@ -4190,11 +3606,11 @@ packages:
'@types/html-minifier-terser@6.1.0':
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+ '@types/http-errors@2.0.5':
+ resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
- '@types/http-proxy@1.17.15':
- resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
+ '@types/http-proxy@1.17.16':
+ resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==}
'@types/istanbul-lib-coverage@2.0.6':
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
@@ -4205,8 +3621,8 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
- '@types/jest@29.5.13':
- resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
@@ -4223,8 +3639,8 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- '@types/node-forge@1.3.11':
- resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+ '@types/node-forge@1.3.13':
+ resolution: {integrity: sha512-zePQJSW5QkwSHKRApqWCVKeKoSOt4xvEnLENZPjyvm9Ezdf/EyDeJM7jqLzOwjVICQQzvLZ63T55MKdJB5H6ww==}
'@types/node@20.12.10':
resolution: {integrity: sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw==}
@@ -4235,28 +3651,27 @@ packages:
'@types/parse5@5.0.3':
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
- '@types/prop-types@15.7.13':
- resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
+ '@types/prop-types@15.7.15':
+ resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
- '@types/qs@6.9.16':
- resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
+ '@types/qs@6.14.0':
+ resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.1':
- resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
+ '@types/react-dom@18.3.7':
+ resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
+ peerDependencies:
+ '@types/react': ^18.0.0
'@types/react-dom@19.0.2':
resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==}
peerDependencies:
'@types/react': ^19.0.0
- '@types/react@18.2.23':
- resolution: {integrity: sha512-qHLW6n1q2+7KyBEYnrZpcsAmU/iiCh9WGCKgXvMxx89+TYdJWRjZohVIo9XTcoLhfX3+/hP0Pbulu3bCZQ9PSA==}
-
- '@types/react@18.3.0':
- resolution: {integrity: sha512-DiUcKjzE6soLyln8NNZmyhcQjVv+WsUIFSqetMN0p8927OztKT4VTfFTqsbAi5oAGIcgOmOajlfBqyptDDjZRw==}
+ '@types/react@18.3.23':
+ resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==}
'@types/react@19.0.2':
resolution: {integrity: sha512-USU8ZI/xyKJwFTpjSVIrSeHBVAGagkHQKPNbxeWwql/vDmnTIBgx+TJnhFnj1NXgz8XfprU0egV2dROLGpsBEg==}
@@ -4264,20 +3679,17 @@ packages:
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- '@types/scheduler@0.23.0':
- resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
-
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+ '@types/semver@7.7.0':
+ resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+ '@types/send@0.17.5':
+ resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}
'@types/serve-index@1.9.4':
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+ '@types/serve-static@1.15.8':
+ resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==}
'@types/sockjs@0.3.36':
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
@@ -4294,8 +3706,8 @@ packages:
'@types/unist@2.0.11':
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
- '@types/ws@8.5.12':
- resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -4370,8 +3782,8 @@ packages:
resolution: {integrity: sha512-2oD/ZqD4Gj41UdFeWZxegH3cVEEH/Z6Bhr/XvwTtGv66737XkR4C9IqEkebCuqArqBJQSj4AgNHHiN1okzD/wQ==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- '@typescript-eslint/scope-manager@5.35.1':
- resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==}
+ '@typescript-eslint/scope-manager@5.62.0':
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@typescript-eslint/scope-manager@6.19.1':
@@ -4420,8 +3832,8 @@ packages:
resolution: {integrity: sha512-KNDfH2bCyax5db+KKIZT4rfA8rEk5N0EJ8P0T5AJjo5xrV26UAzaiqoJCxeaibqc0c/IvZxp7v2g3difn2Pn3w==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- '@typescript-eslint/types@5.35.1':
- resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==}
+ '@typescript-eslint/types@5.62.0':
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@typescript-eslint/types@6.19.1':
@@ -4445,8 +3857,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@5.35.1':
- resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==}
+ '@typescript-eslint/typescript-estree@5.62.0':
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -4481,8 +3893,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@5.35.1':
- resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==}
+ '@typescript-eslint/utils@5.62.0':
+ resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -4509,8 +3921,8 @@ packages:
resolution: {integrity: sha512-H2JMWhLaJNeaylSnMSQFEhT/S/FsJbebQALmoJxMPMxLtlVAMy2uJP/Z543n9IizhjRayLSqoInehCeNW9rWcw==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- '@typescript-eslint/visitor-keys@5.35.1':
- resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==}
+ '@typescript-eslint/visitor-keys@5.62.0':
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@typescript-eslint/visitor-keys@6.19.1':
@@ -4525,164 +3937,115 @@ packages:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ '@ungap/structured-clone@1.3.0':
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@vitejs/plugin-react@4.3.2':
- resolution: {integrity: sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==}
+ '@vitejs/plugin-react@4.6.0':
+ resolution: {integrity: sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0
- '@vitest/coverage-v8@2.0.5':
- resolution: {integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==}
+ '@vitest/coverage-istanbul@3.2.4':
+ resolution: {integrity: sha512-IDlpuFJiWU9rhcKLkpzj8mFu/lpe64gVgnV15ZOrYx1iFzxxrxCzbExiUEKtwwXRvEiEMUS6iZeYgnMxgbqbxQ==}
peerDependencies:
- vitest: 2.0.5
+ vitest: 3.2.4
- '@vitest/coverage-v8@2.1.3':
- resolution: {integrity: sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==}
+ '@vitest/coverage-v8@2.1.9':
+ resolution: {integrity: sha512-Z2cOr0ksM00MpEfyVE8KXIYPEcBFxdbLSs56L8PO0QQMxt/6bDj45uQfxoc96v05KW3clk7vvgP0qfDit9DmfQ==}
peerDependencies:
- '@vitest/browser': 2.1.3
- vitest: 2.1.3
+ '@vitest/browser': 2.1.9
+ vitest: 2.1.9
peerDependenciesMeta:
'@vitest/browser':
optional: true
- '@vitest/expect@2.0.5':
- resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+ '@vitest/expect@1.3.1':
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
- '@vitest/expect@2.1.3':
- resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@2.1.3':
- resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
peerDependencies:
- '@vitest/spy': 2.1.3
- msw: ^2.3.5
- vite: ^5.0.0
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@2.0.5':
- resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
-
- '@vitest/pretty-format@2.1.3':
- resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
-
- '@vitest/runner@2.0.5':
- resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
- '@vitest/runner@2.1.3':
- resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
+ '@vitest/runner@1.3.1':
+ resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==}
- '@vitest/snapshot@2.0.5':
- resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
- '@vitest/snapshot@2.1.3':
- resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
+ '@vitest/snapshot@1.3.1':
+ resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==}
- '@vitest/spy@2.0.5':
- resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
- '@vitest/spy@2.1.3':
- resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
+ '@vitest/spy@1.3.1':
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
- '@vitest/utils@2.0.5':
- resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
- '@vitest/utils@2.1.3':
- resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
+ '@vitest/utils@1.3.1':
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
'@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
-
'@webassemblyjs/floating-point-hex-parser@1.13.2':
resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
-
'@webassemblyjs/helper-api-error@1.13.2':
resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
-
'@webassemblyjs/helper-buffer@1.14.1':
resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
-
'@webassemblyjs/helper-numbers@1.13.2':
resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
-
'@webassemblyjs/helper-wasm-bytecode@1.13.2':
resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
-
'@webassemblyjs/helper-wasm-section@1.14.1':
resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
-
'@webassemblyjs/ieee754@1.13.2':
resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
-
'@webassemblyjs/leb128@1.13.2':
resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
-
'@webassemblyjs/utf8@1.13.2':
resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
-
'@webassemblyjs/wasm-edit@1.14.1':
resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
-
'@webassemblyjs/wasm-gen@1.14.1':
resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
-
'@webassemblyjs/wasm-opt@1.14.1':
resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
-
'@webassemblyjs/wasm-parser@1.14.1':
resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
- '@webassemblyjs/wast-printer@1.12.1':
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
-
'@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
@@ -4698,10 +4061,6 @@ packages:
resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==}
engines: {node: '>=8'}
- '@wry/trie@0.4.3':
- resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==}
- engines: {node: '>=8'}
-
'@wry/trie@0.5.0':
resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
engines: {node: '>=8'}
@@ -4727,15 +4086,11 @@ packages:
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- peerDependencies:
- acorn: ^8
-
- acorn-import-attributes@1.9.5:
- resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ acorn-import-phases@1.0.4:
+ resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==}
+ engines: {node: '>=10.13.0'}
peerDependencies:
- acorn: ^8
+ acorn: ^8.14.0
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
@@ -4746,13 +4101,8 @@ packages:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- acorn@8.13.0:
- resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.14.1:
- resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -4768,8 +4118,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.1:
- resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
ajv-formats@2.1.1:
@@ -4865,15 +4215,15 @@ packages:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- array-buffer-byte-length@1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ array-buffer-byte-length@1.0.2:
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-includes@3.1.8:
- resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ array-includes@3.1.9:
+ resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
engines: {node: '>= 0.4'}
array-timsort@1.0.3:
@@ -4883,24 +4233,24 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array.prototype.findlastindex@1.2.5:
- resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ array.prototype.findlastindex@1.2.6:
+ resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
engines: {node: '>= 0.4'}
- array.prototype.flat@1.3.2:
- resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ array.prototype.flat@1.3.3:
+ resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
engines: {node: '>= 0.4'}
- array.prototype.flatmap@1.3.2:
- resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
+ array.prototype.flatmap@1.3.3:
+ resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
engines: {node: '>= 0.4'}
array.prototype.tosorted@1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ arraybuffer.prototype.slice@1.0.4:
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
asap@2.0.6:
@@ -4912,6 +4262,9 @@ packages:
assert@2.0.0:
resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==}
+ assertion-error@1.1.0:
+ resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+
assertion-error@2.0.1:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
@@ -4919,6 +4272,10 @@ packages:
ast-types-flow@0.0.8:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
+ async-function@1.0.0:
+ resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+ engines: {node: '>= 0.4'}
+
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -4926,8 +4283,8 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- autoprefixer@10.4.20:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ autoprefixer@10.4.21:
+ resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -4989,17 +4346,13 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- babel-plugin-macros@3.1.0:
- resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
- engines: {node: '>=10', npm: '>=6'}
-
- babel-plugin-polyfill-corejs2@0.4.11:
- resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ babel-plugin-polyfill-corejs2@0.4.14:
+ resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.6:
- resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ babel-plugin-polyfill-corejs3@0.13.0:
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -5013,8 +4366,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.2:
- resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ babel-plugin-polyfill-regenerator@0.6.5:
+ resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -5067,27 +4420,27 @@ packages:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- bn.js@4.12.0:
- resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
+ bn.js@4.12.2:
+ resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==}
- bn.js@5.2.1:
- resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+ bn.js@5.2.2:
+ resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==}
body-parser@1.20.3:
resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- bonjour-service@1.2.1:
- resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
+ bonjour-service@1.3.0:
+ resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- brace-expansion@1.1.11:
- resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ brace-expansion@1.1.12:
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
- brace-expansion@2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@2.0.2:
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
@@ -5126,8 +4479,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.24.0:
- resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
+ browserslist@4.25.1:
+ resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5146,10 +4499,6 @@ packages:
builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -5158,8 +4507,16 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- call-bind@1.0.7:
- resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
callsites@3.1.0:
@@ -5192,15 +4549,19 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001669:
- resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==}
+ caniuse-lite@1.0.30001727:
+ resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==}
ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
- engines: {node: '>=12'}
+ chai@4.5.0:
+ resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
+ engines: {node: '>=4'}
+
+ chai@5.2.1:
+ resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==}
+ engines: {node: '>=18'}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -5230,6 +4591,9 @@ packages:
character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
+ check-error@1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+
check-error@2.1.1:
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
engines: {node: '>= 16'}
@@ -5238,8 +4602,8 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chokidar@4.0.1:
- resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
chrome-trace-event@1.0.4:
@@ -5250,11 +4614,12 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- cipher-base@1.0.4:
- resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
+ cipher-base@1.0.6:
+ resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==}
+ engines: {node: '>= 0.10'}
- cjs-module-lexer@1.4.1:
- resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
+ cjs-module-lexer@1.4.3:
+ resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
classnames@2.2.6:
resolution: {integrity: sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==}
@@ -5262,6 +4627,9 @@ packages:
classnames@2.3.1:
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
+ classnames@2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+
clean-css@4.2.4:
resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
engines: {node: '>= 4.0'}
@@ -5336,6 +4704,10 @@ packages:
resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==}
engines: {node: '>= 6'}
+ comment-json@4.2.5:
+ resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
+ engines: {node: '>= 6'}
+
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
@@ -5349,8 +4721,8 @@ packages:
peerDependencies:
webpack: ^5.1.0
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ compression@1.8.0:
+ resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==}
engines: {node: '>= 0.8.0'}
concat-map@0.0.1:
@@ -5396,14 +4768,14 @@ packages:
copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
- core-js-compat@3.38.1:
- resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
+ core-js-compat@3.44.0:
+ resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==}
- core-js-pure@3.38.1:
- resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
+ core-js-pure@3.44.0:
+ resolution: {integrity: sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==}
- core-js@3.38.1:
- resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
+ core-js@3.44.0:
+ resolution: {integrity: sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -5428,6 +4800,9 @@ packages:
create-ecdh@4.0.4:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+ create-hash@1.1.3:
+ resolution: {integrity: sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==}
+
create-hash@1.2.0:
resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
@@ -5439,11 +4814,11 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
- cross-fetch@3.1.8:
- resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
+ cross-fetch@3.2.0:
+ resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
- cross-spawn@7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
crypto-browserify@3.12.0:
@@ -5541,8 +4916,8 @@ packages:
css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
- css-select@5.1.0:
- resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ css-select@5.2.2:
+ resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
css-tree@2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
@@ -5552,8 +4927,8 @@ packages:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- css-what@6.1.0:
- resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ css-what@6.2.2:
+ resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
css.escape@1.5.1:
@@ -5599,8 +4974,8 @@ packages:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
- cssstyle@4.1.0:
- resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==}
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
engines: {node: '>=18'}
csstype@3.1.3:
@@ -5621,16 +4996,16 @@ packages:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- data-view-buffer@1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ data-view-buffer@1.0.2:
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
- data-view-byte-length@1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ data-view-byte-length@1.0.2:
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
- data-view-byte-offset@1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ data-view-byte-offset@1.0.1:
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
date-format@4.0.3:
@@ -5656,8 +5031,8 @@ packages:
supports-color:
optional: true
- debug@4.3.7:
- resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ debug@4.4.1:
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -5673,8 +5048,8 @@ packages:
resolution: {integrity: sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==}
engines: {node: '>=4'}
- decimal.js@10.4.3:
- resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
@@ -5683,14 +5058,18 @@ packages:
dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- dedent@1.5.3:
- resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
+ dedent@1.6.0:
+ resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
babel-plugin-macros:
optional: true
+ deep-eql@4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
+ engines: {node: '>=6'}
+
deep-eql@5.0.2:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
@@ -5756,6 +5135,10 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
+ detect-libc@2.0.4:
+ resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
+ engines: {node: '>=8'}
+
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -5829,12 +5212,16 @@ packages:
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- domutils@3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ domutils@3.2.2:
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -5844,11 +5231,11 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.41:
- resolution: {integrity: sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==}
+ electron-to-chromium@1.5.183:
+ resolution: {integrity: sha512-vCrDBYjQCAEefWGjlK3EpoSKfKbT10pR4XXPdn65q7snuNOZnthoVpBfZPykmDapOKfoD+MMIPG8ZjKyyc9oHA==}
- elliptic@6.5.7:
- resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==}
+ elliptic@6.6.1:
+ resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -5872,11 +5259,11 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ end-of-stream@1.4.5:
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
- enhanced-resolve@5.17.1:
- resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ enhanced-resolve@5.18.2:
+ resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==}
engines: {node: '>=10.13.0'}
entities@2.2.0:
@@ -5886,6 +5273,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
errno@0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
@@ -5896,12 +5287,12 @@ packages:
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- es-abstract@1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ es-abstract@1.24.0:
+ resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
engines: {node: '>= 0.4'}
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
es-errors@1.3.0:
@@ -5911,26 +5302,27 @@ packages:
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-iterator-helpers@1.1.0:
- resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
+ es-iterator-helpers@1.2.1:
+ resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.5.4:
- resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
- es-object-atoms@1.0.0:
- resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ es-object-atoms@1.1.1:
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ es-set-tostringtag@2.1.0:
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.0.2:
- resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ es-shim-unscopables@1.1.0:
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
+ engines: {node: '>= 0.4'}
- es-to-primitive@1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ es-to-primitive@1.3.0:
+ resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
es5-ext@0.10.64:
@@ -6111,26 +5503,11 @@ packages:
eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
eslint-plugin-import: ^2.21.2
- eslint-config-airbnb-base@15.0.0:
- resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.2
-
eslint-config-airbnb-typescript@12.0.0:
resolution: {integrity: sha512-TUCVru1Z09eKnVAX5i3XoNzjcCOU3nDQz2/jQGkg1jVYm+25fKClveziSl16celfCq+npU0MBPW/ZnXdGFZ9lw==}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^4.4.1
- eslint-config-airbnb-typescript@17.1.0:
- resolution: {integrity: sha512-GPxI5URre6dDpJ0CtcthSZVBAfI+Uw7un5OYNVxP2EYi3H81Jw701yFP7AU+/vCE7xBtFmjge7kfhhk4+RAiig==}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.13.0 || ^6.0.0
- '@typescript-eslint/parser': ^5.0.0 || ^6.0.0
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.3
-
eslint-config-airbnb@18.2.0:
resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==}
engines: {node: '>= 6'}
@@ -6147,12 +5524,6 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-config-prettier@9.1.0:
- resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
-
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
@@ -6162,8 +5533,8 @@ packages:
peerDependencies:
eslint: '>=5.0.0'
- eslint-module-utils@2.12.0:
- resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
+ eslint-module-utils@2.12.1:
+ resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -6244,12 +5615,6 @@ packages:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-utils@3.0.0:
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
-
eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
@@ -6329,12 +5694,16 @@ packages:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
+ expect-type@1.2.2:
+ resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
+ engines: {node: '>=12.0.0'}
+
expect@29.7.0:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- express@4.21.1:
- resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
+ express@4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
ext@1.7.0:
@@ -6350,8 +5719,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-glob@3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
@@ -6363,11 +5732,11 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- fast-uri@3.0.3:
- resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
+ fast-uri@3.0.6:
+ resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
- fastq@1.17.1:
- resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ fastq@1.19.1:
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
fault@1.0.4:
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
@@ -6379,6 +5748,14 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -6425,8 +5802,8 @@ packages:
flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
@@ -6437,11 +5814,12 @@ packages:
debug:
optional: true
- for-each@0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ for-each@0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
fork-ts-checker-webpack-plugin@6.5.3:
@@ -6458,12 +5836,12 @@ packages:
vue-template-compiler:
optional: true
- form-data@3.0.2:
- resolution: {integrity: sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==}
+ form-data@3.0.3:
+ resolution: {integrity: sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==}
engines: {node: '>= 6'}
- form-data@4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ form-data@4.0.3:
+ resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -6489,8 +5867,8 @@ packages:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
- fs-extra@11.2.0:
- resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ fs-extra@11.3.0:
+ resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
engines: {node: '>=14.14'}
fs-extra@9.1.0:
@@ -6511,8 +5889,8 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ function.prototype.name@1.1.8:
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
@@ -6526,14 +5904,21 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
+
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
+
get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -6542,15 +5927,15 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- get-symbol-description@1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ get-symbol-description@1.1.0:
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
get-tsconfig@4.2.0:
resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==}
- get-xpath@3.2.0:
- resolution: {integrity: sha512-9pzw5Zkr0mAM/P5PRwUQMrz1319LA/7/JnFI3Z3WzL2l6/2hpOLMHRoj/om8e9wKySK9NzpM3SFkm/hdbboZoQ==}
+ get-xpath@3.3.0:
+ resolution: {integrity: sha512-AKbHVEHSlSDS9AJDmjfSxV010xSVRFzkS4UkGCb8CaGvorp83GCuKwcmzF/64CVp3M5wjgy9tc6y1uR2V+c5Xw==}
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
@@ -6579,10 +5964,6 @@ packages:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
- globals@11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
- engines: {node: '>=4'}
-
globals@13.24.0:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
@@ -6595,8 +5976,9 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -6619,8 +6001,8 @@ packages:
resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==}
engines: {node: '>= 10.x'}
- graphql@16.9.0:
- resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==}
+ graphql@16.11.0:
+ resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
gzip-size@6.0.0:
@@ -6633,8 +6015,9 @@ packages:
harmony-reflect@1.6.2:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
- has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-bigints@1.1.0:
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+ engines: {node: '>= 0.4'}
has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -6651,21 +6034,24 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ has-proto@1.2.0:
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- hash-base@3.0.4:
- resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
- engines: {node: '>=4'}
+ hash-base@2.0.2:
+ resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==}
+
+ hash-base@3.0.5:
+ resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==}
+ engines: {node: '>= 0.10'}
hash-base@3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
@@ -6726,8 +6112,8 @@ packages:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
- html-entities@2.5.2:
- resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
+ html-entities@2.6.0:
+ resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==}
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
@@ -6745,14 +6131,21 @@ packages:
html-void-elements@1.0.5:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
+ html-webpack-inject-plugin@5.3.1:
+ resolution: {integrity: sha512-0UKpYq1n9EW3Kex61bj5tba6arc9GqhEuSvoRFV5joIJqY2aIiO/ooeFb2fOZQnO4ZQMVkjfT3NIb7g/xwfD9Q==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ html-webpack-plugin: ^5.3.1
+ webpack: ^5.26.3
+
html-webpack-plugin@5.3.2:
resolution: {integrity: sha512-HvB33boVNCz2lTyBsSiMffsJ+m0YLIQ+pskblXgN9fnjS1BgEcuAfdInfXfGrkdXV406k9FiDi86eVCDBgJOyQ==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.20.0
- html-webpack-plugin@5.6.2:
- resolution: {integrity: sha512-q7xp/FO9RGBVoTKNItkdX1jKLscLFkgn/dLVFNYbHVbfHLBk6DYW5nsQ8kCzIWcgKP/kUBocetjvav6lD8YfCQ==}
+ html-webpack-plugin@5.6.3:
+ resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==}
engines: {node: '>=10.13.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -6777,8 +6170,8 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-parser-js@0.5.8:
- resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
+ http-parser-js@0.5.10:
+ resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==}
http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
@@ -6788,8 +6181,8 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- http-proxy-middleware@2.0.7:
- resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
+ http-proxy-middleware@2.0.9:
+ resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/express': ^4.17.13
@@ -6808,8 +6201,8 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
- https-proxy-agent@7.0.5:
- resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
human-signals@2.1.0:
@@ -6860,8 +6253,11 @@ packages:
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ immutable@5.1.3:
+ resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==}
+
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
import-local@3.2.0:
@@ -6893,8 +6289,8 @@ packages:
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- internal-slot@1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ internal-slot@1.1.0:
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
ipaddr.js@1.9.1:
@@ -6915,30 +6311,31 @@ packages:
is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ is-arguments@1.2.0:
+ resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
engines: {node: '>= 0.4'}
- is-array-buffer@3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ is-array-buffer@3.0.5:
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-async-function@2.0.0:
- resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ is-async-function@2.1.1:
+ resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
- is-bigint@1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ is-bigint@1.1.0:
+ resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
+ engines: {node: '>= 0.4'}
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ is-boolean-object@1.2.2:
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
is-buffer@2.0.5:
@@ -6949,16 +6346,16 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.15.1:
- resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ is-data-view@1.0.2:
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
- is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ is-date-object@1.1.0:
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
is-decimal@1.0.4:
@@ -6973,8 +6370,9 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.0.2:
- resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ is-finalizationregistry@1.1.1:
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
+ engines: {node: '>= 0.4'}
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
@@ -6984,8 +6382,8 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- is-generator-function@1.0.10:
- resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ is-generator-function@1.1.0:
+ resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -7007,8 +6405,8 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ is-number-object@1.1.1:
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -7037,8 +6435,8 @@ packages:
is-promise@2.2.2:
resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
- is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
is-root@2.1.0:
@@ -7049,8 +6447,8 @@ packages:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ is-shared-array-buffer@1.0.4:
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
is-stream@2.0.1:
@@ -7061,27 +6459,28 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ is-string@1.1.1:
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
- is-symbol@1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ is-symbol@1.1.1:
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
- is-typed-array@1.1.13:
- resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakref@1.1.1:
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
+ engines: {node: '>= 0.4'}
- is-weakset@2.0.3:
- resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ is-weakset@2.0.4:
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
is-what@3.14.1:
@@ -7142,8 +6541,8 @@ packages:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
- iterator.prototype@1.1.3:
- resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ iterator.prototype@1.1.5:
+ resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
jackspeak@3.4.3:
@@ -7306,6 +6705,9 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -7337,6 +6739,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -7394,8 +6801,8 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- launch-editor@2.9.1:
- resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
+ launch-editor@2.10.0:
+ resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
less-loader@11.1.0:
resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
@@ -7404,9 +6811,9 @@ packages:
less: ^3.5.0 || ^4.0.0
webpack: ^5.0.0
- less@4.2.0:
- resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
- engines: {node: '>=6'}
+ less@4.3.0:
+ resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
+ engines: {node: '>=14'}
hasBin: true
leven@2.1.0:
@@ -7421,72 +6828,72 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lightningcss-darwin-arm64@1.27.0:
- resolution: {integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==}
+ lightningcss-darwin-arm64@1.30.1:
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.27.0:
- resolution: {integrity: sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==}
+ lightningcss-darwin-x64@1.30.1:
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.27.0:
- resolution: {integrity: sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==}
+ lightningcss-freebsd-x64@1.30.1:
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.27.0:
- resolution: {integrity: sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==}
+ lightningcss-linux-arm-gnueabihf@1.30.1:
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.27.0:
- resolution: {integrity: sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==}
+ lightningcss-linux-arm64-gnu@1.30.1:
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.27.0:
- resolution: {integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==}
+ lightningcss-linux-arm64-musl@1.30.1:
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.27.0:
- resolution: {integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==}
+ lightningcss-linux-x64-gnu@1.30.1:
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.27.0:
- resolution: {integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==}
+ lightningcss-linux-x64-musl@1.30.1:
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-win32-arm64-msvc@1.27.0:
- resolution: {integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==}
+ lightningcss-win32-arm64-msvc@1.30.1:
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.27.0:
- resolution: {integrity: sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==}
+ lightningcss-win32-x64-msvc@1.30.1:
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.27.0:
- resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==}
+ lightningcss@1.30.1:
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
engines: {node: '>= 12.0.0'}
- lilconfig@3.1.2:
- resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
+ lilconfig@3.1.3:
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -7504,6 +6911,10 @@ packages:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
+ local-pkg@0.5.1:
+ resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
+ engines: {node: '>=14'}
+
locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -7544,8 +6955,11 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.1.2:
- resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
+ loupe@2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+
+ loupe@3.1.4:
+ resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -7570,8 +6984,8 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.12:
- resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
+ magic-string@0.30.17:
+ resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -7597,6 +7011,10 @@ packages:
markdown-table@2.0.0:
resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
@@ -7677,8 +7095,8 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- mime-db@1.53.0:
- resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ mime-db@1.54.0:
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
engines: {node: '>= 0.6'}
mime-types@2.1.35:
@@ -7702,8 +7120,8 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.9.1:
- resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==}
+ mini-css-extract-plugin@2.9.2:
+ resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -7736,8 +7154,8 @@ packages:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- mlly@1.7.2:
- resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
+ mlly@1.7.4:
+ resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
mri@1.1.4:
resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==}
@@ -7756,8 +7174,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.11:
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -7773,6 +7191,10 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@0.6.4:
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -7807,8 +7229,8 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-releases@2.0.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
node-source-walk@5.0.2:
resolution: {integrity: sha512-Y4jr/8SRS5hzEdZ7SGuvZGwfORvNsSsNRwDXx5WisiqzsVfeftDvRgfeqWNgZvWSJbgubTRVRYBzK6UO+ErqjA==}
@@ -7833,8 +7255,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nwsapi@2.2.13:
- resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
+ nwsapi@2.2.20:
+ resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==}
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -7844,8 +7266,8 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.2:
- resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
object-is@1.1.6:
@@ -7856,12 +7278,12 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
- object.entries@1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ object.entries@1.1.9:
+ resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
engines: {node: '>= 0.4'}
object.fromentries@2.0.8:
@@ -7876,8 +7298,8 @@ packages:
resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
engines: {node: '>= 0.4'}
- object.values@1.2.0:
- resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
+ object.values@1.2.1:
+ resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
engines: {node: '>= 0.4'}
obuf@1.1.2:
@@ -7906,8 +7328,8 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- optimism@0.18.0:
- resolution: {integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==}
+ optimism@0.18.1:
+ resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==}
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
@@ -7919,6 +7341,10 @@ packages:
outdent@0.8.0:
resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
+ own-keys@1.0.1:
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+ engines: {node: '>= 0.4'}
+
p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -7927,6 +7353,10 @@ packages:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
+ p-limit@5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
+
p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
@@ -7985,8 +7415,8 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- parse5@7.2.0:
- resolution: {integrity: sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -8025,8 +7455,8 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.10:
- resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
+ path-to-regexp@0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -8035,12 +7465,18 @@ packages:
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- pathval@2.0.0:
- resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
+ pathval@1.1.1:
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
engines: {node: '>= 14.16'}
- pbkdf2@3.1.2:
- resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
+ pbkdf2@3.1.3:
+ resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==}
engines: {node: '>=0.12'}
performance-now@2.1.0:
@@ -8053,6 +7489,10 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -8061,23 +7501,23 @@ packages:
resolution: {integrity: sha512-TtIzAq3JrPT4cYMZcXHypAXYV+MTE7ncAPUFoaz/1enVD2Loj+hV6RZsypYo85dm7SbBolW6fcIydOF28iGjsg==}
hasBin: true
- pirates@4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ pirates@4.0.7:
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
- pkg-types@1.2.1:
- resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
+ pkg-types@1.3.1:
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
- possible-typed-array-names@1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ possible-typed-array-names@1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
postcss-attribute-case-insensitive@5.0.2:
@@ -8301,14 +7741,14 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-modules-local-by-default@4.0.5:
- resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ postcss-modules-local-by-default@4.2.0:
+ resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.2.0:
- resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ postcss-modules-scope@3.2.1:
+ resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -8454,6 +7894,10 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
+ postcss-selector-parser@7.1.0:
+ resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
+ engines: {node: '>=4'}
+
postcss-svgo@6.0.3:
resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==}
engines: {node: ^14 || ^16 || >= 18}
@@ -8473,19 +7917,14 @@ packages:
resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.47:
- resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier@2.8.8:
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
- engines: {node: '>=10.13.0'}
- hasBin: true
-
prettier@3.3.3:
resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
@@ -8514,8 +7953,8 @@ packages:
resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
engines: {node: '>=6'}
- prismjs@1.29.0:
- resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
+ prismjs@1.30.0:
+ resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
engines: {node: '>=6'}
process-nextick-args@2.0.1:
@@ -8545,14 +7984,14 @@ packages:
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
- psl@1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ psl@1.15.0:
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
public-encrypt@4.0.3:
resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+ pump@3.0.3:
+ resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
@@ -8572,6 +8011,10 @@ packages:
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
+ qs@6.14.0:
+ resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+ engines: {node: '>=0.6'}
+
query-string@7.0.0:
resolution: {integrity: sha512-Iy7moLybliR5ZgrK/1R3vjrXq03S13Vz4Rbm5Jg3EFq1LUmQppto0qtXz4vqZ386MSRjZgnTSZ9QC+NZOSd/XA==}
engines: {node: '>=6'}
@@ -8617,11 +8060,6 @@ packages:
typescript:
optional: true
- react-dom@18.2.0:
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
- peerDependencies:
- react: ^18.2.0
-
react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
@@ -8638,12 +8076,12 @@ packages:
peerDependencies:
react: '>=16.13.1'
- react-error-overlay@6.0.11:
- resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
-
react-error-overlay@6.0.9:
resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
+ react-error-overlay@6.1.0:
+ resolution: {integrity: sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==}
+
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
@@ -8672,19 +8110,19 @@ packages:
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
- react-refresh@0.14.2:
- resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ react-refresh@0.17.0:
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
engines: {node: '>=0.10.0'}
- react-router-dom@6.27.0:
- resolution: {integrity: sha512-+bvtFWMC0DgAFrfKXKG9Fc+BcXWRUO1aJIihbB79xaeq0v5UzfvnM5houGUm1Y461WVRcgAQ+Clh5rdb1eCx4g==}
+ react-router-dom@6.30.1:
+ resolution: {integrity: sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
- react-router@6.27.0:
- resolution: {integrity: sha512-YA+HGZXz4jaAkVoYBE98VQl+nVzI+cVI2Oj/06F5ZM+0u3TgedN9Y9kmMRo2mnkSK2nCpNQn0DVob4HCsY/WLw==}
+ react-router@6.30.1:
+ resolution: {integrity: sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
@@ -8711,10 +8149,6 @@ packages:
react: ^16.8.x
typescript: ^3.5.2
- react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
- engines: {node: '>=0.10.0'}
-
react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
@@ -8734,9 +8168,9 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.0.2:
- resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
- engines: {node: '>= 14.16.0'}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
recursive-readdir@2.2.3:
resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
@@ -8746,8 +8180,8 @@ packages:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
- reflect.getprototypeof@1.0.6:
- resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
+ reflect.getprototypeof@1.0.10:
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
refractor@3.6.0:
@@ -8763,28 +8197,22 @@ packages:
regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
- regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
-
- regex-parser@2.3.0:
- resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
+ regex-parser@2.3.1:
+ resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
- regexp.prototype.flags@1.5.3:
- resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
+ regexp.prototype.flags@1.5.4:
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpu-core@6.1.1:
- resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.11.1:
- resolution: {integrity: sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==}
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
rehackt@0.1.0:
@@ -8878,28 +8306,25 @@ packages:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
engines: {node: '>=12'}
- resolve.exports@2.0.2:
- resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
+ resolve.exports@2.0.3:
+ resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
hasBin: true
resolve@2.0.0-next.5:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- response-iterator@0.2.6:
- resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==}
- engines: {node: '>=0.8'}
-
retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@3.0.2:
@@ -8907,6 +8332,9 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
+ ripemd160@2.0.1:
+ resolution: {integrity: sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==}
+
ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
@@ -8915,19 +8343,17 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.24.0:
- resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
rrweb-cssom@0.7.1:
resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
+ rrweb-cssom@0.8.0:
+ resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- safe-array-concat@1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ safe-array-concat@1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
@@ -8936,8 +8362,12 @@ packages:
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-regex-test@1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ safe-push-apply@1.0.0:
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
+ engines: {node: '>= 0.4'}
+
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
safer-buffer@2.1.2:
@@ -8970,8 +8400,8 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- sass@1.80.2:
- resolution: {integrity: sha512-9wXY8cGBlUmoUoT+vwOZOFCiS+naiWVjqlreN9ar9PudXbGwlMTFwCR5K9kB4dFumJ6ib98wZyAObJKsWf1nAA==}
+ sass@1.89.2:
+ resolution: {integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8996,9 +8426,9 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.2.0:
- resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
- engines: {node: '>= 12.13.0'}
+ schema-utils@4.3.2:
+ resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
+ engines: {node: '>= 10.13.0'}
select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
@@ -9015,18 +8445,18 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.3.4:
- resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==}
+ semver@7.5.2:
+ resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
engines: {node: '>=10'}
hasBin: true
- semver@7.5.2:
- resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
engines: {node: '>=10'}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
@@ -9053,6 +8483,10 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ set-proto@1.0.0:
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+ engines: {node: '>= 0.4'}
+
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -9062,8 +8496,9 @@ packages:
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- sha.js@2.4.11:
- resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
+ sha.js@2.4.12:
+ resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==}
+ engines: {node: '>= 0.10'}
hasBin: true
shallow-clone@3.0.1:
@@ -9078,11 +8513,24 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ shell-quote@1.8.3:
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
- side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
siginfo@2.0.0:
@@ -9177,11 +8625,11 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.7.0:
- resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ std-env@3.9.0:
+ resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ stop-iteration-iterator@1.1.0:
+ resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
stream-browserify@3.0.0:
@@ -9206,16 +8654,17 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.matchall@4.0.11:
- resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ string.prototype.matchall@4.0.12:
+ resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
- string.prototype.trim@1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ string.prototype.trim@1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+ string.prototype.trimend@1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+ engines: {node: '>= 0.4'}
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
@@ -9270,7 +8719,13 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- style-loader@3.3.1:
+ strip-literal@2.1.1:
+ resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
+
+ strip-literal@3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+
+ style-loader@3.3.1:
resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -9334,8 +8789,8 @@ packages:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ tapable@2.2.2:
+ resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
engines: {node: '>=6'}
terser-webpack-plugin@5.2.0:
@@ -9354,8 +8809,8 @@ packages:
uglify-js:
optional: true
- terser-webpack-plugin@5.3.10:
- resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ terser-webpack-plugin@5.3.14:
+ resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -9375,8 +8830,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- terser@5.36.0:
- resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
+ terser@5.43.1:
+ resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
engines: {node: '>=10'}
hasBin: true
@@ -9412,19 +8867,35 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinyexec@0.3.1:
- resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
+ tinyexec@0.3.2:
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ engines: {node: '>=12.0.0'}
+
+ tinypool@0.8.4:
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+ engines: {node: '>=14.0.0'}
- tinypool@1.0.1:
- resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==}
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@1.2.0:
resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyrainbow@2.0.0:
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
+ engines: {node: '>=14.0.0'}
+
+ tinyspy@2.2.1:
+ resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ engines: {node: '>=14.0.0'}
+
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
tippy.js@6.3.7:
@@ -9433,9 +8904,9 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
+ to-buffer@1.2.1:
+ resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==}
+ engines: {node: '>= 0.4'}
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
@@ -9459,8 +8930,8 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
- tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
trim-trailing-lines@1.1.4:
@@ -9473,8 +8944,8 @@ packages:
trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ ts-api-utils@1.4.3:
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -9492,8 +8963,8 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.8.0:
- resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -9512,6 +8983,10 @@ packages:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
+ type-detect@4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
+ engines: {node: '>=4'}
+
type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
@@ -9527,20 +9002,20 @@ packages:
type@2.7.3:
resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
- typed-array-buffer@1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ typed-array-byte-length@1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ typed-array-byte-offset@1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ typed-array-length@1.0.7:
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
typescript@5.5.3:
@@ -9548,11 +9023,22 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.5.4:
- resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+ typescript@5.7.2:
+ resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ ufo@1.6.1:
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
- unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ unbox-primitive@1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
@@ -9603,6 +9089,9 @@ packages:
unist-util-remove@2.0.1:
resolution: {integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==}
+ unist-util-remove@2.1.0:
+ resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
+
unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
@@ -9624,8 +9113,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- update-browserslist-db@1.1.1:
- resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
+ update-browserslist-db@1.1.3:
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -9672,11 +9161,11 @@ packages:
peerDependencies:
react: '>= 16.8.0'
- use-isomorphic-layout-effect@1.1.2:
- resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
+ use-isomorphic-layout-effect@1.2.1:
+ resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==}
peerDependencies:
'@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -9722,18 +9211,18 @@ packages:
vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
- vite-node@2.0.5:
- resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
+ vite-node@1.3.1:
+ resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-node@2.1.3:
- resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite@5.4.9:
- resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==}
+ vite@5.4.19:
+ resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -9763,15 +9252,15 @@ packages:
terser:
optional: true
- vitest@2.0.5:
- resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
+ vitest@1.3.1:
+ resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.0.5
- '@vitest/ui': 2.0.5
+ '@vitest/browser': 1.3.1
+ '@vitest/ui': 1.3.1
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -9788,20 +9277,23 @@ packages:
jsdom:
optional: true
- vitest@2.1.3:
- resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.3
- '@vitest/ui': 2.1.3
+ '@types/debug': ^4.1.12
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
+ '@types/debug':
+ optional: true
'@types/node':
optional: true
'@vitest/browser':
@@ -9827,8 +9319,8 @@ packages:
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ watchpack@2.4.4:
+ resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
engines: {node: '>=10.13.0'}
wbuf@1.7.3:
@@ -9867,22 +9359,12 @@ packages:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
-
- webpack@5.84.1:
- resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==}
+ webpack-sources@3.3.3:
+ resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- webpack@5.95.0:
- resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==}
+ webpack@5.100.2:
+ resolution: {integrity: sha512-QaNKAvGCDRh3wW1dsDjeMdDXwZm2vqq3zn6Pvq4rHOEOGSaUMgOOjG2Y9ZbIGzpfkJk9ZYTHpDqgDfeBDcnLaw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -9932,26 +9414,27 @@ packages:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
- whatwg-url@14.0.0:
- resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- which-boxed-primitive@1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ which-boxed-primitive@1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+ engines: {node: '>= 0.4'}
- which-builtin-type@1.1.4:
- resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
+ which-builtin-type@1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.15:
- resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ which-typed-array@1.1.19:
+ resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -9990,8 +9473,8 @@ packages:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- ws@8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ ws@8.18.3:
+ resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -10050,6 +9533,10 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+ yocto-queue@1.2.1:
+ resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
+ engines: {node: '>=12.20'}
+
zen-observable-ts@1.2.5:
resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==}
@@ -10059,77 +9546,39 @@ packages:
zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
+bit:
+ depsRequiringBuild:
+ - '@parcel/watcher@2.5.1'
+ - core-js-pure@3.44.0
+ - core-js@3.44.0
+ - es5-ext@0.10.64
+ - esbuild@0.14.29
+ - esbuild@0.21.5
+
snapshots:
- '@adobe/css-tools@4.4.0': {}
+ '@adobe/css-tools@4.4.3': {}
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
-
- '@apollo/client@3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
- '@wry/caches': 1.0.1
- '@wry/equality': 0.5.7
- '@wry/trie': 0.5.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- hoist-non-react-statics: 3.3.2
- optimism: 0.18.0
- prop-types: 15.8.1
- rehackt: 0.1.0(@types/react@18.3.0)(react@18.3.1)
- response-iterator: 0.2.6
- symbol-observable: 4.0.0
- ts-invariant: 0.10.3
- tslib: 2.8.0
- zen-observable-ts: 1.2.5
- optionalDependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
-
- '@apollo/client@3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@18.3.1)':
- dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
- '@wry/caches': 1.0.1
- '@wry/equality': 0.5.7
- '@wry/trie': 0.5.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- hoist-non-react-statics: 3.3.2
- optimism: 0.18.0
- prop-types: 15.8.1
- rehackt: 0.1.0(@types/react@18.3.0)(react@18.3.1)
- response-iterator: 0.2.6
- symbol-observable: 4.0.0
- ts-invariant: 0.10.3
- tslib: 2.8.0
- zen-observable-ts: 1.2.5
- optionalDependencies:
- react: 18.3.1
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
- '@apollo/client@3.11.8(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@apollo/client@3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0)
'@wry/caches': 1.0.1
'@wry/equality': 0.5.7
'@wry/trie': 0.5.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
+ graphql: 16.11.0
+ graphql-tag: 2.12.6(graphql@16.11.0)
hoist-non-react-statics: 3.3.2
- optimism: 0.18.0
+ optimism: 0.18.1
prop-types: 15.8.1
rehackt: 0.1.0(@types/react@19.0.2)(react@19.0.0)
- response-iterator: 0.2.6
symbol-observable: 4.0.0
ts-invariant: 0.10.3
- tslib: 2.8.0
+ tslib: 2.8.1
zen-observable-ts: 1.2.5
optionalDependencies:
react: 19.0.0
@@ -10137,37 +9586,38 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@babel/code-frame@7.25.7':
+ '@asamuzakjp/css-color@3.2.0':
dependencies:
- '@babel/highlight': 7.25.7
- picocolors: 1.1.1
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ lru-cache: 10.4.3
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.25.8': {}
-
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.28.0': {}
'@babel/core@7.11.6':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.11.6)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.11.6)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
convert-source-map: 1.9.0
- debug: 4.3.7
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
lodash: 4.17.21
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
source-map: 0.5.7
transitivePeerDependencies:
@@ -10175,387 +9625,318 @@ snapshots:
'@babel/core@7.12.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.12.9)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
convert-source-map: 1.9.0
- debug: 4.3.7
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
lodash: 4.17.21
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
- '@babel/core@7.19.6':
+ '@babel/core@7.26.9':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.19.6)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
- convert-source-map: 1.9.0
- debug: 4.3.7
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
+ convert-source-map: 2.0.0
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.26.9':
+ '@babel/core@7.28.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.25.7':
- dependencies:
- '@babel/types': 7.25.8
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.0.2
-
- '@babel/generator@7.27.0':
- dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.0.2
-
- '@babel/helper-annotate-as-pure@7.25.7':
- dependencies:
- '@babel/types': 7.25.8
-
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
+ '@babel/generator@7.28.0':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
+ jsesc: 3.1.0
- '@babel/helper-compilation-targets@7.25.7':
+ '@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/helper-validator-option': 7.25.7
- browserslist: 4.24.0
- lru-cache: 5.1.1
- semver: 6.3.1
+ '@babel/types': 7.28.1
- '@babel/helper-compilation-targets@7.27.0':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.0
+ '@babel/compat-data': 7.28.0
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.25.1
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.26.9)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.26.9)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- regexpu-core: 6.1.1
+ '@babel/helper-annotate-as-pure': 7.27.3
+ regexpu-core: 6.2.0
semver: 6.3.1
'@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
'@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.9)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.3.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-globals@7.28.0': {}
- '@babel/helper-module-imports@7.25.7':
+ '@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.11.6)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.11.6)':
dependencies:
'@babel/core': 7.11.6
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.12.9)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.19.6)':
- dependencies:
- '@babel/core': 7.19.6
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.26.9)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.28.0
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.7':
+ '@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.28.1
'@babel/helper-plugin-utils@7.10.4': {}
- '@babel/helper-plugin-utils@7.25.7': {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.26.9)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-wrap-function': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.26.9)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-simple-access@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.25.8
-
- '@babel/helper-string-parser@7.25.7': {}
+ '@babel/types': 7.28.1
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.7': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-validator-option@7.25.7': {}
-
- '@babel/helper-validator-option@7.25.9': {}
-
- '@babel/helper-wrap-function@7.25.7':
+ '@babel/helper-wrap-function@7.27.1':
dependencies:
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.25.7':
- dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
-
- '@babel/helpers@7.27.0':
+ '@babel/helpers@7.27.6':
dependencies:
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.1
- '@babel/highlight@7.25.7':
+ '@babel/parser@7.28.0':
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
- '@babel/parser@7.25.8':
- dependencies:
- '@babel/types': 7.25.8
-
- '@babel/parser@7.27.0':
- dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.28.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9)
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.6)':
dependencies:
'@babel/core': 7.11.6
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.11.6)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.11.6)
'@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9)
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)':
dependencies:
@@ -10564,550 +9945,566 @@ snapshots:
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx@7.10.4(@babel/core@7.11.6)':
dependencies:
'@babel/core': 7.11.6
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.6)':
dependencies:
'@babel/core': 7.11.6
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.9)
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-classes@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.9)
- '@babel/traverse': 7.25.7
- globals: 11.12.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-globals': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.9)':
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.26.9)':
dependencies:
- '@babel/compat-data': 7.25.8
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9)
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.11.6)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.11.6)':
dependencies:
'@babel/core': 7.11.6
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.12.9)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-constant-elements@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/types': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.26.9)':
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- regenerator-transform: 0.15.2
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/preset-env@7.22.15(@babel/core@7.26.9)':
dependencies:
- '@babel/compat-data': 7.25.8
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
@@ -11119,81 +10516,81 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-async-generator-functions': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-static-block': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dynamic-import': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-export-namespace-from': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-json-strings': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-numeric-separator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-catch-binding': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- '@babel/types': 7.25.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.9)
+ '@babel/types': 7.28.1
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9)
babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.9)
babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.26.9)
- core-js-compat: 3.38.1
+ core-js-compat: 3.44.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/preset-env@7.23.2(@babel/core@7.26.9)':
dependencies:
- '@babel/compat-data': 7.25.8
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
@@ -11205,134 +10602,136 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-async-generator-functions': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-static-block': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dynamic-import': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-export-namespace-from': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-json-strings': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-numeric-separator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-catch-binding': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- '@babel/types': 7.25.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.9)
+ '@babel/types': 7.28.1
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9)
babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.9)
babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.26.9)
- core-js-compat: 3.38.1
+ core-js-compat: 3.44.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.25.8(@babel/core@7.26.9)':
+ '@babel/preset-env@7.28.0(@babel/core@7.26.9)':
dependencies:
- '@babel/compat-data': 7.25.8
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-async-generator-functions': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-static-block': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dynamic-import': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-export-namespace-from': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-json-strings': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-numeric-separator': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-catch-binding': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.9)
- core-js-compat: 3.38.1
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.26.9)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.9)
+ core-js-compat: 3.44.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -11340,53 +10739,53 @@ snapshots:
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.28.1
esutils: 2.0.3
'@babel/preset-react@7.22.15(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/preset-react@7.25.7(@babel/core@7.26.9)':
+ '@babel/preset-react@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
'@babel/preset-typescript@7.22.15(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.25.7(@babel/core@7.26.9)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
@@ -11394,1504 +10793,425 @@ snapshots:
dependencies:
regenerator-runtime: 0.13.11
- '@babel/runtime@7.25.7':
- dependencies:
- regenerator-runtime: 0.14.1
-
- '@babel/template@7.25.7':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
-
- '@babel/template@7.27.0':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/runtime@7.27.6': {}
- '@babel/traverse@7.25.7':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
- debug: 4.3.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
- '@babel/traverse@7.27.0':
+ '@babel/traverse@7.28.0':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
- debug: 4.3.7
- globals: 11.12.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.1
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
- '@babel/types@7.22.3':
- dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.25.8':
+ '@babel/types@7.28.1':
dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.27.0':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
'@bcoe/v8-coverage@0.2.3': {}
- '@bit-tasks/test-scope.apps.my-app@file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@bitdev/general.envs.bit-env@3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.ui.hello-world': file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/react.app-types.vite-react': 2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ '@babel/runtime': 7.20.0
+ '@bitdev/react.eslint.eslint-config-bit-react': 1.1.14(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2)
'@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitejs/plugin-react': 4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/preview.react-preview': 1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)
+ '@teambit/react.react-env': 1.0.131(@babel/core@7.26.9)(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.7.2)
+ '@vitest/coverage-v8': 2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ core-js: 3.44.0
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.7.2)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ typescript: 5.7.2
+ vitest: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/traverse'
- '@edge-runtime/vm'
+ - '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
+ - '@swc/css'
+ - '@testing-library/react'
+ - '@types/node'
+ - '@types/react'
+ - '@types/react-dom'
+ - '@types/webpack'
- '@vitest/browser'
- '@vitest/ui'
+ - babel-plugin-macros
- bufferutil
- canvas
+ - clean-css
+ - csso
+ - debug
+ - encoding
- esbuild
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- - graphql-ws
+ - fibers
+ - graphql
- happy-dom
+ - html-webpack-plugin
- jest
+ - jsdom
- less
- lightningcss
+ - node-notifier
+ - node-sass
+ - react-test-renderer
+ - sass
- sass-embedded
+ - sockjs-client
- stylus
- - subscriptions-transport-ws
- sugarss
- supports-color
- terser
- - typescript
+ - ts-node
+ - type-fest
- uglify-js
- utf-8-validate
+ - vue-template-compiler
- webpack-cli
+ - webpack-dev-server
+ - webpack-hot-middleware
+ - webpack-plugin-serve
+
+ '@bitdev/node.generators.node-starters@0.0.11':
+ dependencies:
+ '@teambit/component-id': 1.2.0
+ '@teambit/git.modules.git-ignore': 1.0.2
+ comment-json: 4.2.5
+
+ '@bitdev/node.generators.node-templates@4.0.1':
+ dependencies:
+ lodash: 4.17.21
- '@bit-tasks/test-scope.apps.my-app@file:test-scope/apps/my-app(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.36.0)(typescript@5.5.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@bitdev/node.node-env@4.0.27(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)':
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@18.3.1)
- '@bit-tasks/test-scope.ui.hello-world': file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)
- '@bitdev/react.app-types.vite-react': 2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
+ '@bitdev/node.generators.node-starters': 0.0.11
+ '@bitdev/node.generators.node-templates': 4.0.1
+ '@bitdev/react.eslint.eslint-config-bit-react': 1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3)
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@bitdev/react.react-env': 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)
'@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@18.3.1)
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/preview.react-preview': 1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)
+ '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
+ '@teambit/vite.vitest-tester': 0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
'@types/eslint': 8.56.0
'@types/find-root': 1.1.4
- '@types/jest': 29.5.13
+ '@types/jest': 29.5.14
'@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitejs/plugin-react': 4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0)
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
+ find-root: 1.1.0
+ graphql: 16.11.0
+ react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- react-router-dom: 6.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- sass: 1.80.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ rollup: 4.22.0
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
+ - '@babel/traverse'
- '@edge-runtime/vm'
+ - '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
+ - '@swc/css'
+ - '@testing-library/react'
+ - '@types/debug'
+ - '@types/webpack'
- '@vitest/browser'
+ - '@vitest/coverage-v8'
- '@vitest/ui'
- bufferutil
- canvas
+ - clean-css
+ - csso
+ - debug
+ - encoding
- esbuild
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
+ - fibers
- graphql-ws
- happy-dom
+ - html-webpack-plugin
- jest
+ - jsdom
- less
- lightningcss
+ - msw
+ - node-sass
+ - sass
- sass-embedded
+ - sockjs-client
- stylus
- subscriptions-transport-ws
- sugarss
- supports-color
- terser
+ - type-fest
- typescript
- uglify-js
- utf-8-validate
+ - vue-template-compiler
- webpack-cli
+ - webpack-hot-middleware
+ - webpack-plugin-serve
- '@bit-tasks/test-scope.get-hello-world@file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.app-types.vite-react@2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ '@teambit/toolbox.network.get-port': 1.0.6
+ compression: 1.8.0
+ express: 4.21.2
+ lodash-es: 4.17.21
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- - '@edge-runtime/vm'
- - '@types/react'
- - '@vitest/browser'
- - '@vitest/ui'
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- supports-color
- - terser
- - typescript
- '@bit-tasks/test-scope.get-hello-world@file:test-scope/get-hello-world(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.eslint.eslint-config-bit-react@1.1.14(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2)':
dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
+ eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2)
+ eslint-config-prettier: 8.5.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
transitivePeerDependencies:
- - '@edge-runtime/vm'
- - '@types/react'
- - '@vitest/browser'
- - '@vitest/ui'
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
+ - eslint-plugin-import
+ - eslint-plugin-jsx-a11y
+ - eslint-plugin-react
+ - eslint-plugin-react-hooks
- supports-color
- - terser
- typescript
- '@bit-tasks/test-scope.sample-component-1@file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.eslint.eslint-config-bit-react@1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3)':
dependencies:
- '@babel/core': 7.26.9
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@19.0.0)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
+ eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3)
+ eslint-config-prettier: 8.5.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
transitivePeerDependencies:
- - '@edge-runtime/vm'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@vitest/browser'
- - '@vitest/ui'
- - encoding
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
+ - eslint-plugin-import
+ - eslint-plugin-jsx-a11y
+ - eslint-plugin-react
+ - eslint-plugin-react-hooks
- supports-color
- - terser
- typescript
- '@bit-tasks/test-scope.sample-component-1@file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.generators.react-starters@1.1.1':
dependencies:
- '@babel/core': 7.26.9
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
+ '@teambit/component-id': 1.2.0
+ '@teambit/git.modules.git-ignore': 1.0.2
+ comment-json: 4.2.3
+
+ '@bitdev/react.generators.react-templates@4.0.2': {}
+
+ '@bitdev/react.preview.react-docs-app@0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)':
+ dependencies:
+ '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
transitivePeerDependencies:
- - '@edge-runtime/vm'
+ - '@mdx-js/react'
- '@testing-library/react'
- '@types/react'
- '@types/react-dom'
- - '@vitest/browser'
- - '@vitest/ui'
- encoding
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
+ - graphql
- typescript
- '@bit-tasks/test-scope.sample-component-1@file:test-scope/sample-component-1(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.preview.react-docs-template@0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@babel/core': 7.26.9
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
transitivePeerDependencies:
- - '@edge-runtime/vm'
+ - '@mdx-js/react'
- '@testing-library/react'
- '@types/react'
- '@types/react-dom'
- - '@vitest/browser'
- - '@vitest/ui'
- encoding
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
+ - graphql
- typescript
- '@bit-tasks/test-scope.ui.hello-world@file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.react-env@4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)':
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.get-hello-world': file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
+ '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core': 7.26.9
+ '@bitdev/react.eslint.eslint-config-bit-react': 1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3)
+ '@bitdev/react.generators.react-starters': 1.1.1
+ '@bitdev/react.generators.react-templates': 4.0.2
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
'@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
+ '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/preview.react-preview': 1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)
+ '@teambit/react.jest.react-jest': 1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))
+ '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
+ '@teambit/vite.vitest-tester': 0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
'@testing-library/dom': 10.4.0
'@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/eslint': 8.56.0
'@types/find-root': 1.1.4
- '@types/jest': 29.5.13
+ '@types/jest': 29.5.14
'@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
browserslist: 4.23.0
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
+ find-root: 1.1.0
+ graphql: 16.11.0
jsdom: 24.1.3
pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-helmet: 6.1.0(react@19.0.0)
+ react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup: 4.22.0
+ sass: 1.89.2
+ typescript: 5.8.3
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
+ - '@babel/traverse'
- '@edge-runtime/vm'
+ - '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
+ - '@swc/css'
+ - '@types/debug'
+ - '@types/webpack'
- '@vitest/browser'
+ - '@vitest/coverage-v8'
- '@vitest/ui'
- bufferutil
- canvas
+ - clean-css
+ - csso
+ - debug
+ - encoding
- esbuild
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
+ - fibers
- graphql-ws
- happy-dom
+ - html-webpack-plugin
- jest
- less
- lightningcss
+ - msw
+ - node-sass
- sass-embedded
+ - sockjs-client
- stylus
- subscriptions-transport-ws
- sugarss
- supports-color
- terser
- - typescript
+ - type-fest
- uglify-js
- utf-8-validate
+ - vue-template-compiler
- webpack-cli
+ - webpack-hot-middleware
+ - webpack-plugin-serve
- '@bit-tasks/test-scope.ui.hello-world@file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.webpack.refresh-overlay@0.0.5':
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.get-hello-world': file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@edge-runtime/vm'
- - '@swc/core'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - graphql-ws
- - happy-dom
- - jest
- - less
- - lightningcss
- - sass-embedded
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - typescript
- - uglify-js
- - utf-8-validate
- - webpack-cli
+ react-error-overlay: 6.0.9
+ strip-ansi: 6.0.0
- '@bit-tasks/test-scope.ui.hello-world@file:test-scope/ui/hello-world(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(typescript@5.5.3)':
+ '@bitdev/react.webpack.refresh-overlay@0.0.6':
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bit-tasks/test-scope.get-hello-world': file:test-scope/get-hello-world(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@edge-runtime/vm'
- - '@swc/core'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - graphql-ws
- - happy-dom
- - jest
- - less
- - lightningcss
- - sass-embedded
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - typescript
- - uglify-js
- - utf-8-validate
- - webpack-cli
-
- '@bitdev/node.generators.node-starters@0.0.10':
- dependencies:
- '@teambit/component-id': 1.2.0
- '@teambit/git.modules.git-ignore': 1.0.2
- comment-json: 4.2.3
-
- '@bitdev/node.generators.node-starters@0.0.11':
- dependencies:
- '@teambit/component-id': 1.2.0
- '@teambit/git.modules.git-ignore': 1.0.2
- comment-json: 4.2.3
-
- '@bitdev/node.generators.node-templates@2.0.8':
- dependencies:
- lodash: 4.17.21
-
- '@bitdev/node.generators.node-templates@4.0.1':
- dependencies:
- lodash: 4.17.21
-
- '@bitdev/node.node-env@2.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@bitdev/node.generators.node-starters': 0.0.10
- '@bitdev/node.generators.node-templates': 2.0.8
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.3(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.react-env': 2.1.7(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.prettier-formatter': 1.0.20(react-dom@18.3.1(react@18.3.1))
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@teambit/preview.react-preview': 1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/toolbox.performance.v8-cache': 0.0.34
- '@teambit/typescript.typescript-compiler': 2.0.45
- '@teambit/vite.vitest-tester': 0.2.4(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - node-sass
- - sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@bitdev/node.node-env@2.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@bitdev/node.generators.node-starters': 0.0.10
- '@bitdev/node.generators.node-templates': 2.0.8
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.3(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.react-env': 2.1.7(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.prettier-formatter': 1.0.20(react-dom@18.3.1(react@18.3.1))
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@18.3.1)
- '@teambit/preview.react-preview': 1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)
- '@teambit/toolbox.performance.v8-cache': 0.0.34
- '@teambit/typescript.typescript-compiler': 2.0.45
- '@teambit/vite.vitest-tester': 0.2.4(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - node-sass
- - sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@bitdev/node.node-env@4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@bitdev/node.generators.node-starters': 0.0.11
- '@bitdev/node.generators.node-templates': 4.0.1
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.10(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(typescript@5.5.3)
- '@bitdev/react.react-env': 4.0.19(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@19.0.0)
- '@teambit/preview.react-preview': 1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.46(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
- '@teambit/vite.vitest-tester': 0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - node-sass
- - sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@bitdev/node.node-env@4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@bitdev/node.generators.node-starters': 0.0.11
- '@bitdev/node.generators.node-templates': 4.0.1
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.10(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@bitdev/react.react-env': 4.0.19(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@teambit/preview.react-preview': 1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.46(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
- '@teambit/vite.vitest-tester': 0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - node-sass
- - sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@bitdev/node.node-env@4.0.15(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@bitdev/node.generators.node-starters': 0.0.11
- '@bitdev/node.generators.node-templates': 4.0.1
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.10(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@bitdev/react.react-env': 4.0.19(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@teambit/preview.react-preview': 1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.46(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
- '@teambit/vite.vitest-tester': 0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- graphql-tag: 2.12.6(graphql@16.9.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- rollup: 4.22.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - jsdom
- - less
- - lightningcss
- - node-sass
- - sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@bitdev/react.app-types.vite-react@2.1.2(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)':
- dependencies:
- '@teambit/toolbox.network.get-port': 1.0.6
- compression: 1.7.4
- express: 4.21.1
- find-root: 1.1.0
- lodash-es: 4.17.21
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- '@bitdev/react.eslint.eslint-config-bit-react@1.1.10(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- eslint: 8.56.0
- eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- eslint-config-prettier: 8.5.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- transitivePeerDependencies:
- - eslint-plugin-import
- - eslint-plugin-jsx-a11y
- - eslint-plugin-react
- - eslint-plugin-react-hooks
- - supports-color
- - typescript
-
- '@bitdev/react.eslint.eslint-config-bit-react@1.1.3(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)':
- dependencies:
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- eslint: 8.56.0
- eslint-config-airbnb-typescript: 17.1.0(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0)
- eslint-config-prettier: 9.1.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- transitivePeerDependencies:
- - eslint-plugin-import
- - supports-color
- - typescript
-
- '@bitdev/react.generators.react-starters@1.1.0':
- dependencies:
- '@teambit/component-id': 1.2.0
- '@teambit/git.modules.git-ignore': 1.0.2
- comment-json: 4.2.3
-
- '@bitdev/react.generators.react-starters@1.1.1':
- dependencies:
- '@teambit/component-id': 1.2.0
- '@teambit/git.modules.git-ignore': 1.0.2
- comment-json: 4.2.3
-
- '@bitdev/react.generators.react-templates@2.1.3': {}
-
- '@bitdev/react.generators.react-templates@2.1.4': {}
-
- '@bitdev/react.generators.react-templates@4.0.2': {}
-
- '@bitdev/react.preview.react-docs-app@0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - graphql
- - typescript
-
- '@bitdev/react.preview.react-docs-app@0.0.5(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - graphql
- - typescript
-
- '@bitdev/react.preview.react-docs-app@0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - graphql
- - typescript
-
- '@bitdev/react.react-env@2.1.7(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)':
- dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.3(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.generators.react-starters': 1.1.0
- '@bitdev/react.generators.react-templates': 2.1.3
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.prettier-formatter': 1.0.20(react-dom@18.3.1(react@18.3.1))
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@teambit/preview.react-preview': 1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.jest.react-jest': 1.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/toolbox.performance.v8-cache': 0.0.34
- '@teambit/typescript.typescript-compiler': 2.0.45
- '@teambit/vite.vitest-tester': 0.2.4(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- typescript: 5.5.3
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - less
- - lightningcss
- - node-sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
+ react-error-overlay: 6.0.9
+ strip-ansi: 6.0.0
- '@bitdev/react.react-env@2.1.9(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)':
- dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.3(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.generators.react-starters': 1.1.0
- '@bitdev/react.generators.react-templates': 2.1.4
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.39(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.prettier-formatter': 1.0.19(react-dom@18.3.1(react@18.3.1))
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.0)(react@18.3.1)
- '@teambit/preview.react-preview': 1.0.53(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.jest.react-jest': 1.0.30(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/react.mounter': 1.0.18(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/toolbox.performance.v8-cache': 0.0.33
- '@teambit/typescript.typescript-compiler': 2.0.44
- '@teambit/vite.vitest-tester': 0.2.5(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- browserslist: 4.23.0
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- sass: 1.80.2
- typescript: 5.5.3
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - less
- - lightningcss
- - node-sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
+ '@csstools/color-helpers@5.0.2': {}
- '@bitdev/react.react-env@4.0.19(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(less@4.2.0)(lightningcss@1.27.0)(terser@5.36.0)(type-fest@0.21.3)':
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@apollo/client': 3.11.8(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@babel/core': 7.26.9
- '@bitdev/react.eslint.eslint-config-bit-react': 1.1.10(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@bitdev/react.generators.react-starters': 1.1.1
- '@bitdev/react.generators.react-templates': 4.0.2
- '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(typescript@5.5.3)
- '@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0)
- '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
- '@teambit/preview.react-preview': 1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.jest.react-jest': 1.0.35(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/react.mounter': 1.0.46(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0)
- '@teambit/vite.vitest-tester': 0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- '@testing-library/dom': 10.4.0
- '@testing-library/jest-dom': 6.4.8
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@types/eslint': 8.56.0
- '@types/find-root': 1.1.4
- '@types/jest': 29.5.13
- '@types/node': 20.12.10
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- browserslist: 4.23.0
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- find-root: 1.1.0
- graphql: 16.9.0
- jsdom: 24.1.3
- pino-pretty: 4.5.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-helmet: 6.1.0(react@19.0.0)
- react-router-dom: 6.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- rollup: 4.22.0
- sass: 1.80.2
- typescript: 5.5.3
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@edge-runtime/vm'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/webpack'
- - '@vitest/browser'
- - '@vitest/ui'
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql-ws
- - happy-dom
- - jest
- - less
- - lightningcss
- - node-sass
- - sass-embedded
- - sockjs-client
- - stylus
- - subscriptions-transport-ws
- - sugarss
- - supports-color
- - terser
- - type-fest
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@bitdev/react.webpack.refresh-overlay@0.0.2':
- dependencies:
- react-error-overlay: 6.0.9
- strip-ansi: 6.0.0
+ '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/color-helpers': 5.0.2
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
- '@bitdev/react.webpack.refresh-overlay@0.0.4':
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
dependencies:
- react-error-overlay: 6.0.9
- strip-ansi: 6.0.0
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-tokenizer@3.0.4': {}
'@csstools/normalize.css@12.1.1': {}
@@ -13042,21 +11362,21 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)':
+ '@eslint-community/eslint-utils@4.7.0(eslint@8.56.0)':
dependencies:
eslint: 8.56.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.7
+ debug: 4.4.1
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
@@ -13071,61 +11391,265 @@ snapshots:
dependencies:
'@floating-ui/core': 0.7.3
- '@floating-ui/react-dom@0.7.2(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@0.7.2(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/dom': 0.5.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.23)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.2.1(@types/react@18.3.23)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@floating-ui/react-dom@0.7.2(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@0.7.2(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@floating-ui/dom': 0.5.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.0)(react@18.3.1)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.0.2)(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@floating-ui/react-dom@0.7.2(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@frontend/ci-scripts-tests.get-message@file:ci-scripts-tests/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)':
dependencies:
- '@floating-ui/dom': 0.5.4
+ '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core': 7.26.9
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@testing-library/dom': 10.4.0
+ '@testing-library/jest-dom': 6.4.8
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@types/eslint': 8.56.0
+ '@types/find-root': 1.1.4
+ '@types/jest': 29.5.14
+ '@types/node': 20.12.10
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ browserslist: 4.23.0
+ eslint: 8.56.0
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
+ eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
+ eslint-plugin-react: 7.33.2(eslint@8.56.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
+ graphql: 16.11.0
+ jsdom: 24.1.3
+ pino-pretty: 4.5.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.0)(react@19.0.0)
+ react-helmet: 6.1.0(react@19.0.0)
+ react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup: 4.22.0
+ sass: 1.89.2
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- - '@types/react'
+ - '@edge-runtime/vm'
+ - '@swc/core'
+ - '@types/debug'
+ - '@vitest/browser'
+ - '@vitest/ui'
+ - bufferutil
+ - canvas
+ - encoding
+ - esbuild
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - graphql-ws
+ - happy-dom
+ - jest
+ - less
+ - lightningcss
+ - msw
+ - sass-embedded
+ - stylus
+ - subscriptions-transport-ws
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - webpack-cli
- '@floating-ui/react-dom@0.7.2(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@frontend/ci-scripts-tests.my-app@file:ci-scripts-tests/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@floating-ui/dom': 0.5.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@19.0.2)(react@18.3.1)
+ '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core': 7.26.9
+ '@bitdev/react.app-types.vite-react': 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@frontend/ci-scripts-tests.get-message': file:ci-scripts-tests/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@testing-library/dom': 10.4.0
+ '@testing-library/jest-dom': 6.4.8
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@types/eslint': 8.56.0
+ '@types/find-root': 1.1.4
+ '@types/jest': 29.5.14
+ '@types/node': 20.12.10
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitejs/plugin-react': 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ browserslist: 4.23.0
+ eslint: 8.56.0
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
+ eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
+ eslint-plugin-react: 7.33.2(eslint@8.56.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
+ graphql: 16.11.0
+ jsdom: 24.1.3
+ pino-pretty: 4.5.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-helmet: 6.1.0(react@19.0.0)
+ react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup: 4.22.0
+ sass: 1.89.2
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- - '@types/react'
+ - '@edge-runtime/vm'
+ - '@swc/core'
+ - '@types/debug'
+ - '@vitest/browser'
+ - '@vitest/ui'
+ - bufferutil
+ - canvas
+ - encoding
+ - esbuild
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - graphql-ws
+ - happy-dom
+ - jest
+ - less
+ - lightningcss
+ - msw
+ - sass-embedded
+ - stylus
+ - subscriptions-transport-ws
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - webpack-cli
- '@floating-ui/react-dom@0.7.2(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@frontend/ci-scripts-tests.my-env@file:ci-scripts-tests/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)':
dependencies:
- '@floating-ui/dom': 0.5.4
+ '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/core': 7.26.9
+ '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)
+ '@bitdev/react.preview.react-docs-template': 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@bitdev/react.react-env': 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)
+ '@mdx-js/mdx': 1.6.22
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0)
+ '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/dom': 10.4.0
+ '@testing-library/jest-dom': 6.4.8
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@types/eslint': 8.56.0
+ '@types/find-root': 1.1.4
+ '@types/jest': 29.5.14
+ '@types/node': 20.12.10
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@vitejs/plugin-react': 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-v8': 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ browserslist: 4.23.0
+ eslint: 8.56.0
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3)
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
+ eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
+ eslint-plugin-react: 7.33.2(eslint@8.56.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
+ graphql: 16.11.0
+ jsdom: 24.1.3
+ pino-pretty: 4.5.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- use-isomorphic-layout-effect: 1.1.2(@types/react@19.0.2)(react@19.0.0)
+ react-helmet: 6.1.0(react@19.0.0)
+ react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rollup: 4.22.0
+ sass: 1.89.2
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- - '@types/react'
+ - '@babel/traverse'
+ - '@edge-runtime/vm'
+ - '@parcel/css'
+ - '@rspack/core'
+ - '@swc/core'
+ - '@swc/css'
+ - '@types/debug'
+ - '@types/webpack'
+ - '@vitest/browser'
+ - '@vitest/ui'
+ - bufferutil
+ - canvas
+ - clean-css
+ - csso
+ - debug
+ - encoding
+ - esbuild
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - fibers
+ - graphql-ws
+ - happy-dom
+ - html-webpack-plugin
+ - jest
+ - less
+ - lightningcss
+ - msw
+ - node-sass
+ - sass-embedded
+ - sockjs-client
+ - stylus
+ - subscriptions-transport-ws
+ - sugarss
+ - supports-color
+ - terser
+ - type-fest
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-hot-middleware
+ - webpack-plugin-serve
- '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)':
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)':
dependencies:
- graphql: 16.9.0
+ graphql: 16.11.0
'@hapi/bourne@2.1.0': {}
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.7
+ debug: 4.4.1
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -13162,7 +11686,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(babel-plugin-macros@3.1.0)':
+ '@jest/core@29.7.0':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
@@ -13176,7 +11700,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest-config: 29.7.0(@types/node@20.12.10)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -13240,7 +11764,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
'@types/node': 20.12.10
chalk: 4.1.2
collect-v8-coverage: 1.0.2
@@ -13268,7 +11792,7 @@ snapshots:
'@jest/source-map@29.6.3':
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
callsites: 3.1.0
graceful-fs: 4.2.11
@@ -13297,7 +11821,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -13307,7 +11831,7 @@ snapshots:
jest-regex-util: 29.6.3
jest-util: 29.7.0
micromatch: 4.0.8
- pirates: 4.0.6
+ pirates: 4.0.7
slash: 3.0.0
write-file-atomic: 4.0.2
transitivePeerDependencies:
@@ -13322,34 +11846,24 @@ snapshots:
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.12':
dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/sourcemap-codec': 1.5.4
+ '@jridgewell/trace-mapping': 0.3.29
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/set-array@1.2.1': {}
-
- '@jridgewell/source-map@0.3.6':
+ '@jridgewell/source-map@0.3.10':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
- '@jridgewell/sourcemap-codec@1.5.0': {}
+ '@jridgewell/sourcemap-codec@1.5.4': {}
- '@jridgewell/trace-mapping@0.3.25':
+ '@jridgewell/trace-mapping@0.3.29':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
-
- '@learnbit/hello-world.get-hello-world@0.0.15': {}
-
- '@learnbit/hello-world.ui.hello-world@0.0.19(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
- dependencies:
- '@learnbit/hello-world.get-hello-world': 0.0.15
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@jridgewell/sourcemap-codec': 1.5.4
'@leichtgewicht/ip-codec@2.0.5': {}
@@ -13423,186 +11937,145 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.17.1
+ fastq: 1.19.1
'@parcel/css@1.14.0':
dependencies:
- lightningcss: 1.27.0
+ lightningcss: 1.30.1
+
+ '@parcel/watcher-android-arm64@2.5.1':
+ optional: true
- '@parcel/watcher-android-arm64@2.4.1':
+ '@parcel/watcher-darwin-arm64@2.5.1':
optional: true
- '@parcel/watcher-darwin-arm64@2.4.1':
+ '@parcel/watcher-darwin-x64@2.5.1':
optional: true
- '@parcel/watcher-darwin-x64@2.4.1':
+ '@parcel/watcher-freebsd-x64@2.5.1':
optional: true
- '@parcel/watcher-freebsd-x64@2.4.1':
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-musl@2.5.1':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.4.1':
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.4.1':
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
+ '@parcel/watcher-linux-x64-musl@2.5.1':
optional: true
- '@parcel/watcher-win32-arm64@2.4.1':
+ '@parcel/watcher-win32-arm64@2.5.1':
optional: true
- '@parcel/watcher-win32-ia32@2.4.1':
+ '@parcel/watcher-win32-ia32@2.5.1':
optional: true
- '@parcel/watcher-win32-x64@2.4.1':
+ '@parcel/watcher-win32-x64@2.5.1':
optional: true
- '@parcel/watcher@2.4.1':
+ '@parcel/watcher@2.5.1':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.8
node-addon-api: 7.1.1
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
+ '@parcel/watcher-android-arm64': 2.5.1
+ '@parcel/watcher-darwin-arm64': 2.5.1
+ '@parcel/watcher-darwin-x64': 2.5.1
+ '@parcel/watcher-freebsd-x64': 2.5.1
+ '@parcel/watcher-linux-arm-glibc': 2.5.1
+ '@parcel/watcher-linux-arm-musl': 2.5.1
+ '@parcel/watcher-linux-arm64-glibc': 2.5.1
+ '@parcel/watcher-linux-arm64-musl': 2.5.1
+ '@parcel/watcher-linux-x64-glibc': 2.5.1
+ '@parcel/watcher-linux-x64-musl': 2.5.1
+ '@parcel/watcher-win32-arm64': 2.5.1
+ '@parcel/watcher-win32-ia32': 2.5.1
+ '@parcel/watcher-win32-x64': 2.5.1
+ optional: true
'@pkgjs/parseargs@0.11.0':
optional: true
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))(webpack@5.95.0)':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2)':
dependencies:
ansi-html: 0.0.9
- core-js-pure: 3.38.1
+ core-js-pure: 3.44.0
error-stack-parser: 2.1.4
- html-entities: 2.5.2
+ html-entities: 2.6.0
loader-utils: 2.0.4
react-refresh: 0.14.0
- schema-utils: 4.2.0
+ schema-utils: 4.3.2
source-map: 0.7.4
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
type-fest: 0.21.3
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
'@popperjs/core@2.11.8': {}
- '@remix-run/router@1.20.0': {}
+ '@remix-run/router@1.23.0': {}
- '@rollup/rollup-android-arm-eabi@4.22.0':
- optional: true
+ '@rolldown/pluginutils@1.0.0-beta.19': {}
- '@rollup/rollup-android-arm-eabi@4.24.0':
+ '@rollup/rollup-android-arm-eabi@4.22.0':
optional: true
'@rollup/rollup-android-arm64@4.22.0':
optional: true
- '@rollup/rollup-android-arm64@4.24.0':
- optional: true
-
'@rollup/rollup-darwin-arm64@4.22.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.0':
- optional: true
-
'@rollup/rollup-darwin-x64@4.22.0':
optional: true
- '@rollup/rollup-darwin-x64@4.24.0':
- optional: true
-
'@rollup/rollup-linux-arm-gnueabihf@4.22.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
- optional: true
-
'@rollup/rollup-linux-arm-musleabihf@4.22.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
- optional: true
-
'@rollup/rollup-linux-arm64-gnu@4.22.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
- optional: true
-
'@rollup/rollup-linux-arm64-musl@4.22.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.0':
- optional: true
-
'@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
- optional: true
-
'@rollup/rollup-linux-riscv64-gnu@4.22.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
- optional: true
-
'@rollup/rollup-linux-s390x-gnu@4.22.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
- optional: true
-
'@rollup/rollup-linux-x64-gnu@4.22.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.0':
- optional: true
-
'@rollup/rollup-linux-x64-musl@4.22.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.0':
- optional: true
-
'@rollup/rollup-win32-arm64-msvc@4.22.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
- optional: true
-
'@rollup/rollup-win32-ia32-msvc@4.22.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
- optional: true
-
'@rollup/rollup-win32-x64-msvc@4.22.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.0':
- optional: true
-
'@sinclair/typebox@0.27.8': {}
'@sinonjs/commons@3.0.1':
@@ -13668,40 +12141,97 @@ snapshots:
- supports-color
- typescript
+ '@svgr/core@8.1.0(typescript@5.8.3)':
+ dependencies:
+ '@babel/core': 7.26.9
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9)
+ camelcase: 6.3.0
+ cosmiconfig: 8.3.6(typescript@5.7.2)
+ snake-case: 3.0.4
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.28.1
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))':
dependencies:
'@babel/core': 7.26.9
'@svgr/babel-preset': 8.1.0(@babel/core@7.26.9)
- '@svgr/core': 8.1.0(typescript@5.5.3)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3)':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.5.3)':
+ dependencies:
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ cosmiconfig: 8.3.6(typescript@5.5.3)
+ deepmerge: 4.3.1
+ svgo: 3.3.2
+ transitivePeerDependencies:
+ - typescript
+
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2)':
+ dependencies:
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ cosmiconfig: 8.3.6(typescript@5.7.2)
+ deepmerge: 4.3.1
+ svgo: 3.3.2
+ transitivePeerDependencies:
+ - typescript
+
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.8.3)':
+ dependencies:
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ cosmiconfig: 8.3.6(typescript@5.8.3)
+ deepmerge: 4.3.1
+ svgo: 3.3.2
+ transitivePeerDependencies:
+ - typescript
+
+ '@svgr/webpack@8.1.0(typescript@5.5.3)':
+ dependencies:
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9)
+ '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-react': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9)
+ '@svgr/core': 8.1.0(typescript@5.5.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.5.3)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@svgr/webpack@8.1.0(typescript@5.7.2)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.5.3)
- cosmiconfig: 8.3.6(typescript@5.5.3)
- deepmerge: 4.3.1
- svgo: 3.3.2
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9)
+ '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-react': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2)
transitivePeerDependencies:
+ - supports-color
- typescript
- '@svgr/webpack@8.1.0(typescript@5.5.3)':
+ '@svgr/webpack@8.1.0(typescript@5.8.3)':
dependencies:
'@babel/core': 7.26.9
- '@babel/plugin-transform-react-constant-elements': 7.25.7(@babel/core@7.26.9)
- '@babel/preset-env': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-react': 7.25.7(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.9)
- '@svgr/core': 8.1.0(typescript@5.5.3)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.5.3))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3)
+ '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9)
+ '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-react': 7.22.15(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.8.3)
transitivePeerDependencies:
- supports-color
- typescript
@@ -13761,257 +12291,207 @@ snapshots:
'@swc/css-win32-ia32-msvc': 0.0.20
'@swc/css-win32-x64-msvc': 0.0.20
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.2.23
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- classnames: 2.3.1
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 19.0.2
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/react': 18.3.23
classnames: 2.3.1
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 19.0.2
- classnames: 2.3.1
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react': 19.0.2
classnames: 2.3.1
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-react.theme.theme-provider@1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-react.theme.theme-provider@1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.css-components.elevation@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.css-components.roundness@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.elements.icon@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.elements.icon@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.input.button@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.input.button@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.input.error@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.input.error@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.layout.grid-component@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.layout.grid-component@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.routing.compare-url@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
url-parse: 1.5.10
'@teambit/base-ui.routing.compare-url@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
url-parse: 1.5.10
'@teambit/base-ui.routing.native-link@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.routing.native-link@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.styles.flex-center@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.surfaces.background@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -14020,8 +12500,8 @@ snapshots:
'@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.surfaces.background': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -14030,52 +12510,52 @@ snapshots:
'@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.background': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -14084,8 +12564,8 @@ snapshots:
'@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -14094,34 +12574,34 @@ snapshots:
'@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.text.heading@1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.text.heading@1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -14129,8 +12609,8 @@ snapshots:
dependencies:
'@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -14138,123 +12618,121 @@ snapshots:
dependencies:
'@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.theme.sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.text.text-sizes@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.text.themed-text@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.theme.colors': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.theme.accent-color@1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.theme.colors': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.theme.colors@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.theme.colors@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.theme.fonts.book@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.theme.sizes@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.utils.composer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.utils.composer@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/base-ui.utils.string.affix@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/base-ui.utils.string.affix@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/bit-error@0.0.394': {}
-
'@teambit/bit-error@0.0.404': {}
'@teambit/community.constants.links@0.0.2': {}
- '@teambit/community.ui.content-tabs@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.2.0)':
+ '@teambit/community.ui.content-tabs@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/ui-foundation.ui.use-box.tab': 0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.2.0)
- core-js: 3.38.1
- react: 18.2.0
+ '@teambit/ui-foundation.ui.use-box.tab': 0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
+ react: 18.3.1
transitivePeerDependencies:
- react-dom
'@teambit/community.ui.content-tabs@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/ui-foundation.ui.use-box.tab': 0.0.115(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
transitivePeerDependencies:
- react-dom
@@ -14264,15 +12742,6 @@ snapshots:
'@teambit/toolbox.fs.hard-link-directory': 0.0.23
fs-extra: 10.1.0
- '@teambit/compilation.compiler-task@1.0.9':
- dependencies:
- '@teambit/toolbox.fs.hard-link-directory': 0.0.21
- fs-extra: 10.1.0
-
- '@teambit/component-id@0.0.402':
- dependencies:
- '@teambit/legacy-bit-id': 0.0.399
-
'@teambit/component-id@1.2.0':
dependencies:
'@teambit/component-version': 1.0.3
@@ -14285,24 +12754,21 @@ snapshots:
'@teambit/legacy-bit-id': 1.1.1
lodash: 4.17.21
- '@teambit/component-version@0.0.395':
+ '@teambit/component-id@1.2.4':
dependencies:
- '@teambit/bit-error': 0.0.394
- semver: 7.3.4
+ '@teambit/component-version': 1.0.4
+ '@teambit/legacy-bit-id': 1.1.3
+ lodash: 4.17.21
'@teambit/component-version@1.0.3':
dependencies:
'@teambit/bit-error': 0.0.404
semver: 7.5.2
- '@teambit/component.modules.component-url@0.0.124(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/component-version@1.0.4':
dependencies:
- '@teambit/base-ui.utils.string.affix': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/component-id': 0.0.402
- query-string: 7.0.0
- transitivePeerDependencies:
- - react
- - react-dom
+ '@teambit/bit-error': 0.0.404
+ semver: 7.7.1
'@teambit/component.modules.component-url@0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -14325,27 +12791,17 @@ snapshots:
'@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - encoding
- - graphql
-
- '@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- encoding
- graphql
- '@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
@@ -14374,7 +12830,7 @@ snapshots:
'@teambit/evangelist.elements.icon': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/react.ui.error-fallback': 0.0.125(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
@@ -14389,16 +12845,24 @@ snapshots:
'@teambit/evangelist.elements.icon': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/react.ui.error-fallback': 0.0.125(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-error-boundary: 3.1.4(react@19.0.0)
+ '@teambit/compositions.ui.composition-live-controls-react@0.0.3(@types/react@19.0.2)(react@19.0.0)':
+ dependencies:
+ '@teambit/compositions.ui.composition-live-controls': 0.0.3
+ '@types/react': 19.0.2
+ react: 19.0.0
+
+ '@teambit/compositions.ui.composition-live-controls@0.0.3': {}
+
'@teambit/compositions.ui.compositions-overview@0.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/compositions.model.composition-type': 0.0.499(react@18.3.1)
'@teambit/compositions.ui.composition-card': 0.0.511(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -14406,41 +12870,27 @@ snapshots:
dependencies:
'@teambit/compositions.model.composition-type': 0.0.499(react@19.0.0)
'@teambit/compositions.ui.composition-card': 0.0.511(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/defender.eslint-linter@1.0.39(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))':
+ '@teambit/defender.coverage-report@0.1.0':
dependencies:
- '@teambit/bit-error': 0.0.404
- '@teambit/community.ui.content-tabs': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.2.0)
- '@teambit/defender.linter-task': 1.0.7
- '@teambit/typescript.typescript-compiler': 2.0.44
- comment-json: 4.2.3
- eslint: 8.56.0
- fs-extra: 10.1.0
- lodash: 4.17.21
- object-hash: 3.0.0
- p-map-series: 2.1.0
- react: 18.2.0
- typescript: 5.5.3
- transitivePeerDependencies:
- - react-dom
+ fs-extra: 11.3.0
- '@teambit/defender.eslint-linter@1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))':
+ '@teambit/defender.eslint-linter@1.0.55(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/community.ui.content-tabs': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.2.0)
- '@teambit/defender.linter-task': 1.0.7
- '@teambit/typescript.typescript-compiler': 2.0.45
+ '@teambit/community.ui.content-tabs': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/defender.linter-task': 1.0.8
+ '@teambit/typescript.typescript-compiler': 2.0.58(react@18.3.1)
comment-json: 4.2.3
eslint: 8.56.0
fs-extra: 10.1.0
lodash: 4.17.21
object-hash: 3.0.0
p-map-series: 2.1.0
- react: 18.2.0
- typescript: 5.5.3
+ react: 18.3.1
transitivePeerDependencies:
- react-dom
@@ -14460,84 +12910,27 @@ snapshots:
transitivePeerDependencies:
- react-dom
- '@teambit/defender.jest-tester@2.0.12(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-env': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.9)
- '@jest/test-result': 29.3.1
- '@teambit/defender.tester-task': 1.0.13
- '@teambit/tests-results': 1.0.4
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- babel-preset-jest: 29.2.0(@babel/core@7.26.9)
- camelcase: 7.0.0
- comlink: 4.3.1
- flatted: 3.2.7
- fs-extra: 11.2.0
- identity-obj-proxy: 3.0.0
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
- jest-message-util: 29.3.1
- lodash: 4.17.21
- minimatch: 5.1.0
- normalize-path: 3.0.0
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@babel/traverse'
- - supports-color
-
- '@teambit/defender.jest-tester@2.0.15(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-env': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.9)
- '@jest/test-result': 29.3.1
- '@teambit/defender.tester-task': 1.0.13
- '@teambit/tests-results': 1.0.4
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- babel-preset-jest: 29.2.0(@babel/core@7.26.9)
- camelcase: 7.0.0
- comlink: 4.3.1
- flatted: 3.2.7
- fs-extra: 11.2.0
- identity-obj-proxy: 3.0.0
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
- jest-message-util: 29.3.1
- lodash: 4.17.21
- minimatch: 5.1.0
- normalize-path: 3.0.0
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@babel/traverse'
- - supports-color
-
- '@teambit/defender.jest-tester@2.0.17(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
+ '@teambit/defender.jest-tester@2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))':
dependencies:
'@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-env': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9)
+ '@babel/preset-env': 7.28.0(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9)
'@jest/test-result': 29.3.1
+ '@teambit/defender.coverage-report': 0.1.0
'@teambit/defender.tester-task': 1.0.14
'@teambit/tests-results': 1.0.5
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0)
babel-preset-jest: 29.2.0(@babel/core@7.26.9)
camelcase: 7.0.0
comlink: 4.3.1
flatted: 3.2.7
- fs-extra: 11.2.0
+ fs-extra: 11.3.0
identity-obj-proxy: 3.0.0
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest: 29.3.1(@types/node@20.12.10)
jest-message-util: 29.3.1
lodash: 4.17.21
minimatch: 5.1.0
@@ -14547,31 +12940,17 @@ snapshots:
- '@babel/traverse'
- supports-color
- '@teambit/defender.linter-task@1.0.7': {}
-
'@teambit/defender.linter-task@1.0.8': {}
- '@teambit/defender.prettier-formatter@1.0.19(react-dom@18.3.1(react@18.3.1))':
- dependencies:
- '@teambit/bit-error': 0.0.404
- '@teambit/community.ui.content-tabs': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.2.0)
- fs-extra: 10.1.0
- lodash: 4.17.21
- p-map-series: 2.1.0
- prettier: 2.8.8
- react: 18.2.0
- transitivePeerDependencies:
- - react-dom
-
- '@teambit/defender.prettier-formatter@1.0.20(react-dom@18.3.1(react@18.3.1))':
+ '@teambit/defender.prettier-formatter@1.0.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/community.ui.content-tabs': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.2.0)
+ '@teambit/community.ui.content-tabs': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
fs-extra: 10.1.0
lodash: 4.17.21
p-map-series: 2.1.0
prettier: 3.3.3
- react: 18.2.0
+ react: 18.3.1
transitivePeerDependencies:
- react-dom
@@ -14587,294 +12966,125 @@ snapshots:
transitivePeerDependencies:
- react-dom
- '@teambit/defender.tester-task@1.0.13':
- dependencies:
- fs-extra: 10.1.0
- junit-report-builder: 3.2.1
- strip-ansi: 6.0.0
-
- '@teambit/defender.tester-task@1.0.14':
- dependencies:
- fs-extra: 10.1.0
- junit-report-builder: 3.2.1
- strip-ansi: 6.0.0
-
- '@teambit/dependencies.modules.packages-excluder@1.0.8(react@18.3.1)':
- dependencies:
- react: 18.3.1
-
- '@teambit/dependencies.modules.packages-excluder@1.0.8(react@19.0.0)':
- dependencies:
- react: 19.0.0
-
- '@teambit/design.theme.icons-font@1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.theme.icons-font@1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.theme.icons-font@2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.theme.icons-font@2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.theme.icons-font': 1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/defender.tester-task@1.0.14':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ fs-extra: 10.1.0
+ junit-report-builder: 3.2.1
+ strip-ansi: 6.0.0
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/dependencies.modules.packages-excluder@1.0.8(react@18.3.1)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/dependencies.modules.packages-excluder@1.0.8(react@19.0.0)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.theme.icons-font@1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/design.theme.icons-font@1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.theme.icons-font@2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/design.theme.icons-font@2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ classnames: 2.3.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/design.theme.icons-font': 1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ classnames: 2.3.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+
+ '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@testing-library/react'
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@testing-library/react'
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@testing-library/react'
-
- '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@testing-library/react'
- '@teambit/design.ui.error-page@0.0.369(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/community.constants.links': 0.0.2
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - '@types/react'
-
- '@teambit/design.ui.error-page@0.0.369(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.ui.error-page@0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/community.constants.links': 0.0.2
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
@@ -14885,8 +13095,8 @@ snapshots:
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.input.button': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -14894,58 +13104,38 @@ snapshots:
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.input.button': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/design.ui.pages.not-found@0.0.371(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.ui.pages.not-found@0.0.371(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@testing-library/react'
- '@types/react'
- '@teambit/design.ui.pages.not-found@0.0.371(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/design.ui.pages.server-error@0.0.368(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@testing-library/react'
- '@types/react'
- '@teambit/design.ui.pages.server-error@0.0.368(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - '@types/react'
-
- '@teambit/design.ui.pages.server-error@0.0.368(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - '@types/react'
-
- '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@mdx-js/react'
- '@testing-library/react'
@@ -14953,9 +13143,9 @@ snapshots:
- graphql
- typescript
- '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
react: 19.0.0
@@ -14967,59 +13157,37 @@ snapshots:
- graphql
- typescript
- '@teambit/docs.docs-template@1.0.7(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.21(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/docs.docs-template@1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/react.ui.docs-app': 1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/docs.docs-template@1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@teambit/react.ui.docs-app': 1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
+ - '@mdx-js/react'
- '@testing-library/react'
- encoding
- graphql
- typescript
- '@teambit/docs.docs-template@1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/react.ui.docs-app': 1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ classnames: 2.2.6
+ prism-react-renderer: 1.3.5(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3)
+ use-debounce: 9.0.4(react@18.3.1)
transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
+ - '@types/react'
+ - react-dom
- typescript
- '@teambit/documenter.code.react-playground@4.1.10(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
'@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
@@ -15028,14 +13196,14 @@ snapshots:
prism-react-renderer: 1.3.5(react@19.0.0)
react: 19.0.0
react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react-use-dimensions: 1.2.1(@types/react@18.3.0)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2)
use-debounce: 9.0.4(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.code.react-playground@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
@@ -15044,182 +13212,126 @@ snapshots:
prism-react-renderer: 1.3.5(react@19.0.0)
react: 19.0.0
react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3)
use-debounce: 9.0.4(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.code.react-playground@4.1.9(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- prism-react-renderer: 1.3.5(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-use-dimensions: 1.2.1(@types/react@18.2.23)(react@18.3.1)(typescript@5.5.3)
- use-debounce: 9.0.4(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/documenter.code.react-playground@4.1.9(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
'@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
prism-react-renderer: 1.3.5(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-use-dimensions: 1.2.1(@types/react@18.3.0)(react@18.3.1)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3)
use-debounce: 9.0.4(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.code.react-playground@4.1.9(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
'@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
prism-react-renderer: 1.3.5(react@19.0.0)
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react-use-dimensions: 1.2.1(@types/react@18.3.0)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2)
use-debounce: 9.0.4(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- prism-react-renderer: 1.3.5(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@18.3.1)(typescript@5.5.3)
- use-debounce: 9.0.4(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
prism-react-renderer: 1.3.5(react@19.0.0)
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3)
use-debounce: 9.0.4(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.markdown.heading@0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/documenter.markdown.heading@0.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/documenter.ui.linked-heading': 4.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- react: 19.0.0
+ '@teambit/documenter.ui.linked-heading': 4.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ classnames: 2.2.6
+ react: 18.3.1
transitivePeerDependencies:
- react-dom
- '@teambit/documenter.markdown.heading@0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/documenter.ui.linked-heading': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.heading@0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.9(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@teambit/documenter.ui.linked-heading': 4.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ classnames: 2.2.6
+ react: 19.0.0
transitivePeerDependencies:
- - '@types/react'
- - typescript
+ - react-dom
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.9(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/documenter.code.react-playground': 4.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
'@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.9(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
'@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- typescript
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.10(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/documenter.ui.code-snippet': 4.2.4(react@19.0.0)
- react: 19.0.0
+ '@teambit/documenter.code.react-playground': 4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/documenter.ui.code-snippet': 4.2.4(react@18.3.1)
+ react: 18.3.1
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/documenter.code.react-playground': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.code.react-playground': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@teambit/documenter.ui.code-snippet': 4.2.4(react@19.0.0)
react: 19.0.0
transitivePeerDependencies:
@@ -15227,118 +13339,47 @@ snapshots:
- react-dom
- typescript
- '@teambit/documenter.markdown.mdx@0.1.13(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/documenter.markdown.mdx@0.1.13(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@teambit/documenter.code.react-playground': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/documenter.ui.code-snippet': 4.2.4(react@19.0.0)
+ react: 19.0.0
transitivePeerDependencies:
- '@types/react'
+ - react-dom
- typescript
- '@teambit/documenter.markdown.mdx@0.1.13(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/documenter.markdown.heading': 0.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/documenter.routing.external-link': 4.1.4(react@18.3.1)
+ '@teambit/documenter.ui.block-quote': 4.0.9(react@18.3.1)
+ '@teambit/documenter.ui.bold': 4.0.9(react@18.3.1)
+ '@teambit/documenter.ui.image': 4.0.4(react@18.3.1)
+ '@teambit/documenter.ui.inline-code': 0.1.7(react@18.3.1)
+ '@teambit/documenter.ui.italic': 4.0.9(react@18.3.1)
+ '@teambit/documenter.ui.ol': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.paragraph': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/documenter.ui.separator': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.sup': 4.0.9(react@18.3.1)
+ '@teambit/documenter.ui.table.base-table': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.table.tr': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.ul': 4.1.7(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.heading': 0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/documenter.routing.external-link': 4.1.4(react@19.0.0)
- '@teambit/documenter.ui.block-quote': 4.0.9(react@19.0.0)
- '@teambit/documenter.ui.bold': 4.0.9(react@19.0.0)
- '@teambit/documenter.ui.image': 4.0.4(react@19.0.0)
- '@teambit/documenter.ui.inline-code': 0.1.7(react@19.0.0)
- '@teambit/documenter.ui.italic': 4.0.9(react@19.0.0)
- '@teambit/documenter.ui.ol': 4.1.7(react@19.0.0)
- '@teambit/documenter.ui.paragraph': 4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.ui.separator': 4.1.7(react@19.0.0)
- '@teambit/documenter.ui.sup': 4.0.9(react@19.0.0)
- '@teambit/documenter.ui.table.base-table': 4.1.7(react@19.0.0)
- '@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0)
- '@teambit/documenter.ui.table.tr': 4.1.7(react@19.0.0)
- '@teambit/documenter.ui.ul': 4.1.7(react@19.0.0)
- classnames: 2.2.6
- react: 19.0.0
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
+ '@mdx-js/react': 1.6.22(react@19.0.0)
'@teambit/documenter.markdown.heading': 0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@teambit/documenter.routing.external-link': 4.1.4(react@19.0.0)
'@teambit/documenter.ui.block-quote': 4.0.9(react@19.0.0)
'@teambit/documenter.ui.bold': 4.0.9(react@19.0.0)
@@ -15360,11 +13401,11 @@ snapshots:
- react-dom
- typescript
- '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@mdx-js/react': 1.6.22(react@19.0.0)
'@teambit/documenter.markdown.heading': 0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
'@teambit/documenter.routing.external-link': 4.1.4(react@19.0.0)
'@teambit/documenter.ui.block-quote': 4.0.9(react@19.0.0)
'@teambit/documenter.ui.bold': 4.0.9(react@19.0.0)
@@ -15386,22 +13427,28 @@ snapshots:
- react-dom
- typescript
- '@teambit/documenter.routing.external-link@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.routing.external-link@4.1.4(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.routing.external-link@4.1.4(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
+ '@teambit/documenter.ui.anchor@4.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ classnames: 2.2.6
+ react: 18.3.1
+ transitivePeerDependencies:
+ - react-dom
+
'@teambit/documenter.ui.anchor@4.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/evangelist.elements.icon': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
@@ -15409,57 +13456,45 @@ snapshots:
'@teambit/documenter.ui.anchor@4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.anchor@4.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/evangelist.elements.icon': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/documenter.ui.anchor@4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.block-quote@4.0.9(react@18.3.1)':
dependencies:
- '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/documenter.ui.block-quote@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.block-quote@4.0.9(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.bold@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.bold@4.0.9(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.bold@4.0.9(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.code-snippet@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/documenter.ui.copied-message': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
+ classnames: 2.2.6
copy-to-clipboard: 3.3.3
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-syntax-highlighter: 13.5.3(react@18.3.1)
@@ -15467,113 +13502,129 @@ snapshots:
'@teambit/documenter.ui.code-snippet@4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/documenter.ui.copied-message': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
copy-to-clipboard: 3.3.3
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-syntax-highlighter: 13.5.3(react@19.0.0)
+ '@teambit/documenter.ui.code-snippet@4.2.4(react@18.3.1)':
+ dependencies:
+ '@teambit/documenter.ui.copied-message': 4.1.8(react@18.3.1)
+ classnames: 2.2.6
+ copy-to-clipboard: 3.3.3
+ react: 18.3.1
+ react-syntax-highlighter: 13.5.3(react@18.3.1)
+
'@teambit/documenter.ui.code-snippet@4.2.4(react@19.0.0)':
dependencies:
'@teambit/documenter.ui.copied-message': 4.1.8(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
copy-to-clipboard: 3.3.3
react: 19.0.0
react-syntax-highlighter: 13.5.3(react@19.0.0)
'@teambit/documenter.ui.copied-message@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.copied-message@4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@teambit/documenter.ui.copied-message@4.1.8(react@18.3.1)':
+ dependencies:
+ classnames: 2.2.6
+ react: 18.3.1
+
'@teambit/documenter.ui.copied-message@4.1.8(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.heading@4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.heading@4.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.text.heading': 1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/documenter.ui.heading@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.heading@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ transitivePeerDependencies:
+ - react-dom
'@teambit/documenter.ui.heading@4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.text.heading': 1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
- '@teambit/documenter.ui.image@4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.image@4.0.4(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.image@4.0.4(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.inline-code@0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.inline-code@0.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.inline-code@0.1.7(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.italic@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.italic@4.0.9(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.italic@4.0.9(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
+ '@teambit/documenter.ui.linked-heading@4.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@teambit/documenter.ui.anchor': 4.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/documenter.ui.heading': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ classnames: 2.2.6
+ react: 18.3.1
+ transitivePeerDependencies:
+ - react-dom
+
'@teambit/documenter.ui.linked-heading@4.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/documenter.ui.anchor': 4.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.heading': 4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
@@ -15582,8 +13633,8 @@ snapshots:
dependencies:
'@teambit/documenter.ui.anchor': 4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.heading': 4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -15591,104 +13642,69 @@ snapshots:
dependencies:
'@teambit/documenter.ui.anchor': 4.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.heading': 4.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/documenter.ui.linked-heading@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/documenter.ui.anchor': 4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/documenter.ui.ol@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.ol@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.ol@4.1.7(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.paragraph@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.paragraph@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.text.paragraph': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ transitivePeerDependencies:
+ - react-dom
'@teambit/documenter.ui.paragraph@4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.text.paragraph': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/base-ui.theme.sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
- '@teambit/documenter.ui.property-table@4.1.10(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.ui.table': 4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-use-dimensions: 1.2.1(@types/react@18.2.23)(react@18.3.1)(typescript@5.5.3)
- use-debounce: 3.4.3(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
- - typescript
-
- '@teambit/documenter.ui.property-table@4.1.10(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/documenter.ui.property-table@4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
'@teambit/documenter.ui.table': 4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- react-use-dimensions: 1.2.1(@types/react@18.3.0)(react@18.3.1)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3)
use-debounce: 3.4.3(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.ui.property-table@4.1.10(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
'@teambit/documenter.ui.table': 4.1.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react: 19.0.0
- react-use-dimensions: 1.2.1(@types/react@18.3.0)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2)
use-debounce: 3.4.3(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- react-dom
- typescript
- '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.ui.table': 4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@18.3.1)(typescript@5.5.3)
- use-debounce: 3.4.3(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
- - typescript
-
- '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@teambit/documenter.ui.table': 4.1.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react: 19.0.0
- react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.5.3)
+ react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3)
use-debounce: 3.4.3(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
@@ -15697,67 +13713,63 @@ snapshots:
'@teambit/documenter.ui.section@4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.section@4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/documenter.ui.separator@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.separator@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.separator@4.1.7(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.sup@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.sup@4.0.9(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.sup@4.0.9(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.table-column@4.0.4(react@18.3.1)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 18.3.1
'@teambit/documenter.ui.table-column@4.0.4(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.table-heading-column@4.0.8(react@18.3.1)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 18.3.1
'@teambit/documenter.ui.table-heading-column@4.0.8(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.table-heading-row@4.0.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.table-heading-column': 4.0.8(react@18.3.1)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 18.3.1
transitivePeerDependencies:
- react-dom
@@ -15766,7 +13778,7 @@ snapshots:
dependencies:
'@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.table-heading-column': 4.0.8(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
@@ -15791,50 +13803,47 @@ snapshots:
transitivePeerDependencies:
- react-dom
- '@teambit/documenter.ui.table.base-table@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.table.base-table@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1)
+ '@teambit/documenter.ui.table.tr': 4.1.7(react@18.3.1)
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.table.base-table@4.1.7(react@19.0.0)':
dependencies:
'@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0)
'@teambit/documenter.ui.table.tr': 4.1.7(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.table.td@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.table.td@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.table.td@4.1.7(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
- '@teambit/documenter.ui.table.tr@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.table.tr@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1)
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.table.tr@4.1.7(react@19.0.0)':
dependencies:
'@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/documenter.ui.table@4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/documenter.ui.table-heading-row': 4.0.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 18.3.1
transitivePeerDependencies:
- react-dom
@@ -15843,48 +13852,46 @@ snapshots:
dependencies:
'@teambit/documenter.ui.table-heading-row': 4.0.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
transitivePeerDependencies:
- react-dom
- '@teambit/documenter.ui.ul@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/documenter.ui.ul@4.1.7(react@18.3.1)':
dependencies:
- classnames: 2.3.1
- core-js: 3.38.1
+ classnames: 2.2.6
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
'@teambit/documenter.ui.ul@4.1.7(react@19.0.0)':
dependencies:
- classnames: 2.3.1
+ classnames: 2.2.6
react: 19.0.0
'@teambit/evangelist.elements.icon@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/evangelist.elements.icon@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/evangelist.elements.icon@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/evangelist.elements.icon@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -15892,7 +13899,7 @@ snapshots:
'@teambit/graphql.hooks.use-query-light@1.0.0(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
graphql: 15.8.0
graphql-request: 4.3.0(graphql@15.8.0)
react: 18.3.1
@@ -15901,22 +13908,11 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- core-js: 3.38.1
- graphql: 16.9.0
- graphql-request: 4.3.0(graphql@16.9.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-deep-compare: 1.3.0(react@18.3.1)
- transitivePeerDependencies:
- - encoding
-
- '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
- graphql: 16.9.0
- graphql-request: 4.3.0(graphql@16.9.0)
+ core-js: 3.44.0
+ graphql: 16.11.0
+ graphql-request: 4.3.0(graphql@16.11.0)
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
use-deep-compare: 1.3.0(react@19.0.0)
@@ -15933,14 +13929,6 @@ snapshots:
outdent: 0.8.0
react: 19.0.0
- '@teambit/legacy-bit-id@0.0.399':
- dependencies:
- '@teambit/bit-error': 0.0.394
- '@teambit/component-version': 0.0.395
- decamelize: 1.2.0
- lodash: 4.17.21
- semver: 7.3.4
-
'@teambit/legacy-bit-id@1.1.0':
dependencies:
'@teambit/bit-error': 0.0.404
@@ -15957,6 +13945,14 @@ snapshots:
lodash: 4.17.21
semver: 7.5.2
+ '@teambit/legacy-bit-id@1.1.3':
+ dependencies:
+ '@teambit/bit-error': 0.0.404
+ '@teambit/component-version': 1.0.4
+ decamelize: 1.2.0
+ lodash: 4.17.21
+ semver: 7.7.1
+
'@teambit/mdx.compilers.mdx-transpiler@1.0.6':
dependencies:
'@mdx-js/mdx': 1.6.21
@@ -15970,29 +13966,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@teambit/mdx.modules.mdx-loader@1.0.14(@babel/core@7.26.9)(esbuild@0.14.29)':
- dependencies:
- '@babel/preset-env': 7.25.8(@babel/core@7.26.9)
- '@babel/preset-react': 7.25.7(@babel/core@7.26.9)
- '@teambit/mdx.compilers.mdx-transpiler': 1.0.6
- babel-loader: 9.1.2(@babel/core@7.26.9)(webpack@5.84.1(esbuild@0.14.29))
- loader-utils: 2.0.4
- memory-fs: 0.5.0
- webpack: 5.84.1(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@babel/core'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
-
- '@teambit/mdx.modules.mdx-loader@1.0.15(@babel/core@7.26.9)(webpack@5.95.0)':
+ '@teambit/mdx.modules.mdx-loader@1.0.15(@babel/core@7.26.9)(webpack@5.100.2)':
dependencies:
'@babel/preset-env': 7.23.2(@babel/core@7.26.9)
'@babel/preset-react': 7.22.15(@babel/core@7.26.9)
'@teambit/mdx.compilers.mdx-transpiler': 1.0.6
- babel-loader: 9.1.2(@babel/core@7.26.9)(webpack@5.95.0)
+ babel-loader: 9.1.2(@babel/core@7.26.9)(webpack@5.100.2)
loader-utils: 2.0.4
memory-fs: 0.5.0
transitivePeerDependencies:
@@ -16000,247 +13979,114 @@ snapshots:
- supports-color
- webpack
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 19.0.0
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
- '@types/react'
- react-dom
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 19.0.0
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@testing-library/react': 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- react: 19.0.0
- transitivePeerDependencies:
- - '@types/react'
- - react-dom
-
- '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@mdx-js/react': 1.6.22(react@19.0.0)
- '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
- - typescript
-
- '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react: 19.0.0
transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- '@types/react'
- react-dom
- - typescript
- '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- react: 19.0.0
+ '@mdx-js/react': 1.6.22(react@18.3.1)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- '@types/react'
- - react-dom
- typescript
- '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- - '@mdx-js/react'
- - '@testing-library/react'
- '@types/react'
- - react-dom
- typescript
- '@teambit/mdx.ui.mdx-layout@1.0.9(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.13(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- react: 18.3.1
+ '@mdx-js/react': 1.6.22(react@19.0.0)
+ '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- - '@testing-library/react'
- '@types/react'
- - react-dom
- typescript
- '@teambit/mdx.ui.mdx-layout@1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.13(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
react: 18.3.1
transitivePeerDependencies:
+ - '@mdx-js/react'
- '@testing-library/react'
- '@types/react'
- react-dom
- typescript
- '@teambit/mdx.ui.mdx-layout@1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.13(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- react: 18.3.1
+ '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
+ '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
+ react: 19.0.0
transitivePeerDependencies:
+ - '@mdx-js/react'
- '@testing-library/react'
- '@types/react'
- react-dom
- typescript
- '@teambit/mdx.ui.mdx-layout@1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@teambit/documenter.markdown.mdx': 0.1.13(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- react: 18.3.1
+ '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ react: 19.0.0
transitivePeerDependencies:
+ - '@mdx-js/react'
- '@testing-library/react'
- '@types/react'
- react-dom
- typescript
- '@teambit/mdx.ui.mdx-scope-context@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
'@teambit/mdx.ui.mdx-scope-context@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/mdx.ui.mdx-scope-context@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@18.3.0)(react@18.3.1)':
- dependencies:
- '@types/react': 18.3.0
- react: 18.3.1
-
- '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@18.3.0)(react@19.0.0)':
- dependencies:
- '@types/react': 18.3.0
- react: 19.0.0
-
- '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@19.0.2)(react@18.3.1)':
+ '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@18.3.23)(react@18.3.1)':
dependencies:
- '@types/react': 19.0.2
+ '@types/react': 18.3.23
react: 18.3.1
'@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@19.0.2)(react@19.0.0)':
@@ -16251,298 +14097,28 @@ snapshots:
'@teambit/node.deps-detectors.detective-es6@0.0.1':
dependencies:
'@teambit/node.deps-detectors.parser-helper': 0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a
- node-source-walk: 5.0.2
-
- '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': {}
-
- '@teambit/node.generator.node-starters@1.0.0':
- dependencies:
- comment-json: 4.2.3
-
- '@teambit/node.generator.node-templates@1.0.19':
- dependencies:
- lodash: 4.17.21
-
- '@teambit/node.node@1.0.101(@babel/core@7.26.9)(@babel/traverse@7.27.0)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/node@20.12.10)(babel-plugin-macros@3.1.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
- dependencies:
- '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-env': 7.22.15(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9)
- '@babel/runtime': 7.20.0
- '@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.jest-tester': 2.0.15(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/defender.prettier-formatter': 1.0.20(react-dom@18.3.1(react@18.3.1))
- '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/node.generator.node-starters': 1.0.0
- '@teambit/node.generator.node-templates': 1.0.19
- '@teambit/preview.react-preview': 1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.2.23)
- '@teambit/react.react-env': 1.0.109(@babel/core@7.26.9)(@babel/traverse@7.27.0)(babel-plugin-macros@3.1.0)(less@4.2.0)(lightningcss@1.27.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/typescript.typescript-compiler': 2.0.45
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0)
- core-js: 3.38.1
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
- eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
- eslint-plugin-react: 7.33.2(eslint@8.56.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/node'
- - '@types/webpack'
- - babel-plugin-macros
- - bufferutil
- - canvas
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - fibers
- - graphql
- - less
- - lightningcss
- - node-notifier
- - node-sass
- - react-test-renderer
- - sass-embedded
- - sockjs-client
- - supports-color
- - ts-node
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-dev-server
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@teambit/node.utils.esm-loader@0.0.6':
- dependencies:
- find-root: 1.1.0
-
- '@teambit/preview.react-preview@1.0.53(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.18(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/react.webpack.react-webpack': 1.0.36(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.11(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)
- '@teambit/webpack.webpack-dev-server': 1.0.15(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- object-hash: 3.0.0
- react: 18.3.1
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/webpack'
- - bufferutil
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - fibers
- - graphql
- - less
- - lightningcss
- - node-sass
- - react-dom
- - sass-embedded
- - sockjs-client
- - supports-color
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@teambit/preview.react-preview@1.0.64(@babel/core@7.26.9)(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@15.8.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- object-hash: 3.0.0
- react: 18.3.1
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/webpack'
- - bufferutil
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - fibers
- - graphql
- - less
- - lightningcss
- - node-sass
- - react-dom
- - sass-embedded
- - sockjs-client
- - supports-color
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@teambit/preview.react-preview@1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.2.23)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- object-hash: 3.0.0
- react: 18.3.1
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/webpack'
- - bufferutil
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - fibers
- - graphql
- - less
- - lightningcss
- - node-sass
- - react-dom
- - sass-embedded
- - sockjs-client
- - supports-color
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@teambit/preview.react-preview@1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- object-hash: 3.0.0
- react: 18.3.1
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/webpack'
- - bufferutil
- - clean-css
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - fibers
- - graphql
- - less
- - lightningcss
- - node-sass
- - react-dom
- - sass-embedded
- - sockjs-client
- - supports-color
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-hot-middleware
- - webpack-plugin-serve
+ node-source-walk: 5.0.2
- '@teambit/preview.react-preview@1.0.64(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
- dependencies:
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.28(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': {}
+
+ '@teambit/preview.react-preview@1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(eslint@8.56.0)(graphql@15.8.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)':
+ dependencies:
+ '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/react.mounter': 1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1)
+ '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
+ html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2)
object-hash: 3.0.0
react: 18.3.1
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@babel/core'
+ - '@mdx-js/react'
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
@@ -16558,6 +14134,7 @@ snapshots:
- eslint
- fibers
- graphql
+ - html-webpack-plugin
- less
- lightningcss
- node-sass
@@ -16574,19 +14151,21 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/preview.react-preview@1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)':
+ '@teambit/preview.react-preview@1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)':
dependencies:
- '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.46(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.webpack.react-webpack': 1.0.46(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.27.0)(react@19.0.0)
- '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.27.0)(react@19.0.0)(typescript@5.5.3)(webpack@5.95.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
+ '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
+ '@teambit/react.mounter': 1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0)
+ '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)
+ '@types/react': 19.0.2
+ '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2)
object-hash: 3.0.0
react: 19.0.0
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@babel/core'
- '@mdx-js/react'
@@ -16605,6 +14184,7 @@ snapshots:
- eslint
- fibers
- graphql
+ - html-webpack-plugin
- less
- lightningcss
- node-sass
@@ -16621,19 +14201,21 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/preview.react-preview@1.0.87(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.9.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)':
+ '@teambit/preview.react-preview@1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)':
dependencies:
- '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.mounter': 1.0.46(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.webpack.react-webpack': 1.0.46(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.27.0)(react@19.0.0)
- '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.27.0)(react@19.0.0)(typescript@5.5.3)(webpack@5.95.0)
+ '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/react.mounter': 1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/react.webpack.react-webpack': 1.0.49(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.17(lightningcss@1.30.1)(react@19.0.0)
+ '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
+ html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2)
object-hash: 3.0.0
react: 19.0.0
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@babel/core'
- '@mdx-js/react'
@@ -16652,6 +14234,7 @@ snapshots:
- eslint
- fibers
- graphql
+ - html-webpack-plugin
- less
- lightningcss
- node-sass
@@ -16668,72 +14251,22 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/react.apps.react-app-types@2.0.5(@babel/core@7.26.9)(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(eslint@8.56.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
- dependencies:
- '@teambit/bit-error': 0.0.404
- '@teambit/react.rendering.ssr': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/toolbox.network.get-port': 1.0.6
- '@teambit/ui-foundation.ui.pages.static-error': 0.0.104(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/webpack.transformers.favicon-reload': 1.0.0
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- express: 4.21.1
- fs-extra: 10.1.0
- lodash: 4.17.21
- terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.95.0)
- url-join: 4.0.0
- webpack: 5.95.0(esbuild@0.14.29)
- transitivePeerDependencies:
- - '@babel/core'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@testing-library/react'
- - '@types/react'
- - '@types/webpack'
- - bufferutil
- - clean-css
- - csso
- - debug
- - esbuild
- - eslint
- - fibers
- - less
- - lightningcss
- - node-sass
- - react
- - react-dom
- - sass-embedded
- - sockjs-client
- - supports-color
- - type-fest
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-dev-server
- - webpack-hot-middleware
- - webpack-plugin-serve
-
- '@teambit/react.apps.react-app-types@2.0.5(@babel/core@7.26.9)(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(eslint@8.56.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
+ '@teambit/react.apps.react-app-types@2.0.15(@babel/core@7.26.9)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@8.56.0)(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
'@teambit/bit-error': 0.0.404
'@teambit/react.rendering.ssr': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.webpack.react-webpack': 1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/toolbox.network.get-port': 1.0.6
- '@teambit/ui-foundation.ui.pages.static-error': 0.0.104(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/toolbox.network.get-port': 1.0.8
+ '@teambit/ui-foundation.ui.pages.static-error': 0.0.106(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/webpack.transformers.favicon-reload': 1.0.0
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
- '@teambit/webpack.webpack-dev-server': 1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- express: 4.21.1
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1)
+ '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)
+ express: 4.21.2
fs-extra: 10.1.0
lodash: 4.17.21
- terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.95.0)
+ terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2)
url-join: 4.0.0
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@babel/core'
- '@parcel/css'
@@ -16768,23 +14301,20 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/react.babel.bit-react-transformer@1.0.23(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.babel.bit-react-transformer@1.0.34(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/core': 7.19.6
- '@babel/types': 7.22.3
- '@teambit/component-id': 1.2.0
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.41(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@teambit/component-id': 1.2.4
+ '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.42(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
find-root: 1.1.0
fs-extra: 10.0.0
memoizee: 0.4.15
transitivePeerDependencies:
- react
- react-dom
- - supports-color
- '@teambit/react.babel.bit-react-transformer@1.0.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/react.babel.bit-react-transformer@1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/component-id': 1.2.2
+ '@teambit/component-id': 1.2.4
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.42(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
find-root: 1.1.0
fs-extra: 10.0.0
@@ -16793,12 +14323,12 @@ snapshots:
- react
- react-dom
- '@teambit/react.eslint-config-bit-react@1.0.224(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)':
+ '@teambit/react.eslint-config-bit-react@1.0.242(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
'@typescript-eslint/eslint-plugin': 7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser': 7.1.0(eslint@8.56.0)(typescript@5.5.3)
eslint: 8.56.0
- eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
+ eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
eslint-config-prettier: 8.5.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
transitivePeerDependencies:
@@ -16809,51 +14339,19 @@ snapshots:
- supports-color
- typescript
- '@teambit/react.generator.react-starters@1.0.8':
+ '@teambit/react.generator.react-starters@1.0.9':
dependencies:
'@teambit/git.modules.git-ignore': 1.0.2
comment-json: 4.2.3
- '@teambit/react.generator.react-templates@1.0.11':
+ '@teambit/react.generator.react-templates@1.0.13':
dependencies:
dedent: 0.7.0
- '@teambit/react.jest.react-jest@1.0.30(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
- dependencies:
- '@babel/preset-react': 7.25.7(@babel/core@7.26.9)
- '@teambit/defender.jest-tester': 2.0.12(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@testing-library/jest-dom': 5.16.5
- jest-environment-jsdom: 29.3.1
- react-app-polyfill: 3.0.0
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - bufferutil
- - canvas
- - jest
- - supports-color
- - utf-8-validate
-
- '@teambit/react.jest.react-jest@1.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
- dependencies:
- '@babel/preset-react': 7.25.7(@babel/core@7.26.9)
- '@teambit/defender.jest-tester': 2.0.15(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@testing-library/jest-dom': 5.16.5
- jest-environment-jsdom: 29.3.1
- react-app-polyfill: 3.0.0
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - bufferutil
- - canvas
- - jest
- - supports-color
- - utf-8-validate
-
- '@teambit/react.jest.react-jest@1.0.35(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))':
+ '@teambit/react.jest.react-jest@1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))':
dependencies:
- '@babel/preset-react': 7.25.7(@babel/core@7.26.9)
- '@teambit/defender.jest-tester': 2.0.17(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
+ '@babel/preset-react': 7.27.1(@babel/core@7.26.9)
+ '@teambit/defender.jest-tester': 2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))
'@testing-library/jest-dom': 5.16.5
jest-environment-jsdom: 29.3.1
react-app-polyfill: 3.0.0
@@ -16868,63 +14366,37 @@ snapshots:
'@teambit/react.modules.dom-to-react@0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/react.modules.dom-to-react@0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/react.mounter@1.0.18(@types/react-dom@18.3.1)(@types/react@18.3.0)':
- dependencies:
- '@teambit/react.ui.highlighter-provider': 0.0.213(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
-
- '@teambit/react.mounter@1.0.28(@types/react-dom@18.3.1)(@types/react@18.2.23)':
- dependencies:
- '@teambit/react.ui.highlighter-provider': 0.0.214(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
-
- '@teambit/react.mounter@1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)':
+ '@teambit/react.mounter@1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/react.ui.highlighter-provider': 0.0.214(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
+ '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
- '@teambit/react.mounter@1.0.28(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)':
+ '@teambit/react.mounter@1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@teambit/react.ui.highlighter-provider': 0.0.214(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
-
- '@teambit/react.mounter@1.0.46(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-error-boundary: 3.1.4(react@19.0.0)
- '@teambit/react.mounter@1.0.46(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@teambit/react.mounter@1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
+ '@teambit/compositions.ui.composition-live-controls-react': 0.0.3(@types/react@19.0.2)(react@19.0.0)
'@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
@@ -16932,44 +14404,44 @@ snapshots:
react-dom: 19.0.0(react@19.0.0)
react-error-boundary: 3.1.4(react@19.0.0)
- '@teambit/react.react-env@1.0.109(@babel/core@7.26.9)(@babel/traverse@7.27.0)(babel-plugin-macros@3.1.0)(less@4.2.0)(lightningcss@1.27.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
+ '@teambit/react.react-env@1.0.131(@babel/core@7.26.9)(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
'@babel/runtime': 7.20.0
'@mdx-js/react': 1.6.22(react@18.3.1)
- '@teambit/defender.eslint-linter': 1.0.42(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))
- '@teambit/defender.jest-tester': 2.0.15(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/defender.prettier-formatter': 1.0.20(react-dom@18.3.1(react@18.3.1))
+ '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/defender.jest-tester': 2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))
+ '@teambit/defender.prettier-formatter': 1.0.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1)
- '@teambit/docs.docs-template': 1.0.7(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/mdx.ui.mdx-scope-context': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/preview.react-preview': 1.0.64(@babel/core@7.26.9)(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(eslint@8.56.0)(graphql@15.8.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
- '@teambit/react.apps.react-app-types': 2.0.5(@babel/core@7.26.9)(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(eslint@8.56.0)(less@4.2.0)(lightningcss@1.27.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))
- '@teambit/react.eslint-config-bit-react': 1.0.224(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
- '@teambit/react.generator.react-starters': 1.0.8
- '@teambit/react.generator.react-templates': 1.0.11
- '@teambit/react.jest.react-jest': 1.0.33(@babel/core@7.26.9)(@babel/traverse@7.27.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))
- '@teambit/react.mounter': 1.0.28(@types/react-dom@18.3.1)(@types/react@18.3.0)
- '@teambit/typescript.typescript-compiler': 2.0.45
+ '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.23)(react@18.3.1)
+ '@teambit/preview.react-preview': 1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(eslint@8.56.0)(graphql@15.8.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)
+ '@teambit/react.apps.react-app-types': 2.0.15(@babel/core@7.26.9)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@8.56.0)(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))
+ '@teambit/react.eslint-config-bit-react': 1.0.242(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)
+ '@teambit/react.generator.react-starters': 1.0.9
+ '@teambit/react.generator.react-templates': 1.0.13
+ '@teambit/react.jest.react-jest': 1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))
+ '@teambit/react.mounter': 1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/typescript.typescript-compiler': 2.0.58(react@18.3.1)
'@testing-library/jest-dom': 6.5.0
- '@testing-library/react': 13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@testing-library/react-hooks': 8.0.1(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/jest': 29.5.13
+ '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@testing-library/react-hooks': 8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/jest': 29.5.14
'@types/node': 20.12.10
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
'@types/testing-library__jest-dom': 5.14.9
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- core-js: 3.38.1
+ core-js: 3.44.0
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.5.3)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-mdx: 1.17.1(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
graphql: 15.8.0
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest: 29.3.1(@types/node@20.12.10)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
typescript: 5.5.3
@@ -16992,6 +14464,7 @@ snapshots:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- fibers
+ - html-webpack-plugin
- less
- lightningcss
- node-notifier
@@ -17014,8 +14487,8 @@ snapshots:
dependencies:
'@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/ui-foundation.ui.rendering.html': 0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- express: 4.21.1
+ core-js: 3.44.0
+ express: 4.21.2
lodash.compact: 3.0.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -17023,97 +14496,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@teambit/react.ui.component-highlighter@0.2.2(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 0.7.2(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/component-id': 0.0.402
- '@teambit/component.modules.component-url': 0.0.124(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.hover-selector': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tippyjs/react': 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
- lodash.compact: 3.0.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- url-join: 4.0.1
- use-debounce: 8.0.4(react@18.3.1)
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.component-highlighter@0.2.4(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 0.7.2(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/component-id': 1.2.2
- '@teambit/component.modules.component-url': 0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.hover-selector': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tippyjs/react': 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
- lodash.compact: 3.0.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- url-join: 4.0.1
- use-debounce: 8.0.4(react@18.3.1)
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.component-highlighter@0.2.4(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 0.7.2(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/component-id': 1.2.2
- '@teambit/component.modules.component-url': 0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.hover-selector': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tippyjs/react': 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
- lodash.compact: 3.0.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- url-join: 4.0.1
- use-debounce: 8.0.4(react@18.3.1)
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.component-highlighter@0.2.4(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@floating-ui/react-dom': 0.7.2(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/component-id': 1.2.2
- '@teambit/component.modules.component-url': 0.0.169(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.hover-selector': 0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@tippyjs/react': 4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
- lodash.compact: 3.0.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- url-join: 4.0.1
- use-debounce: 8.0.4(react@19.0.0)
- uuid: 10.0.0
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.component-highlighter@0.2.4(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.ui.component-highlighter@0.2.4(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/react-dom': 0.7.2(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react-dom': 0.7.2(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/base-ui.routing.native-link': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/component-id': 1.2.2
'@teambit/component.modules.component-url': 0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -17121,9 +14506,9 @@ snapshots:
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/react.ui.hover-selector': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tippyjs/react': 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
+ classnames: 2.5.1
+ core-js: 3.44.0
+ get-xpath: 3.3.0
lodash.compact: 3.0.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -17143,9 +14528,9 @@ snapshots:
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/react.ui.hover-selector': 0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tippyjs/react': 4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.3.1
- core-js: 3.38.1
- get-xpath: 3.2.0
+ classnames: 2.5.1
+ core-js: 3.44.0
+ get-xpath: 3.3.0
lodash.compact: 3.0.1
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -17155,95 +14540,19 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@teambit/react.ui.docs-app@1.0.21(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/design.theme.icons-font': 2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.compositions-carousel': 0.0.26(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.docs-content': 0.0.30(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.24(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- classnames: 2.2.6
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs-app@1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/design.theme.icons-font': 2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.compositions-carousel': 0.0.26(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.docs-content': 0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.24(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- classnames: 2.2.6
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs-app@1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/design.theme.icons-font': 2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.compositions-carousel': 0.0.26(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.docs-content': 0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.24(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- classnames: 2.2.6
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs-app@1.0.21(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
'@teambit/design.theme.icons-font': 2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.compositions-carousel': 0.0.26(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.docs-content': 0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.24(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/design.theme.icons-font': 2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- classnames: 2.2.6
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@mdx-js/react'
- '@testing-library/react'
@@ -17251,17 +14560,17 @@ snapshots:
- graphql
- typescript
- '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
'@teambit/design.theme.icons-font': 2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
+ '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
@@ -17271,17 +14580,17 @@ snapshots:
- graphql
- typescript
- '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@teambit/design.theme.icons-font': 2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
+ '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
@@ -17291,11 +14600,11 @@ snapshots:
- graphql
- typescript
- '@teambit/react.ui.docs.apply-providers@0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.ui.docs.apply-providers@0.0.22(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.error-fallback': 0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/react.ui.error-fallback': 0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
@@ -17303,121 +14612,57 @@ snapshots:
'@teambit/react.ui.docs.apply-providers@0.0.22(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/base-ui.utils.composer': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-error-boundary: 3.1.4(react@19.0.0)
-
- '@teambit/react.ui.docs.compositions-carousel@0.0.26(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/react.ui.docs.apply-providers': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@teambit/react.ui.docs.compositions-carousel@0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/react.ui.docs.apply-providers': 0.0.22(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@teambit/react.ui.docs.docs-content@0.0.30(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.mdx-layout': 1.0.9(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.error-fallback': 0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- core-js: 3.38.1
- lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - typescript
-
- '@teambit/react.ui.docs.docs-content@0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.mdx-layout': 1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.error-fallback': 0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.2.23
- '@types/react-dom': 18.3.1
- core-js: 3.38.1
- lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - typescript
+ '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-error-boundary: 3.1.4(react@19.0.0)
- '@teambit/react.ui.docs.docs-content@0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.compositions-carousel@0.0.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
+ '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.mdx-layout': 1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.error-fallback': 0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- core-js: 3.38.1
- lodash: 4.17.21
+ '@teambit/react.ui.docs.apply-providers': 0.0.22(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-error-boundary: 3.1.4(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - typescript
- '@teambit/react.ui.docs.docs-content@0.0.30(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.compositions-carousel@0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/react.ui.docs.apply-providers': 0.0.22(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ core-js: 3.44.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+
+ '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
'@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/mdx.ui.mdx-layout': 1.0.9(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/react.ui.error-fallback': 0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
- core-js: 3.38.1
+ '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/react.ui.error-fallback': 0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/react': 18.3.23
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
+ core-js: 3.44.0
lodash: 4.17.21
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - typescript
-
- '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
- dependencies:
- '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
- '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
- core-js: 3.38.1
- lodash: 4.17.21
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-error-boundary: 3.1.4(react@19.0.0)
transitivePeerDependencies:
- '@mdx-js/react'
- '@testing-library/react'
- typescript
- '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
'@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@18.3.1))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
- core-js: 3.38.1
+ core-js: 3.44.0
lodash: 4.17.21
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -17427,14 +14672,14 @@ snapshots:
- '@testing-library/react'
- typescript
- '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
'@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
'@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react': 19.0.2
'@types/react-dom': 19.0.2(@types/react@19.0.2)
- core-js: 3.38.1
+ core-js: 3.44.0
lodash: 4.17.21
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -17444,58 +14689,13 @@ snapshots:
- '@testing-library/react'
- typescript
- '@teambit/react.ui.docs.properties-table@0.0.24(@types/react@18.2.23)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs.properties-table@0.0.24(@types/react@18.3.0)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
dependencies:
'@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs.properties-table@0.0.24(@types/react@18.3.0)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
- '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - encoding
- - graphql
- - typescript
-
- '@teambit/react.ui.docs.properties-table@0.0.24(@types/react@19.0.2)(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)':
- dependencies:
- '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
+ '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)
'@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
@@ -17504,13 +14704,13 @@ snapshots:
- graphql
- typescript
- '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@18.3.0)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)':
dependencies:
- '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
'@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
@@ -17519,13 +14719,13 @@ snapshots:
- graphql
- typescript
- '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@19.0.2)(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)':
+ '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)':
dependencies:
- '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.5.3)
+ '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)
'@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
@@ -17539,7 +14739,7 @@ snapshots:
'@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
@@ -17549,17 +14749,17 @@ snapshots:
'@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/design.ui.icon-button': 1.0.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-error-boundary: 3.1.4(react@19.0.0)
- '@teambit/react.ui.error-fallback@0.0.130(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.ui.error-fallback@0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-error-boundary: 3.1.4(react@18.3.1)
@@ -17569,71 +14769,27 @@ snapshots:
'@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/design.ui.icon-button': 1.0.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
react-error-boundary: 3.1.4(react@19.0.0)
- '@teambit/react.ui.highlighter-provider@0.0.213(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/react.ui.component-highlighter': 0.2.2(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- query-string: 7.0.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.highlighter-provider@0.0.214(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@18.2.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- query-string: 7.0.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.highlighter-provider@0.0.214(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- classnames: 2.2.6
- core-js: 3.38.1
- query-string: 7.0.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
-
- '@teambit/react.ui.highlighter-provider@0.0.214(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.ui.highlighter-provider@0.0.215(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
query-string: 7.0.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@teambit/react.ui.highlighter-provider@0.0.215(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- classnames: 2.2.6
- core-js: 3.38.1
- query-string: 7.0.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
-
'@teambit/react.ui.highlighter-provider@0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@teambit/react.ui.component-highlighter': 0.2.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
query-string: 7.0.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -17642,80 +14798,80 @@ snapshots:
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.41(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
- react-dom: 18.2.0(react@18.3.1)
+ react-dom: 18.3.1(react@18.3.1)
'@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@teambit/react.ui.hover-selector@0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/react.ui.hover-selector@0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/react.webpack.react-webpack@1.0.36(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
+ '@teambit/react.webpack.react-webpack@1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
'@babel/preset-env': 7.22.15(@babel/core@7.26.9)
'@babel/preset-react': 7.22.15(@babel/core@7.26.9)
- '@bitdev/react.webpack.refresh-overlay': 0.0.2
+ '@bitdev/react.webpack.refresh-overlay': 0.0.5
'@parcel/css': 1.14.0
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))(webpack@5.95.0)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2)
'@svgr/webpack': 8.1.0(typescript@5.5.3)
'@swc/css': 0.0.20
- '@teambit/component-id': 1.2.0
- '@teambit/mdx.modules.mdx-loader': 1.0.14(@babel/core@7.26.9)(esbuild@0.14.29)
- '@teambit/react.babel.bit-react-transformer': 1.0.23(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
- '@teambit/webpack.modules.generate-style-loaders': 1.0.11
- '@teambit/webpack.modules.style-regexps': 1.0.6
- '@teambit/webpack.webpack-dev-server': 1.0.15(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(typescript@5.5.3)(webpack@5.95.0)
- babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.95.0)
+ '@teambit/component-id': 1.2.2
+ '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2)
+ '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/webpack.modules.generate-style-loaders': 1.0.13
+ '@teambit/webpack.modules.style-regexps': 1.0.8
+ '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)
+ babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2)
browserslist: 4.21.4
- css-loader: 6.7.2(webpack@5.95.0)
- css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.2(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
esbuild: 0.14.29
- less-loader: 11.1.0(less@4.2.0)(webpack@5.95.0)
- lightningcss: 1.27.0
+ less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2)
+ lightningcss: 1.30.1
lodash: 4.17.21
- mini-css-extract-plugin: 2.9.1(webpack@5.95.0)
- new-url-loader: 0.1.1(webpack@5.95.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.100.2)
+ new-url-loader: 0.1.1(webpack@5.100.2)
postcss: 8.4.19
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19)
- postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.95.0)
+ postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2)
postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19)
postcss-preset-env: 7.8.3(postcss@8.4.19)
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- react-dom: 18.2.0(react@18.3.1)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2)
+ react-dom: 18.3.1(react@18.3.1)
react-refresh: 0.14.0
resolve-url-loader: 5.0.0
sass: 1.63.6
- sass-loader: 13.3.2(sass@1.63.6)(webpack@5.95.0)
- source-map-loader: 4.0.1(webpack@5.95.0)
- style-loader: 3.3.1(webpack@5.95.0)
- terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2)
+ source-map-loader: 4.0.1(webpack@5.100.2)
+ style-loader: 3.3.1(webpack@5.100.2)
+ terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@babel/core'
- '@rspack/core'
@@ -17743,46 +14899,46 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/react.webpack.react-webpack@1.0.37(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
+ '@teambit/react.webpack.react-webpack@1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
'@babel/preset-env': 7.22.15(@babel/core@7.26.9)
'@babel/preset-react': 7.22.15(@babel/core@7.26.9)
- '@bitdev/react.webpack.refresh-overlay': 0.0.2
+ '@bitdev/react.webpack.refresh-overlay': 0.0.5
'@parcel/css': 1.14.0
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))(webpack@5.95.0)
- '@svgr/webpack': 8.1.0(typescript@5.5.3)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2)
+ '@svgr/webpack': 8.1.0(typescript@5.7.2)
'@swc/css': 0.0.20
- '@teambit/component-id': 1.2.0
- '@teambit/mdx.modules.mdx-loader': 1.0.14(@babel/core@7.26.9)(esbuild@0.14.29)
- '@teambit/react.babel.bit-react-transformer': 1.0.23(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
- '@teambit/webpack.modules.generate-style-loaders': 1.0.11
- '@teambit/webpack.modules.style-regexps': 1.0.6
- '@teambit/webpack.webpack-dev-server': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)
- babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.95.0)
+ '@teambit/component-id': 1.2.2
+ '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2)
+ '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/webpack.modules.generate-style-loaders': 1.0.13
+ '@teambit/webpack.modules.style-regexps': 1.0.8
+ '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)
+ babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2)
browserslist: 4.21.4
- css-loader: 6.7.2(webpack@5.95.0)
- css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.2(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
esbuild: 0.14.29
- less-loader: 11.1.0(less@4.2.0)(webpack@5.95.0)
- lightningcss: 1.27.0
+ less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2)
+ lightningcss: 1.30.1
lodash: 4.17.21
- mini-css-extract-plugin: 2.9.1(webpack@5.95.0)
- new-url-loader: 0.1.1(webpack@5.95.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.100.2)
+ new-url-loader: 0.1.1(webpack@5.100.2)
postcss: 8.4.19
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19)
- postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.95.0)
+ postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2)
postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19)
postcss-preset-env: 7.8.3(postcss@8.4.19)
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- react-dom: 18.2.0(react@18.3.1)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2)
+ react-dom: 19.0.0(react@19.0.0)
react-refresh: 0.14.0
resolve-url-loader: 5.0.0
sass: 1.63.6
- sass-loader: 13.3.2(sass@1.63.6)(webpack@5.95.0)
- source-map-loader: 4.0.1(webpack@5.95.0)
- style-loader: 3.3.1(webpack@5.95.0)
- terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2)
+ source-map-loader: 4.0.1(webpack@5.100.2)
+ style-loader: 3.3.1(webpack@5.100.2)
+ terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@babel/core'
- '@rspack/core'
@@ -17810,46 +14966,46 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/react.webpack.react-webpack@1.0.46(@babel/core@7.26.9)(eslint@8.56.0)(less@4.2.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.95.0))':
+ '@teambit/react.webpack.react-webpack@1.0.49(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.100.2))':
dependencies:
'@babel/preset-env': 7.22.15(@babel/core@7.26.9)
'@babel/preset-react': 7.22.15(@babel/core@7.26.9)
- '@bitdev/react.webpack.refresh-overlay': 0.0.4
+ '@bitdev/react.webpack.refresh-overlay': 0.0.6
'@parcel/css': 1.14.0
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.95.0))(webpack@5.95.0)
- '@svgr/webpack': 8.1.0(typescript@5.5.3)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2)
+ '@svgr/webpack': 8.1.0(typescript@5.8.3)
'@swc/css': 0.0.20
'@teambit/component-id': 1.2.2
- '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.95.0)
- '@teambit/react.babel.bit-react-transformer': 1.0.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2)
+ '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@teambit/webpack.modules.generate-style-loaders': 1.0.13
'@teambit/webpack.modules.style-regexps': 1.0.8
- '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(react@19.0.0)(typescript@5.5.3)(webpack@5.95.0)
- babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.95.0)
+ '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)
+ babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2)
browserslist: 4.21.4
- css-loader: 6.7.2(webpack@5.95.0)
- css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.2(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
esbuild: 0.14.29
- less-loader: 11.1.0(less@4.2.0)(webpack@5.95.0)
- lightningcss: 1.27.0
+ less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2)
+ lightningcss: 1.30.1
lodash: 4.17.21
- mini-css-extract-plugin: 2.9.1(webpack@5.95.0)
- new-url-loader: 0.1.1(webpack@5.95.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.100.2)
+ new-url-loader: 0.1.1(webpack@5.100.2)
postcss: 8.4.19
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19)
- postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.95.0)
+ postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2)
postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19)
postcss-preset-env: 7.8.3(postcss@8.4.19)
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2)
react-dom: 19.0.0(react@19.0.0)
react-refresh: 0.14.0
resolve-url-loader: 5.0.0
sass: 1.63.6
- sass-loader: 13.3.2(sass@1.63.6)(webpack@5.95.0)
- source-map-loader: 4.0.1(webpack@5.95.0)
- style-loader: 3.3.1(webpack@5.95.0)
- terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
+ sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2)
+ source-map-loader: 4.0.1(webpack@5.100.2)
+ style-loader: 3.3.1(webpack@5.100.2)
+ terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@babel/core'
- '@rspack/core'
@@ -17877,16 +15033,8 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@teambit/tests-results@1.0.4': {}
-
'@teambit/tests-results@1.0.5': {}
- '@teambit/toolbox.fs.hard-link-directory@0.0.21':
- dependencies:
- fs-extra: 10.0.0
- resolve-link-target: 1.0.1
- symlink-dir: 5.2.1
-
'@teambit/toolbox.fs.hard-link-directory@0.0.23':
dependencies:
fs-extra: 10.0.0
@@ -17895,44 +15043,24 @@ snapshots:
'@teambit/toolbox.network.get-port@1.0.6': {}
- '@teambit/toolbox.path.path@0.0.2':
- dependencies:
- normalize-path: 3.0.0
+ '@teambit/toolbox.network.get-port@1.0.8': {}
'@teambit/toolbox.path.path@0.0.6':
dependencies:
normalize-path: 3.0.0
- '@teambit/toolbox.performance.v8-cache@0.0.33': {}
-
- '@teambit/toolbox.performance.v8-cache@0.0.34': {}
-
- '@teambit/typescript.typescript-compiler@2.0.44':
- dependencies:
- '@teambit/bit-error': 0.0.404
- '@teambit/compilation.compiler-task': 1.0.9
- comment-json: 4.2.3
- fs-extra: 11.2.0
- get-tsconfig: 4.2.0
- glob: 10.4.5
- globby: 11.1.0
- lodash: 4.17.21
- normalize-path: 3.0.0
- react: 18.2.0
- typescript: 5.5.3
-
- '@teambit/typescript.typescript-compiler@2.0.45':
+ '@teambit/typescript.typescript-compiler@2.0.58(react@18.3.1)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/compilation.compiler-task': 1.0.9
+ '@teambit/compilation.compiler-task': 1.0.12
comment-json: 4.2.3
- fs-extra: 11.2.0
+ fs-extra: 11.3.0
get-tsconfig: 4.2.0
glob: 10.4.5
globby: 11.1.0
lodash: 4.17.21
normalize-path: 3.0.0
- react: 18.2.0
+ react: 18.3.1
typescript: 5.5.3
'@teambit/typescript.typescript-compiler@2.0.58(react@19.0.0)':
@@ -17940,7 +15068,7 @@ snapshots:
'@teambit/bit-error': 0.0.404
'@teambit/compilation.compiler-task': 1.0.12
comment-json: 4.2.3
- fs-extra: 11.2.0
+ fs-extra: 11.3.0
get-tsconfig: 4.2.0
glob: 10.4.5
globby: 11.1.0
@@ -17949,148 +15077,90 @@ snapshots:
react: 19.0.0
typescript: 5.5.3
- '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.84(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.85(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/ui-foundation.ui.pages.static-error@0.0.104(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/ui-foundation.ui.pages.static-error@0.0.106(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.ui.pages.not-found': 0.0.371(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.ui.pages.server-error': 0.0.368(@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.84(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/ui-foundation.ui.rendering.html': 0.0.92(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ '@teambit/design.ui.pages.not-found': 0.0.371(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/design.ui.pages.server-error': 0.0.368(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.85(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@teambit/ui-foundation.ui.rendering.html': 0.0.94(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@testing-library/react'
- '@types/react'
- '@teambit/ui-foundation.ui.pages.static-error@0.0.104(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.ui.pages.not-found': 0.0.371(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/design.ui.pages.server-error': 0.0.368(@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.84(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@teambit/ui-foundation.ui.rendering.html': 0.0.92(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@testing-library/react'
- - '@types/react'
- '@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/ui-foundation.ui.rendering.html@0.0.94(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/ui-foundation.ui.rendering.html@0.0.92(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@teambit/ui-foundation.ui.rendering.html@0.0.95(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@teambit/ui-foundation.ui.use-box.tab@0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.2.0)':
+ '@teambit/ui-foundation.ui.rendering.html@0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ core-js: 3.44.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+
+ '@teambit/ui-foundation.ui.use-box.tab@0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
classnames: 2.2.6
- core-js: 3.38.1
- react: 18.2.0
+ core-js: 3.44.0
+ react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@teambit/ui-foundation.ui.use-box.tab@0.0.115(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
classnames: 2.2.6
- core-js: 3.38.1
+ core-js: 3.44.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@teambit/vite.vitest-tester@0.2.4(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
- dependencies:
- '@teambit/defender.tester-task': 1.0.13
- '@teambit/node.utils.esm-loader': 0.0.6
- '@teambit/tests-results': 1.0.5
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- comlink: 4.3.1
- fs-extra: 11.2.0
- jsdom: 24.1.3
- lodash: 4.17.21
- minimatch: 5.1.0
- mlly: 1.7.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
- '@teambit/vite.vitest-tester@0.2.5(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
- dependencies:
- '@teambit/defender.tester-task': 1.0.13
- '@teambit/node.utils.esm-loader': 0.0.6
- '@teambit/tests-results': 1.0.5
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- comlink: 4.3.1
- fs-extra: 11.2.0
- jsdom: 24.1.3
- lodash: 4.17.21
- minimatch: 5.1.0
- mlly: 1.7.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
- '@teambit/vite.vitest-tester@0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))':
- dependencies:
- '@teambit/defender.tester-task': 1.0.13
- '@teambit/tests-results': 1.0.5
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))
- comlink: 4.3.1
- fs-extra: 11.2.0
- jsdom: 24.1.3
- lodash: 4.17.21
- minimatch: 5.1.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - supports-color
- - utf-8-validate
-
- '@teambit/vite.vitest-tester@0.3.7(@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)))(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@teambit/vite.vitest-tester@0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@teambit/defender.tester-task': 1.0.13
+ '@teambit/defender.coverage-report': 0.1.0
+ '@teambit/defender.tester-task': 1.0.14
'@teambit/tests-results': 1.0.5
- '@vitest/coverage-v8': 2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
+ '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/coverage-v8': 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
comlink: 4.3.1
- fs-extra: 11.2.0
+ fs-extra: 11.3.0
jsdom: 24.1.3
lodash: 4.17.21
minimatch: 5.1.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- bufferutil
- canvas
- supports-color
- utf-8-validate
- '@teambit/webpack.modules.config-mutator@0.0.167(esbuild@0.14.29)(react@18.3.1)':
+ '@teambit/webpack.modules.config-mutator@0.0.172(esbuild@0.14.29)(react@18.3.1)':
dependencies:
'@teambit/html.modules.inject-html-element': 0.0.5(react@18.3.1)
- html-webpack-plugin: 5.3.2(webpack@5.84.1(esbuild@0.14.29))
+ html-webpack-plugin: 5.3.2(webpack@5.97.1(esbuild@0.14.29))
lodash: 4.17.21
- webpack: 5.84.1(esbuild@0.14.29)
+ webpack: 5.97.1(esbuild@0.14.29)
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -18099,12 +15169,12 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.modules.config-mutator@0.0.167(react@18.3.1)':
+ '@teambit/webpack.modules.config-mutator@0.0.172(esbuild@0.14.29)(react@19.0.0)':
dependencies:
- '@teambit/html.modules.inject-html-element': 0.0.5(react@18.3.1)
- html-webpack-plugin: 5.3.2(webpack@5.84.1)
+ '@teambit/html.modules.inject-html-element': 0.0.5(react@19.0.0)
+ html-webpack-plugin: 5.3.2(webpack@5.97.1(esbuild@0.14.29))
lodash: 4.17.21
- webpack: 5.84.1
+ webpack: 5.97.1(esbuild@0.14.29)
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -18113,12 +15183,12 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.modules.config-mutator@0.0.172(esbuild@0.14.29)(react@19.0.0)':
+ '@teambit/webpack.modules.config-mutator@0.0.172(react@18.3.1)':
dependencies:
- '@teambit/html.modules.inject-html-element': 0.0.5(react@19.0.0)
- html-webpack-plugin: 5.3.2(webpack@5.97.1(esbuild@0.14.29))
+ '@teambit/html.modules.inject-html-element': 0.0.5(react@18.3.1)
+ html-webpack-plugin: 5.3.2(webpack@5.97.1)
lodash: 4.17.21
- webpack: 5.97.1(esbuild@0.14.29)
+ webpack: 5.97.1
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -18141,30 +15211,27 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.modules.generate-style-loaders@1.0.11': {}
-
'@teambit/webpack.modules.generate-style-loaders@1.0.13': {}
- '@teambit/webpack.modules.style-regexps@1.0.6': {}
-
'@teambit/webpack.modules.style-regexps@1.0.8': {}
'@teambit/webpack.transformers.favicon-reload@1.0.0': {}
- '@teambit/webpack.webpack-bundler@1.0.11(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)':
+ '@teambit/webpack.webpack-bundler@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@18.3.1)':
dependencies:
'@teambit/bit-error': 0.0.404
+ '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@18.3.1)
assert: 2.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
- compression-webpack-plugin: 11.1.0(webpack@5.95.0)
+ compression-webpack-plugin: 11.1.0(webpack@5.100.2)
constants-browserify: 1.0.0
crypto-browserify: 3.12.0
- css-loader: 6.7.1(webpack@5.95.0)
- css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.1(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
domain-browser: 4.19.0
events: 3.3.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
https-browserify: 1.0.0
lodash: 4.17.21
os-browserify: 0.3.0
@@ -18181,7 +15248,7 @@ snapshots:
url: 0.11.2
util: 0.12.3
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18191,24 +15258,25 @@ snapshots:
- csso
- esbuild
- lightningcss
+ - react
- uglify-js
- webpack-cli
- '@teambit/webpack.webpack-bundler@1.0.12(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(react@18.3.1)':
+ '@teambit/webpack.webpack-bundler@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/webpack.modules.config-mutator': 0.0.167(esbuild@0.14.29)(react@18.3.1)
+ '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0)
assert: 2.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
- compression-webpack-plugin: 11.1.0(webpack@5.95.0)
+ compression-webpack-plugin: 11.1.0(webpack@5.100.2)
constants-browserify: 1.0.0
crypto-browserify: 3.12.0
- css-loader: 6.7.1(webpack@5.95.0)
- css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.1(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
domain-browser: 4.19.0
events: 3.3.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
https-browserify: 1.0.0
lodash: 4.17.21
os-browserify: 0.3.0
@@ -18225,7 +15293,7 @@ snapshots:
url: 0.11.2
util: 0.12.3
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18239,21 +15307,21 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.webpack-bundler@1.0.12(lightningcss@1.27.0)(react@18.3.1)':
+ '@teambit/webpack.webpack-bundler@1.0.16(lightningcss@1.30.1)(react@18.3.1)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/webpack.modules.config-mutator': 0.0.167(react@18.3.1)
+ '@teambit/webpack.modules.config-mutator': 0.0.172(react@18.3.1)
assert: 2.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
- compression-webpack-plugin: 11.1.0(webpack@5.95.0)
+ compression-webpack-plugin: 11.1.0(webpack@5.100.2)
constants-browserify: 1.0.0
crypto-browserify: 3.12.0
- css-loader: 6.7.1(webpack@5.95.0)
- css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.1(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
domain-browser: 4.19.0
events: 3.3.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
https-browserify: 1.0.0
lodash: 4.17.21
os-browserify: 0.3.0
@@ -18270,7 +15338,7 @@ snapshots:
url: 0.11.2
util: 0.12.3
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18284,21 +15352,21 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.webpack-bundler@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(react@19.0.0)':
+ '@teambit/webpack.webpack-bundler@1.0.16(lightningcss@1.30.1)(react@19.0.0)':
dependencies:
'@teambit/bit-error': 0.0.404
- '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0)
+ '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0)
assert: 2.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
- compression-webpack-plugin: 11.1.0(webpack@5.95.0)
+ compression-webpack-plugin: 11.1.0(webpack@5.100.2)
constants-browserify: 1.0.0
crypto-browserify: 3.12.0
- css-loader: 6.7.1(webpack@5.95.0)
- css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.1(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
domain-browser: 4.19.0
events: 3.3.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
https-browserify: 1.0.0
lodash: 4.17.21
os-browserify: 0.3.0
@@ -18315,7 +15383,7 @@ snapshots:
url: 0.11.2
util: 0.12.3
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18329,21 +15397,20 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.webpack-bundler@1.0.16(lightningcss@1.27.0)(react@19.0.0)':
+ '@teambit/webpack.webpack-bundler@1.0.17(lightningcss@1.30.1)(react@19.0.0)':
dependencies:
'@teambit/bit-error': 0.0.404
'@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0)
assert: 2.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
- compression-webpack-plugin: 11.1.0(webpack@5.95.0)
+ compression-webpack-plugin: 11.1.0(webpack@5.100.2)
constants-browserify: 1.0.0
crypto-browserify: 3.12.0
- css-loader: 6.7.1(webpack@5.95.0)
- css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0)
+ css-loader: 6.7.1(webpack@5.100.2)
+ css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2)
domain-browser: 4.19.0
- events: 3.3.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
https-browserify: 1.0.0
lodash: 4.17.21
os-browserify: 0.3.0
@@ -18360,7 +15427,7 @@ snapshots:
url: 0.11.2
util: 0.12.3
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18374,16 +15441,17 @@ snapshots:
- uglify-js
- webpack-cli
- '@teambit/webpack.webpack-dev-server@1.0.15(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(typescript@5.5.3)(webpack@5.95.0)':
+ '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)':
dependencies:
- '@teambit/toolbox.path.path': 0.0.2
- '@teambit/webpack.webpack-bundler': 1.0.11(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)
+ '@teambit/toolbox.path.path': 0.0.6
+ '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@18.3.1)
+ '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@18.3.1)
find-root: 1.1.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
object-hash: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18396,6 +15464,7 @@ snapshots:
- esbuild
- eslint
- lightningcss
+ - react
- supports-color
- typescript
- uglify-js
@@ -18403,17 +15472,17 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@teambit/webpack.webpack-dev-server@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)':
+ '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)':
dependencies:
- '@teambit/toolbox.path.path': 0.0.2
- '@teambit/webpack.modules.config-mutator': 0.0.167(esbuild@0.14.29)(react@18.3.1)
- '@teambit/webpack.webpack-bundler': 1.0.12(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(react@18.3.1)
+ '@teambit/toolbox.path.path': 0.0.6
+ '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0)
find-root: 1.1.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
object-hash: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18434,17 +15503,17 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@teambit/webpack.webpack-dev-server@1.0.16(eslint@8.56.0)(lightningcss@1.27.0)(react@18.3.1)(typescript@5.5.3)(webpack@5.95.0)':
+ '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)':
dependencies:
- '@teambit/toolbox.path.path': 0.0.2
- '@teambit/webpack.modules.config-mutator': 0.0.167(react@18.3.1)
- '@teambit/webpack.webpack-bundler': 1.0.12(lightningcss@1.27.0)(react@18.3.1)
+ '@teambit/toolbox.path.path': 0.0.6
+ '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0)
find-root: 1.1.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
object-hash: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18465,17 +15534,48 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.27.0)(react@19.0.0)(typescript@5.5.3)(webpack@5.95.0)':
+ '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)':
dependencies:
'@teambit/toolbox.path.path': 0.0.6
- '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0)
- '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(react@19.0.0)
+ '@teambit/webpack.modules.config-mutator': 0.0.172(react@18.3.1)
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1)
+ find-root: 1.1.0
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
+ object-hash: 3.0.0
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
+ transitivePeerDependencies:
+ - '@parcel/css'
+ - '@rspack/core'
+ - '@swc/core'
+ - '@swc/css'
+ - bufferutil
+ - clean-css
+ - csso
+ - debug
+ - esbuild
+ - eslint
+ - lightningcss
+ - react
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+
+ '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)':
+ dependencies:
+ '@teambit/toolbox.path.path': 0.0.6
+ '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0)
find-root: 1.1.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
object-hash: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18496,17 +15596,17 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.27.0)(react@19.0.0)(typescript@5.5.3)(webpack@5.95.0)':
+ '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)':
dependencies:
'@teambit/toolbox.path.path': 0.0.6
'@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0)
- '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.27.0)(react@19.0.0)
+ '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0)
find-root: 1.1.0
- html-webpack-plugin: 5.6.2(webpack@5.95.0)
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
object-hash: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
- webpack: 5.95.0(esbuild@0.14.29)
- webpack-dev-server: 4.15.0(webpack@5.95.0)
+ react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
+ webpack-dev-server: 4.15.0(webpack@5.100.2)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -18529,8 +15629,8 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/runtime': 7.25.7
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.27.6
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -18540,8 +15640,8 @@ snapshots:
'@testing-library/dom@8.20.1':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/runtime': 7.25.7
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.27.6
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -18551,8 +15651,8 @@ snapshots:
'@testing-library/jest-dom@5.16.5':
dependencies:
- '@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.25.7
+ '@adobe/css-tools': 4.4.3
+ '@babel/runtime': 7.27.6
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.2
chalk: 3.0.0
@@ -18563,8 +15663,8 @@ snapshots:
'@testing-library/jest-dom@6.4.8':
dependencies:
- '@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.25.7
+ '@adobe/css-tools': 4.4.3
+ '@babel/runtime': 7.27.6
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -18574,64 +15674,36 @@ snapshots:
'@testing-library/jest-dom@6.5.0':
dependencies:
- '@adobe/css-tools': 4.4.0
+ '@adobe/css-tools': 4.4.3
aria-query: 5.3.2
- chalk: 3.0.0
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- lodash: 4.17.21
- redent: 3.0.0
-
- '@testing-library/react-hooks@8.0.1(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.25.7
- react: 18.3.1
- react-error-boundary: 3.1.4(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.0
- react-dom: 18.3.1(react@18.3.1)
-
- '@testing-library/react@13.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.25.7
- '@testing-library/dom': 8.20.1
- '@types/react-dom': 18.3.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.25.7
- '@testing-library/dom': 10.4.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
+ chalk: 3.0.0
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ lodash: 4.17.21
+ redent: 3.0.0
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.0)(react-dom@19.0.0(react@19.0.0))(react@18.3.1)':
+ '@testing-library/react-hooks@8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
- '@testing-library/dom': 10.4.0
+ '@babel/runtime': 7.27.6
react: 18.3.1
- react-dom: 19.0.0(react@19.0.0)
+ react-error-boundary: 3.1.4(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.0
- '@types/react-dom': 18.3.1
+ '@types/react': 18.3.23
+ react-dom: 18.3.1(react@18.3.1)
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
- '@testing-library/dom': 10.4.0
+ '@babel/runtime': 7.27.6
+ '@testing-library/dom': 8.20.1
+ '@types/react-dom': 18.3.7(@types/react@18.3.23)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 19.0.2
- '@types/react-dom': 19.0.2(@types/react@19.0.2)
+ transitivePeerDependencies:
+ - '@types/react'
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
'@testing-library/dom': 10.4.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -18659,26 +15731,26 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
- '@types/babel__generator': 7.6.8
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
+ '@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.7
- '@types/babel__generator@7.6.8':
+ '@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.28.1
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
- '@types/babel__traverse@7.20.6':
+ '@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.28.1
- '@types/body-parser@1.19.5':
+ '@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
'@types/node': 20.12.10
@@ -18687,49 +15759,55 @@ snapshots:
dependencies:
'@types/node': 20.12.10
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 5.0.0
+ '@types/express-serve-static-core': 5.0.7
'@types/node': 20.12.10
'@types/connect@3.4.38':
dependencies:
'@types/node': 20.12.10
+ '@types/deep-eql@4.0.2': {}
+
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 8.56.0
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@types/eslint@8.56.0':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@types/estree@1.0.5': {}
- '@types/estree@1.0.6': {}
+ '@types/estree@1.0.8': {}
'@types/express-serve-static-core@4.19.6':
dependencies:
'@types/node': 20.12.10
- '@types/qs': 6.9.16
+ '@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.4
+ '@types/send': 0.17.5
- '@types/express-serve-static-core@5.0.0':
+ '@types/express-serve-static-core@5.0.7':
dependencies:
'@types/node': 20.12.10
- '@types/qs': 6.9.16
+ '@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.4
+ '@types/send': 0.17.5
- '@types/express@4.17.21':
+ '@types/express@4.17.23':
dependencies:
- '@types/body-parser': 1.19.5
+ '@types/body-parser': 1.19.6
'@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.16
- '@types/serve-static': 1.15.7
+ '@types/qs': 6.14.0
+ '@types/serve-static': 1.15.8
'@types/find-root@1.1.4': {}
@@ -18745,9 +15823,9 @@ snapshots:
'@types/html-minifier-terser@6.1.0': {}
- '@types/http-errors@2.0.4': {}
+ '@types/http-errors@2.0.5': {}
- '@types/http-proxy@1.17.15':
+ '@types/http-proxy@1.17.16':
dependencies:
'@types/node': 20.12.10
@@ -18761,7 +15839,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
- '@types/jest@29.5.13':
+ '@types/jest@29.5.14':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
@@ -18770,7 +15848,7 @@ snapshots:
dependencies:
'@types/node': 20.12.10
'@types/tough-cookie': 4.0.5
- parse5: 7.2.0
+ parse5: 7.3.0
'@types/json-schema@7.0.15': {}
@@ -18782,7 +15860,7 @@ snapshots:
'@types/mime@1.3.5': {}
- '@types/node-forge@1.3.11':
+ '@types/node-forge@1.3.13':
dependencies:
'@types/node': 20.12.10
@@ -18794,29 +15872,23 @@ snapshots:
'@types/parse5@5.0.3': {}
- '@types/prop-types@15.7.13': {}
+ '@types/prop-types@15.7.15': {}
- '@types/qs@6.9.16': {}
+ '@types/qs@6.14.0': {}
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.1':
+ '@types/react-dom@18.3.7(@types/react@18.3.23)':
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.3.23
'@types/react-dom@19.0.2(@types/react@19.0.2)':
dependencies:
'@types/react': 19.0.2
- '@types/react@18.2.23':
- dependencies:
- '@types/prop-types': 15.7.13
- '@types/scheduler': 0.23.0
- csstype: 3.1.3
-
- '@types/react@18.3.0':
+ '@types/react@18.3.23':
dependencies:
- '@types/prop-types': 15.7.13
+ '@types/prop-types': 15.7.15
csstype: 3.1.3
'@types/react@19.0.2':
@@ -18825,24 +15897,22 @@ snapshots:
'@types/retry@0.12.0': {}
- '@types/scheduler@0.23.0': {}
+ '@types/semver@7.7.0': {}
- '@types/semver@7.5.8': {}
-
- '@types/send@0.17.4':
+ '@types/send@0.17.5':
dependencies:
'@types/mime': 1.3.5
'@types/node': 20.12.10
'@types/serve-index@1.9.4':
dependencies:
- '@types/express': 4.17.21
+ '@types/express': 4.17.23
- '@types/serve-static@1.15.7':
+ '@types/serve-static@1.15.8':
dependencies:
- '@types/http-errors': 2.0.4
+ '@types/http-errors': 2.0.5
'@types/node': 20.12.10
- '@types/send': 0.17.4
+ '@types/send': 0.17.5
'@types/sockjs@0.3.36':
dependencies:
@@ -18852,13 +15922,13 @@ snapshots:
'@types/testing-library__jest-dom@5.14.9':
dependencies:
- '@types/jest': 29.5.13
+ '@types/jest': 29.5.14
'@types/tough-cookie@4.0.5': {}
'@types/unist@2.0.11': {}
- '@types/ws@8.5.12':
+ '@types/ws@8.18.1':
dependencies:
'@types/node': 20.12.10
@@ -18868,61 +15938,119 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)':
+ '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/scope-manager': 6.19.1
'@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 6.19.1
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ eslint: 8.56.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ eslint: 8.56.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/regexpp': 4.12.1
'@typescript-eslint/parser': 7.1.0(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/scope-manager': 7.1.0
'@typescript-eslint/type-utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 7.1.0
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
'@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.5.3)
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 7.18.0
eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.5.3
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 8.56.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -18931,33 +16059,83 @@ snapshots:
'@typescript-eslint/scope-manager': 4.4.1
'@typescript-eslint/types': 4.4.1
'@typescript-eslint/typescript-estree': 4.4.1(typescript@5.5.3)
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@4.4.1(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 4.4.1
+ '@typescript-eslint/types': 4.4.1
+ '@typescript-eslint/typescript-estree': 4.4.1(typescript@5.7.2)
+ debug: 4.4.1
+ eslint: 8.56.0
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@4.4.1(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 4.4.1
+ '@typescript-eslint/types': 4.4.1
+ '@typescript-eslint/typescript-estree': 4.4.1(typescript@5.8.3)
+ debug: 4.4.1
+ eslint: 8.56.0
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
'@typescript-eslint/scope-manager': 6.19.1
'@typescript-eslint/types': 6.19.1
'@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 6.19.1
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ eslint: 8.56.0
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ eslint: 8.56.0
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.1.0
'@typescript-eslint/types': 7.1.0
'@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 7.1.0
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
optionalDependencies:
typescript: 5.5.3
@@ -18969,10 +16147,10 @@ snapshots:
'@typescript-eslint/types': 4.4.1
'@typescript-eslint/visitor-keys': 4.4.1
- '@typescript-eslint/scope-manager@5.35.1':
+ '@typescript-eslint/scope-manager@5.62.0':
dependencies:
- '@typescript-eslint/types': 5.35.1
- '@typescript-eslint/visitor-keys': 5.35.1
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
'@typescript-eslint/scope-manager@6.19.1':
dependencies:
@@ -18993,41 +16171,77 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3)
'@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2)
+ '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2)
+ debug: 4.4.1
+ eslint: 8.56.0
+ ts-api-utils: 1.4.3(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
+ debug: 4.4.1
+ eslint: 8.56.0
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/type-utils@7.1.0(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
'@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3)
'@typescript-eslint/utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3)
- debug: 4.3.7
+ debug: 4.4.1
eslint: 8.56.0
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.5.3)':
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.5.3)
- debug: 4.3.7
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2)
+ debug: 4.4.1
eslint: 8.56.0
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.5.3
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3)
+ debug: 4.4.1
+ eslint: 8.56.0
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/types@4.4.1': {}
- '@typescript-eslint/types@5.35.1': {}
+ '@typescript-eslint/types@5.62.0': {}
'@typescript-eslint/types@6.19.1': {}
@@ -19039,123 +16253,297 @@ snapshots:
dependencies:
'@typescript-eslint/types': 4.4.1
'@typescript-eslint/visitor-keys': 4.4.1
- debug: 4.3.7
+ debug: 4.4.1
globby: 11.1.0
is-glob: 4.0.3
lodash: 4.17.21
- semver: 7.6.3
+ semver: 7.7.2
tsutils: 3.21.0(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@5.35.1(typescript@5.5.3)':
+ '@typescript-eslint/typescript-estree@4.4.1(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/types': 4.4.1
+ '@typescript-eslint/visitor-keys': 4.4.1
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ semver: 7.7.2
+ tsutils: 3.21.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@4.4.1(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 4.4.1
+ '@typescript-eslint/visitor-keys': 4.4.1
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ semver: 7.7.2
+ tsutils: 3.21.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)':
dependencies:
- '@typescript-eslint/types': 5.35.1
- '@typescript-eslint/visitor-keys': 5.35.1
- debug: 4.3.7
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.4.1
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.3
+ semver: 7.7.2
tsutils: 3.21.0(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.7.2
+ tsutils: 3.21.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.7.2
+ tsutils: 3.21.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/typescript-estree@6.19.1(typescript@5.5.3)':
dependencies:
'@typescript-eslint/types': 6.19.1
'@typescript-eslint/visitor-keys': 6.19.1
- debug: 4.3.7
+ debug: 4.4.1
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@6.19.1(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.3
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@6.19.1(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/visitor-keys': 6.19.1
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.3
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/typescript-estree@7.1.0(typescript@5.5.3)':
dependencies:
'@typescript-eslint/types': 7.1.0
'@typescript-eslint/visitor-keys': 7.1.0
- debug: 4.3.7
+ debug: 4.4.1
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.5.3)
optionalDependencies:
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.3)':
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)':
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.7
+ debug: 4.4.1
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.3)
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.5.3
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.4.1
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.2
+ ts-api-utils: 1.4.3(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.5.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.7.0
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3)
+ eslint: 8.56.0
+ eslint-scope: 5.1.1
+ semver: 7.7.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.7.0
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2)
+ eslint: 8.56.0
+ eslint-scope: 5.1.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
+ - typescript
- '@typescript-eslint/utils@5.35.1(eslint@8.56.0)(typescript@5.5.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.8.3)':
dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
- '@typescript-eslint/scope-manager': 5.35.1
- '@typescript-eslint/types': 5.35.1
- '@typescript-eslint/typescript-estree': 5.35.1(typescript@5.5.3)
+ '@types/semver': 7.7.0
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.3)
eslint: 8.56.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.56.0)
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
- typescript
'@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.7.0
'@typescript-eslint/scope-manager': 6.19.1
'@typescript-eslint/types': 6.19.1
'@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3)
eslint: 8.56.0
- semver: 7.6.3
+ semver: 7.7.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.7.0
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2)
+ eslint: 8.56.0
+ semver: 7.7.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.7.0
+ '@typescript-eslint/scope-manager': 6.19.1
+ '@typescript-eslint/types': 6.19.1
+ '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3)
+ eslint: 8.56.0
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
- typescript
'@typescript-eslint/utils@7.1.0(eslint@8.56.0)(typescript@5.5.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
+ '@types/semver': 7.7.0
'@typescript-eslint/scope-manager': 7.1.0
'@typescript-eslint/types': 7.1.0
'@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3)
eslint: 8.56.0
- semver: 7.6.3
+ semver: 7.7.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
+ eslint: 8.56.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.5.3)':
+ '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.3)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3)
eslint: 8.56.0
transitivePeerDependencies:
- supports-color
@@ -19166,9 +16554,9 @@ snapshots:
'@typescript-eslint/types': 4.4.1
eslint-visitor-keys: 2.1.0
- '@typescript-eslint/visitor-keys@5.35.1':
+ '@typescript-eslint/visitor-keys@5.62.0':
dependencies:
- '@typescript-eslint/types': 5.35.1
+ '@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
'@typescript-eslint/visitor-keys@6.19.1':
@@ -19186,191 +16574,162 @@ snapshots:
'@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
- '@ungap/structured-clone@1.2.0': {}
+ '@ungap/structured-clone@1.3.0': {}
- '@vitejs/plugin-react@4.3.2(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@vitejs/plugin-react@4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.9)
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0)
+ '@rolldown/pluginutils': 1.0.0-beta.19
'@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ react-refresh: 0.17.0
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0))':
+ '@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@bcoe/v8-coverage': 0.2.3
- debug: 4.3.7
+ '@istanbuljs/schema': 0.1.3
+ debug: 4.4.1
istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.12
magicast: 0.3.5
- std-env: 3.7.0
test-exclude: 7.0.1
- tinyrainbow: 1.2.0
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
+ tinyrainbow: 2.0.0
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@vitest/coverage-v8@2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.7
+ debug: 4.4.1
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.12
+ magic-string: 0.30.17
magicast: 0.3.5
- std-env: 3.7.0
+ std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ vitest: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@2.1.3(vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.7
+ debug: 4.4.1
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.12
+ magic-string: 0.30.17
magicast: 0.3.5
- std-env: 3.7.0
+ std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.0.5':
+ '@vitest/expect@1.3.1':
dependencies:
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
- tinyrainbow: 1.2.0
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
+ chai: 4.5.0
- '@vitest/expect@2.1.3':
+ '@vitest/expect@3.2.4':
dependencies:
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
- chai: 5.1.1
- tinyrainbow: 1.2.0
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.1
+ tinyrainbow: 2.0.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))':
+ '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))':
dependencies:
- '@vitest/spy': 2.1.3
+ '@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.12
+ magic-string: 0.30.17
optionalDependencies:
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
-
- '@vitest/pretty-format@2.0.5':
- dependencies:
- tinyrainbow: 1.2.0
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
- '@vitest/pretty-format@2.1.3':
+ '@vitest/pretty-format@3.2.4':
dependencies:
- tinyrainbow: 1.2.0
+ tinyrainbow: 2.0.0
- '@vitest/runner@2.0.5':
+ '@vitest/runner@1.3.1':
dependencies:
- '@vitest/utils': 2.0.5
+ '@vitest/utils': 1.3.1
+ p-limit: 5.0.0
pathe: 1.1.2
- '@vitest/runner@2.1.3':
+ '@vitest/runner@3.2.4':
dependencies:
- '@vitest/utils': 2.1.3
- pathe: 1.1.2
+ '@vitest/utils': 3.2.4
+ pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@2.0.5':
+ '@vitest/snapshot@1.3.1':
dependencies:
- '@vitest/pretty-format': 2.0.5
- magic-string: 0.30.12
+ magic-string: 0.30.17
pathe: 1.1.2
+ pretty-format: 29.7.0
- '@vitest/snapshot@2.1.3':
+ '@vitest/snapshot@3.2.4':
dependencies:
- '@vitest/pretty-format': 2.1.3
- magic-string: 0.30.12
- pathe: 1.1.2
+ '@vitest/pretty-format': 3.2.4
+ magic-string: 0.30.17
+ pathe: 2.0.3
- '@vitest/spy@2.0.5':
+ '@vitest/spy@1.3.1':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 2.2.1
- '@vitest/spy@2.1.3':
+ '@vitest/spy@3.2.4':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@2.0.5':
+ '@vitest/utils@1.3.1':
dependencies:
- '@vitest/pretty-format': 2.0.5
+ diff-sequences: 29.6.3
estree-walker: 3.0.3
- loupe: 3.1.2
- tinyrainbow: 1.2.0
-
- '@vitest/utils@2.1.3':
- dependencies:
- '@vitest/pretty-format': 2.1.3
- loupe: 3.1.2
- tinyrainbow: 1.2.0
+ loupe: 2.3.7
+ pretty-format: 29.7.0
- '@webassemblyjs/ast@1.12.1':
+ '@vitest/utils@3.2.4':
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.1.4
+ tinyrainbow: 2.0.0
'@webassemblyjs/ast@1.14.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.13.2
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
-
'@webassemblyjs/floating-point-hex-parser@1.13.2': {}
- '@webassemblyjs/helper-api-error@1.11.6': {}
-
'@webassemblyjs/helper-api-error@1.13.2': {}
- '@webassemblyjs/helper-buffer@1.12.1': {}
-
'@webassemblyjs/helper-buffer@1.14.1': {}
- '@webassemblyjs/helper-numbers@1.11.6':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
- '@xtuc/long': 4.2.2
-
'@webassemblyjs/helper-numbers@1.13.2':
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.13.2
'@webassemblyjs/helper-api-error': 1.13.2
'@xtuc/long': 4.2.2
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
-
'@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
- '@webassemblyjs/helper-wasm-section@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.12.1
-
'@webassemblyjs/helper-wasm-section@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19378,37 +16737,16 @@ snapshots:
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
'@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/ieee754@1.11.6':
- dependencies:
- '@xtuc/ieee754': 1.2.0
-
'@webassemblyjs/ieee754@1.13.2':
dependencies:
- '@xtuc/ieee754': 1.2.0
-
- '@webassemblyjs/leb128@1.11.6':
- dependencies:
- '@xtuc/long': 4.2.2
+ '@xtuc/ieee754': 1.2.0
'@webassemblyjs/leb128@1.13.2':
dependencies:
'@xtuc/long': 4.2.2
- '@webassemblyjs/utf8@1.11.6': {}
-
'@webassemblyjs/utf8@1.13.2': {}
- '@webassemblyjs/wasm-edit@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-opt': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wast-printer': 1.12.1
-
'@webassemblyjs/wasm-edit@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19420,14 +16758,6 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.14.1
'@webassemblyjs/wast-printer': 1.14.1
- '@webassemblyjs/wasm-gen@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
-
'@webassemblyjs/wasm-gen@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19436,13 +16766,6 @@ snapshots:
'@webassemblyjs/leb128': 1.13.2
'@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wasm-opt@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
-
'@webassemblyjs/wasm-opt@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19450,15 +16773,6 @@ snapshots:
'@webassemblyjs/wasm-gen': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wasm-parser@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
-
'@webassemblyjs/wasm-parser@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19468,11 +16782,6 @@ snapshots:
'@webassemblyjs/leb128': 1.13.2
'@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wast-printer@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@xtuc/long': 4.2.2
-
'@webassemblyjs/wast-printer@1.14.1':
dependencies:
'@webassemblyjs/ast': 1.14.1
@@ -19480,23 +16789,19 @@ snapshots:
'@wry/caches@1.0.1':
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
'@wry/context@0.7.4':
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
'@wry/equality@0.5.7':
dependencies:
- tslib: 2.8.0
-
- '@wry/trie@0.4.3':
- dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
'@wry/trie@0.5.0':
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
'@xtuc/ieee754@1.2.0': {}
@@ -19515,47 +16820,37 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.13.0
+ acorn: 8.15.0
acorn-walk: 8.3.4
- acorn-import-assertions@1.9.0(acorn@8.13.0):
- dependencies:
- acorn: 8.13.0
-
- acorn-import-attributes@1.9.5(acorn@8.13.0):
+ acorn-import-phases@1.0.4(acorn@8.15.0):
dependencies:
- acorn: 8.13.0
+ acorn: 8.15.0
- acorn-jsx@5.3.2(acorn@8.13.0):
+ acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
- acorn: 8.13.0
+ acorn: 8.15.0
acorn-walk@8.3.4:
dependencies:
- acorn: 8.13.0
-
- acorn@8.13.0: {}
+ acorn: 8.15.0
- acorn@8.14.1: {}
+ acorn@8.15.0: {}
address@1.2.2: {}
adjust-sourcemap-loader@4.0.0:
dependencies:
loader-utils: 2.0.4
- regex-parser: 2.3.0
+ regex-parser: 2.3.1
agent-base@6.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
- agent-base@7.1.1:
- dependencies:
- debug: 4.3.7
- transitivePeerDependencies:
- - supports-color
+ agent-base@7.1.4: {}
ajv-formats@2.1.1(ajv@8.17.1):
optionalDependencies:
@@ -19580,7 +16875,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.3
+ fast-uri: 3.0.6
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -19640,73 +16935,75 @@ snapshots:
aria-query@5.3.2: {}
- array-buffer-byte-length@1.0.1:
+ array-buffer-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.4
+ call-bound: 1.0.4
+ is-array-buffer: 3.0.5
array-flatten@1.1.1: {}
- array-includes@3.1.8:
+ array-includes@3.1.9:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- is-string: 1.0.7
+ es-abstract: 1.24.0
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ is-string: 1.1.1
+ math-intrinsics: 1.1.0
array-timsort@1.0.3: {}
array-union@2.1.0: {}
- array.prototype.findlastindex@1.2.5:
+ array.prototype.findlastindex@1.2.6:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-shim-unscopables: 1.0.2
+ es-object-atoms: 1.1.1
+ es-shim-unscopables: 1.1.0
- array.prototype.flat@1.3.2:
+ array.prototype.flat@1.3.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
+ es-abstract: 1.24.0
+ es-shim-unscopables: 1.1.0
- array.prototype.flatmap@1.3.2:
+ array.prototype.flatmap@1.3.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
+ es-abstract: 1.24.0
+ es-shim-unscopables: 1.1.0
array.prototype.tosorted@1.1.4:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
- arraybuffer.prototype.slice@1.0.3:
+ arraybuffer.prototype.slice@1.0.4:
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
+ get-intrinsic: 1.3.0
+ is-array-buffer: 3.0.5
asap@2.0.6: {}
asn1.js@4.10.1:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.2
inherits: 2.0.4
minimalistic-assert: 1.0.1
@@ -19717,18 +17014,22 @@ snapshots:
object-is: 1.1.6
util: 0.12.3
+ assertion-error@1.1.0: {}
+
assertion-error@2.0.1: {}
ast-types-flow@0.0.8: {}
+ async-function@1.0.0: {}
+
asynckit@0.4.0: {}
at-least-node@1.0.0: {}
- autoprefixer@10.4.20(postcss@8.4.19):
+ autoprefixer@10.4.21(postcss@8.4.19):
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001669
+ browserslist: 4.25.1
+ caniuse-lite: 1.0.30001727
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -19737,7 +17038,7 @@ snapshots:
available-typed-arrays@1.0.7:
dependencies:
- possible-typed-array-names: 1.0.0
+ possible-typed-array-names: 1.1.0
axe-core@4.7.0: {}
@@ -19756,26 +17057,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.0(@babel/core@7.26.9)(webpack@5.95.0):
- dependencies:
- '@babel/core': 7.26.9
- find-cache-dir: 3.3.2
- schema-utils: 4.2.0
- webpack: 5.95.0(esbuild@0.14.29)
-
- babel-loader@9.1.2(@babel/core@7.26.9)(webpack@5.84.1(esbuild@0.14.29)):
+ babel-loader@9.1.0(@babel/core@7.26.9)(webpack@5.100.2):
dependencies:
'@babel/core': 7.26.9
find-cache-dir: 3.3.2
- schema-utils: 4.2.0
- webpack: 5.84.1(esbuild@0.14.29)
+ schema-utils: 4.3.2
+ webpack: 5.100.2(esbuild@0.14.29)
- babel-loader@9.1.2(@babel/core@7.26.9)(webpack@5.95.0):
+ babel-loader@9.1.2(@babel/core@7.26.9)(webpack@5.100.2):
dependencies:
'@babel/core': 7.26.9
find-cache-dir: 3.3.2
- schema-utils: 4.2.0
- webpack: 5.95.0(esbuild@0.14.29)
+ schema-utils: 4.3.2
+ webpack: 5.100.2(esbuild@0.14.29)
babel-plugin-apply-mdx-type-prop@1.6.21(@babel/core@7.11.6):
dependencies:
@@ -19799,7 +17093,7 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -19809,32 +17103,25 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.1
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.6
-
- babel-plugin-macros@3.1.0:
- dependencies:
- '@babel/runtime': 7.25.7
- cosmiconfig: 7.1.0
- resolve: 1.22.8
- optional: true
+ '@types/babel__traverse': 7.20.7
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.26.9):
dependencies:
- '@babel/compat-data': 7.25.8
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.26.9):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.9)
- core-js-compat: 3.38.1
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9)
+ core-js-compat: 3.44.0
transitivePeerDependencies:
- supports-color
@@ -19842,7 +17129,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.9
'@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.26.9)
- core-js-compat: 3.38.1
+ core-js-compat: 3.44.0
transitivePeerDependencies:
- supports-color
@@ -19853,19 +17140,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.9):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.26.9):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.9)
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.9)(@babel/traverse@7.27.0):
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0):
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.27.1
optionalDependencies:
- '@babel/traverse': 7.27.0
+ '@babel/traverse': 7.28.0
babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.9):
dependencies:
@@ -19874,7 +17161,7 @@ snapshots:
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
@@ -19914,9 +17201,9 @@ snapshots:
binary-extensions@2.3.0: {}
- bn.js@4.12.0: {}
+ bn.js@4.12.2: {}
- bn.js@5.2.1: {}
+ bn.js@5.2.2: {}
body-parser@1.20.3:
dependencies:
@@ -19935,19 +17222,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- bonjour-service@1.2.1:
+ bonjour-service@1.3.0:
dependencies:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
boolbase@1.0.0: {}
- brace-expansion@1.1.11:
+ brace-expansion@1.1.12:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.1:
+ brace-expansion@2.0.2:
dependencies:
balanced-match: 1.0.2
@@ -19960,7 +17247,7 @@ snapshots:
browserify-aes@1.2.0:
dependencies:
buffer-xor: 1.0.3
- cipher-base: 1.0.4
+ cipher-base: 1.0.6
create-hash: 1.2.0
evp_bytestokey: 1.0.3
inherits: 2.0.4
@@ -19974,25 +17261,25 @@ snapshots:
browserify-des@1.0.2:
dependencies:
- cipher-base: 1.0.4
+ cipher-base: 1.0.6
des.js: 1.1.0
inherits: 2.0.4
safe-buffer: 5.2.1
browserify-rsa@4.1.1:
dependencies:
- bn.js: 5.2.1
+ bn.js: 5.2.2
randombytes: 2.1.0
safe-buffer: 5.2.1
browserify-sign@4.2.3:
dependencies:
- bn.js: 5.2.1
+ bn.js: 5.2.2
browserify-rsa: 4.1.1
create-hash: 1.2.0
create-hmac: 1.1.7
- elliptic: 6.5.7
- hash-base: 3.0.4
+ elliptic: 6.6.1
+ hash-base: 3.0.5
inherits: 2.0.4
parse-asn1: 5.1.7
readable-stream: 2.3.8
@@ -20004,24 +17291,24 @@ snapshots:
browserslist@4.21.4:
dependencies:
- caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.41
- node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.21.4)
+ caniuse-lite: 1.0.30001727
+ electron-to-chromium: 1.5.183
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.21.4)
browserslist@4.23.0:
dependencies:
- caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.41
- node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001727
+ electron-to-chromium: 1.5.183
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.23.0)
- browserslist@4.24.0:
+ browserslist@4.25.1:
dependencies:
- caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.41
- node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ caniuse-lite: 1.0.30001727
+ electron-to-chromium: 1.5.183
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.25.1)
bser@2.1.1:
dependencies:
@@ -20038,26 +17325,33 @@ snapshots:
builtin-status-codes@3.0.0: {}
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
cac@6.7.14: {}
- call-bind@1.0.7:
+ call-bind-apply-helpers@1.0.2:
dependencies:
- es-define-property: 1.0.0
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
set-function-length: 1.2.2
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+
callsites@3.1.0: {}
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.8.0
+ tslib: 2.8.1
camelcase-css@2.0.1: {}
@@ -20072,21 +17366,31 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001669
+ caniuse-lite: 1.0.30001727
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001669: {}
+ caniuse-lite@1.0.30001727: {}
ccount@1.1.0: {}
- chai@5.1.1:
+ chai@4.5.0:
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.3
+ deep-eql: 4.1.4
+ get-func-name: 2.0.2
+ loupe: 2.3.7
+ pathval: 1.1.1
+ type-detect: 4.1.0
+
+ chai@5.2.1:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.2
- pathval: 2.0.0
+ loupe: 3.1.4
+ pathval: 2.0.1
chalk@2.4.2:
dependencies:
@@ -20114,6 +17418,10 @@ snapshots:
character-reference-invalid@1.1.4: {}
+ check-error@1.0.3:
+ dependencies:
+ get-func-name: 2.0.2
+
check-error@2.1.1: {}
chokidar@3.6.0:
@@ -20128,25 +17436,27 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chokidar@4.0.1:
+ chokidar@4.0.3:
dependencies:
- readdirp: 4.0.2
+ readdirp: 4.1.2
chrome-trace-event@1.0.4: {}
ci-info@3.9.0: {}
- cipher-base@1.0.4:
+ cipher-base@1.0.6:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
- cjs-module-lexer@1.4.1: {}
+ cjs-module-lexer@1.4.3: {}
classnames@2.2.6: {}
classnames@2.3.1: {}
+ classnames@2.5.1: {}
+
clean-css@4.2.4:
dependencies:
source-map: 0.6.1
@@ -20213,26 +17523,34 @@ snapshots:
has-own-prop: 2.0.0
repeat-string: 1.6.1
+ comment-json@4.2.5:
+ dependencies:
+ array-timsort: 1.0.3
+ core-util-is: 1.0.3
+ esprima: 4.0.1
+ has-own-prop: 2.0.0
+ repeat-string: 1.6.1
+
commondir@1.0.1: {}
compressible@2.0.18:
dependencies:
- mime-db: 1.53.0
+ mime-db: 1.54.0
- compression-webpack-plugin@11.1.0(webpack@5.95.0):
+ compression-webpack-plugin@11.1.0(webpack@5.100.2):
dependencies:
- schema-utils: 4.2.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
- compression@1.7.4:
+ compression@1.8.0:
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
debug: 2.6.9
+ negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
@@ -20269,20 +17587,20 @@ snapshots:
dependencies:
toggle-selection: 1.0.6
- core-js-compat@3.38.1:
+ core-js-compat@3.44.0:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.25.1
- core-js-pure@3.38.1: {}
+ core-js-pure@3.44.0: {}
- core-js@3.38.1: {}
+ core-js@3.44.0: {}
core-util-is@1.0.3: {}
cosmiconfig@6.0.0:
dependencies:
'@types/parse-json': 4.0.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
@@ -20290,49 +17608,74 @@ snapshots:
cosmiconfig@7.1.0:
dependencies:
'@types/parse-json': 4.0.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
cosmiconfig@8.3.6(typescript@5.5.3):
dependencies:
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
typescript: 5.5.3
+ cosmiconfig@8.3.6(typescript@5.7.2):
+ dependencies:
+ import-fresh: 3.3.1
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ optionalDependencies:
+ typescript: 5.7.2
+
+ cosmiconfig@8.3.6(typescript@5.8.3):
+ dependencies:
+ import-fresh: 3.3.1
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ optionalDependencies:
+ typescript: 5.8.3
+
create-ecdh@4.0.4:
dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.7
+ bn.js: 4.12.2
+ elliptic: 6.6.1
+
+ create-hash@1.1.3:
+ dependencies:
+ cipher-base: 1.0.6
+ inherits: 2.0.4
+ ripemd160: 2.0.1
+ sha.js: 2.4.12
create-hash@1.2.0:
dependencies:
- cipher-base: 1.0.4
+ cipher-base: 1.0.6
inherits: 2.0.4
md5.js: 1.3.5
ripemd160: 2.0.2
- sha.js: 2.4.11
+ sha.js: 2.4.12
create-hmac@1.1.7:
dependencies:
- cipher-base: 1.0.4
+ cipher-base: 1.0.6
create-hash: 1.2.0
inherits: 2.0.4
ripemd160: 2.0.2
safe-buffer: 5.2.1
- sha.js: 2.4.11
+ sha.js: 2.4.12
- create-jest@29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0):
+ create-jest@29.7.0(@types/node@20.12.10):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest-config: 29.7.0(@types/node@20.12.10)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -20341,13 +17684,13 @@ snapshots:
- supports-color
- ts-node
- cross-fetch@3.1.8:
+ cross-fetch@3.2.0:
dependencies:
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- cross-spawn@7.0.3:
+ cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
@@ -20362,7 +17705,7 @@ snapshots:
create-hmac: 1.1.7
diffie-hellman: 5.0.3
inherits: 2.0.4
- pbkdf2: 3.1.2
+ pbkdf2: 3.1.3
public-encrypt: 4.0.3
randombytes: 2.1.0
randomfill: 1.0.4
@@ -20372,68 +17715,68 @@ snapshots:
postcss: 8.4.19
postcss-selector-parser: 6.1.2
- css-declaration-sorter@7.2.0(postcss@8.4.47):
+ css-declaration-sorter@7.2.0(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
css-has-pseudo@3.0.4(postcss@8.4.19):
dependencies:
postcss: 8.4.19
postcss-selector-parser: 6.1.2
- css-loader@6.7.1(webpack@5.95.0):
+ css-loader@6.7.1(webpack@5.100.2):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
- postcss-modules-scope: 3.2.0(postcss@8.4.47)
- postcss-modules-values: 4.0.0(postcss@8.4.47)
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.6)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.5.6)
+ postcss-modules-scope: 3.2.1(postcss@8.5.6)
+ postcss-modules-values: 4.0.0(postcss@8.5.6)
postcss-value-parser: 4.2.0
- semver: 7.6.3
- webpack: 5.95.0(esbuild@0.14.29)
+ semver: 7.7.2
+ webpack: 5.100.2(esbuild@0.14.29)
- css-loader@6.7.2(webpack@5.95.0):
+ css-loader@6.7.2(webpack@5.100.2):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
- postcss-modules-scope: 3.2.0(postcss@8.4.47)
- postcss-modules-values: 4.0.0(postcss@8.4.47)
+ icss-utils: 5.1.0(postcss@8.4.19)
+ postcss: 8.4.19
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.19)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.4.19)
+ postcss-modules-scope: 3.2.1(postcss@8.4.19)
+ postcss-modules-values: 4.0.0(postcss@8.4.19)
postcss-value-parser: 4.2.0
- semver: 7.6.3
- webpack: 5.95.0(esbuild@0.14.29)
+ semver: 7.7.2
+ webpack: 5.100.2(esbuild@0.14.29)
- css-minimizer-webpack-plugin@5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0):
+ css-minimizer-webpack-plugin@5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- cssnano: 6.1.2(postcss@8.4.47)
+ '@jridgewell/trace-mapping': 0.3.29
+ cssnano: 6.1.2(postcss@8.5.6)
jest-worker: 29.7.0
- postcss: 8.4.47
- schema-utils: 4.2.0
+ postcss: 8.5.6
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
'@parcel/css': 1.14.0
'@swc/css': 0.0.20
esbuild: 0.14.29
- lightningcss: 1.27.0
+ lightningcss: 1.30.1
- css-minimizer-webpack-plugin@6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.27.0)(webpack@5.95.0):
+ css-minimizer-webpack-plugin@6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- cssnano: 6.1.2(postcss@8.4.47)
+ '@jridgewell/trace-mapping': 0.3.29
+ cssnano: 6.1.2(postcss@8.5.6)
jest-worker: 29.7.0
- postcss: 8.4.47
- schema-utils: 4.2.0
+ postcss: 8.5.6
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
'@parcel/css': 1.14.0
'@swc/css': 0.0.20
esbuild: 0.14.29
- lightningcss: 1.27.0
+ lightningcss: 1.30.1
css-prefers-color-scheme@6.0.3(postcss@8.4.19):
dependencies:
@@ -20442,17 +17785,17 @@ snapshots:
css-select@4.3.0:
dependencies:
boolbase: 1.0.0
- css-what: 6.1.0
+ css-what: 6.2.2
domhandler: 4.3.1
domutils: 2.8.0
nth-check: 2.1.1
- css-select@5.1.0:
+ css-select@5.2.2:
dependencies:
boolbase: 1.0.0
- css-what: 6.1.0
+ css-what: 6.2.2
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
nth-check: 2.1.1
css-tree@2.2.1:
@@ -20465,7 +17808,7 @@ snapshots:
mdn-data: 2.0.30
source-map-js: 1.2.1
- css-what@6.1.0: {}
+ css-what@6.2.2: {}
css.escape@1.5.1: {}
@@ -20473,49 +17816,49 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@6.1.2(postcss@8.4.47):
+ cssnano-preset-default@6.1.2(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
- css-declaration-sorter: 7.2.0(postcss@8.4.47)
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
- postcss-calc: 9.0.1(postcss@8.4.47)
- postcss-colormin: 6.1.0(postcss@8.4.47)
- postcss-convert-values: 6.1.0(postcss@8.4.47)
- postcss-discard-comments: 6.0.2(postcss@8.4.47)
- postcss-discard-duplicates: 6.0.3(postcss@8.4.47)
- postcss-discard-empty: 6.0.3(postcss@8.4.47)
- postcss-discard-overridden: 6.0.2(postcss@8.4.47)
- postcss-merge-longhand: 6.0.5(postcss@8.4.47)
- postcss-merge-rules: 6.1.1(postcss@8.4.47)
- postcss-minify-font-values: 6.1.0(postcss@8.4.47)
- postcss-minify-gradients: 6.0.3(postcss@8.4.47)
- postcss-minify-params: 6.1.0(postcss@8.4.47)
- postcss-minify-selectors: 6.0.4(postcss@8.4.47)
- postcss-normalize-charset: 6.0.2(postcss@8.4.47)
- postcss-normalize-display-values: 6.0.2(postcss@8.4.47)
- postcss-normalize-positions: 6.0.2(postcss@8.4.47)
- postcss-normalize-repeat-style: 6.0.2(postcss@8.4.47)
- postcss-normalize-string: 6.0.2(postcss@8.4.47)
- postcss-normalize-timing-functions: 6.0.2(postcss@8.4.47)
- postcss-normalize-unicode: 6.1.0(postcss@8.4.47)
- postcss-normalize-url: 6.0.2(postcss@8.4.47)
- postcss-normalize-whitespace: 6.0.2(postcss@8.4.47)
- postcss-ordered-values: 6.0.2(postcss@8.4.47)
- postcss-reduce-initial: 6.1.0(postcss@8.4.47)
- postcss-reduce-transforms: 6.0.2(postcss@8.4.47)
- postcss-svgo: 6.0.3(postcss@8.4.47)
- postcss-unique-selectors: 6.0.4(postcss@8.4.47)
-
- cssnano-utils@4.0.2(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- cssnano@6.1.2(postcss@8.4.47):
- dependencies:
- cssnano-preset-default: 6.1.2(postcss@8.4.47)
- lilconfig: 3.1.2
- postcss: 8.4.47
+ css-declaration-sorter: 7.2.0(postcss@8.5.6)
+ cssnano-utils: 4.0.2(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-calc: 9.0.1(postcss@8.5.6)
+ postcss-colormin: 6.1.0(postcss@8.5.6)
+ postcss-convert-values: 6.1.0(postcss@8.5.6)
+ postcss-discard-comments: 6.0.2(postcss@8.5.6)
+ postcss-discard-duplicates: 6.0.3(postcss@8.5.6)
+ postcss-discard-empty: 6.0.3(postcss@8.5.6)
+ postcss-discard-overridden: 6.0.2(postcss@8.5.6)
+ postcss-merge-longhand: 6.0.5(postcss@8.5.6)
+ postcss-merge-rules: 6.1.1(postcss@8.5.6)
+ postcss-minify-font-values: 6.1.0(postcss@8.5.6)
+ postcss-minify-gradients: 6.0.3(postcss@8.5.6)
+ postcss-minify-params: 6.1.0(postcss@8.5.6)
+ postcss-minify-selectors: 6.0.4(postcss@8.5.6)
+ postcss-normalize-charset: 6.0.2(postcss@8.5.6)
+ postcss-normalize-display-values: 6.0.2(postcss@8.5.6)
+ postcss-normalize-positions: 6.0.2(postcss@8.5.6)
+ postcss-normalize-repeat-style: 6.0.2(postcss@8.5.6)
+ postcss-normalize-string: 6.0.2(postcss@8.5.6)
+ postcss-normalize-timing-functions: 6.0.2(postcss@8.5.6)
+ postcss-normalize-unicode: 6.1.0(postcss@8.5.6)
+ postcss-normalize-url: 6.0.2(postcss@8.5.6)
+ postcss-normalize-whitespace: 6.0.2(postcss@8.5.6)
+ postcss-ordered-values: 6.0.2(postcss@8.5.6)
+ postcss-reduce-initial: 6.1.0(postcss@8.5.6)
+ postcss-reduce-transforms: 6.0.2(postcss@8.5.6)
+ postcss-svgo: 6.0.3(postcss@8.5.6)
+ postcss-unique-selectors: 6.0.4(postcss@8.5.6)
+
+ cssnano-utils@4.0.2(postcss@8.5.6):
+ dependencies:
+ postcss: 8.5.6
+
+ cssnano@6.1.2(postcss@8.5.6):
+ dependencies:
+ cssnano-preset-default: 6.1.2(postcss@8.5.6)
+ lilconfig: 3.1.3
+ postcss: 8.5.6
csso@5.0.5:
dependencies:
@@ -20529,9 +17872,10 @@ snapshots:
dependencies:
cssom: 0.3.8
- cssstyle@4.1.0:
+ cssstyle@4.6.0:
dependencies:
- rrweb-cssom: 0.7.1
+ '@asamuzakjp/css-color': 3.2.0
+ rrweb-cssom: 0.8.0
csstype@3.1.3: {}
@@ -20551,25 +17895,25 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.0.0
+ whatwg-url: 14.2.0
- data-view-buffer@1.0.1:
+ data-view-buffer@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-length@1.0.1:
+ data-view-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-offset@1.0.0:
+ data-view-byte-offset@1.0.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
date-format@4.0.3: {}
@@ -20583,7 +17927,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.7:
+ debug@4.4.1:
dependencies:
ms: 2.1.3
@@ -20593,38 +17937,40 @@ snapshots:
dependencies:
xregexp: 4.0.0
- decimal.js@10.4.3: {}
+ decimal.js@10.6.0: {}
decode-uri-component@0.2.2: {}
dedent@0.7.0: {}
- dedent@1.5.3(babel-plugin-macros@3.1.0):
- optionalDependencies:
- babel-plugin-macros: 3.1.0
+ dedent@1.6.0: {}
+
+ deep-eql@4.1.4:
+ dependencies:
+ type-detect: 4.1.0
deep-eql@5.0.2: {}
deep-equal@2.2.3:
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
+ get-intrinsic: 1.3.0
+ is-arguments: 1.2.0
+ is-array-buffer: 3.0.5
+ is-date-object: 1.1.0
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
isarray: 2.0.5
object-is: 1.1.6
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
+ object.assign: 4.1.7
+ regexp.prototype.flags: 1.5.4
+ side-channel: 1.1.0
+ which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.19
deep-is@0.1.4: {}
@@ -20636,9 +17982,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.0.1
+ gopd: 1.2.0
define-lazy-prop@2.0.0: {}
@@ -20671,7 +18017,10 @@ snapshots:
dependencies:
repeat-string: 1.6.1
- detect-libc@1.0.3: {}
+ detect-libc@1.0.3:
+ optional: true
+
+ detect-libc@2.0.4: {}
detect-newline@3.1.0: {}
@@ -20688,7 +18037,7 @@ snapshots:
diffie-hellman@5.0.3:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.2
miller-rabin: 4.0.1
randombytes: 2.1.0
@@ -20750,7 +18099,7 @@ snapshots:
domelementtype: 2.3.0
domhandler: 4.3.1
- domutils@3.1.0:
+ domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -20759,7 +18108,13 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
+
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
duplexer@0.1.2: {}
@@ -20767,11 +18122,11 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.41: {}
+ electron-to-chromium@1.5.183: {}
- elliptic@6.5.7:
+ elliptic@6.6.1:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.2
brorand: 1.1.0
hash.js: 1.1.7
hmac-drbg: 1.0.1
@@ -20791,19 +18146,21 @@ snapshots:
encodeurl@2.0.0: {}
- end-of-stream@1.4.4:
+ end-of-stream@1.4.5:
dependencies:
once: 1.4.0
- enhanced-resolve@5.17.1:
+ enhanced-resolve@5.18.2:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.2.2
entities@2.2.0: {}
entities@4.5.0: {}
+ entities@6.0.1: {}
+
errno@0.1.8:
dependencies:
prr: 1.0.1
@@ -20816,111 +18173,120 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-abstract@1.23.3:
+ es-abstract@1.24.0:
dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
globalthis: 1.0.4
- gopd: 1.0.1
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
is-negative-zero: 2.0.3
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- is-string: 1.0.7
- is-typed-array: 1.1.13
- is-weakref: 1.0.2
- object-inspect: 1.13.2
+ is-regex: 1.2.1
+ is-set: 2.0.3
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- safe-array-concat: 1.1.2
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.8
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ stop-iteration-iterator: 1.1.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.19
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
+ es-define-property@1.0.1: {}
es-errors@1.3.0: {}
es-get-iterator@1.1.3:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- is-arguments: 1.1.1
+ call-bind: 1.0.8
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
+ is-arguments: 1.2.0
is-map: 2.0.3
is-set: 2.0.3
- is-string: 1.0.7
+ is-string: 1.1.1
isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
+ stop-iteration-iterator: 1.1.0
- es-iterator-helpers@1.1.0:
+ es-iterator-helpers@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
+ es-set-tostringtag: 2.1.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
globalthis: 1.0.4
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- iterator.prototype: 1.1.3
- safe-array-concat: 1.1.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ iterator.prototype: 1.1.5
+ safe-array-concat: 1.1.3
- es-module-lexer@1.5.4: {}
+ es-module-lexer@1.7.0: {}
- es-object-atoms@1.0.0:
+ es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.0.3:
+ es-set-tostringtag@2.1.0:
dependencies:
- get-intrinsic: 1.2.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
has-tostringtag: 1.0.2
hasown: 2.0.2
- es-shim-unscopables@1.0.2:
+ es-shim-unscopables@1.1.0:
dependencies:
hasown: 2.0.2
- es-to-primitive@1.2.1:
+ es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
es5-ext@0.10.64:
dependencies:
@@ -21076,29 +18442,20 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0):
- dependencies:
- confusing-browser-globals: 1.0.11
- eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- object.assign: 4.1.5
- object.entries: 1.1.8
-
- eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0):
+ eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0):
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.56.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
- object.assign: 4.1.5
- object.entries: 1.1.8
- semver: 6.3.1
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
+ object.assign: 4.1.7
+ object.entries: 1.1.9
- eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3):
+ eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3):
dependencies:
'@typescript-eslint/eslint-plugin': 7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.5.3)
- eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)
- eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0)
+ eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)
+ eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0)
transitivePeerDependencies:
- eslint
- eslint-plugin-import
@@ -21108,12 +18465,12 @@ snapshots:
- supports-color
- typescript
- eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3):
+ eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.5.3)
- eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)
- eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0)
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)
+ '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.7.2)
+ eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)
+ eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0)
transitivePeerDependencies:
- eslint
- eslint-plugin-import
@@ -21123,38 +18480,41 @@ snapshots:
- supports-color
- typescript
- eslint-config-airbnb-typescript@17.1.0(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0):
+ eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
- eslint: 8.56.0
- eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.8.3)
+ eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)
+ eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0)
+ transitivePeerDependencies:
+ - eslint
+ - eslint-plugin-import
+ - eslint-plugin-jsx-a11y
+ - eslint-plugin-react
+ - eslint-plugin-react-hooks
+ - supports-color
+ - typescript
- eslint-config-airbnb@18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0):
+ eslint-config-airbnb@18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0):
dependencies:
eslint: 8.56.0
- eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0))(eslint@8.56.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
+ eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
- object.assign: 4.1.5
- object.entries: 1.1.8
+ object.assign: 4.1.7
+ object.entries: 1.1.9
eslint-config-prettier@8.5.0(eslint@8.56.0):
dependencies:
eslint: 8.56.0
- eslint-config-prettier@9.1.0(eslint@8.56.0):
- dependencies:
- eslint: 8.56.0
-
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.15.1
- resolve: 1.22.8
+ is-core-module: 2.16.1
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
@@ -21165,77 +18525,99 @@ snapshots:
remark-mdx: 1.6.22
remark-parse: 8.0.3
remark-stringify: 8.1.1
- tslib: 2.8.0
+ tslib: 2.8.1
unified: 9.2.2
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0):
dependencies:
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
+ array-includes: 3.1.9
+ array.prototype.findlastindex: 1.2.6
+ array.prototype.flat: 1.3.3
+ array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
hasown: 2.0.2
- is-core-module: 2.15.1
+ is-core-module: 2.16.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
object.groupby: 1.0.3
- object.values: 1.2.0
+ object.values: 1.2.1
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3)
+ '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0))(typescript@5.5.3):
+ eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.5.3):
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.5.3)
+ eslint: 8.56.0
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ jest: 29.3.1(@types/node@20.12.10)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.7.2):
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.7.2)
+ eslint: 8.56.0
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ jest: 29.3.1(@types/node@20.12.10)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/utils': 5.35.1(eslint@8.56.0)(typescript@5.5.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.8.3)
eslint: 8.56.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
- jest: 29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)
+ jest: 29.3.1(@types/node@20.12.10)
transitivePeerDependencies:
- supports-color
- typescript
eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
aria-query: 5.3.2
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.2
+ array-includes: 3.1.9
+ array.prototype.flatmap: 1.3.3
ast-types-flow: 0.0.8
axe-core: 4.7.0
axobject-query: 3.2.4
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.1.0
+ es-iterator-helpers: 1.2.1
eslint: 8.56.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.8
+ object.entries: 1.1.9
object.fromentries: 2.0.8
eslint-plugin-markdown@2.2.1(eslint@8.56.0):
@@ -21251,7 +18633,7 @@ snapshots:
eslint-mdx: 1.17.1(eslint@8.56.0)
eslint-plugin-markdown: 2.2.1(eslint@8.56.0)
synckit: 0.4.1
- tslib: 2.8.0
+ tslib: 2.8.1
vfile: 4.2.1
transitivePeerDependencies:
- supports-color
@@ -21262,23 +18644,23 @@ snapshots:
eslint-plugin-react@7.33.2(eslint@8.56.0):
dependencies:
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.2
+ array-includes: 3.1.9
+ array.prototype.flatmap: 1.3.3
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.1.0
+ es-iterator-helpers: 1.2.1
eslint: 8.56.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.8
+ object.entries: 1.1.9
object.fromentries: 2.0.8
object.hasown: 1.1.4
- object.values: 1.2.0
+ object.values: 1.2.1
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.11
+ string.prototype.matchall: 4.0.12
eslint-scope@5.1.1:
dependencies:
@@ -21290,29 +18672,24 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-utils@3.0.0(eslint@8.56.0):
- dependencies:
- eslint: 8.56.0
- eslint-visitor-keys: 2.1.0
-
eslint-visitor-keys@2.1.0: {}
eslint-visitor-keys@3.4.3: {}
eslint@8.56.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0)
+ '@eslint-community/regexpp': 4.12.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.56.0
'@humanwhocodes/config-array': 0.11.14
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
+ '@ungap/structured-clone': 1.3.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.7
+ cross-spawn: 7.0.6
+ debug: 4.4.1
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -21351,8 +18728,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.13.0
- acorn-jsx: 5.3.2(acorn@8.13.0)
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -21371,7 +18748,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -21393,7 +18770,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -21405,7 +18782,7 @@ snapshots:
execa@8.0.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 8.0.1
human-signals: 5.0.0
is-stream: 3.0.0
@@ -21417,6 +18794,8 @@ snapshots:
exit@0.1.2: {}
+ expect-type@1.2.2: {}
+
expect@29.7.0:
dependencies:
'@jest/expect-utils': 29.7.0
@@ -21425,7 +18804,7 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- express@4.21.1:
+ express@4.21.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
@@ -21446,7 +18825,7 @@ snapshots:
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.10
+ path-to-regexp: 0.1.12
proxy-addr: 2.0.7
qs: 6.13.0
range-parser: 1.2.1
@@ -21471,7 +18850,7 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
@@ -21485,11 +18864,11 @@ snapshots:
fast-safe-stringify@2.1.1: {}
- fast-uri@3.0.3: {}
+ fast-uri@3.0.6: {}
- fastq@1.17.1:
+ fastq@1.19.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
fault@1.0.4:
dependencies:
@@ -21503,6 +18882,10 @@ snapshots:
dependencies:
bser: 2.1.1
+ fdir@6.4.6(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
@@ -21551,28 +18934,28 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.3
keyv: 4.5.4
rimraf: 3.0.2
flatted@3.2.7: {}
- flatted@3.3.1: {}
+ flatted@3.3.3: {}
follow-redirects@1.15.9: {}
- for-each@0.3.3:
+ for-each@0.3.5:
dependencies:
is-callable: 1.2.7
- foreground-child@3.3.0:
+ foreground-child@3.3.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2):
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.27.1
'@types/json-schema': 7.0.15
chalk: 4.1.2
chokidar: 3.6.0
@@ -21583,23 +18966,66 @@ snapshots:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.3
+ semver: 7.7.2
tapable: 1.1.3
typescript: 5.5.3
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
+ optionalDependencies:
+ eslint: 8.56.0
+
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2):
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@types/json-schema': 7.0.15
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ cosmiconfig: 6.0.0
+ deepmerge: 4.3.1
+ fs-extra: 9.1.0
+ glob: 7.2.3
+ memfs: 3.5.3
+ minimatch: 3.1.2
+ schema-utils: 2.7.0
+ semver: 7.7.2
+ tapable: 1.1.3
+ typescript: 5.7.2
+ webpack: 5.100.2(esbuild@0.14.29)
+ optionalDependencies:
+ eslint: 8.56.0
+
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2):
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@types/json-schema': 7.0.15
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ cosmiconfig: 6.0.0
+ deepmerge: 4.3.1
+ fs-extra: 9.1.0
+ glob: 7.2.3
+ memfs: 3.5.3
+ minimatch: 3.1.2
+ schema-utils: 2.7.0
+ semver: 7.7.2
+ tapable: 1.1.3
+ typescript: 5.8.3
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
eslint: 8.56.0
- form-data@3.0.2:
+ form-data@3.0.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
mime-types: 2.1.35
- form-data@4.0.1:
+ form-data@4.0.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
format@0.2.2: {}
@@ -21622,7 +19048,7 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.1
- fs-extra@11.2.0:
+ fs-extra@11.3.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
@@ -21644,12 +19070,14 @@ snapshots:
function-bind@1.1.2: {}
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.3
functions-have-names: 1.2.3
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
@@ -21657,29 +19085,41 @@ snapshots:
get-caller-file@2.0.5: {}
- get-intrinsic@1.2.4:
+ get-func-name@2.0.2: {}
+
+ get-intrinsic@1.3.0:
dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
es-errors: 1.3.0
+ es-object-atoms: 1.1.1
function-bind: 1.1.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
hasown: 2.0.2
+ math-intrinsics: 1.1.0
get-package-type@0.1.0: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
get-stream@6.0.1: {}
get-stream@8.0.1: {}
- get-symbol-description@1.0.2:
+ get-symbol-description@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
get-tsconfig@4.2.0: {}
- get-xpath@3.2.0: {}
+ get-xpath@3.3.0: {}
glob-parent@5.1.2:
dependencies:
@@ -21693,7 +19133,7 @@ snapshots:
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.3.1
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
@@ -21719,8 +19159,6 @@ snapshots:
kind-of: 6.0.3
which: 1.3.1
- globals@11.12.0: {}
-
globals@13.24.0:
dependencies:
type-fest: 0.20.2
@@ -21728,20 +19166,18 @@ snapshots:
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.0.1
+ gopd: 1.2.0
globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.4
+ gopd@1.2.0: {}
graceful-fs@4.2.11: {}
@@ -21749,30 +19185,30 @@ snapshots:
graphql-request@4.3.0(graphql@15.8.0):
dependencies:
- cross-fetch: 3.1.8
+ cross-fetch: 3.2.0
extract-files: 9.0.0
- form-data: 3.0.2
+ form-data: 3.0.3
graphql: 15.8.0
transitivePeerDependencies:
- encoding
- graphql-request@4.3.0(graphql@16.9.0):
+ graphql-request@4.3.0(graphql@16.11.0):
dependencies:
- cross-fetch: 3.1.8
+ cross-fetch: 3.2.0
extract-files: 9.0.0
- form-data: 3.0.2
- graphql: 16.9.0
+ form-data: 3.0.3
+ graphql: 16.11.0
transitivePeerDependencies:
- encoding
- graphql-tag@2.12.6(graphql@16.9.0):
+ graphql-tag@2.12.6(graphql@16.11.0):
dependencies:
- graphql: 16.9.0
- tslib: 2.8.0
+ graphql: 16.11.0
+ tslib: 2.8.1
graphql@15.8.0: {}
- graphql@16.9.0: {}
+ graphql@16.11.0: {}
gzip-size@6.0.0:
dependencies:
@@ -21782,7 +19218,7 @@ snapshots:
harmony-reflect@1.6.2: {}
- has-bigints@1.0.2: {}
+ has-bigints@1.1.0: {}
has-flag@3.0.0: {}
@@ -21792,17 +19228,23 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
- has-proto@1.0.3: {}
+ has-proto@1.2.0:
+ dependencies:
+ dunder-proto: 1.0.1
- has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
+
+ hash-base@2.0.2:
+ dependencies:
+ inherits: 2.0.4
- hash-base@3.0.4:
+ hash-base@3.0.5:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
@@ -21916,7 +19358,7 @@ snapshots:
dependencies:
whatwg-encoding: 3.1.1
- html-entities@2.5.2: {}
+ html-entities@2.6.0: {}
html-escaper@2.0.2: {}
@@ -21938,27 +19380,14 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.36.0
+ terser: 5.43.1
html-void-elements@1.0.5: {}
- html-webpack-plugin@5.3.2(webpack@5.84.1(esbuild@0.14.29)):
- dependencies:
- '@types/html-minifier-terser': 5.1.2
- html-minifier-terser: 5.1.1
- lodash: 4.17.21
- pretty-error: 3.0.4
- tapable: 2.2.1
- webpack: 5.84.1(esbuild@0.14.29)
-
- html-webpack-plugin@5.3.2(webpack@5.84.1):
+ html-webpack-inject-plugin@5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2):
dependencies:
- '@types/html-minifier-terser': 5.1.2
- html-minifier-terser: 5.1.1
- lodash: 4.17.21
- pretty-error: 3.0.4
- tapable: 2.2.1
- webpack: 5.84.1
+ html-webpack-plugin: 5.6.3(webpack@5.100.2)
+ webpack: 5.100.2(esbuild@0.14.29)
html-webpack-plugin@5.3.2(webpack@5.97.1(esbuild@0.14.29)):
dependencies:
@@ -21966,7 +19395,7 @@ snapshots:
html-minifier-terser: 5.1.1
lodash: 4.17.21
pretty-error: 3.0.4
- tapable: 2.2.1
+ tapable: 2.2.2
webpack: 5.97.1(esbuild@0.14.29)
html-webpack-plugin@5.3.2(webpack@5.97.1):
@@ -21975,18 +19404,18 @@ snapshots:
html-minifier-terser: 5.1.1
lodash: 4.17.21
pretty-error: 3.0.4
- tapable: 2.2.1
+ tapable: 2.2.2
webpack: 5.97.1
- html-webpack-plugin@5.6.2(webpack@5.95.0):
+ html-webpack-plugin@5.6.3(webpack@5.100.2):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
- tapable: 2.2.1
+ tapable: 2.2.2
optionalDependencies:
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
htmlparser2@6.1.0:
dependencies:
@@ -22012,32 +19441,32 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-parser-js@0.5.8: {}
+ http-parser-js@0.5.10: {}
http-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.4
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.7(@types/express@4.17.21):
+ http-proxy-middleware@2.0.9(@types/express@4.17.23):
dependencies:
- '@types/http-proxy': 1.17.15
+ '@types/http-proxy': 1.17.16
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
optionalDependencies:
- '@types/express': 4.17.21
+ '@types/express': 4.17.23
transitivePeerDependencies:
- debug
@@ -22054,14 +19483,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.5:
+ https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.7
+ agent-base: 7.1.4
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -22081,9 +19510,13 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.47):
+ icss-utils@5.1.0(postcss@8.4.19):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.19
+
+ icss-utils@5.1.0(postcss@8.5.6):
+ dependencies:
+ postcss: 8.5.6
identity-obj-proxy@3.0.0:
dependencies:
@@ -22100,7 +19533,9 @@ snapshots:
immutable@4.3.7: {}
- import-fresh@3.3.0:
+ immutable@5.1.3: {}
+
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
@@ -22127,11 +19562,11 @@ snapshots:
inline-style-parser@0.1.1: {}
- internal-slot@1.0.7:
+ internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
- side-channel: 1.0.6
+ side-channel: 1.1.0
ipaddr.js@1.9.1: {}
@@ -22146,49 +19581,57 @@ snapshots:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
- is-arguments@1.1.1:
+ is-arguments@1.2.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-array-buffer@3.0.4:
+ is-array-buffer@3.0.5:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
- is-async-function@2.0.0:
+ is-async-function@2.1.1:
dependencies:
+ async-function: 1.0.0
+ call-bound: 1.0.4
+ get-proto: 1.0.1
has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
- is-bigint@1.0.4:
+ is-bigint@1.1.0:
dependencies:
- has-bigints: 1.0.2
+ has-bigints: 1.1.0
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-buffer@2.0.5: {}
is-callable@1.2.7: {}
- is-core-module@2.15.1:
+ is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.1:
+ is-data-view@1.0.2:
dependencies:
- is-typed-array: 1.1.13
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ is-typed-array: 1.1.15
- is-date-object@1.0.5:
+ is-date-object@1.1.0:
dependencies:
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-decimal@1.0.4: {}
@@ -22197,17 +19640,20 @@ snapshots:
is-extglob@2.1.1: {}
- is-finalizationregistry@1.0.2:
+ is-finalizationregistry@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
is-fullwidth-code-point@3.0.0: {}
is-generator-fn@2.1.0: {}
- is-generator-function@1.0.10:
+ is-generator-function@1.1.0:
dependencies:
+ call-bound: 1.0.4
+ get-proto: 1.0.1
has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
is-glob@4.0.3:
dependencies:
@@ -22219,13 +19665,14 @@ snapshots:
is-nan@1.3.2:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
is-negative-zero@2.0.3: {}
- is-number-object@1.0.7:
+ is-number-object@1.1.1:
dependencies:
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -22244,45 +19691,50 @@ snapshots:
is-promise@2.2.2: {}
- is-regex@1.1.4:
+ is-regex@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
+ gopd: 1.2.0
has-tostringtag: 1.0.2
+ hasown: 2.0.2
is-root@2.1.0: {}
is-set@2.0.3: {}
- is-shared-array-buffer@1.0.3:
+ is-shared-array-buffer@1.0.4:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
is-stream@2.0.1: {}
is-stream@3.0.0: {}
- is-string@1.0.7:
+ is-string@1.1.1:
dependencies:
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-symbol@1.0.4:
+ is-symbol@1.1.1:
dependencies:
- has-symbols: 1.0.3
+ call-bound: 1.0.4
+ has-symbols: 1.1.0
+ safe-regex-test: 1.1.0
- is-typed-array@1.1.13:
+ is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.19
is-weakmap@2.0.2: {}
- is-weakref@1.0.2:
+ is-weakref@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
- is-weakset@2.0.3:
+ is-weakset@2.0.4:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-what@3.14.1: {}
@@ -22309,7 +19761,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.26.9
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.28.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -22319,10 +19771,10 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.26.9
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.28.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.6.3
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
@@ -22334,7 +19786,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.7
+ debug: 4.4.1
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -22342,8 +19794,8 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.7
+ '@jridgewell/trace-mapping': 0.3.29
+ debug: 4.4.1
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -22353,12 +19805,13 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- iterator.prototype@1.1.3:
+ iterator.prototype@1.1.5:
dependencies:
- define-properties: 1.2.1
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.6
+ define-data-property: 1.1.4
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ has-symbols: 1.1.0
set-function-name: 2.0.2
jackspeak@3.4.3:
@@ -22373,7 +19826,7 @@ snapshots:
jest-util: 29.7.0
p-limit: 3.1.0
- jest-circus@29.7.0(babel-plugin-macros@3.1.0):
+ jest-circus@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/expect': 29.7.0
@@ -22382,7 +19835,7 @@ snapshots:
'@types/node': 20.12.10
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.3(babel-plugin-macros@3.1.0)
+ dedent: 1.6.0
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -22399,16 +19852,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0):
+ jest-cli@29.7.0(@types/node@20.12.10):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
+ '@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ create-jest: 29.7.0(@types/node@20.12.10)
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest-config: 29.7.0(@types/node@20.12.10)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -22418,7 +19871,7 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0):
+ jest-config@29.7.0(@types/node@20.12.10):
dependencies:
'@babel/core': 7.26.9
'@jest/test-sequencer': 29.7.0
@@ -22429,7 +19882,7 @@ snapshots:
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
- jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
+ jest-circus: 29.7.0
jest-environment-node: 29.7.0
jest-get-type: 29.6.3
jest-regex-util: 29.6.3
@@ -22523,7 +19976,7 @@ snapshots:
jest-message-util@29.3.1:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.27.1
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -22535,7 +19988,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.27.1
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -22572,8 +20025,8 @@ snapshots:
jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
- resolve: 1.22.8
- resolve.exports: 2.0.2
+ resolve: 1.22.10
+ resolve.exports: 2.0.3
slash: 3.0.0
jest-runner@29.7.0:
@@ -22613,7 +20066,7 @@ snapshots:
'@jest/types': 29.6.3
'@types/node': 20.12.10
chalk: 4.1.2
- cjs-module-lexer: 1.4.1
+ cjs-module-lexer: 1.4.3
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -22632,10 +20085,10 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
'@babel/core': 7.26.9
- '@babel/generator': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.9)
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.26.9)
- '@babel/types': 7.25.8
+ '@babel/generator': 7.28.0
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9)
+ '@babel/types': 7.28.1
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
@@ -22650,7 +20103,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.3
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
@@ -22696,12 +20149,12 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.3.1(@types/node@20.12.10)(babel-plugin-macros@3.1.0):
+ jest@29.3.1(@types/node@20.12.10):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
+ '@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@20.12.10)(babel-plugin-macros@3.1.0)
+ jest-cli: 29.7.0(@types/node@20.12.10)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -22714,6 +20167,8 @@ snapshots:
js-tokens@4.0.0: {}
+ js-tokens@9.0.1: {}
+
js-yaml@3.14.1:
dependencies:
argparse: 1.0.10
@@ -22726,21 +20181,21 @@ snapshots:
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.13.0
+ acorn: 8.15.0
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.4.3
+ decimal.js: 10.6.0
domexception: 4.0.0
escodegen: 2.1.0
- form-data: 4.0.1
+ form-data: 4.0.3
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.13
- parse5: 7.2.0
+ nwsapi: 2.2.20
+ parse5: 7.3.0
saxes: 6.0.0
symbol-tree: 3.2.4
tough-cookie: 4.1.4
@@ -22749,7 +20204,7 @@ snapshots:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.18.0
+ ws: 8.18.3
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -22758,16 +20213,16 @@ snapshots:
jsdom@24.1.3:
dependencies:
- cssstyle: 4.1.0
+ cssstyle: 4.6.0
data-urls: 5.0.0
- decimal.js: 10.4.3
- form-data: 4.0.1
+ decimal.js: 10.6.0
+ form-data: 4.0.3
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.13
- parse5: 7.2.0
+ nwsapi: 2.2.20
+ parse5: 7.3.0
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -22776,8 +20231,8 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.0.0
- ws: 8.18.0
+ whatwg-url: 14.2.0
+ ws: 8.18.3
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -22786,6 +20241,8 @@ snapshots:
jsesc@3.0.2: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-even-better-errors@2.3.1: {}
@@ -22810,10 +20267,10 @@ snapshots:
jsx-ast-utils@3.3.5:
dependencies:
- array-includes: 3.1.8
- array.prototype.flat: 1.3.2
- object.assign: 4.1.5
- object.values: 1.2.0
+ array-includes: 3.1.9
+ array.prototype.flat: 1.3.3
+ object.assign: 4.1.7
+ object.values: 1.2.1
junit-report-builder@3.2.1:
dependencies:
@@ -22838,22 +20295,22 @@ snapshots:
dependencies:
language-subtag-registry: 0.3.23
- launch-editor@2.9.1:
+ launch-editor@2.10.0:
dependencies:
picocolors: 1.1.1
- shell-quote: 1.8.1
+ shell-quote: 1.8.3
- less-loader@11.1.0(less@4.2.0)(webpack@5.95.0):
+ less-loader@11.1.0(less@4.3.0)(webpack@5.100.2):
dependencies:
klona: 2.0.6
- less: 4.2.0
- webpack: 5.95.0(esbuild@0.14.29)
+ less: 4.3.0
+ webpack: 5.100.2(esbuild@0.14.29)
- less@4.2.0:
+ less@4.3.0:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.8.0
+ tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -22872,52 +20329,52 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lightningcss-darwin-arm64@1.27.0:
+ lightningcss-darwin-arm64@1.30.1:
optional: true
- lightningcss-darwin-x64@1.27.0:
+ lightningcss-darwin-x64@1.30.1:
optional: true
- lightningcss-freebsd-x64@1.27.0:
+ lightningcss-freebsd-x64@1.30.1:
optional: true
- lightningcss-linux-arm-gnueabihf@1.27.0:
+ lightningcss-linux-arm-gnueabihf@1.30.1:
optional: true
- lightningcss-linux-arm64-gnu@1.27.0:
+ lightningcss-linux-arm64-gnu@1.30.1:
optional: true
- lightningcss-linux-arm64-musl@1.27.0:
+ lightningcss-linux-arm64-musl@1.30.1:
optional: true
- lightningcss-linux-x64-gnu@1.27.0:
+ lightningcss-linux-x64-gnu@1.30.1:
optional: true
- lightningcss-linux-x64-musl@1.27.0:
+ lightningcss-linux-x64-musl@1.30.1:
optional: true
- lightningcss-win32-arm64-msvc@1.27.0:
+ lightningcss-win32-arm64-msvc@1.30.1:
optional: true
- lightningcss-win32-x64-msvc@1.27.0:
+ lightningcss-win32-x64-msvc@1.30.1:
optional: true
- lightningcss@1.27.0:
+ lightningcss@1.30.1:
dependencies:
- detect-libc: 1.0.3
+ detect-libc: 2.0.4
optionalDependencies:
- lightningcss-darwin-arm64: 1.27.0
- lightningcss-darwin-x64: 1.27.0
- lightningcss-freebsd-x64: 1.27.0
- lightningcss-linux-arm-gnueabihf: 1.27.0
- lightningcss-linux-arm64-gnu: 1.27.0
- lightningcss-linux-arm64-musl: 1.27.0
- lightningcss-linux-x64-gnu: 1.27.0
- lightningcss-linux-x64-musl: 1.27.0
- lightningcss-win32-arm64-msvc: 1.27.0
- lightningcss-win32-x64-msvc: 1.27.0
-
- lilconfig@3.1.2: {}
+ lightningcss-darwin-arm64: 1.30.1
+ lightningcss-darwin-x64: 1.30.1
+ lightningcss-freebsd-x64: 1.30.1
+ lightningcss-linux-arm-gnueabihf: 1.30.1
+ lightningcss-linux-arm64-gnu: 1.30.1
+ lightningcss-linux-arm64-musl: 1.30.1
+ lightningcss-linux-x64-gnu: 1.30.1
+ lightningcss-linux-x64-musl: 1.30.1
+ lightningcss-win32-arm64-msvc: 1.30.1
+ lightningcss-win32-x64-msvc: 1.30.1
+
+ lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -22931,6 +20388,11 @@ snapshots:
loader-utils@3.3.1: {}
+ local-pkg@0.5.1:
+ dependencies:
+ mlly: 1.7.4
+ pkg-types: 1.3.1
+
locate-path@3.0.0:
dependencies:
p-locate: 3.0.0
@@ -22964,11 +20426,15 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@3.1.2: {}
+ loupe@2.3.7:
+ dependencies:
+ get-func-name: 2.0.2
+
+ loupe@3.1.4: {}
lower-case@2.0.2:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
lowlight@1.20.0:
dependencies:
@@ -22991,14 +20457,14 @@ snapshots:
lz-string@1.5.0: {}
- magic-string@0.30.12:
+ magic-string@0.30.17:
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/sourcemap-codec': 1.5.4
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
source-map-js: 1.2.1
make-dir@2.1.0:
@@ -23013,7 +20479,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.2
makeerror@1.0.12:
dependencies:
@@ -23025,6 +20491,8 @@ snapshots:
dependencies:
repeat-string: 1.6.1
+ math-intrinsics@1.1.0: {}
+
md5.js@1.3.5:
dependencies:
hash-base: 3.1.0
@@ -23033,7 +20501,7 @@ snapshots:
mdast-squeeze-paragraphs@4.0.0:
dependencies:
- unist-util-remove: 2.0.1
+ unist-util-remove: 2.1.0
mdast-util-compact@2.0.1:
dependencies:
@@ -23119,7 +20587,7 @@ snapshots:
micromark@2.11.4:
dependencies:
- debug: 4.3.7
+ debug: 4.4.1
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -23131,12 +20599,12 @@ snapshots:
miller-rabin@4.0.1:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.2
brorand: 1.1.0
mime-db@1.52.0: {}
- mime-db@1.53.0: {}
+ mime-db@1.54.0: {}
mime-types@2.1.35:
dependencies:
@@ -23150,11 +20618,11 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.9.1(webpack@5.95.0):
+ mini-css-extract-plugin@2.9.2(webpack@5.100.2):
dependencies:
- schema-utils: 4.2.0
- tapable: 2.2.1
- webpack: 5.95.0(esbuild@0.14.29)
+ schema-utils: 4.3.2
+ tapable: 2.2.2
+ webpack: 5.100.2(esbuild@0.14.29)
minimalistic-assert@1.0.1: {}
@@ -23162,30 +20630,30 @@ snapshots:
minimatch@3.1.2:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 1.1.12
minimatch@5.1.0:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@9.0.3:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@9.0.5:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimist@1.2.8: {}
minipass@7.1.2: {}
- mlly@1.7.2:
+ mlly@1.7.4:
dependencies:
- acorn: 8.13.0
- pathe: 1.1.2
- pkg-types: 1.2.1
- ufo: 1.5.4
+ acorn: 8.15.0
+ pathe: 2.0.3
+ pkg-types: 1.3.1
+ ufo: 1.6.1
mri@1.1.4: {}
@@ -23204,7 +20672,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.7: {}
+ nanoid@3.3.11: {}
natural-compare@1.4.0: {}
@@ -23216,20 +20684,23 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@0.6.4: {}
+
neo-async@2.6.2: {}
- new-url-loader@0.1.1(webpack@5.95.0):
+ new-url-loader@0.1.1(webpack@5.100.2):
dependencies:
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
next-tick@1.1.0: {}
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.8.0
+ tslib: 2.8.1
- node-addon-api@7.1.1: {}
+ node-addon-api@7.1.1:
+ optional: true
node-fetch@2.7.0:
dependencies:
@@ -23239,11 +20710,11 @@ snapshots:
node-int64@0.4.0: {}
- node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
node-source-walk@5.0.2:
dependencies:
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.28.0
normalize-path@3.0.0: {}
@@ -23261,58 +20732,62 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nwsapi@2.2.13: {}
+ nwsapi@2.2.20: {}
object-assign@4.1.1: {}
object-hash@3.0.0: {}
- object-inspect@1.13.2: {}
+ object-inspect@1.13.4: {}
object-is@1.1.6:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
object-keys@1.1.1: {}
- object.assign@4.1.5:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- has-symbols: 1.0.3
+ es-object-atoms: 1.1.1
+ has-symbols: 1.1.0
object-keys: 1.1.1
- object.entries@1.1.8:
+ object.entries@1.1.9:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.24.0
+ es-object-atoms: 1.1.1
object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
object.hasown@1.1.4:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.24.0
+ es-object-atoms: 1.1.1
- object.values@1.2.0:
+ object.values@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
obuf@1.1.2: {}
@@ -23340,12 +20815,12 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- optimism@0.18.0:
+ optimism@0.18.1:
dependencies:
'@wry/caches': 1.0.1
'@wry/context': 0.7.4
- '@wry/trie': 0.4.3
- tslib: 2.8.0
+ '@wry/trie': 0.5.0
+ tslib: 2.8.1
optionator@0.9.4:
dependencies:
@@ -23360,6 +20835,12 @@ snapshots:
outdent@0.8.0: {}
+ own-keys@1.0.1:
+ dependencies:
+ get-intrinsic: 1.3.0
+ object-keys: 1.1.1
+ safe-push-apply: 1.0.0
+
p-limit@2.3.0:
dependencies:
p-try: 2.2.0
@@ -23368,6 +20849,10 @@ snapshots:
dependencies:
yocto-queue: 0.1.0
+ p-limit@5.0.0:
+ dependencies:
+ yocto-queue: 1.2.1
+
p-locate@3.0.0:
dependencies:
p-limit: 2.3.0
@@ -23396,7 +20881,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -23407,8 +20892,8 @@ snapshots:
asn1.js: 4.10.1
browserify-aes: 1.2.0
evp_bytestokey: 1.0.3
- hash-base: 3.0.4
- pbkdf2: 3.1.2
+ hash-base: 3.0.5
+ pbkdf2: 3.1.3
safe-buffer: 5.2.1
parse-entities@2.0.0:
@@ -23422,7 +20907,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -23433,16 +20918,16 @@ snapshots:
parse5@6.0.1: {}
- parse5@7.2.0:
+ parse5@7.3.0:
dependencies:
- entities: 4.5.0
+ entities: 6.0.1
parseurl@1.3.3: {}
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
path-browserify@1.0.1: {}
@@ -23463,21 +20948,26 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-to-regexp@0.1.10: {}
+ path-to-regexp@0.1.12: {}
path-type@4.0.0: {}
pathe@1.1.2: {}
- pathval@2.0.0: {}
+ pathe@2.0.3: {}
- pbkdf2@3.1.2:
+ pathval@1.1.1: {}
+
+ pathval@2.0.1: {}
+
+ pbkdf2@3.1.3:
dependencies:
- create-hash: 1.2.0
+ create-hash: 1.1.3
create-hmac: 1.1.7
- ripemd160: 2.0.2
+ ripemd160: 2.0.1
safe-buffer: 5.2.1
- sha.js: 2.4.11
+ sha.js: 2.4.12
+ to-buffer: 1.2.1
performance-now@2.1.0: {}
@@ -23485,6 +20975,8 @@ snapshots:
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pify@4.0.1:
optional: true
@@ -23497,28 +20989,28 @@ snapshots:
fast-safe-stringify: 2.1.1
jmespath: 0.15.0
joycon: 2.2.5
- pump: 3.0.2
+ pump: 3.0.3
readable-stream: 3.6.2
split2: 3.2.2
strip-json-comments: 3.1.1
- pirates@4.0.6: {}
+ pirates@4.0.7: {}
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
- pkg-types@1.2.1:
+ pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.2
- pathe: 1.1.2
+ mlly: 1.7.4
+ pathe: 2.0.3
pkg-up@3.1.0:
dependencies:
find-up: 3.0.0
- possible-typed-array-names@1.0.0: {}
+ possible-typed-array-names@1.1.0: {}
postcss-attribute-case-insensitive@5.0.2(postcss@8.4.19):
dependencies:
@@ -23530,9 +21022,9 @@ snapshots:
browserslist: 4.21.4
postcss: 8.4.19
- postcss-calc@9.0.1(postcss@8.4.47):
+ postcss-calc@9.0.1(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
@@ -23556,18 +21048,18 @@ snapshots:
postcss: 8.4.19
postcss-value-parser: 4.2.0
- postcss-colormin@6.1.0(postcss@8.4.47):
+ postcss-colormin@6.1.0(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-convert-values@6.1.0(postcss@8.4.47):
+ postcss-convert-values@6.1.0(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
postcss-custom-media@8.0.2(postcss@8.4.19):
@@ -23590,21 +21082,21 @@ snapshots:
postcss: 8.4.19
postcss-selector-parser: 6.1.2
- postcss-discard-comments@6.0.2(postcss@8.4.47):
+ postcss-discard-comments@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
- postcss-discard-duplicates@6.0.3(postcss@8.4.47):
+ postcss-discard-duplicates@6.0.3(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
- postcss-discard-empty@6.0.3(postcss@8.4.47):
+ postcss-discard-empty@6.0.3(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
- postcss-discard-overridden@6.0.2(postcss@8.4.47):
+ postcss-discard-overridden@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-double-position-gradients@3.1.2(postcss@8.4.19):
dependencies:
@@ -23654,13 +21146,13 @@ snapshots:
postcss: 8.4.19
postcss-value-parser: 4.2.0
- postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.95.0):
+ postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.100.2):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.19
- semver: 7.6.3
- webpack: 5.95.0(esbuild@0.14.29)
+ semver: 7.7.2
+ webpack: 5.100.2(esbuild@0.14.29)
postcss-logical@5.0.4(postcss@8.4.19):
dependencies:
@@ -23670,64 +21162,85 @@ snapshots:
dependencies:
postcss: 8.4.19
- postcss-merge-longhand@6.0.5(postcss@8.4.47):
+ postcss-merge-longhand@6.0.5(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- stylehacks: 6.1.1(postcss@8.4.47)
+ stylehacks: 6.1.1(postcss@8.5.6)
- postcss-merge-rules@6.1.1(postcss@8.4.47):
+ postcss-merge-rules@6.1.1(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
caniuse-api: 3.0.0
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 4.0.2(postcss@8.5.6)
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@6.1.0(postcss@8.4.47):
+ postcss-minify-font-values@6.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-gradients@6.0.3(postcss@8.4.47):
+ postcss-minify-gradients@6.0.3(postcss@8.5.6):
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 4.0.2(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-params@6.1.0(postcss@8.4.47):
+ postcss-minify-params@6.1.0(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 4.0.2(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-selectors@6.0.4(postcss@8.4.47):
+ postcss-minify-selectors@6.0.4(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.19):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.19
- postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
+ postcss: 8.5.6
+
+ postcss-modules-local-by-default@4.2.0(postcss@8.4.19):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.19)
+ postcss: 8.4.19
+ postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.47):
+ postcss-modules-local-by-default@4.2.0(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-selector-parser: 7.1.0
+ postcss-value-parser: 4.2.0
+
+ postcss-modules-scope@3.2.1(postcss@8.4.19):
+ dependencies:
+ postcss: 8.4.19
+ postcss-selector-parser: 7.1.0
+
+ postcss-modules-scope@3.2.1(postcss@8.5.6):
+ dependencies:
+ postcss: 8.5.6
+ postcss-selector-parser: 7.1.0
+
+ postcss-modules-values@4.0.0(postcss@8.4.19):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.19)
+ postcss: 8.4.19
- postcss-modules-values@4.0.0(postcss@8.4.47):
+ postcss-modules-values@4.0.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
postcss-nesting@10.2.0(postcss@8.4.19):
dependencies:
@@ -23735,49 +21248,49 @@ snapshots:
postcss: 8.4.19
postcss-selector-parser: 6.1.2
- postcss-normalize-charset@6.0.2(postcss@8.4.47):
+ postcss-normalize-charset@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
- postcss-normalize-display-values@6.0.2(postcss@8.4.47):
+ postcss-normalize-display-values@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-positions@6.0.2(postcss@8.4.47):
+ postcss-normalize-positions@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@6.0.2(postcss@8.4.47):
+ postcss-normalize-repeat-style@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-string@6.0.2(postcss@8.4.47):
+ postcss-normalize-string@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@6.0.2(postcss@8.4.47):
+ postcss-normalize-timing-functions@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@6.1.0(postcss@8.4.47):
+ postcss-normalize-unicode@6.1.0(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-url@6.0.2(postcss@8.4.47):
+ postcss-normalize-url@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@6.0.2(postcss@8.4.47):
+ postcss-normalize-whitespace@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
postcss-normalize@10.0.1(browserslist@4.21.4)(postcss@8.4.19):
@@ -23792,10 +21305,10 @@ snapshots:
dependencies:
postcss: 8.4.19
- postcss-ordered-values@6.0.2(postcss@8.4.47):
+ postcss-ordered-values@6.0.2(postcss@8.5.6):
dependencies:
- cssnano-utils: 4.0.2(postcss@8.4.47)
- postcss: 8.4.47
+ cssnano-utils: 4.0.2(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
postcss-overflow-shorthand@3.0.4(postcss@8.4.19):
@@ -23828,7 +21341,7 @@ snapshots:
'@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.19)
'@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.19)
'@csstools/postcss-unset-value': 1.0.2(postcss@8.4.19)
- autoprefixer: 10.4.20(postcss@8.4.19)
+ autoprefixer: 10.4.21(postcss@8.4.19)
browserslist: 4.23.0
css-blank-pseudo: 3.0.3(postcss@8.4.19)
css-has-pseudo: 3.0.4(postcss@8.4.19)
@@ -23870,15 +21383,15 @@ snapshots:
postcss: 8.4.19
postcss-selector-parser: 6.1.2
- postcss-reduce-initial@6.1.0(postcss@8.4.47):
+ postcss-reduce-initial@6.1.0(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
caniuse-api: 3.0.0
- postcss: 8.4.47
+ postcss: 8.5.6
- postcss-reduce-transforms@6.0.2(postcss@8.4.47):
+ postcss-reduce-transforms@6.0.2(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
postcss-replace-overflow-wrap@4.0.0(postcss@8.4.19):
@@ -23895,35 +21408,38 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@6.0.3(postcss@8.4.47):
+ postcss-selector-parser@7.1.0:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ postcss-svgo@6.0.3(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@6.0.4(postcss@8.4.47):
+ postcss-unique-selectors@6.0.4(postcss@8.5.6):
dependencies:
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
postcss@8.4.19:
dependencies:
- nanoid: 3.3.7
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.4.47:
+ postcss@8.5.6:
dependencies:
- nanoid: 3.3.7
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
prelude-ls@1.2.1: {}
- prettier@2.8.8: {}
-
prettier@3.3.3: {}
pretty-error@3.0.4:
@@ -23958,7 +21474,7 @@ snapshots:
prismjs@1.27.0: {}
- prismjs@1.29.0: {}
+ prismjs@1.30.0: {}
process-nextick-args@2.0.1: {}
@@ -23990,20 +21506,22 @@ snapshots:
prr@1.0.1: {}
- psl@1.9.0: {}
+ psl@1.15.0:
+ dependencies:
+ punycode: 2.3.1
public-encrypt@4.0.3:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.2
browserify-rsa: 4.1.1
create-hash: 1.2.0
parse-asn1: 5.1.7
randombytes: 2.1.0
safe-buffer: 5.2.1
- pump@3.0.2:
+ pump@3.0.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
punycode@1.4.1: {}
@@ -24016,7 +21534,11 @@ snapshots:
qs@6.13.0:
dependencies:
- side-channel: 1.0.6
+ side-channel: 1.1.0
+
+ qs@6.14.0:
+ dependencies:
+ side-channel: 1.1.0
query-string@7.0.0:
dependencies:
@@ -24055,25 +21577,59 @@ snapshots:
react-app-polyfill@3.0.0:
dependencies:
- core-js: 3.38.1
+ core-js: 3.44.0
object-assign: 4.1.1
promise: 8.3.0
raf: 3.4.1
regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.20
- react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0):
+ react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2):
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ address: 1.2.2
+ browserslist: 4.23.0
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 4.0.0
+ filesize: 8.0.7
+ find-up: 5.0.0
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2)
+ global-modules: 2.0.0
+ globby: 11.1.0
+ gzip-size: 6.0.0
+ immer: 9.0.21
+ is-root: 2.1.0
+ loader-utils: 3.3.1
+ open: 8.4.2
+ pkg-up: 3.1.0
+ prompts: 2.4.2
+ react-error-overlay: 6.1.0
+ recursive-readdir: 2.2.3
+ shell-quote: 1.8.3
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ webpack: 5.100.2(esbuild@0.14.29)
+ optionalDependencies:
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - vue-template-compiler
+
+ react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2):
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.27.1
address: 1.2.2
browserslist: 4.23.0
chalk: 4.1.2
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.95.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -24083,24 +21639,52 @@ snapshots:
open: 8.4.2
pkg-up: 3.1.0
prompts: 2.4.2
- react-error-overlay: 6.0.11
+ react-error-overlay: 6.1.0
recursive-readdir: 2.2.3
- shell-quote: 1.8.1
+ shell-quote: 1.8.3
strip-ansi: 6.0.1
text-table: 0.2.0
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
- typescript: 5.5.3
+ typescript: 5.7.2
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
- react-dom@18.2.0(react@18.3.1):
+ react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2):
dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
+ '@babel/code-frame': 7.27.1
+ address: 1.2.2
+ browserslist: 4.23.0
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 4.0.0
+ filesize: 8.0.7
+ find-up: 5.0.0
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2)
+ global-modules: 2.0.0
+ globby: 11.1.0
+ gzip-size: 6.0.0
+ immer: 9.0.21
+ is-root: 2.1.0
+ loader-utils: 3.3.1
+ open: 8.4.2
+ pkg-up: 3.1.0
+ prompts: 2.4.2
+ react-error-overlay: 6.1.0
+ recursive-readdir: 2.2.3
+ shell-quote: 1.8.3
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ webpack: 5.100.2(esbuild@0.14.29)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - vue-template-compiler
react-dom@18.3.1(react@18.3.1):
dependencies:
@@ -24115,18 +21699,18 @@ snapshots:
react-error-boundary@3.1.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
react: 18.3.1
react-error-boundary@3.1.4(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
react: 19.0.0
- react-error-overlay@6.0.11: {}
-
react-error-overlay@6.0.9: {}
+ react-error-overlay@6.1.0: {}
+
react-fast-compare@3.2.2: {}
react-helmet@6.1.0(react@19.0.0):
@@ -24161,30 +21745,18 @@ snapshots:
react-refresh@0.14.0: {}
- react-refresh@0.14.2: {}
-
- react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
- dependencies:
- '@remix-run/router': 1.20.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-router: 6.27.0(react@18.3.1)
+ react-refresh@0.17.0: {}
- react-router-dom@6.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@remix-run/router': 1.20.0
+ '@remix-run/router': 1.23.0
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- react-router: 6.27.0(react@19.0.0)
-
- react-router@6.27.0(react@18.3.1):
- dependencies:
- '@remix-run/router': 1.20.0
- react: 18.3.1
+ react-router: 6.30.1(react@19.0.0)
- react-router@6.27.0(react@19.0.0):
+ react-router@6.30.1(react@19.0.0):
dependencies:
- '@remix-run/router': 1.20.0
+ '@remix-run/router': 1.23.0
react: 19.0.0
react-side-effect@2.1.2(react@19.0.0):
@@ -24193,73 +21765,57 @@ snapshots:
react-syntax-highlighter@13.5.3(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
highlight.js: 10.7.3
lowlight: 1.20.0
- prismjs: 1.29.0
+ prismjs: 1.30.0
react: 18.3.1
refractor: 3.6.0
react-syntax-highlighter@13.5.3(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
highlight.js: 10.7.3
lowlight: 1.20.0
- prismjs: 1.29.0
+ prismjs: 1.30.0
react: 19.0.0
refractor: 3.6.0
react-syntax-highlighter@15.4.3(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
highlight.js: 10.7.3
lowlight: 1.20.0
- prismjs: 1.29.0
+ prismjs: 1.30.0
react: 18.3.1
refractor: 3.6.0
react-syntax-highlighter@15.4.3(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.27.6
highlight.js: 10.7.3
lowlight: 1.20.0
- prismjs: 1.29.0
+ prismjs: 1.30.0
react: 19.0.0
refractor: 3.6.0
- react-use-dimensions@1.2.1(@types/react@18.2.23)(react@18.3.1)(typescript@5.5.3):
- dependencies:
- '@types/react': 18.2.23
- react: 18.3.1
- typescript: 5.5.3
-
- react-use-dimensions@1.2.1(@types/react@18.3.0)(react@18.3.1)(typescript@5.5.3):
+ react-use-dimensions@1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3):
dependencies:
- '@types/react': 18.3.0
+ '@types/react': 18.3.23
react: 18.3.1
typescript: 5.5.3
- react-use-dimensions@1.2.1(@types/react@18.3.0)(react@19.0.0)(typescript@5.5.3):
- dependencies:
- '@types/react': 18.3.0
- react: 19.0.0
- typescript: 5.5.3
-
- react-use-dimensions@1.2.1(@types/react@19.0.2)(react@18.3.1)(typescript@5.5.3):
+ react-use-dimensions@1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2):
dependencies:
'@types/react': 19.0.2
- react: 18.3.1
- typescript: 5.5.3
+ react: 19.0.0
+ typescript: 5.7.2
- react-use-dimensions@1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.5.3):
+ react-use-dimensions@1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3):
dependencies:
'@types/react': 19.0.2
react: 19.0.0
- typescript: 5.5.3
-
- react@18.2.0:
- dependencies:
- loose-envify: 1.4.0
+ typescript: 5.8.3
react@18.3.1:
dependencies:
@@ -24287,7 +21843,7 @@ snapshots:
dependencies:
picomatch: 2.3.1
- readdirp@4.0.2: {}
+ readdirp@4.1.2: {}
recursive-readdir@2.2.3:
dependencies:
@@ -24298,15 +21854,16 @@ snapshots:
indent-string: 4.0.0
strip-indent: 3.0.0
- reflect.getprototypeof@1.0.6:
+ reflect.getprototypeof@1.0.10:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- globalthis: 1.0.4
- which-builtin-type: 1.1.4
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ which-builtin-type: 1.2.1
refractor@3.6.0:
dependencies:
@@ -24322,41 +21879,32 @@ snapshots:
regenerator-runtime@0.13.11: {}
- regenerator-runtime@0.14.1: {}
-
- regenerator-transform@0.15.2:
- dependencies:
- '@babel/runtime': 7.25.7
-
- regex-parser@2.3.0: {}
+ regex-parser@2.3.1: {}
- regexp.prototype.flags@1.5.3:
+ regexp.prototype.flags@1.5.4:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
es-errors: 1.3.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.1.1:
+ regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.0
regjsgen: 0.8.0
- regjsparser: 0.11.1
+ regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.0
regjsgen@0.8.0: {}
- regjsparser@0.11.1:
+ regjsparser@0.12.0:
dependencies:
jsesc: 3.0.2
- rehackt@0.1.0(@types/react@18.3.0)(react@18.3.1):
- optionalDependencies:
- '@types/react': 18.3.0
- react: 18.3.1
-
rehackt@0.1.0(@types/react@19.0.2)(react@19.0.0):
optionalDependencies:
'@types/react': 19.0.2
@@ -24496,33 +22044,36 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.47
+ postcss: 8.4.19
source-map: 0.6.1
- resolve.exports@2.0.2: {}
+ resolve.exports@2.0.3: {}
- resolve@1.22.8:
+ resolve@1.22.10:
dependencies:
- is-core-module: 2.15.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.15.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- response-iterator@0.2.6: {}
-
retry@0.13.1: {}
- reusify@1.0.4: {}
+ reusify@1.1.0: {}
rimraf@3.0.2:
dependencies:
glob: 7.2.3
+ ripemd160@2.0.1:
+ dependencies:
+ hash-base: 2.0.2
+ inherits: 2.0.4
+
ripemd160@2.0.2:
dependencies:
hash-base: 3.1.0
@@ -24550,59 +22101,45 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.22.0
fsevents: 2.3.3
- rollup@4.24.0:
- dependencies:
- '@types/estree': 1.0.6
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.0
- '@rollup/rollup-android-arm64': 4.24.0
- '@rollup/rollup-darwin-arm64': 4.24.0
- '@rollup/rollup-darwin-x64': 4.24.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.0
- '@rollup/rollup-linux-arm-musleabihf': 4.24.0
- '@rollup/rollup-linux-arm64-gnu': 4.24.0
- '@rollup/rollup-linux-arm64-musl': 4.24.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0
- '@rollup/rollup-linux-riscv64-gnu': 4.24.0
- '@rollup/rollup-linux-s390x-gnu': 4.24.0
- '@rollup/rollup-linux-x64-gnu': 4.24.0
- '@rollup/rollup-linux-x64-musl': 4.24.0
- '@rollup/rollup-win32-arm64-msvc': 4.24.0
- '@rollup/rollup-win32-ia32-msvc': 4.24.0
- '@rollup/rollup-win32-x64-msvc': 4.24.0
- fsevents: 2.3.3
-
rrweb-cssom@0.7.1: {}
+ rrweb-cssom@0.8.0: {}
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- safe-array-concat@1.1.2:
+ safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
isarray: 2.0.5
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.3:
+ safe-push-apply@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ isarray: 2.0.5
+
+ safe-regex-test@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-regex: 1.1.4
+ is-regex: 1.2.1
safer-buffer@2.1.2: {}
sanitize.css@13.0.0: {}
- sass-loader@13.3.2(sass@1.63.6)(webpack@5.95.0):
+ sass-loader@13.3.2(sass@1.63.6)(webpack@5.100.2):
dependencies:
neo-async: 2.6.2
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
sass: 1.63.6
@@ -24612,12 +22149,13 @@ snapshots:
immutable: 4.3.7
source-map-js: 1.2.1
- sass@1.80.2:
+ sass@1.89.2:
dependencies:
- '@parcel/watcher': 2.4.1
- chokidar: 4.0.1
- immutable: 4.3.7
+ chokidar: 4.0.3
+ immutable: 5.1.3
source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.1
sax@1.4.1:
optional: true
@@ -24644,7 +22182,7 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.2.0:
+ schema-utils@4.3.2:
dependencies:
'@types/json-schema': 7.0.15
ajv: 8.17.1
@@ -24655,22 +22193,20 @@ snapshots:
selfsigned@2.4.1:
dependencies:
- '@types/node-forge': 1.3.11
+ '@types/node-forge': 1.3.13
node-forge: 1.3.1
semver@5.7.2: {}
semver@6.3.1: {}
- semver@7.3.4:
- dependencies:
- lru-cache: 6.0.0
-
semver@7.5.2:
dependencies:
lru-cache: 6.0.0
- semver@7.6.3: {}
+ semver@7.7.1: {}
+
+ semver@7.7.2: {}
send@0.19.0:
dependencies:
@@ -24720,8 +22256,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -24731,16 +22267,23 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ set-proto@1.0.0:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+
setimmediate@1.0.5: {}
setprototypeof@1.1.0: {}
setprototypeof@1.2.0: {}
- sha.js@2.4.11:
+ sha.js@2.4.12:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
+ to-buffer: 1.2.1
shallow-clone@3.0.1:
dependencies:
@@ -24752,14 +22295,35 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
+ shell-quote@1.8.3: {}
+
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
- side-channel@1.0.6:
+ side-channel@1.1.0:
dependencies:
- call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.2
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
siginfo@2.0.0: {}
@@ -24774,7 +22338,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
sockjs@0.3.24:
dependencies:
@@ -24784,12 +22348,12 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@4.0.1(webpack@5.95.0):
+ source-map-loader@4.0.1(webpack@5.100.2):
dependencies:
abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
source-map-support@0.5.13:
dependencies:
@@ -24811,7 +22375,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.7
+ debug: 4.4.1
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -24822,7 +22386,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.4.1
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -24852,11 +22416,12 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.7.0: {}
+ std-env@3.9.0: {}
- stop-iteration-iterator@1.0.0:
+ stop-iteration-iterator@1.1.0:
dependencies:
- internal-slot: 1.0.7
+ es-errors: 1.3.0
+ internal-slot: 1.1.0
stream-browserify@3.0.0:
dependencies:
@@ -24889,39 +22454,44 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.matchall@4.0.11:
+ string.prototype.matchall@4.0.12:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.24.0
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.3
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ regexp.prototype.flags: 1.5.4
set-function-name: 2.0.2
- side-channel: 1.0.6
+ side-channel: 1.1.0
- string.prototype.trim@1.2.9:
+ string.prototype.trim@1.2.10:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.24.0
+ es-object-atoms: 1.1.1
+ has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.8:
+ string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string_decoder@1.1.1:
dependencies:
@@ -24967,28 +22537,36 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-loader@3.3.1(webpack@5.95.0):
+ strip-literal@2.1.1:
+ dependencies:
+ js-tokens: 9.0.1
+
+ strip-literal@3.0.0:
+ dependencies:
+ js-tokens: 9.0.1
+
+ style-loader@3.3.1(webpack@5.100.2):
dependencies:
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
style-to-object@0.3.0:
dependencies:
inline-style-parser: 0.1.1
- stylehacks@6.1.1(postcss@8.4.47):
+ stylehacks@6.1.1(postcss@8.5.6):
dependencies:
browserslist: 4.23.0
- postcss: 8.4.47
+ postcss: 8.5.6
postcss-selector-parser: 6.1.2
sucrase@3.35.0:
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.12
commander: 4.1.1
glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
- pirates: 4.0.6
+ pirates: 4.0.7
ts-interface-checker: 0.1.13
supports-color@5.5.0:
@@ -25011,9 +22589,9 @@ snapshots:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
- css-select: 5.1.0
+ css-select: 5.2.2
css-tree: 2.3.1
- css-what: 6.1.0
+ css-what: 6.2.2
csso: 5.0.5
picocolors: 1.1.1
@@ -25028,87 +22606,67 @@ snapshots:
synckit@0.4.1:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
uuid: 8.3.2
tapable@1.1.3: {}
- tapable@2.2.1: {}
+ tapable@2.2.2: {}
- terser-webpack-plugin@5.2.0(esbuild@0.14.29)(webpack@5.95.0):
+ terser-webpack-plugin@5.2.0(esbuild@0.14.29)(webpack@5.100.2):
dependencies:
jest-worker: 27.5.1
p-limit: 3.1.0
schema-utils: 3.3.0
serialize-javascript: 6.0.2
source-map: 0.6.1
- terser: 5.36.0
- webpack: 5.95.0(esbuild@0.14.29)
- optionalDependencies:
- esbuild: 0.14.29
-
- terser-webpack-plugin@5.3.10(esbuild@0.14.29)(webpack@5.84.1(esbuild@0.14.29)):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.36.0
- webpack: 5.84.1(esbuild@0.14.29)
+ terser: 5.43.1
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
esbuild: 0.14.29
- terser-webpack-plugin@5.3.10(esbuild@0.14.29)(webpack@5.95.0):
+ terser-webpack-plugin@5.3.14(esbuild@0.14.29)(webpack@5.100.2):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.36.0
- webpack: 5.95.0(esbuild@0.14.29)
+ terser: 5.43.1
+ webpack: 5.100.2(esbuild@0.14.29)
optionalDependencies:
esbuild: 0.14.29
- terser-webpack-plugin@5.3.10(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29)):
+ terser-webpack-plugin@5.3.14(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.36.0
+ terser: 5.43.1
webpack: 5.97.1(esbuild@0.14.29)
optionalDependencies:
esbuild: 0.14.29
- terser-webpack-plugin@5.3.10(webpack@5.84.1):
+ terser-webpack-plugin@5.3.14(webpack@5.97.1):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.36.0
- webpack: 5.84.1
-
- terser-webpack-plugin@5.3.10(webpack@5.97.1):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.36.0
+ terser: 5.43.1
webpack: 5.97.1
terser@4.8.1:
dependencies:
- acorn: 8.13.0
+ acorn: 8.15.0
commander: 2.20.3
source-map: 0.6.1
source-map-support: 0.5.21
- terser@5.36.0:
+ terser@5.43.1:
dependencies:
- '@jridgewell/source-map': 0.3.6
- acorn: 8.13.0
+ '@jridgewell/source-map': 0.3.10
+ acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -25147,13 +22705,24 @@ snapshots:
tinybench@2.9.0: {}
- tinyexec@0.3.1: {}
+ tinyexec@0.3.2: {}
+
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.4.6(picomatch@4.0.2)
+ picomatch: 4.0.2
+
+ tinypool@0.8.4: {}
- tinypool@1.0.1: {}
+ tinypool@1.1.1: {}
tinyrainbow@1.2.0: {}
- tinyspy@3.0.2: {}
+ tinyrainbow@2.0.0: {}
+
+ tinyspy@2.2.1: {}
+
+ tinyspy@4.0.3: {}
tippy.js@6.3.7:
dependencies:
@@ -25161,7 +22730,11 @@ snapshots:
tmpl@1.0.5: {}
- to-fast-properties@2.0.0: {}
+ to-buffer@1.2.1:
+ dependencies:
+ isarray: 2.0.5
+ safe-buffer: 5.2.1
+ typed-array-buffer: 1.0.3
to-regex-range@5.0.1:
dependencies:
@@ -25173,7 +22746,7 @@ snapshots:
tough-cookie@4.1.4:
dependencies:
- psl: 1.9.0
+ psl: 1.15.0
punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
@@ -25184,7 +22757,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tr46@5.0.0:
+ tr46@5.1.1:
dependencies:
punycode: 2.3.1
@@ -25194,15 +22767,23 @@ snapshots:
trough@1.0.5: {}
- ts-api-utils@1.3.0(typescript@5.5.3):
+ ts-api-utils@1.4.3(typescript@5.5.3):
dependencies:
typescript: 5.5.3
+ ts-api-utils@1.4.3(typescript@5.7.2):
+ dependencies:
+ typescript: 5.7.2
+
+ ts-api-utils@1.4.3(typescript@5.8.3):
+ dependencies:
+ typescript: 5.8.3
+
ts-interface-checker@0.1.13: {}
ts-invariant@0.10.3:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
tsconfig-paths@3.15.0:
dependencies:
@@ -25213,13 +22794,23 @@ snapshots:
tslib@1.14.1: {}
- tslib@2.8.0: {}
+ tslib@2.8.1: {}
tsutils@3.21.0(typescript@5.5.3):
dependencies:
tslib: 1.14.1
typescript: 5.5.3
+ tsutils@3.21.0(typescript@5.7.2):
+ dependencies:
+ tslib: 1.14.1
+ typescript: 5.7.2
+
+ tsutils@3.21.0(typescript@5.8.3):
+ dependencies:
+ tslib: 1.14.1
+ typescript: 5.8.3
+
tty-browserify@0.0.1: {}
type-check@0.4.0:
@@ -25228,6 +22819,8 @@ snapshots:
type-detect@4.0.8: {}
+ type-detect@4.1.0: {}
+
type-fest@0.20.2: {}
type-fest@0.21.3: {}
@@ -25239,48 +22832,53 @@ snapshots:
type@2.7.3: {}
- typed-array-buffer@1.0.2:
+ typed-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-typed-array: 1.1.13
+ is-typed-array: 1.1.15
- typed-array-byte-length@1.0.1:
+ typed-array-byte-length@1.0.3:
dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
- typed-array-byte-offset@1.0.2:
+ typed-array-byte-offset@1.0.4:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
-
- typed-array-length@1.0.6:
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- possible-typed-array-names: 1.0.0
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
+
+ typed-array-length@1.0.7:
+ dependencies:
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
+ possible-typed-array-names: 1.1.0
+ reflect.getprototypeof: 1.0.10
typescript@5.5.3: {}
- ufo@1.5.4: {}
+ typescript@5.7.2: {}
+
+ typescript@5.8.3: {}
- unbox-primitive@1.0.2:
+ ufo@1.6.1: {}
+
+ unbox-primitive@1.1.0:
dependencies:
- call-bind: 1.0.7
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ call-bound: 1.0.4
+ has-bigints: 1.1.0
+ has-symbols: 1.1.0
+ which-boxed-primitive: 1.1.1
undici-types@5.26.5: {}
@@ -25307,7 +22905,7 @@ snapshots:
extend: 3.0.2
is-plain-obj: 2.1.0
trough: 1.0.5
- vfile: 4.2.1
+ vfile: 4.2.0
unified@9.2.0:
dependencies:
@@ -25345,6 +22943,10 @@ snapshots:
dependencies:
unist-util-is: 4.1.0
+ unist-util-remove@2.1.0:
+ dependencies:
+ unist-util-is: 4.1.0
+
unist-util-stringify-position@2.0.3:
dependencies:
'@types/unist': 2.0.11
@@ -25366,21 +22968,21 @@ snapshots:
unpipe@1.0.0: {}
- update-browserslist-db@1.1.1(browserslist@4.21.4):
+ update-browserslist-db@1.1.3(browserslist@4.21.4):
dependencies:
browserslist: 4.21.4
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.1(browserslist@4.23.0):
+ update-browserslist-db@1.1.3(browserslist@4.23.0):
dependencies:
browserslist: 4.23.0
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.1(browserslist@4.24.0):
+ update-browserslist-db@1.1.3(browserslist@4.25.1):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.25.1
escalade: 3.2.0
picocolors: 1.1.1
@@ -25400,7 +23002,7 @@ snapshots:
url@0.11.2:
dependencies:
punycode: 1.4.1
- qs: 6.13.0
+ qs: 6.14.0
use-debounce@3.4.3(react@18.3.1):
dependencies:
@@ -25444,31 +23046,13 @@ snapshots:
dependencies:
react: 19.0.0
- use-isomorphic-layout-effect@1.1.2(@types/react@18.2.23)(react@18.3.1):
- dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.2.23
-
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.0)(react@18.3.1):
- dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.0
-
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.0)(react@19.0.0):
- dependencies:
- react: 19.0.0
- optionalDependencies:
- '@types/react': 18.3.0
-
- use-isomorphic-layout-effect@1.1.2(@types/react@19.0.2)(react@18.3.1):
+ use-isomorphic-layout-effect@1.2.1(@types/react@18.3.23)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 19.0.2
+ '@types/react': 18.3.23
- use-isomorphic-layout-effect@1.1.2(@types/react@19.0.2)(react@19.0.0):
+ use-isomorphic-layout-effect@1.2.1(@types/react@19.0.2)(react@19.0.0):
dependencies:
react: 19.0.0
optionalDependencies:
@@ -25479,11 +23063,11 @@ snapshots:
util@0.12.3:
dependencies:
inherits: 2.0.4
- is-arguments: 1.1.1
- is-generator-function: 1.0.10
- is-typed-array: 1.1.13
+ is-arguments: 1.2.0
+ is-generator-function: 1.1.0
+ is-typed-array: 1.1.15
safe-buffer: 5.2.1
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.19
utila@0.4.0: {}
@@ -25495,7 +23079,7 @@ snapshots:
v8-to-istanbul@9.3.0:
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.29
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
@@ -25523,31 +23107,13 @@ snapshots:
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- vite-node@2.0.5(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0):
+ vite-node@1.3.1(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1):
dependencies:
cac: 6.7.14
- debug: 4.3.7
+ debug: 4.4.1
pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- vite-node@2.0.5(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0):
- dependencies:
- cac: 6.7.14
- debug: 4.3.7
- pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ picocolors: 1.1.1
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -25559,12 +23125,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0):
+ vite-node@3.2.4(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1):
dependencies:
cac: 6.7.14
- debug: 4.3.7
- pathe: 1.1.2
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ debug: 4.4.1
+ es-module-lexer: 1.7.0
+ pathe: 2.0.3
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -25576,86 +23143,40 @@ snapshots:
- supports-color
- terser
- vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.4.47
- rollup: 4.24.0
- optionalDependencies:
- '@types/node': 20.12.10
- fsevents: 2.3.3
- less: 4.2.0
- lightningcss: 1.27.0
- sass: 1.63.6
- terser: 5.36.0
-
- vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0):
+ vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.47
- rollup: 4.24.0
+ postcss: 8.5.6
+ rollup: 4.22.0
optionalDependencies:
'@types/node': 20.12.10
fsevents: 2.3.3
- less: 4.2.0
- lightningcss: 1.27.0
- sass: 1.80.2
- terser: 5.36.0
-
- vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0):
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@vitest/expect': 2.0.5
- '@vitest/pretty-format': 2.1.3
- '@vitest/runner': 2.0.5
- '@vitest/snapshot': 2.0.5
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
- debug: 4.3.7
- execa: 8.0.1
- magic-string: 0.30.12
- pathe: 1.1.2
- std-env: 3.7.0
- tinybench: 2.9.0
- tinypool: 1.0.1
- tinyrainbow: 1.2.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- vite-node: 2.0.5(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.63.6)(terser@5.36.0)
- why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/node': 20.12.10
- jsdom: 24.1.3
- transitivePeerDependencies:
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- vitest@2.0.5(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0):
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@vitest/expect': 2.0.5
- '@vitest/pretty-format': 2.1.3
- '@vitest/runner': 2.0.5
- '@vitest/snapshot': 2.0.5
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
- debug: 4.3.7
+ less: 4.3.0
+ lightningcss: 1.30.1
+ sass: 1.89.2
+ terser: 5.43.1
+
+ vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1):
+ dependencies:
+ '@vitest/expect': 1.3.1
+ '@vitest/runner': 1.3.1
+ '@vitest/snapshot': 1.3.1
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
+ acorn-walk: 8.3.4
+ chai: 4.5.0
+ debug: 4.4.1
execa: 8.0.1
- magic-string: 0.30.12
+ local-pkg: 0.5.1
+ magic-string: 0.30.17
pathe: 1.1.2
- std-env: 3.7.0
+ picocolors: 1.1.1
+ std-env: 3.9.0
+ strip-literal: 2.1.1
tinybench: 2.9.0
- tinypool: 1.0.1
- tinyrainbow: 1.2.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vite-node: 2.0.5(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ tinypool: 0.8.4
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vite-node: 1.3.1(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.12.10
@@ -25670,26 +23191,30 @@ snapshots:
- supports-color
- terser
- vitest@2.1.3(@types/node@20.12.10)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0):
- dependencies:
- '@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0))
- '@vitest/pretty-format': 2.1.3
- '@vitest/runner': 2.1.3
- '@vitest/snapshot': 2.1.3
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
- chai: 5.1.1
- debug: 4.3.7
- magic-string: 0.30.12
- pathe: 1.1.2
- std-env: 3.7.0
+ vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.1
+ debug: 4.4.1
+ expect-type: 1.2.2
+ magic-string: 0.30.17
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ std-env: 3.9.0
tinybench: 2.9.0
- tinyexec: 0.3.1
- tinypool: 1.0.1
- tinyrainbow: 1.2.0
- vite: 5.4.9(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
- vite-node: 2.1.3(@types/node@20.12.10)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.2)(terser@5.36.0)
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.1
+ tinyrainbow: 2.0.0
+ vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
+ vite-node: 3.2.4(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.12.10
@@ -25719,7 +23244,7 @@ snapshots:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.2:
+ watchpack@2.4.4:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -25734,49 +23259,49 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-dev-middleware@5.3.4(webpack@5.95.0):
+ webpack-dev-middleware@5.3.4(webpack@5.100.2):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.2.0
- webpack: 5.95.0(esbuild@0.14.29)
+ schema-utils: 4.3.2
+ webpack: 5.100.2(esbuild@0.14.29)
- webpack-dev-server@4.15.0(webpack@5.95.0):
+ webpack-dev-server@4.15.0(webpack@5.100.2):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.21
+ '@types/express': 4.17.23
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.7
+ '@types/serve-static': 1.15.8
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.12
+ '@types/ws': 8.18.1
ansi-html-community: 0.0.8
- bonjour-service: 1.2.1
+ bonjour-service: 1.3.0
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.4
+ compression: 1.8.0
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.21.1
+ express: 4.21.2
graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ html-entities: 2.6.0
+ http-proxy-middleware: 2.0.9(@types/express@4.17.23)
ipaddr.js: 2.2.0
- launch-editor: 2.9.1
+ launch-editor: 2.10.0
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.2.0
+ schema-utils: 4.3.2
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.95.0)
- ws: 8.18.0
+ webpack-dev-middleware: 5.3.4(webpack@5.100.2)
+ ws: 8.18.3
optionalDependencies:
- webpack: 5.95.0(esbuild@0.14.29)
+ webpack: 5.100.2(esbuild@0.14.29)
transitivePeerDependencies:
- bufferutil
- debug
@@ -25788,82 +23313,22 @@ snapshots:
clone-deep: 4.0.1
wildcard: 2.0.1
- webpack-sources@3.2.3: {}
-
- webpack@5.84.1:
- dependencies:
- '@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.13.0
- acorn-import-assertions: 1.9.0(acorn@8.13.0)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.84.1)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
+ webpack-sources@3.3.3: {}
- webpack@5.84.1(esbuild@0.14.29):
+ webpack@5.100.2(esbuild@0.14.29):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.13.0
- acorn-import-assertions: 1.9.0(acorn@8.13.0)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.14.29)(webpack@5.84.1(esbuild@0.14.29))
- watchpack: 2.4.2
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- webpack@5.95.0(esbuild@0.14.29):
- dependencies:
- '@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.13.0
- acorn-import-attributes: 1.9.5(acorn@8.13.0)
- browserslist: 4.23.0
+ '@types/estree': 1.0.8
+ '@types/json-schema': 7.0.15
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.15.0
+ acorn-import-phases: 1.0.4(acorn@8.15.0)
+ browserslist: 4.25.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
+ enhanced-resolve: 5.18.2
+ es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -25872,11 +23337,11 @@ snapshots:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.14.29)(webpack@5.95.0)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ schema-utils: 4.3.2
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(esbuild@0.14.29)(webpack@5.100.2)
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -25885,15 +23350,15 @@ snapshots:
webpack@5.97.1:
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.0
+ acorn: 8.15.0
+ browserslist: 4.25.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
+ enhanced-resolve: 5.18.2
+ es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -25903,10 +23368,10 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.97.1)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(webpack@5.97.1)
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -25915,15 +23380,15 @@ snapshots:
webpack@5.97.1(esbuild@0.14.29):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.0
+ acorn: 8.15.0
+ browserslist: 4.25.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
+ enhanced-resolve: 5.18.2
+ es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -25933,10 +23398,10 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29))
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ tapable: 2.2.2
+ terser-webpack-plugin: 5.3.14(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29))
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -25944,7 +23409,7 @@ snapshots:
websocket-driver@0.7.4:
dependencies:
- http-parser-js: 0.5.8
+ http-parser-js: 0.5.10
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
@@ -25969,9 +23434,9 @@ snapshots:
tr46: 3.0.0
webidl-conversions: 7.0.0
- whatwg-url@14.0.0:
+ whatwg-url@14.2.0:
dependencies:
- tr46: 5.0.0
+ tr46: 5.1.1
webidl-conversions: 7.0.0
whatwg-url@5.0.0:
@@ -25979,42 +23444,45 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- which-boxed-primitive@1.0.2:
+ which-boxed-primitive@1.1.1:
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
+ is-bigint: 1.1.0
+ is-boolean-object: 1.2.2
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
- which-builtin-type@1.1.4:
+ which-builtin-type@1.2.1:
dependencies:
- function.prototype.name: 1.1.6
+ call-bound: 1.0.4
+ function.prototype.name: 1.1.8
has-tostringtag: 1.0.2
- is-async-function: 2.0.0
- is-date-object: 1.0.5
- is-finalizationregistry: 1.0.2
- is-generator-function: 1.0.10
- is-regex: 1.1.4
- is-weakref: 1.0.2
+ is-async-function: 2.1.1
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
+ is-generator-function: 1.1.0
+ is-regex: 1.2.1
+ is-weakref: 1.1.1
isarray: 2.0.5
- which-boxed-primitive: 1.0.2
+ which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.19
which-collection@1.0.2:
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
- is-weakset: 2.0.3
+ is-weakset: 2.0.4
- which-typed-array@1.1.15:
+ which-typed-array@1.1.19:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
+ gopd: 1.2.0
has-tostringtag: 1.0.2
which@1.3.1:
@@ -26053,7 +23521,7 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- ws@8.18.0: {}
+ ws@8.18.3: {}
xml-name-validator@4.0.0: {}
@@ -26089,6 +23557,8 @@ snapshots:
yocto-queue@0.1.0: {}
+ yocto-queue@1.2.1: {}
+
zen-observable-ts@1.2.5:
dependencies:
zen-observable: 0.8.15
diff --git a/test-data/test-scope/apps/.eslintrc.json b/test-data/test-scope/apps/.eslintrc.json
deleted file mode 100644
index f98352a..0000000
--- a/test-data/test-scope/apps/.eslintrc.json
+++ /dev/null
@@ -1,6 +0,0 @@
-// bit-generated-eslint-config
-{
- "extends": [
- "./../../node_modules/.cache/.eslintrc.bit.0ebfdbef4694e77f594acde20df5906c50e1c7a8.json"
- ]
-}
\ No newline at end of file
diff --git a/test-data/test-scope/apps/my-app/my-app.tsx b/test-data/test-scope/apps/my-app/my-app.tsx
deleted file mode 100644
index 7b9aabc..0000000
--- a/test-data/test-scope/apps/my-app/my-app.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Routes, Route } from 'react-router-dom';
-import { HelloWorld } from '@bit-tasks/test-scope.ui.hello-world'
-
-export function MyApp() {
- return (
-
- } />
-
- );
-}
\ No newline at end of file
diff --git a/test-data/test-scope/apps/tsconfig.json b/test-data/test-scope/apps/tsconfig.json
deleted file mode 100644
index 2f15e17..0000000
--- a/test-data/test-scope/apps/tsconfig.json
+++ /dev/null
@@ -1,5 +0,0 @@
-// bit-generated-typescript-config
-
-{
- "extends": "./../../node_modules/.cache/tsconfig.bit.754597940e9abfd8eacb085e29f60aeb341bb92f.json"
-}
\ No newline at end of file
diff --git a/test-data/test-scope/get-hello-world/.eslintrc.json b/test-data/test-scope/get-hello-world/.eslintrc.json
deleted file mode 100644
index 73e2190..0000000
--- a/test-data/test-scope/get-hello-world/.eslintrc.json
+++ /dev/null
@@ -1,6 +0,0 @@
-// bit-generated-eslint-config
-{
- "extends": [
- "./../../node_modules/.cache/.eslintrc.bit.059962f9cbd93e810a9734904421f780f185a4b3.json"
- ]
-}
\ No newline at end of file
diff --git a/test-data/test-scope/get-hello-world/get-hello-world.composition.tsx b/test-data/test-scope/get-hello-world/get-hello-world.composition.tsx
deleted file mode 100644
index 2745e35..0000000
--- a/test-data/test-scope/get-hello-world/get-hello-world.composition.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { getHelloWorld } from './get-hello-world.js';
-
-export function GreetsInEnglish() {
- return {getHelloWorld('en')}
;
-}
-
-export function GreetsInSpanish() {
- return {getHelloWorld('es')}
;
-}
diff --git a/test-data/test-scope/get-hello-world/get-hello-world.docs.mdx b/test-data/test-scope/get-hello-world/get-hello-world.docs.mdx
deleted file mode 100644
index 9cf96ff..0000000
--- a/test-data/test-scope/get-hello-world/get-hello-world.docs.mdx
+++ /dev/null
@@ -1,11 +0,0 @@
----
-description: Returns a 'hello world' string in the specified language
-labels: ['module', 'hello-world']
----
-
-
-## Usage
-
-```ts
-getHelloWorld('es'); // returns '¡Hola mundo!'
-```
diff --git a/test-data/test-scope/get-hello-world/get-hello-world.spec.ts b/test-data/test-scope/get-hello-world/get-hello-world.spec.ts
deleted file mode 100644
index 06dc939..0000000
--- a/test-data/test-scope/get-hello-world/get-hello-world.spec.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { getHelloWorld } from './get-hello-world.js';
-
-it('returns the greeting with the default language', () => {
- expect(getHelloWorld()).toBe('Hello world!');
-});
-
-it('returns the a greeting in spanish', () => {
- expect(getHelloWorld('es')).toBe('¡Hola mundo!');
-});
\ No newline at end of file
diff --git a/test-data/test-scope/get-hello-world/get-hello-world.ts b/test-data/test-scope/get-hello-world/get-hello-world.ts
deleted file mode 100644
index c00f02e..0000000
--- a/test-data/test-scope/get-hello-world/get-hello-world.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-/* a greeting language */
-type Language = 'en' | 'es';
-
-/**
- * returns a 'hello world' message, in different languages
- */
-export function getHelloWorld(language: Language = 'en') {
- if (language === 'es') return '¡Hola mundo!';
- return 'Hello world!';
-}
diff --git a/test-data/test-scope/get-hello-world/index.ts b/test-data/test-scope/get-hello-world/index.ts
deleted file mode 100644
index bc8b167..0000000
--- a/test-data/test-scope/get-hello-world/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { getHelloWorld } from './get-hello-world.js';
diff --git a/test-data/test-scope/get-hello-world/tsconfig.json b/test-data/test-scope/get-hello-world/tsconfig.json
deleted file mode 100644
index ff44a73..0000000
--- a/test-data/test-scope/get-hello-world/tsconfig.json
+++ /dev/null
@@ -1,5 +0,0 @@
-// bit-generated-typescript-config
-
-{
- "extends": "./../../node_modules/.cache/tsconfig.bit.ded70b2cdb578a6ef67afd54d910d26c4d12e959.json"
-}
\ No newline at end of file
diff --git a/test-data/test-scope/sample-component-1/index.ts b/test-data/test-scope/sample-component-1/index.ts
deleted file mode 100644
index 82c2ae8..0000000
--- a/test-data/test-scope/sample-component-1/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent1 } from './sample-component-1.js';
diff --git a/test-data/test-scope/sample-component-1/sample-component-1.docs.mdx b/test-data/test-scope/sample-component-1/sample-component-1.docs.mdx
deleted file mode 100644
index 682a758..0000000
--- a/test-data/test-scope/sample-component-1/sample-component-1.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent1', 'module']
-description: 'A SampleComponent1 module.'
----
-
-A sampleComponent1 module.
-
-```ts
-sampleComponent1();
-```
diff --git a/test-data/test-scope/sample-component-1/sample-component-1.spec.ts b/test-data/test-scope/sample-component-1/sample-component-1.spec.ts
deleted file mode 100644
index 8439157..0000000
--- a/test-data/test-scope/sample-component-1/sample-component-1.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent1 } from './sample-component-1.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent1()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-1/sample-component-1.ts b/test-data/test-scope/sample-component-1/sample-component-1.ts
deleted file mode 100644
index e132b06..0000000
--- a/test-data/test-scope/sample-component-1/sample-component-1.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent1() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-10/index.ts b/test-data/test-scope/sample-component-10/index.ts
deleted file mode 100644
index e051774..0000000
--- a/test-data/test-scope/sample-component-10/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent10 } from './sample-component-10.js';
diff --git a/test-data/test-scope/sample-component-10/sample-component-10.docs.mdx b/test-data/test-scope/sample-component-10/sample-component-10.docs.mdx
deleted file mode 100644
index 887316b..0000000
--- a/test-data/test-scope/sample-component-10/sample-component-10.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent10', 'module']
-description: 'A SampleComponent10 module.'
----
-
-A sampleComponent10 module.
-
-```ts
-sampleComponent10();
-```
diff --git a/test-data/test-scope/sample-component-10/sample-component-10.spec.ts b/test-data/test-scope/sample-component-10/sample-component-10.spec.ts
deleted file mode 100644
index c5f3e8b..0000000
--- a/test-data/test-scope/sample-component-10/sample-component-10.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent10 } from './sample-component-10.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent10()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-10/sample-component-10.ts b/test-data/test-scope/sample-component-10/sample-component-10.ts
deleted file mode 100644
index 69a6731..0000000
--- a/test-data/test-scope/sample-component-10/sample-component-10.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent10() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-100/index.ts b/test-data/test-scope/sample-component-100/index.ts
deleted file mode 100644
index cd87740..0000000
--- a/test-data/test-scope/sample-component-100/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent100 } from './sample-component-100.js';
diff --git a/test-data/test-scope/sample-component-100/sample-component-100.docs.mdx b/test-data/test-scope/sample-component-100/sample-component-100.docs.mdx
deleted file mode 100644
index 8c5e83a..0000000
--- a/test-data/test-scope/sample-component-100/sample-component-100.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent100', 'module']
-description: 'A SampleComponent100 module.'
----
-
-A sampleComponent100 module.
-
-```ts
-sampleComponent100();
-```
diff --git a/test-data/test-scope/sample-component-100/sample-component-100.spec.ts b/test-data/test-scope/sample-component-100/sample-component-100.spec.ts
deleted file mode 100644
index 57741cb..0000000
--- a/test-data/test-scope/sample-component-100/sample-component-100.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent100 } from './sample-component-100.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent100()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-100/sample-component-100.ts b/test-data/test-scope/sample-component-100/sample-component-100.ts
deleted file mode 100644
index fbaee9a..0000000
--- a/test-data/test-scope/sample-component-100/sample-component-100.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent100() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-11/index.ts b/test-data/test-scope/sample-component-11/index.ts
deleted file mode 100644
index 4d40f76..0000000
--- a/test-data/test-scope/sample-component-11/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent11 } from './sample-component-11.js';
diff --git a/test-data/test-scope/sample-component-11/sample-component-11.docs.mdx b/test-data/test-scope/sample-component-11/sample-component-11.docs.mdx
deleted file mode 100644
index 350122b..0000000
--- a/test-data/test-scope/sample-component-11/sample-component-11.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent11', 'module']
-description: 'A SampleComponent11 module.'
----
-
-A sampleComponent11 module.
-
-```ts
-sampleComponent11();
-```
diff --git a/test-data/test-scope/sample-component-11/sample-component-11.spec.ts b/test-data/test-scope/sample-component-11/sample-component-11.spec.ts
deleted file mode 100644
index d51cc87..0000000
--- a/test-data/test-scope/sample-component-11/sample-component-11.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent11 } from './sample-component-11.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent11()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-11/sample-component-11.ts b/test-data/test-scope/sample-component-11/sample-component-11.ts
deleted file mode 100644
index 24b9b49..0000000
--- a/test-data/test-scope/sample-component-11/sample-component-11.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent11() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-12/index.ts b/test-data/test-scope/sample-component-12/index.ts
deleted file mode 100644
index cdbedcd..0000000
--- a/test-data/test-scope/sample-component-12/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent12 } from './sample-component-12.js';
diff --git a/test-data/test-scope/sample-component-12/sample-component-12.docs.mdx b/test-data/test-scope/sample-component-12/sample-component-12.docs.mdx
deleted file mode 100644
index 0c1f937..0000000
--- a/test-data/test-scope/sample-component-12/sample-component-12.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent12', 'module']
-description: 'A SampleComponent12 module.'
----
-
-A sampleComponent12 module.
-
-```ts
-sampleComponent12();
-```
diff --git a/test-data/test-scope/sample-component-12/sample-component-12.spec.ts b/test-data/test-scope/sample-component-12/sample-component-12.spec.ts
deleted file mode 100644
index 0c12e64..0000000
--- a/test-data/test-scope/sample-component-12/sample-component-12.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent12 } from './sample-component-12.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent12()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-12/sample-component-12.ts b/test-data/test-scope/sample-component-12/sample-component-12.ts
deleted file mode 100644
index 8d439d5..0000000
--- a/test-data/test-scope/sample-component-12/sample-component-12.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent12() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-13/index.ts b/test-data/test-scope/sample-component-13/index.ts
deleted file mode 100644
index 66dd9d7..0000000
--- a/test-data/test-scope/sample-component-13/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent13 } from './sample-component-13.js';
diff --git a/test-data/test-scope/sample-component-13/sample-component-13.docs.mdx b/test-data/test-scope/sample-component-13/sample-component-13.docs.mdx
deleted file mode 100644
index 9a806fb..0000000
--- a/test-data/test-scope/sample-component-13/sample-component-13.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent13', 'module']
-description: 'A SampleComponent13 module.'
----
-
-A sampleComponent13 module.
-
-```ts
-sampleComponent13();
-```
diff --git a/test-data/test-scope/sample-component-13/sample-component-13.spec.ts b/test-data/test-scope/sample-component-13/sample-component-13.spec.ts
deleted file mode 100644
index cc276e0..0000000
--- a/test-data/test-scope/sample-component-13/sample-component-13.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent13 } from './sample-component-13.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent13()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-13/sample-component-13.ts b/test-data/test-scope/sample-component-13/sample-component-13.ts
deleted file mode 100644
index b0fc86b..0000000
--- a/test-data/test-scope/sample-component-13/sample-component-13.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent13() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-14/index.ts b/test-data/test-scope/sample-component-14/index.ts
deleted file mode 100644
index e9b409d..0000000
--- a/test-data/test-scope/sample-component-14/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent14 } from './sample-component-14.js';
diff --git a/test-data/test-scope/sample-component-14/sample-component-14.docs.mdx b/test-data/test-scope/sample-component-14/sample-component-14.docs.mdx
deleted file mode 100644
index 130f1f4..0000000
--- a/test-data/test-scope/sample-component-14/sample-component-14.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent14', 'module']
-description: 'A SampleComponent14 module.'
----
-
-A sampleComponent14 module.
-
-```ts
-sampleComponent14();
-```
diff --git a/test-data/test-scope/sample-component-14/sample-component-14.spec.ts b/test-data/test-scope/sample-component-14/sample-component-14.spec.ts
deleted file mode 100644
index 43c7137..0000000
--- a/test-data/test-scope/sample-component-14/sample-component-14.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent14 } from './sample-component-14.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent14()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-14/sample-component-14.ts b/test-data/test-scope/sample-component-14/sample-component-14.ts
deleted file mode 100644
index 8d26ead..0000000
--- a/test-data/test-scope/sample-component-14/sample-component-14.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent14() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-15/index.ts b/test-data/test-scope/sample-component-15/index.ts
deleted file mode 100644
index 947425c..0000000
--- a/test-data/test-scope/sample-component-15/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent15 } from './sample-component-15.js';
diff --git a/test-data/test-scope/sample-component-15/sample-component-15.docs.mdx b/test-data/test-scope/sample-component-15/sample-component-15.docs.mdx
deleted file mode 100644
index 6b8cc91..0000000
--- a/test-data/test-scope/sample-component-15/sample-component-15.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent15', 'module']
-description: 'A SampleComponent15 module.'
----
-
-A sampleComponent15 module.
-
-```ts
-sampleComponent15();
-```
diff --git a/test-data/test-scope/sample-component-15/sample-component-15.spec.ts b/test-data/test-scope/sample-component-15/sample-component-15.spec.ts
deleted file mode 100644
index ccfc2cb..0000000
--- a/test-data/test-scope/sample-component-15/sample-component-15.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent15 } from './sample-component-15.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent15()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-15/sample-component-15.ts b/test-data/test-scope/sample-component-15/sample-component-15.ts
deleted file mode 100644
index dbac9fa..0000000
--- a/test-data/test-scope/sample-component-15/sample-component-15.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent15() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-16/index.ts b/test-data/test-scope/sample-component-16/index.ts
deleted file mode 100644
index 988cf5d..0000000
--- a/test-data/test-scope/sample-component-16/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent16 } from './sample-component-16.js';
diff --git a/test-data/test-scope/sample-component-16/sample-component-16.docs.mdx b/test-data/test-scope/sample-component-16/sample-component-16.docs.mdx
deleted file mode 100644
index e56244e..0000000
--- a/test-data/test-scope/sample-component-16/sample-component-16.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent16', 'module']
-description: 'A SampleComponent16 module.'
----
-
-A sampleComponent16 module.
-
-```ts
-sampleComponent16();
-```
diff --git a/test-data/test-scope/sample-component-16/sample-component-16.spec.ts b/test-data/test-scope/sample-component-16/sample-component-16.spec.ts
deleted file mode 100644
index 06c082d..0000000
--- a/test-data/test-scope/sample-component-16/sample-component-16.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent16 } from './sample-component-16.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent16()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-16/sample-component-16.ts b/test-data/test-scope/sample-component-16/sample-component-16.ts
deleted file mode 100644
index 19d1556..0000000
--- a/test-data/test-scope/sample-component-16/sample-component-16.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent16() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-17/index.ts b/test-data/test-scope/sample-component-17/index.ts
deleted file mode 100644
index 981b983..0000000
--- a/test-data/test-scope/sample-component-17/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent17 } from './sample-component-17.js';
diff --git a/test-data/test-scope/sample-component-17/sample-component-17.docs.mdx b/test-data/test-scope/sample-component-17/sample-component-17.docs.mdx
deleted file mode 100644
index 97c2b7c..0000000
--- a/test-data/test-scope/sample-component-17/sample-component-17.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent17', 'module']
-description: 'A SampleComponent17 module.'
----
-
-A sampleComponent17 module.
-
-```ts
-sampleComponent17();
-```
diff --git a/test-data/test-scope/sample-component-17/sample-component-17.spec.ts b/test-data/test-scope/sample-component-17/sample-component-17.spec.ts
deleted file mode 100644
index 8be2395..0000000
--- a/test-data/test-scope/sample-component-17/sample-component-17.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent17 } from './sample-component-17.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent17()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-17/sample-component-17.ts b/test-data/test-scope/sample-component-17/sample-component-17.ts
deleted file mode 100644
index 87615ec..0000000
--- a/test-data/test-scope/sample-component-17/sample-component-17.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent17() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-18/index.ts b/test-data/test-scope/sample-component-18/index.ts
deleted file mode 100644
index ec808c5..0000000
--- a/test-data/test-scope/sample-component-18/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent18 } from './sample-component-18.js';
diff --git a/test-data/test-scope/sample-component-18/sample-component-18.docs.mdx b/test-data/test-scope/sample-component-18/sample-component-18.docs.mdx
deleted file mode 100644
index 3362a70..0000000
--- a/test-data/test-scope/sample-component-18/sample-component-18.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent18', 'module']
-description: 'A SampleComponent18 module.'
----
-
-A sampleComponent18 module.
-
-```ts
-sampleComponent18();
-```
diff --git a/test-data/test-scope/sample-component-18/sample-component-18.spec.ts b/test-data/test-scope/sample-component-18/sample-component-18.spec.ts
deleted file mode 100644
index 503ec77..0000000
--- a/test-data/test-scope/sample-component-18/sample-component-18.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent18 } from './sample-component-18.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent18()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-18/sample-component-18.ts b/test-data/test-scope/sample-component-18/sample-component-18.ts
deleted file mode 100644
index ca80159..0000000
--- a/test-data/test-scope/sample-component-18/sample-component-18.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent18() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-19/index.ts b/test-data/test-scope/sample-component-19/index.ts
deleted file mode 100644
index 7f00b40..0000000
--- a/test-data/test-scope/sample-component-19/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent19 } from './sample-component-19.js';
diff --git a/test-data/test-scope/sample-component-19/sample-component-19.docs.mdx b/test-data/test-scope/sample-component-19/sample-component-19.docs.mdx
deleted file mode 100644
index 3efb5df..0000000
--- a/test-data/test-scope/sample-component-19/sample-component-19.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent19', 'module']
-description: 'A SampleComponent19 module.'
----
-
-A sampleComponent19 module.
-
-```ts
-sampleComponent19();
-```
diff --git a/test-data/test-scope/sample-component-19/sample-component-19.spec.ts b/test-data/test-scope/sample-component-19/sample-component-19.spec.ts
deleted file mode 100644
index e52241d..0000000
--- a/test-data/test-scope/sample-component-19/sample-component-19.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent19 } from './sample-component-19.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent19()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-19/sample-component-19.ts b/test-data/test-scope/sample-component-19/sample-component-19.ts
deleted file mode 100644
index 15039f3..0000000
--- a/test-data/test-scope/sample-component-19/sample-component-19.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent19() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-2/index.ts b/test-data/test-scope/sample-component-2/index.ts
deleted file mode 100644
index 82dfd2f..0000000
--- a/test-data/test-scope/sample-component-2/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent2 } from './sample-component-2.js';
diff --git a/test-data/test-scope/sample-component-2/sample-component-2.docs.mdx b/test-data/test-scope/sample-component-2/sample-component-2.docs.mdx
deleted file mode 100644
index a87635b..0000000
--- a/test-data/test-scope/sample-component-2/sample-component-2.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent2', 'module']
-description: 'A SampleComponent2 module.'
----
-
-A sampleComponent2 module.
-
-```ts
-sampleComponent2();
-```
diff --git a/test-data/test-scope/sample-component-2/sample-component-2.spec.ts b/test-data/test-scope/sample-component-2/sample-component-2.spec.ts
deleted file mode 100644
index 036dd76..0000000
--- a/test-data/test-scope/sample-component-2/sample-component-2.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent2 } from './sample-component-2.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent2()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-2/sample-component-2.ts b/test-data/test-scope/sample-component-2/sample-component-2.ts
deleted file mode 100644
index d6980b3..0000000
--- a/test-data/test-scope/sample-component-2/sample-component-2.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent2() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-20/index.ts b/test-data/test-scope/sample-component-20/index.ts
deleted file mode 100644
index 034a98f..0000000
--- a/test-data/test-scope/sample-component-20/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent20 } from './sample-component-20.js';
diff --git a/test-data/test-scope/sample-component-20/sample-component-20.docs.mdx b/test-data/test-scope/sample-component-20/sample-component-20.docs.mdx
deleted file mode 100644
index d322fd0..0000000
--- a/test-data/test-scope/sample-component-20/sample-component-20.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent20', 'module']
-description: 'A SampleComponent20 module.'
----
-
-A sampleComponent20 module.
-
-```ts
-sampleComponent20();
-```
diff --git a/test-data/test-scope/sample-component-20/sample-component-20.spec.ts b/test-data/test-scope/sample-component-20/sample-component-20.spec.ts
deleted file mode 100644
index 12d1693..0000000
--- a/test-data/test-scope/sample-component-20/sample-component-20.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent20 } from './sample-component-20.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent20()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-20/sample-component-20.ts b/test-data/test-scope/sample-component-20/sample-component-20.ts
deleted file mode 100644
index 829c7a9..0000000
--- a/test-data/test-scope/sample-component-20/sample-component-20.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent20() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-21/index.ts b/test-data/test-scope/sample-component-21/index.ts
deleted file mode 100644
index a394dba..0000000
--- a/test-data/test-scope/sample-component-21/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent21 } from './sample-component-21.js';
diff --git a/test-data/test-scope/sample-component-21/sample-component-21.docs.mdx b/test-data/test-scope/sample-component-21/sample-component-21.docs.mdx
deleted file mode 100644
index 06e9864..0000000
--- a/test-data/test-scope/sample-component-21/sample-component-21.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent21', 'module']
-description: 'A SampleComponent21 module.'
----
-
-A sampleComponent21 module.
-
-```ts
-sampleComponent21();
-```
diff --git a/test-data/test-scope/sample-component-21/sample-component-21.spec.ts b/test-data/test-scope/sample-component-21/sample-component-21.spec.ts
deleted file mode 100644
index 4c81b7b..0000000
--- a/test-data/test-scope/sample-component-21/sample-component-21.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent21 } from './sample-component-21.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent21()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-21/sample-component-21.ts b/test-data/test-scope/sample-component-21/sample-component-21.ts
deleted file mode 100644
index 8321252..0000000
--- a/test-data/test-scope/sample-component-21/sample-component-21.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent21() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-22/index.ts b/test-data/test-scope/sample-component-22/index.ts
deleted file mode 100644
index f047edc..0000000
--- a/test-data/test-scope/sample-component-22/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent22 } from './sample-component-22.js';
diff --git a/test-data/test-scope/sample-component-22/sample-component-22.docs.mdx b/test-data/test-scope/sample-component-22/sample-component-22.docs.mdx
deleted file mode 100644
index 9aaab0c..0000000
--- a/test-data/test-scope/sample-component-22/sample-component-22.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent22', 'module']
-description: 'A SampleComponent22 module.'
----
-
-A sampleComponent22 module.
-
-```ts
-sampleComponent22();
-```
diff --git a/test-data/test-scope/sample-component-22/sample-component-22.spec.ts b/test-data/test-scope/sample-component-22/sample-component-22.spec.ts
deleted file mode 100644
index 709993f..0000000
--- a/test-data/test-scope/sample-component-22/sample-component-22.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent22 } from './sample-component-22.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent22()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-22/sample-component-22.ts b/test-data/test-scope/sample-component-22/sample-component-22.ts
deleted file mode 100644
index 79c8093..0000000
--- a/test-data/test-scope/sample-component-22/sample-component-22.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent22() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-23/index.ts b/test-data/test-scope/sample-component-23/index.ts
deleted file mode 100644
index fe417ab..0000000
--- a/test-data/test-scope/sample-component-23/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent23 } from './sample-component-23.js';
diff --git a/test-data/test-scope/sample-component-23/sample-component-23.docs.mdx b/test-data/test-scope/sample-component-23/sample-component-23.docs.mdx
deleted file mode 100644
index 2daf40c..0000000
--- a/test-data/test-scope/sample-component-23/sample-component-23.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent23', 'module']
-description: 'A SampleComponent23 module.'
----
-
-A sampleComponent23 module.
-
-```ts
-sampleComponent23();
-```
diff --git a/test-data/test-scope/sample-component-23/sample-component-23.spec.ts b/test-data/test-scope/sample-component-23/sample-component-23.spec.ts
deleted file mode 100644
index ccb1ae2..0000000
--- a/test-data/test-scope/sample-component-23/sample-component-23.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent23 } from './sample-component-23.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent23()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-23/sample-component-23.ts b/test-data/test-scope/sample-component-23/sample-component-23.ts
deleted file mode 100644
index e76e50a..0000000
--- a/test-data/test-scope/sample-component-23/sample-component-23.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent23() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-24/index.ts b/test-data/test-scope/sample-component-24/index.ts
deleted file mode 100644
index 0532121..0000000
--- a/test-data/test-scope/sample-component-24/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent24 } from './sample-component-24.js';
diff --git a/test-data/test-scope/sample-component-24/sample-component-24.docs.mdx b/test-data/test-scope/sample-component-24/sample-component-24.docs.mdx
deleted file mode 100644
index 5ba884d..0000000
--- a/test-data/test-scope/sample-component-24/sample-component-24.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent24', 'module']
-description: 'A SampleComponent24 module.'
----
-
-A sampleComponent24 module.
-
-```ts
-sampleComponent24();
-```
diff --git a/test-data/test-scope/sample-component-24/sample-component-24.spec.ts b/test-data/test-scope/sample-component-24/sample-component-24.spec.ts
deleted file mode 100644
index 9c54676..0000000
--- a/test-data/test-scope/sample-component-24/sample-component-24.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent24 } from './sample-component-24.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent24()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-24/sample-component-24.ts b/test-data/test-scope/sample-component-24/sample-component-24.ts
deleted file mode 100644
index 3610666..0000000
--- a/test-data/test-scope/sample-component-24/sample-component-24.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent24() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-25/index.ts b/test-data/test-scope/sample-component-25/index.ts
deleted file mode 100644
index 30e465b..0000000
--- a/test-data/test-scope/sample-component-25/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent25 } from './sample-component-25.js';
diff --git a/test-data/test-scope/sample-component-25/sample-component-25.docs.mdx b/test-data/test-scope/sample-component-25/sample-component-25.docs.mdx
deleted file mode 100644
index 4d36116..0000000
--- a/test-data/test-scope/sample-component-25/sample-component-25.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent25', 'module']
-description: 'A SampleComponent25 module.'
----
-
-A sampleComponent25 module.
-
-```ts
-sampleComponent25();
-```
diff --git a/test-data/test-scope/sample-component-25/sample-component-25.spec.ts b/test-data/test-scope/sample-component-25/sample-component-25.spec.ts
deleted file mode 100644
index 4c446e2..0000000
--- a/test-data/test-scope/sample-component-25/sample-component-25.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent25 } from './sample-component-25.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent25()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-25/sample-component-25.ts b/test-data/test-scope/sample-component-25/sample-component-25.ts
deleted file mode 100644
index 680d710..0000000
--- a/test-data/test-scope/sample-component-25/sample-component-25.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent25() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-26/index.ts b/test-data/test-scope/sample-component-26/index.ts
deleted file mode 100644
index 5028187..0000000
--- a/test-data/test-scope/sample-component-26/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent26 } from './sample-component-26.js';
diff --git a/test-data/test-scope/sample-component-26/sample-component-26.docs.mdx b/test-data/test-scope/sample-component-26/sample-component-26.docs.mdx
deleted file mode 100644
index 73c019c..0000000
--- a/test-data/test-scope/sample-component-26/sample-component-26.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent26', 'module']
-description: 'A SampleComponent26 module.'
----
-
-A sampleComponent26 module.
-
-```ts
-sampleComponent26();
-```
diff --git a/test-data/test-scope/sample-component-26/sample-component-26.spec.ts b/test-data/test-scope/sample-component-26/sample-component-26.spec.ts
deleted file mode 100644
index 997e711..0000000
--- a/test-data/test-scope/sample-component-26/sample-component-26.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent26 } from './sample-component-26.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent26()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-26/sample-component-26.ts b/test-data/test-scope/sample-component-26/sample-component-26.ts
deleted file mode 100644
index 737fb09..0000000
--- a/test-data/test-scope/sample-component-26/sample-component-26.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent26() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-27/index.ts b/test-data/test-scope/sample-component-27/index.ts
deleted file mode 100644
index a7255b7..0000000
--- a/test-data/test-scope/sample-component-27/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent27 } from './sample-component-27.js';
diff --git a/test-data/test-scope/sample-component-27/sample-component-27.docs.mdx b/test-data/test-scope/sample-component-27/sample-component-27.docs.mdx
deleted file mode 100644
index ee0b9b1..0000000
--- a/test-data/test-scope/sample-component-27/sample-component-27.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent27', 'module']
-description: 'A SampleComponent27 module.'
----
-
-A sampleComponent27 module.
-
-```ts
-sampleComponent27();
-```
diff --git a/test-data/test-scope/sample-component-27/sample-component-27.spec.ts b/test-data/test-scope/sample-component-27/sample-component-27.spec.ts
deleted file mode 100644
index a408eba..0000000
--- a/test-data/test-scope/sample-component-27/sample-component-27.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent27 } from './sample-component-27.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent27()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-27/sample-component-27.ts b/test-data/test-scope/sample-component-27/sample-component-27.ts
deleted file mode 100644
index b9baa5a..0000000
--- a/test-data/test-scope/sample-component-27/sample-component-27.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent27() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-28/index.ts b/test-data/test-scope/sample-component-28/index.ts
deleted file mode 100644
index 3a4f5c3..0000000
--- a/test-data/test-scope/sample-component-28/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent28 } from './sample-component-28.js';
diff --git a/test-data/test-scope/sample-component-28/sample-component-28.docs.mdx b/test-data/test-scope/sample-component-28/sample-component-28.docs.mdx
deleted file mode 100644
index e289749..0000000
--- a/test-data/test-scope/sample-component-28/sample-component-28.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent28', 'module']
-description: 'A SampleComponent28 module.'
----
-
-A sampleComponent28 module.
-
-```ts
-sampleComponent28();
-```
diff --git a/test-data/test-scope/sample-component-28/sample-component-28.spec.ts b/test-data/test-scope/sample-component-28/sample-component-28.spec.ts
deleted file mode 100644
index b2b2e9d..0000000
--- a/test-data/test-scope/sample-component-28/sample-component-28.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent28 } from './sample-component-28.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent28()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-28/sample-component-28.ts b/test-data/test-scope/sample-component-28/sample-component-28.ts
deleted file mode 100644
index 1d42c58..0000000
--- a/test-data/test-scope/sample-component-28/sample-component-28.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent28() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-29/index.ts b/test-data/test-scope/sample-component-29/index.ts
deleted file mode 100644
index ad2432c..0000000
--- a/test-data/test-scope/sample-component-29/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent29 } from './sample-component-29.js';
diff --git a/test-data/test-scope/sample-component-29/sample-component-29.docs.mdx b/test-data/test-scope/sample-component-29/sample-component-29.docs.mdx
deleted file mode 100644
index 7397cf8..0000000
--- a/test-data/test-scope/sample-component-29/sample-component-29.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent29', 'module']
-description: 'A SampleComponent29 module.'
----
-
-A sampleComponent29 module.
-
-```ts
-sampleComponent29();
-```
diff --git a/test-data/test-scope/sample-component-29/sample-component-29.spec.ts b/test-data/test-scope/sample-component-29/sample-component-29.spec.ts
deleted file mode 100644
index 728e7ba..0000000
--- a/test-data/test-scope/sample-component-29/sample-component-29.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent29 } from './sample-component-29.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent29()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-29/sample-component-29.ts b/test-data/test-scope/sample-component-29/sample-component-29.ts
deleted file mode 100644
index d46d78b..0000000
--- a/test-data/test-scope/sample-component-29/sample-component-29.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent29() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-3/index.ts b/test-data/test-scope/sample-component-3/index.ts
deleted file mode 100644
index 38b7998..0000000
--- a/test-data/test-scope/sample-component-3/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent3 } from './sample-component-3.js';
diff --git a/test-data/test-scope/sample-component-3/sample-component-3.docs.mdx b/test-data/test-scope/sample-component-3/sample-component-3.docs.mdx
deleted file mode 100644
index 55ea381..0000000
--- a/test-data/test-scope/sample-component-3/sample-component-3.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent3', 'module']
-description: 'A SampleComponent3 module.'
----
-
-A sampleComponent3 module.
-
-```ts
-sampleComponent3();
-```
diff --git a/test-data/test-scope/sample-component-3/sample-component-3.spec.ts b/test-data/test-scope/sample-component-3/sample-component-3.spec.ts
deleted file mode 100644
index 19407c5..0000000
--- a/test-data/test-scope/sample-component-3/sample-component-3.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent3 } from './sample-component-3.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent3()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-3/sample-component-3.ts b/test-data/test-scope/sample-component-3/sample-component-3.ts
deleted file mode 100644
index c7781d2..0000000
--- a/test-data/test-scope/sample-component-3/sample-component-3.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent3() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-30/index.ts b/test-data/test-scope/sample-component-30/index.ts
deleted file mode 100644
index 2cce830..0000000
--- a/test-data/test-scope/sample-component-30/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent30 } from './sample-component-30.js';
diff --git a/test-data/test-scope/sample-component-30/sample-component-30.docs.mdx b/test-data/test-scope/sample-component-30/sample-component-30.docs.mdx
deleted file mode 100644
index 8e4cb32..0000000
--- a/test-data/test-scope/sample-component-30/sample-component-30.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent30', 'module']
-description: 'A SampleComponent30 module.'
----
-
-A sampleComponent30 module.
-
-```ts
-sampleComponent30();
-```
diff --git a/test-data/test-scope/sample-component-30/sample-component-30.spec.ts b/test-data/test-scope/sample-component-30/sample-component-30.spec.ts
deleted file mode 100644
index b3564f8..0000000
--- a/test-data/test-scope/sample-component-30/sample-component-30.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent30 } from './sample-component-30.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent30()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-30/sample-component-30.ts b/test-data/test-scope/sample-component-30/sample-component-30.ts
deleted file mode 100644
index c24690a..0000000
--- a/test-data/test-scope/sample-component-30/sample-component-30.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent30() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-31/index.ts b/test-data/test-scope/sample-component-31/index.ts
deleted file mode 100644
index e183997..0000000
--- a/test-data/test-scope/sample-component-31/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent31 } from './sample-component-31.js';
diff --git a/test-data/test-scope/sample-component-31/sample-component-31.docs.mdx b/test-data/test-scope/sample-component-31/sample-component-31.docs.mdx
deleted file mode 100644
index 6de83b3..0000000
--- a/test-data/test-scope/sample-component-31/sample-component-31.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent31', 'module']
-description: 'A SampleComponent31 module.'
----
-
-A sampleComponent31 module.
-
-```ts
-sampleComponent31();
-```
diff --git a/test-data/test-scope/sample-component-31/sample-component-31.spec.ts b/test-data/test-scope/sample-component-31/sample-component-31.spec.ts
deleted file mode 100644
index c43d03a..0000000
--- a/test-data/test-scope/sample-component-31/sample-component-31.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent31 } from './sample-component-31.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent31()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-31/sample-component-31.ts b/test-data/test-scope/sample-component-31/sample-component-31.ts
deleted file mode 100644
index 9a7abe9..0000000
--- a/test-data/test-scope/sample-component-31/sample-component-31.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent31() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-32/index.ts b/test-data/test-scope/sample-component-32/index.ts
deleted file mode 100644
index 47287cf..0000000
--- a/test-data/test-scope/sample-component-32/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent32 } from './sample-component-32.js';
diff --git a/test-data/test-scope/sample-component-32/sample-component-32.docs.mdx b/test-data/test-scope/sample-component-32/sample-component-32.docs.mdx
deleted file mode 100644
index 045423e..0000000
--- a/test-data/test-scope/sample-component-32/sample-component-32.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent32', 'module']
-description: 'A SampleComponent32 module.'
----
-
-A sampleComponent32 module.
-
-```ts
-sampleComponent32();
-```
diff --git a/test-data/test-scope/sample-component-32/sample-component-32.spec.ts b/test-data/test-scope/sample-component-32/sample-component-32.spec.ts
deleted file mode 100644
index 8e7b755..0000000
--- a/test-data/test-scope/sample-component-32/sample-component-32.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent32 } from './sample-component-32.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent32()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-32/sample-component-32.ts b/test-data/test-scope/sample-component-32/sample-component-32.ts
deleted file mode 100644
index 459ec54..0000000
--- a/test-data/test-scope/sample-component-32/sample-component-32.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent32() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-33/index.ts b/test-data/test-scope/sample-component-33/index.ts
deleted file mode 100644
index 0189f37..0000000
--- a/test-data/test-scope/sample-component-33/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent33 } from './sample-component-33.js';
diff --git a/test-data/test-scope/sample-component-33/sample-component-33.docs.mdx b/test-data/test-scope/sample-component-33/sample-component-33.docs.mdx
deleted file mode 100644
index 015cd0b..0000000
--- a/test-data/test-scope/sample-component-33/sample-component-33.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent33', 'module']
-description: 'A SampleComponent33 module.'
----
-
-A sampleComponent33 module.
-
-```ts
-sampleComponent33();
-```
diff --git a/test-data/test-scope/sample-component-33/sample-component-33.spec.ts b/test-data/test-scope/sample-component-33/sample-component-33.spec.ts
deleted file mode 100644
index 0f7616a..0000000
--- a/test-data/test-scope/sample-component-33/sample-component-33.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent33 } from './sample-component-33.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent33()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-33/sample-component-33.ts b/test-data/test-scope/sample-component-33/sample-component-33.ts
deleted file mode 100644
index 58f209c..0000000
--- a/test-data/test-scope/sample-component-33/sample-component-33.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent33() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-34/index.ts b/test-data/test-scope/sample-component-34/index.ts
deleted file mode 100644
index cd82741..0000000
--- a/test-data/test-scope/sample-component-34/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent34 } from './sample-component-34.js';
diff --git a/test-data/test-scope/sample-component-34/sample-component-34.docs.mdx b/test-data/test-scope/sample-component-34/sample-component-34.docs.mdx
deleted file mode 100644
index cdbe56b..0000000
--- a/test-data/test-scope/sample-component-34/sample-component-34.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent34', 'module']
-description: 'A SampleComponent34 module.'
----
-
-A sampleComponent34 module.
-
-```ts
-sampleComponent34();
-```
diff --git a/test-data/test-scope/sample-component-34/sample-component-34.spec.ts b/test-data/test-scope/sample-component-34/sample-component-34.spec.ts
deleted file mode 100644
index 86838d3..0000000
--- a/test-data/test-scope/sample-component-34/sample-component-34.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent34 } from './sample-component-34.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent34()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-34/sample-component-34.ts b/test-data/test-scope/sample-component-34/sample-component-34.ts
deleted file mode 100644
index e584daa..0000000
--- a/test-data/test-scope/sample-component-34/sample-component-34.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent34() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-35/index.ts b/test-data/test-scope/sample-component-35/index.ts
deleted file mode 100644
index 9470f62..0000000
--- a/test-data/test-scope/sample-component-35/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent35 } from './sample-component-35.js';
diff --git a/test-data/test-scope/sample-component-35/sample-component-35.docs.mdx b/test-data/test-scope/sample-component-35/sample-component-35.docs.mdx
deleted file mode 100644
index 07003fb..0000000
--- a/test-data/test-scope/sample-component-35/sample-component-35.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent35', 'module']
-description: 'A SampleComponent35 module.'
----
-
-A sampleComponent35 module.
-
-```ts
-sampleComponent35();
-```
diff --git a/test-data/test-scope/sample-component-35/sample-component-35.spec.ts b/test-data/test-scope/sample-component-35/sample-component-35.spec.ts
deleted file mode 100644
index 03e55b4..0000000
--- a/test-data/test-scope/sample-component-35/sample-component-35.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent35 } from './sample-component-35.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent35()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-35/sample-component-35.ts b/test-data/test-scope/sample-component-35/sample-component-35.ts
deleted file mode 100644
index 337ae67..0000000
--- a/test-data/test-scope/sample-component-35/sample-component-35.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent35() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-36/index.ts b/test-data/test-scope/sample-component-36/index.ts
deleted file mode 100644
index 1e9da22..0000000
--- a/test-data/test-scope/sample-component-36/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent36 } from './sample-component-36.js';
diff --git a/test-data/test-scope/sample-component-36/sample-component-36.docs.mdx b/test-data/test-scope/sample-component-36/sample-component-36.docs.mdx
deleted file mode 100644
index a4290ef..0000000
--- a/test-data/test-scope/sample-component-36/sample-component-36.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent36', 'module']
-description: 'A SampleComponent36 module.'
----
-
-A sampleComponent36 module.
-
-```ts
-sampleComponent36();
-```
diff --git a/test-data/test-scope/sample-component-36/sample-component-36.spec.ts b/test-data/test-scope/sample-component-36/sample-component-36.spec.ts
deleted file mode 100644
index 02ce862..0000000
--- a/test-data/test-scope/sample-component-36/sample-component-36.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent36 } from './sample-component-36.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent36()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-36/sample-component-36.ts b/test-data/test-scope/sample-component-36/sample-component-36.ts
deleted file mode 100644
index 593547e..0000000
--- a/test-data/test-scope/sample-component-36/sample-component-36.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent36() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-37/index.ts b/test-data/test-scope/sample-component-37/index.ts
deleted file mode 100644
index aef5a60..0000000
--- a/test-data/test-scope/sample-component-37/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent37 } from './sample-component-37.js';
diff --git a/test-data/test-scope/sample-component-37/sample-component-37.docs.mdx b/test-data/test-scope/sample-component-37/sample-component-37.docs.mdx
deleted file mode 100644
index 3e2e02b..0000000
--- a/test-data/test-scope/sample-component-37/sample-component-37.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent37', 'module']
-description: 'A SampleComponent37 module.'
----
-
-A sampleComponent37 module.
-
-```ts
-sampleComponent37();
-```
diff --git a/test-data/test-scope/sample-component-37/sample-component-37.spec.ts b/test-data/test-scope/sample-component-37/sample-component-37.spec.ts
deleted file mode 100644
index 5797dde..0000000
--- a/test-data/test-scope/sample-component-37/sample-component-37.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent37 } from './sample-component-37.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent37()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-37/sample-component-37.ts b/test-data/test-scope/sample-component-37/sample-component-37.ts
deleted file mode 100644
index 5cae289..0000000
--- a/test-data/test-scope/sample-component-37/sample-component-37.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent37() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-38/index.ts b/test-data/test-scope/sample-component-38/index.ts
deleted file mode 100644
index d9917fc..0000000
--- a/test-data/test-scope/sample-component-38/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent38 } from './sample-component-38.js';
diff --git a/test-data/test-scope/sample-component-38/sample-component-38.docs.mdx b/test-data/test-scope/sample-component-38/sample-component-38.docs.mdx
deleted file mode 100644
index 54e54d9..0000000
--- a/test-data/test-scope/sample-component-38/sample-component-38.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent38', 'module']
-description: 'A SampleComponent38 module.'
----
-
-A sampleComponent38 module.
-
-```ts
-sampleComponent38();
-```
diff --git a/test-data/test-scope/sample-component-38/sample-component-38.spec.ts b/test-data/test-scope/sample-component-38/sample-component-38.spec.ts
deleted file mode 100644
index 6f6ef23..0000000
--- a/test-data/test-scope/sample-component-38/sample-component-38.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent38 } from './sample-component-38.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent38()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-38/sample-component-38.ts b/test-data/test-scope/sample-component-38/sample-component-38.ts
deleted file mode 100644
index bc13d9c..0000000
--- a/test-data/test-scope/sample-component-38/sample-component-38.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent38() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-39/index.ts b/test-data/test-scope/sample-component-39/index.ts
deleted file mode 100644
index 75934a7..0000000
--- a/test-data/test-scope/sample-component-39/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent39 } from './sample-component-39.js';
diff --git a/test-data/test-scope/sample-component-39/sample-component-39.docs.mdx b/test-data/test-scope/sample-component-39/sample-component-39.docs.mdx
deleted file mode 100644
index 9357463..0000000
--- a/test-data/test-scope/sample-component-39/sample-component-39.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent39', 'module']
-description: 'A SampleComponent39 module.'
----
-
-A sampleComponent39 module.
-
-```ts
-sampleComponent39();
-```
diff --git a/test-data/test-scope/sample-component-39/sample-component-39.spec.ts b/test-data/test-scope/sample-component-39/sample-component-39.spec.ts
deleted file mode 100644
index 3b3e09b..0000000
--- a/test-data/test-scope/sample-component-39/sample-component-39.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent39 } from './sample-component-39.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent39()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-39/sample-component-39.ts b/test-data/test-scope/sample-component-39/sample-component-39.ts
deleted file mode 100644
index 365ce62..0000000
--- a/test-data/test-scope/sample-component-39/sample-component-39.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent39() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-4/index.ts b/test-data/test-scope/sample-component-4/index.ts
deleted file mode 100644
index 1c20e51..0000000
--- a/test-data/test-scope/sample-component-4/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent4 } from './sample-component-4.js';
diff --git a/test-data/test-scope/sample-component-4/sample-component-4.docs.mdx b/test-data/test-scope/sample-component-4/sample-component-4.docs.mdx
deleted file mode 100644
index c843cff..0000000
--- a/test-data/test-scope/sample-component-4/sample-component-4.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent4', 'module']
-description: 'A SampleComponent4 module.'
----
-
-A sampleComponent4 module.
-
-```ts
-sampleComponent4();
-```
diff --git a/test-data/test-scope/sample-component-4/sample-component-4.spec.ts b/test-data/test-scope/sample-component-4/sample-component-4.spec.ts
deleted file mode 100644
index 2e886e3..0000000
--- a/test-data/test-scope/sample-component-4/sample-component-4.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent4 } from './sample-component-4.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent4()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-4/sample-component-4.ts b/test-data/test-scope/sample-component-4/sample-component-4.ts
deleted file mode 100644
index f320bdf..0000000
--- a/test-data/test-scope/sample-component-4/sample-component-4.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent4() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-40/index.ts b/test-data/test-scope/sample-component-40/index.ts
deleted file mode 100644
index cb8ba15..0000000
--- a/test-data/test-scope/sample-component-40/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent40 } from './sample-component-40.js';
diff --git a/test-data/test-scope/sample-component-40/sample-component-40.docs.mdx b/test-data/test-scope/sample-component-40/sample-component-40.docs.mdx
deleted file mode 100644
index 762ad99..0000000
--- a/test-data/test-scope/sample-component-40/sample-component-40.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent40', 'module']
-description: 'A SampleComponent40 module.'
----
-
-A sampleComponent40 module.
-
-```ts
-sampleComponent40();
-```
diff --git a/test-data/test-scope/sample-component-40/sample-component-40.spec.ts b/test-data/test-scope/sample-component-40/sample-component-40.spec.ts
deleted file mode 100644
index 2f8eaa3..0000000
--- a/test-data/test-scope/sample-component-40/sample-component-40.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent40 } from './sample-component-40.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent40()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-40/sample-component-40.ts b/test-data/test-scope/sample-component-40/sample-component-40.ts
deleted file mode 100644
index 8113597..0000000
--- a/test-data/test-scope/sample-component-40/sample-component-40.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent40() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-41/index.ts b/test-data/test-scope/sample-component-41/index.ts
deleted file mode 100644
index a17f093..0000000
--- a/test-data/test-scope/sample-component-41/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent41 } from './sample-component-41.js';
diff --git a/test-data/test-scope/sample-component-41/sample-component-41.docs.mdx b/test-data/test-scope/sample-component-41/sample-component-41.docs.mdx
deleted file mode 100644
index db14035..0000000
--- a/test-data/test-scope/sample-component-41/sample-component-41.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent41', 'module']
-description: 'A SampleComponent41 module.'
----
-
-A sampleComponent41 module.
-
-```ts
-sampleComponent41();
-```
diff --git a/test-data/test-scope/sample-component-41/sample-component-41.spec.ts b/test-data/test-scope/sample-component-41/sample-component-41.spec.ts
deleted file mode 100644
index c77238b..0000000
--- a/test-data/test-scope/sample-component-41/sample-component-41.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent41 } from './sample-component-41.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent41()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-41/sample-component-41.ts b/test-data/test-scope/sample-component-41/sample-component-41.ts
deleted file mode 100644
index 418433a..0000000
--- a/test-data/test-scope/sample-component-41/sample-component-41.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent41() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-42/index.ts b/test-data/test-scope/sample-component-42/index.ts
deleted file mode 100644
index 29a4cda..0000000
--- a/test-data/test-scope/sample-component-42/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent42 } from './sample-component-42.js';
diff --git a/test-data/test-scope/sample-component-42/sample-component-42.docs.mdx b/test-data/test-scope/sample-component-42/sample-component-42.docs.mdx
deleted file mode 100644
index 9723ad3..0000000
--- a/test-data/test-scope/sample-component-42/sample-component-42.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent42', 'module']
-description: 'A SampleComponent42 module.'
----
-
-A sampleComponent42 module.
-
-```ts
-sampleComponent42();
-```
diff --git a/test-data/test-scope/sample-component-42/sample-component-42.spec.ts b/test-data/test-scope/sample-component-42/sample-component-42.spec.ts
deleted file mode 100644
index 460d971..0000000
--- a/test-data/test-scope/sample-component-42/sample-component-42.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent42 } from './sample-component-42.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent42()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-42/sample-component-42.ts b/test-data/test-scope/sample-component-42/sample-component-42.ts
deleted file mode 100644
index df1e67f..0000000
--- a/test-data/test-scope/sample-component-42/sample-component-42.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent42() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-43/index.ts b/test-data/test-scope/sample-component-43/index.ts
deleted file mode 100644
index 891a272..0000000
--- a/test-data/test-scope/sample-component-43/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent43 } from './sample-component-43.js';
diff --git a/test-data/test-scope/sample-component-43/sample-component-43.docs.mdx b/test-data/test-scope/sample-component-43/sample-component-43.docs.mdx
deleted file mode 100644
index f39fcb3..0000000
--- a/test-data/test-scope/sample-component-43/sample-component-43.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent43', 'module']
-description: 'A SampleComponent43 module.'
----
-
-A sampleComponent43 module.
-
-```ts
-sampleComponent43();
-```
diff --git a/test-data/test-scope/sample-component-43/sample-component-43.spec.ts b/test-data/test-scope/sample-component-43/sample-component-43.spec.ts
deleted file mode 100644
index eb0742c..0000000
--- a/test-data/test-scope/sample-component-43/sample-component-43.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent43 } from './sample-component-43.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent43()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-43/sample-component-43.ts b/test-data/test-scope/sample-component-43/sample-component-43.ts
deleted file mode 100644
index 632c361..0000000
--- a/test-data/test-scope/sample-component-43/sample-component-43.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent43() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-44/index.ts b/test-data/test-scope/sample-component-44/index.ts
deleted file mode 100644
index ecac732..0000000
--- a/test-data/test-scope/sample-component-44/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent44 } from './sample-component-44.js';
diff --git a/test-data/test-scope/sample-component-44/sample-component-44.docs.mdx b/test-data/test-scope/sample-component-44/sample-component-44.docs.mdx
deleted file mode 100644
index 6e74cf8..0000000
--- a/test-data/test-scope/sample-component-44/sample-component-44.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent44', 'module']
-description: 'A SampleComponent44 module.'
----
-
-A sampleComponent44 module.
-
-```ts
-sampleComponent44();
-```
diff --git a/test-data/test-scope/sample-component-44/sample-component-44.spec.ts b/test-data/test-scope/sample-component-44/sample-component-44.spec.ts
deleted file mode 100644
index fbee1e9..0000000
--- a/test-data/test-scope/sample-component-44/sample-component-44.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent44 } from './sample-component-44.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent44()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-44/sample-component-44.ts b/test-data/test-scope/sample-component-44/sample-component-44.ts
deleted file mode 100644
index c6ae2cb..0000000
--- a/test-data/test-scope/sample-component-44/sample-component-44.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent44() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-45/index.ts b/test-data/test-scope/sample-component-45/index.ts
deleted file mode 100644
index ec270b9..0000000
--- a/test-data/test-scope/sample-component-45/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent45 } from './sample-component-45.js';
diff --git a/test-data/test-scope/sample-component-45/sample-component-45.docs.mdx b/test-data/test-scope/sample-component-45/sample-component-45.docs.mdx
deleted file mode 100644
index 67f4233..0000000
--- a/test-data/test-scope/sample-component-45/sample-component-45.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent45', 'module']
-description: 'A SampleComponent45 module.'
----
-
-A sampleComponent45 module.
-
-```ts
-sampleComponent45();
-```
diff --git a/test-data/test-scope/sample-component-45/sample-component-45.spec.ts b/test-data/test-scope/sample-component-45/sample-component-45.spec.ts
deleted file mode 100644
index 1b032a6..0000000
--- a/test-data/test-scope/sample-component-45/sample-component-45.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent45 } from './sample-component-45.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent45()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-45/sample-component-45.ts b/test-data/test-scope/sample-component-45/sample-component-45.ts
deleted file mode 100644
index f8cdbf6..0000000
--- a/test-data/test-scope/sample-component-45/sample-component-45.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent45() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-46/index.ts b/test-data/test-scope/sample-component-46/index.ts
deleted file mode 100644
index 86fca0b..0000000
--- a/test-data/test-scope/sample-component-46/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent46 } from './sample-component-46.js';
diff --git a/test-data/test-scope/sample-component-46/sample-component-46.docs.mdx b/test-data/test-scope/sample-component-46/sample-component-46.docs.mdx
deleted file mode 100644
index 8a64f12..0000000
--- a/test-data/test-scope/sample-component-46/sample-component-46.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent46', 'module']
-description: 'A SampleComponent46 module.'
----
-
-A sampleComponent46 module.
-
-```ts
-sampleComponent46();
-```
diff --git a/test-data/test-scope/sample-component-46/sample-component-46.spec.ts b/test-data/test-scope/sample-component-46/sample-component-46.spec.ts
deleted file mode 100644
index 61a0501..0000000
--- a/test-data/test-scope/sample-component-46/sample-component-46.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent46 } from './sample-component-46.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent46()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-46/sample-component-46.ts b/test-data/test-scope/sample-component-46/sample-component-46.ts
deleted file mode 100644
index cb446b7..0000000
--- a/test-data/test-scope/sample-component-46/sample-component-46.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent46() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-47/index.ts b/test-data/test-scope/sample-component-47/index.ts
deleted file mode 100644
index 1bd7faa..0000000
--- a/test-data/test-scope/sample-component-47/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent47 } from './sample-component-47.js';
diff --git a/test-data/test-scope/sample-component-47/sample-component-47.docs.mdx b/test-data/test-scope/sample-component-47/sample-component-47.docs.mdx
deleted file mode 100644
index ce7a08a..0000000
--- a/test-data/test-scope/sample-component-47/sample-component-47.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent47', 'module']
-description: 'A SampleComponent47 module.'
----
-
-A sampleComponent47 module.
-
-```ts
-sampleComponent47();
-```
diff --git a/test-data/test-scope/sample-component-47/sample-component-47.spec.ts b/test-data/test-scope/sample-component-47/sample-component-47.spec.ts
deleted file mode 100644
index e9ba4d3..0000000
--- a/test-data/test-scope/sample-component-47/sample-component-47.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent47 } from './sample-component-47.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent47()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-47/sample-component-47.ts b/test-data/test-scope/sample-component-47/sample-component-47.ts
deleted file mode 100644
index ef2644a..0000000
--- a/test-data/test-scope/sample-component-47/sample-component-47.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent47() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-48/index.ts b/test-data/test-scope/sample-component-48/index.ts
deleted file mode 100644
index ad1f8e2..0000000
--- a/test-data/test-scope/sample-component-48/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent48 } from './sample-component-48.js';
diff --git a/test-data/test-scope/sample-component-48/sample-component-48.docs.mdx b/test-data/test-scope/sample-component-48/sample-component-48.docs.mdx
deleted file mode 100644
index ef9d85c..0000000
--- a/test-data/test-scope/sample-component-48/sample-component-48.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent48', 'module']
-description: 'A SampleComponent48 module.'
----
-
-A sampleComponent48 module.
-
-```ts
-sampleComponent48();
-```
diff --git a/test-data/test-scope/sample-component-48/sample-component-48.spec.ts b/test-data/test-scope/sample-component-48/sample-component-48.spec.ts
deleted file mode 100644
index 60df2c5..0000000
--- a/test-data/test-scope/sample-component-48/sample-component-48.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent48 } from './sample-component-48.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent48()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-48/sample-component-48.ts b/test-data/test-scope/sample-component-48/sample-component-48.ts
deleted file mode 100644
index 1576140..0000000
--- a/test-data/test-scope/sample-component-48/sample-component-48.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent48() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-49/index.ts b/test-data/test-scope/sample-component-49/index.ts
deleted file mode 100644
index 629d9e3..0000000
--- a/test-data/test-scope/sample-component-49/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent49 } from './sample-component-49.js';
diff --git a/test-data/test-scope/sample-component-49/sample-component-49.docs.mdx b/test-data/test-scope/sample-component-49/sample-component-49.docs.mdx
deleted file mode 100644
index bf22c85..0000000
--- a/test-data/test-scope/sample-component-49/sample-component-49.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent49', 'module']
-description: 'A SampleComponent49 module.'
----
-
-A sampleComponent49 module.
-
-```ts
-sampleComponent49();
-```
diff --git a/test-data/test-scope/sample-component-49/sample-component-49.spec.ts b/test-data/test-scope/sample-component-49/sample-component-49.spec.ts
deleted file mode 100644
index 251470a..0000000
--- a/test-data/test-scope/sample-component-49/sample-component-49.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent49 } from './sample-component-49.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent49()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-49/sample-component-49.ts b/test-data/test-scope/sample-component-49/sample-component-49.ts
deleted file mode 100644
index 6087098..0000000
--- a/test-data/test-scope/sample-component-49/sample-component-49.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent49() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-5/index.ts b/test-data/test-scope/sample-component-5/index.ts
deleted file mode 100644
index cb9c0f5..0000000
--- a/test-data/test-scope/sample-component-5/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent5 } from './sample-component-5.js';
diff --git a/test-data/test-scope/sample-component-5/sample-component-5.docs.mdx b/test-data/test-scope/sample-component-5/sample-component-5.docs.mdx
deleted file mode 100644
index 9816ae1..0000000
--- a/test-data/test-scope/sample-component-5/sample-component-5.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent5', 'module']
-description: 'A SampleComponent5 module.'
----
-
-A sampleComponent5 module.
-
-```ts
-sampleComponent5();
-```
diff --git a/test-data/test-scope/sample-component-5/sample-component-5.spec.ts b/test-data/test-scope/sample-component-5/sample-component-5.spec.ts
deleted file mode 100644
index a6f2144..0000000
--- a/test-data/test-scope/sample-component-5/sample-component-5.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent5 } from './sample-component-5.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent5()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-5/sample-component-5.ts b/test-data/test-scope/sample-component-5/sample-component-5.ts
deleted file mode 100644
index 69a72ab..0000000
--- a/test-data/test-scope/sample-component-5/sample-component-5.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent5() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-50/index.ts b/test-data/test-scope/sample-component-50/index.ts
deleted file mode 100644
index ed5ef5b..0000000
--- a/test-data/test-scope/sample-component-50/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent50 } from './sample-component-50.js';
diff --git a/test-data/test-scope/sample-component-50/sample-component-50.docs.mdx b/test-data/test-scope/sample-component-50/sample-component-50.docs.mdx
deleted file mode 100644
index 74f4ec9..0000000
--- a/test-data/test-scope/sample-component-50/sample-component-50.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent50', 'module']
-description: 'A SampleComponent50 module.'
----
-
-A sampleComponent50 module.
-
-```ts
-sampleComponent50();
-```
diff --git a/test-data/test-scope/sample-component-50/sample-component-50.spec.ts b/test-data/test-scope/sample-component-50/sample-component-50.spec.ts
deleted file mode 100644
index 2a3df1a..0000000
--- a/test-data/test-scope/sample-component-50/sample-component-50.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent50 } from './sample-component-50.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent50()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-50/sample-component-50.ts b/test-data/test-scope/sample-component-50/sample-component-50.ts
deleted file mode 100644
index 171fc57..0000000
--- a/test-data/test-scope/sample-component-50/sample-component-50.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent50() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-51/index.ts b/test-data/test-scope/sample-component-51/index.ts
deleted file mode 100644
index 1ab532e..0000000
--- a/test-data/test-scope/sample-component-51/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent51 } from './sample-component-51.js';
diff --git a/test-data/test-scope/sample-component-51/sample-component-51.docs.mdx b/test-data/test-scope/sample-component-51/sample-component-51.docs.mdx
deleted file mode 100644
index b3fe845..0000000
--- a/test-data/test-scope/sample-component-51/sample-component-51.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent51', 'module']
-description: 'A SampleComponent51 module.'
----
-
-A sampleComponent51 module.
-
-```ts
-sampleComponent51();
-```
diff --git a/test-data/test-scope/sample-component-51/sample-component-51.spec.ts b/test-data/test-scope/sample-component-51/sample-component-51.spec.ts
deleted file mode 100644
index 23e5b76..0000000
--- a/test-data/test-scope/sample-component-51/sample-component-51.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent51 } from './sample-component-51.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent51()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-51/sample-component-51.ts b/test-data/test-scope/sample-component-51/sample-component-51.ts
deleted file mode 100644
index df1a4eb..0000000
--- a/test-data/test-scope/sample-component-51/sample-component-51.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent51() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-52/index.ts b/test-data/test-scope/sample-component-52/index.ts
deleted file mode 100644
index 384d8bc..0000000
--- a/test-data/test-scope/sample-component-52/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent52 } from './sample-component-52.js';
diff --git a/test-data/test-scope/sample-component-52/sample-component-52.docs.mdx b/test-data/test-scope/sample-component-52/sample-component-52.docs.mdx
deleted file mode 100644
index 7bb1512..0000000
--- a/test-data/test-scope/sample-component-52/sample-component-52.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent52', 'module']
-description: 'A SampleComponent52 module.'
----
-
-A sampleComponent52 module.
-
-```ts
-sampleComponent52();
-```
diff --git a/test-data/test-scope/sample-component-52/sample-component-52.spec.ts b/test-data/test-scope/sample-component-52/sample-component-52.spec.ts
deleted file mode 100644
index 2c30dcd..0000000
--- a/test-data/test-scope/sample-component-52/sample-component-52.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent52 } from './sample-component-52.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent52()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-52/sample-component-52.ts b/test-data/test-scope/sample-component-52/sample-component-52.ts
deleted file mode 100644
index e8782fb..0000000
--- a/test-data/test-scope/sample-component-52/sample-component-52.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent52() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-53/index.ts b/test-data/test-scope/sample-component-53/index.ts
deleted file mode 100644
index a479015..0000000
--- a/test-data/test-scope/sample-component-53/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent53 } from './sample-component-53.js';
diff --git a/test-data/test-scope/sample-component-53/sample-component-53.docs.mdx b/test-data/test-scope/sample-component-53/sample-component-53.docs.mdx
deleted file mode 100644
index d483f5e..0000000
--- a/test-data/test-scope/sample-component-53/sample-component-53.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent53', 'module']
-description: 'A SampleComponent53 module.'
----
-
-A sampleComponent53 module.
-
-```ts
-sampleComponent53();
-```
diff --git a/test-data/test-scope/sample-component-53/sample-component-53.spec.ts b/test-data/test-scope/sample-component-53/sample-component-53.spec.ts
deleted file mode 100644
index afbe977..0000000
--- a/test-data/test-scope/sample-component-53/sample-component-53.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent53 } from './sample-component-53.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent53()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-53/sample-component-53.ts b/test-data/test-scope/sample-component-53/sample-component-53.ts
deleted file mode 100644
index 9fce25a..0000000
--- a/test-data/test-scope/sample-component-53/sample-component-53.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent53() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-54/index.ts b/test-data/test-scope/sample-component-54/index.ts
deleted file mode 100644
index 5b4a40a..0000000
--- a/test-data/test-scope/sample-component-54/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent54 } from './sample-component-54.js';
diff --git a/test-data/test-scope/sample-component-54/sample-component-54.docs.mdx b/test-data/test-scope/sample-component-54/sample-component-54.docs.mdx
deleted file mode 100644
index 1518112..0000000
--- a/test-data/test-scope/sample-component-54/sample-component-54.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent54', 'module']
-description: 'A SampleComponent54 module.'
----
-
-A sampleComponent54 module.
-
-```ts
-sampleComponent54();
-```
diff --git a/test-data/test-scope/sample-component-54/sample-component-54.spec.ts b/test-data/test-scope/sample-component-54/sample-component-54.spec.ts
deleted file mode 100644
index 749ca84..0000000
--- a/test-data/test-scope/sample-component-54/sample-component-54.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent54 } from './sample-component-54.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent54()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-54/sample-component-54.ts b/test-data/test-scope/sample-component-54/sample-component-54.ts
deleted file mode 100644
index b4239b3..0000000
--- a/test-data/test-scope/sample-component-54/sample-component-54.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent54() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-55/index.ts b/test-data/test-scope/sample-component-55/index.ts
deleted file mode 100644
index ae3e66e..0000000
--- a/test-data/test-scope/sample-component-55/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent55 } from './sample-component-55.js';
diff --git a/test-data/test-scope/sample-component-55/sample-component-55.docs.mdx b/test-data/test-scope/sample-component-55/sample-component-55.docs.mdx
deleted file mode 100644
index 16b1de9..0000000
--- a/test-data/test-scope/sample-component-55/sample-component-55.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent55', 'module']
-description: 'A SampleComponent55 module.'
----
-
-A sampleComponent55 module.
-
-```ts
-sampleComponent55();
-```
diff --git a/test-data/test-scope/sample-component-55/sample-component-55.spec.ts b/test-data/test-scope/sample-component-55/sample-component-55.spec.ts
deleted file mode 100644
index fedddf0..0000000
--- a/test-data/test-scope/sample-component-55/sample-component-55.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent55 } from './sample-component-55.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent55()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-55/sample-component-55.ts b/test-data/test-scope/sample-component-55/sample-component-55.ts
deleted file mode 100644
index 5c80791..0000000
--- a/test-data/test-scope/sample-component-55/sample-component-55.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent55() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-56/index.ts b/test-data/test-scope/sample-component-56/index.ts
deleted file mode 100644
index a0aff90..0000000
--- a/test-data/test-scope/sample-component-56/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent56 } from './sample-component-56.js';
diff --git a/test-data/test-scope/sample-component-56/sample-component-56.docs.mdx b/test-data/test-scope/sample-component-56/sample-component-56.docs.mdx
deleted file mode 100644
index 858116f..0000000
--- a/test-data/test-scope/sample-component-56/sample-component-56.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent56', 'module']
-description: 'A SampleComponent56 module.'
----
-
-A sampleComponent56 module.
-
-```ts
-sampleComponent56();
-```
diff --git a/test-data/test-scope/sample-component-56/sample-component-56.spec.ts b/test-data/test-scope/sample-component-56/sample-component-56.spec.ts
deleted file mode 100644
index 2122cd3..0000000
--- a/test-data/test-scope/sample-component-56/sample-component-56.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent56 } from './sample-component-56.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent56()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-56/sample-component-56.ts b/test-data/test-scope/sample-component-56/sample-component-56.ts
deleted file mode 100644
index 71b984e..0000000
--- a/test-data/test-scope/sample-component-56/sample-component-56.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent56() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-57/index.ts b/test-data/test-scope/sample-component-57/index.ts
deleted file mode 100644
index 84cf5ff..0000000
--- a/test-data/test-scope/sample-component-57/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent57 } from './sample-component-57.js';
diff --git a/test-data/test-scope/sample-component-57/sample-component-57.docs.mdx b/test-data/test-scope/sample-component-57/sample-component-57.docs.mdx
deleted file mode 100644
index 3831c05..0000000
--- a/test-data/test-scope/sample-component-57/sample-component-57.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent57', 'module']
-description: 'A SampleComponent57 module.'
----
-
-A sampleComponent57 module.
-
-```ts
-sampleComponent57();
-```
diff --git a/test-data/test-scope/sample-component-57/sample-component-57.spec.ts b/test-data/test-scope/sample-component-57/sample-component-57.spec.ts
deleted file mode 100644
index 1654203..0000000
--- a/test-data/test-scope/sample-component-57/sample-component-57.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent57 } from './sample-component-57.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent57()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-57/sample-component-57.ts b/test-data/test-scope/sample-component-57/sample-component-57.ts
deleted file mode 100644
index 781e7bd..0000000
--- a/test-data/test-scope/sample-component-57/sample-component-57.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent57() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-58/index.ts b/test-data/test-scope/sample-component-58/index.ts
deleted file mode 100644
index f0a060c..0000000
--- a/test-data/test-scope/sample-component-58/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent58 } from './sample-component-58.js';
diff --git a/test-data/test-scope/sample-component-58/sample-component-58.docs.mdx b/test-data/test-scope/sample-component-58/sample-component-58.docs.mdx
deleted file mode 100644
index c1c5ec6..0000000
--- a/test-data/test-scope/sample-component-58/sample-component-58.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent58', 'module']
-description: 'A SampleComponent58 module.'
----
-
-A sampleComponent58 module.
-
-```ts
-sampleComponent58();
-```
diff --git a/test-data/test-scope/sample-component-58/sample-component-58.spec.ts b/test-data/test-scope/sample-component-58/sample-component-58.spec.ts
deleted file mode 100644
index a1eeb37..0000000
--- a/test-data/test-scope/sample-component-58/sample-component-58.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent58 } from './sample-component-58.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent58()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-58/sample-component-58.ts b/test-data/test-scope/sample-component-58/sample-component-58.ts
deleted file mode 100644
index 8c00c4c..0000000
--- a/test-data/test-scope/sample-component-58/sample-component-58.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent58() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-59/index.ts b/test-data/test-scope/sample-component-59/index.ts
deleted file mode 100644
index fd60b34..0000000
--- a/test-data/test-scope/sample-component-59/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent59 } from './sample-component-59.js';
diff --git a/test-data/test-scope/sample-component-59/sample-component-59.docs.mdx b/test-data/test-scope/sample-component-59/sample-component-59.docs.mdx
deleted file mode 100644
index 84f08bd..0000000
--- a/test-data/test-scope/sample-component-59/sample-component-59.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent59', 'module']
-description: 'A SampleComponent59 module.'
----
-
-A sampleComponent59 module.
-
-```ts
-sampleComponent59();
-```
diff --git a/test-data/test-scope/sample-component-59/sample-component-59.spec.ts b/test-data/test-scope/sample-component-59/sample-component-59.spec.ts
deleted file mode 100644
index 3e603a3..0000000
--- a/test-data/test-scope/sample-component-59/sample-component-59.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent59 } from './sample-component-59.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent59()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-59/sample-component-59.ts b/test-data/test-scope/sample-component-59/sample-component-59.ts
deleted file mode 100644
index 9f5df72..0000000
--- a/test-data/test-scope/sample-component-59/sample-component-59.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent59() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-6/index.ts b/test-data/test-scope/sample-component-6/index.ts
deleted file mode 100644
index 33aebea..0000000
--- a/test-data/test-scope/sample-component-6/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent6 } from './sample-component-6.js';
diff --git a/test-data/test-scope/sample-component-6/sample-component-6.docs.mdx b/test-data/test-scope/sample-component-6/sample-component-6.docs.mdx
deleted file mode 100644
index af74dc6..0000000
--- a/test-data/test-scope/sample-component-6/sample-component-6.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent6', 'module']
-description: 'A SampleComponent6 module.'
----
-
-A sampleComponent6 module.
-
-```ts
-sampleComponent6();
-```
diff --git a/test-data/test-scope/sample-component-6/sample-component-6.spec.ts b/test-data/test-scope/sample-component-6/sample-component-6.spec.ts
deleted file mode 100644
index b14ca6f..0000000
--- a/test-data/test-scope/sample-component-6/sample-component-6.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent6 } from './sample-component-6.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent6()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-6/sample-component-6.ts b/test-data/test-scope/sample-component-6/sample-component-6.ts
deleted file mode 100644
index 008588e..0000000
--- a/test-data/test-scope/sample-component-6/sample-component-6.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent6() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-60/index.ts b/test-data/test-scope/sample-component-60/index.ts
deleted file mode 100644
index 99e6f3c..0000000
--- a/test-data/test-scope/sample-component-60/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent60 } from './sample-component-60.js';
diff --git a/test-data/test-scope/sample-component-60/sample-component-60.docs.mdx b/test-data/test-scope/sample-component-60/sample-component-60.docs.mdx
deleted file mode 100644
index 50c616c..0000000
--- a/test-data/test-scope/sample-component-60/sample-component-60.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent60', 'module']
-description: 'A SampleComponent60 module.'
----
-
-A sampleComponent60 module.
-
-```ts
-sampleComponent60();
-```
diff --git a/test-data/test-scope/sample-component-60/sample-component-60.spec.ts b/test-data/test-scope/sample-component-60/sample-component-60.spec.ts
deleted file mode 100644
index e14ee62..0000000
--- a/test-data/test-scope/sample-component-60/sample-component-60.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent60 } from './sample-component-60.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent60()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-60/sample-component-60.ts b/test-data/test-scope/sample-component-60/sample-component-60.ts
deleted file mode 100644
index 90eba17..0000000
--- a/test-data/test-scope/sample-component-60/sample-component-60.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent60() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-61/index.ts b/test-data/test-scope/sample-component-61/index.ts
deleted file mode 100644
index b1b50e1..0000000
--- a/test-data/test-scope/sample-component-61/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent61 } from './sample-component-61.js';
diff --git a/test-data/test-scope/sample-component-61/sample-component-61.docs.mdx b/test-data/test-scope/sample-component-61/sample-component-61.docs.mdx
deleted file mode 100644
index 3be0ffa..0000000
--- a/test-data/test-scope/sample-component-61/sample-component-61.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent61', 'module']
-description: 'A SampleComponent61 module.'
----
-
-A sampleComponent61 module.
-
-```ts
-sampleComponent61();
-```
diff --git a/test-data/test-scope/sample-component-61/sample-component-61.spec.ts b/test-data/test-scope/sample-component-61/sample-component-61.spec.ts
deleted file mode 100644
index 56d6025..0000000
--- a/test-data/test-scope/sample-component-61/sample-component-61.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent61 } from './sample-component-61.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent61()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-61/sample-component-61.ts b/test-data/test-scope/sample-component-61/sample-component-61.ts
deleted file mode 100644
index 0ca2ba0..0000000
--- a/test-data/test-scope/sample-component-61/sample-component-61.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent61() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-62/index.ts b/test-data/test-scope/sample-component-62/index.ts
deleted file mode 100644
index 0bc7613..0000000
--- a/test-data/test-scope/sample-component-62/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent62 } from './sample-component-62.js';
diff --git a/test-data/test-scope/sample-component-62/sample-component-62.docs.mdx b/test-data/test-scope/sample-component-62/sample-component-62.docs.mdx
deleted file mode 100644
index b9ae5fa..0000000
--- a/test-data/test-scope/sample-component-62/sample-component-62.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent62', 'module']
-description: 'A SampleComponent62 module.'
----
-
-A sampleComponent62 module.
-
-```ts
-sampleComponent62();
-```
diff --git a/test-data/test-scope/sample-component-62/sample-component-62.spec.ts b/test-data/test-scope/sample-component-62/sample-component-62.spec.ts
deleted file mode 100644
index 5ff4afa..0000000
--- a/test-data/test-scope/sample-component-62/sample-component-62.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent62 } from './sample-component-62.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent62()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-62/sample-component-62.ts b/test-data/test-scope/sample-component-62/sample-component-62.ts
deleted file mode 100644
index faa5ea0..0000000
--- a/test-data/test-scope/sample-component-62/sample-component-62.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent62() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-63/index.ts b/test-data/test-scope/sample-component-63/index.ts
deleted file mode 100644
index f51f96c..0000000
--- a/test-data/test-scope/sample-component-63/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent63 } from './sample-component-63.js';
diff --git a/test-data/test-scope/sample-component-63/sample-component-63.docs.mdx b/test-data/test-scope/sample-component-63/sample-component-63.docs.mdx
deleted file mode 100644
index 3e0c9ac..0000000
--- a/test-data/test-scope/sample-component-63/sample-component-63.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent63', 'module']
-description: 'A SampleComponent63 module.'
----
-
-A sampleComponent63 module.
-
-```ts
-sampleComponent63();
-```
diff --git a/test-data/test-scope/sample-component-63/sample-component-63.spec.ts b/test-data/test-scope/sample-component-63/sample-component-63.spec.ts
deleted file mode 100644
index d4468cc..0000000
--- a/test-data/test-scope/sample-component-63/sample-component-63.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent63 } from './sample-component-63.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent63()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-63/sample-component-63.ts b/test-data/test-scope/sample-component-63/sample-component-63.ts
deleted file mode 100644
index 3100bb4..0000000
--- a/test-data/test-scope/sample-component-63/sample-component-63.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent63() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-64/index.ts b/test-data/test-scope/sample-component-64/index.ts
deleted file mode 100644
index c17c067..0000000
--- a/test-data/test-scope/sample-component-64/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent64 } from './sample-component-64.js';
diff --git a/test-data/test-scope/sample-component-64/sample-component-64.docs.mdx b/test-data/test-scope/sample-component-64/sample-component-64.docs.mdx
deleted file mode 100644
index 54fd5c2..0000000
--- a/test-data/test-scope/sample-component-64/sample-component-64.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent64', 'module']
-description: 'A SampleComponent64 module.'
----
-
-A sampleComponent64 module.
-
-```ts
-sampleComponent64();
-```
diff --git a/test-data/test-scope/sample-component-64/sample-component-64.spec.ts b/test-data/test-scope/sample-component-64/sample-component-64.spec.ts
deleted file mode 100644
index 8e9263f..0000000
--- a/test-data/test-scope/sample-component-64/sample-component-64.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent64 } from './sample-component-64.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent64()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-64/sample-component-64.ts b/test-data/test-scope/sample-component-64/sample-component-64.ts
deleted file mode 100644
index fc00e8e..0000000
--- a/test-data/test-scope/sample-component-64/sample-component-64.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent64() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-65/index.ts b/test-data/test-scope/sample-component-65/index.ts
deleted file mode 100644
index 6b5f793..0000000
--- a/test-data/test-scope/sample-component-65/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent65 } from './sample-component-65.js';
diff --git a/test-data/test-scope/sample-component-65/sample-component-65.docs.mdx b/test-data/test-scope/sample-component-65/sample-component-65.docs.mdx
deleted file mode 100644
index 6de819c..0000000
--- a/test-data/test-scope/sample-component-65/sample-component-65.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent65', 'module']
-description: 'A SampleComponent65 module.'
----
-
-A sampleComponent65 module.
-
-```ts
-sampleComponent65();
-```
diff --git a/test-data/test-scope/sample-component-65/sample-component-65.spec.ts b/test-data/test-scope/sample-component-65/sample-component-65.spec.ts
deleted file mode 100644
index e90c39b..0000000
--- a/test-data/test-scope/sample-component-65/sample-component-65.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent65 } from './sample-component-65.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent65()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-65/sample-component-65.ts b/test-data/test-scope/sample-component-65/sample-component-65.ts
deleted file mode 100644
index 6ec5784..0000000
--- a/test-data/test-scope/sample-component-65/sample-component-65.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent65() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-66/index.ts b/test-data/test-scope/sample-component-66/index.ts
deleted file mode 100644
index f0af36f..0000000
--- a/test-data/test-scope/sample-component-66/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent66 } from './sample-component-66.js';
diff --git a/test-data/test-scope/sample-component-66/sample-component-66.docs.mdx b/test-data/test-scope/sample-component-66/sample-component-66.docs.mdx
deleted file mode 100644
index 621b82f..0000000
--- a/test-data/test-scope/sample-component-66/sample-component-66.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent66', 'module']
-description: 'A SampleComponent66 module.'
----
-
-A sampleComponent66 module.
-
-```ts
-sampleComponent66();
-```
diff --git a/test-data/test-scope/sample-component-66/sample-component-66.spec.ts b/test-data/test-scope/sample-component-66/sample-component-66.spec.ts
deleted file mode 100644
index 09cc8c3..0000000
--- a/test-data/test-scope/sample-component-66/sample-component-66.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent66 } from './sample-component-66.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent66()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-66/sample-component-66.ts b/test-data/test-scope/sample-component-66/sample-component-66.ts
deleted file mode 100644
index e1f463a..0000000
--- a/test-data/test-scope/sample-component-66/sample-component-66.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent66() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-67/index.ts b/test-data/test-scope/sample-component-67/index.ts
deleted file mode 100644
index 611100b..0000000
--- a/test-data/test-scope/sample-component-67/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent67 } from './sample-component-67.js';
diff --git a/test-data/test-scope/sample-component-67/sample-component-67.docs.mdx b/test-data/test-scope/sample-component-67/sample-component-67.docs.mdx
deleted file mode 100644
index 98efe57..0000000
--- a/test-data/test-scope/sample-component-67/sample-component-67.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent67', 'module']
-description: 'A SampleComponent67 module.'
----
-
-A sampleComponent67 module.
-
-```ts
-sampleComponent67();
-```
diff --git a/test-data/test-scope/sample-component-67/sample-component-67.spec.ts b/test-data/test-scope/sample-component-67/sample-component-67.spec.ts
deleted file mode 100644
index 405c0f3..0000000
--- a/test-data/test-scope/sample-component-67/sample-component-67.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent67 } from './sample-component-67.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent67()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-67/sample-component-67.ts b/test-data/test-scope/sample-component-67/sample-component-67.ts
deleted file mode 100644
index 48b85fc..0000000
--- a/test-data/test-scope/sample-component-67/sample-component-67.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent67() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-68/index.ts b/test-data/test-scope/sample-component-68/index.ts
deleted file mode 100644
index ad6ae04..0000000
--- a/test-data/test-scope/sample-component-68/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent68 } from './sample-component-68.js';
diff --git a/test-data/test-scope/sample-component-68/sample-component-68.docs.mdx b/test-data/test-scope/sample-component-68/sample-component-68.docs.mdx
deleted file mode 100644
index bd16e5c..0000000
--- a/test-data/test-scope/sample-component-68/sample-component-68.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent68', 'module']
-description: 'A SampleComponent68 module.'
----
-
-A sampleComponent68 module.
-
-```ts
-sampleComponent68();
-```
diff --git a/test-data/test-scope/sample-component-68/sample-component-68.spec.ts b/test-data/test-scope/sample-component-68/sample-component-68.spec.ts
deleted file mode 100644
index 6f6c76f..0000000
--- a/test-data/test-scope/sample-component-68/sample-component-68.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent68 } from './sample-component-68.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent68()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-68/sample-component-68.ts b/test-data/test-scope/sample-component-68/sample-component-68.ts
deleted file mode 100644
index 9314f77..0000000
--- a/test-data/test-scope/sample-component-68/sample-component-68.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent68() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-69/index.ts b/test-data/test-scope/sample-component-69/index.ts
deleted file mode 100644
index 2f62ca7..0000000
--- a/test-data/test-scope/sample-component-69/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent69 } from './sample-component-69.js';
diff --git a/test-data/test-scope/sample-component-69/sample-component-69.docs.mdx b/test-data/test-scope/sample-component-69/sample-component-69.docs.mdx
deleted file mode 100644
index 2f9d8b8..0000000
--- a/test-data/test-scope/sample-component-69/sample-component-69.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent69', 'module']
-description: 'A SampleComponent69 module.'
----
-
-A sampleComponent69 module.
-
-```ts
-sampleComponent69();
-```
diff --git a/test-data/test-scope/sample-component-69/sample-component-69.spec.ts b/test-data/test-scope/sample-component-69/sample-component-69.spec.ts
deleted file mode 100644
index b114a2b..0000000
--- a/test-data/test-scope/sample-component-69/sample-component-69.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent69 } from './sample-component-69.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent69()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-69/sample-component-69.ts b/test-data/test-scope/sample-component-69/sample-component-69.ts
deleted file mode 100644
index aef43f0..0000000
--- a/test-data/test-scope/sample-component-69/sample-component-69.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent69() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-7/index.ts b/test-data/test-scope/sample-component-7/index.ts
deleted file mode 100644
index 9edd75f..0000000
--- a/test-data/test-scope/sample-component-7/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent7 } from './sample-component-7.js';
diff --git a/test-data/test-scope/sample-component-7/sample-component-7.docs.mdx b/test-data/test-scope/sample-component-7/sample-component-7.docs.mdx
deleted file mode 100644
index decf473..0000000
--- a/test-data/test-scope/sample-component-7/sample-component-7.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent7', 'module']
-description: 'A SampleComponent7 module.'
----
-
-A sampleComponent7 module.
-
-```ts
-sampleComponent7();
-```
diff --git a/test-data/test-scope/sample-component-7/sample-component-7.spec.ts b/test-data/test-scope/sample-component-7/sample-component-7.spec.ts
deleted file mode 100644
index ab0dba8..0000000
--- a/test-data/test-scope/sample-component-7/sample-component-7.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent7 } from './sample-component-7.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent7()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-7/sample-component-7.ts b/test-data/test-scope/sample-component-7/sample-component-7.ts
deleted file mode 100644
index df50e02..0000000
--- a/test-data/test-scope/sample-component-7/sample-component-7.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent7() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-70/index.ts b/test-data/test-scope/sample-component-70/index.ts
deleted file mode 100644
index 1293ad6..0000000
--- a/test-data/test-scope/sample-component-70/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent70 } from './sample-component-70.js';
diff --git a/test-data/test-scope/sample-component-70/sample-component-70.docs.mdx b/test-data/test-scope/sample-component-70/sample-component-70.docs.mdx
deleted file mode 100644
index a24d362..0000000
--- a/test-data/test-scope/sample-component-70/sample-component-70.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent70', 'module']
-description: 'A SampleComponent70 module.'
----
-
-A sampleComponent70 module.
-
-```ts
-sampleComponent70();
-```
diff --git a/test-data/test-scope/sample-component-70/sample-component-70.spec.ts b/test-data/test-scope/sample-component-70/sample-component-70.spec.ts
deleted file mode 100644
index 19735fe..0000000
--- a/test-data/test-scope/sample-component-70/sample-component-70.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent70 } from './sample-component-70.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent70()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-70/sample-component-70.ts b/test-data/test-scope/sample-component-70/sample-component-70.ts
deleted file mode 100644
index 17dd618..0000000
--- a/test-data/test-scope/sample-component-70/sample-component-70.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent70() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-71/index.ts b/test-data/test-scope/sample-component-71/index.ts
deleted file mode 100644
index 1dca5bb..0000000
--- a/test-data/test-scope/sample-component-71/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent71 } from './sample-component-71.js';
diff --git a/test-data/test-scope/sample-component-71/sample-component-71.docs.mdx b/test-data/test-scope/sample-component-71/sample-component-71.docs.mdx
deleted file mode 100644
index 00f361e..0000000
--- a/test-data/test-scope/sample-component-71/sample-component-71.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent71', 'module']
-description: 'A SampleComponent71 module.'
----
-
-A sampleComponent71 module.
-
-```ts
-sampleComponent71();
-```
diff --git a/test-data/test-scope/sample-component-71/sample-component-71.spec.ts b/test-data/test-scope/sample-component-71/sample-component-71.spec.ts
deleted file mode 100644
index 4a4203f..0000000
--- a/test-data/test-scope/sample-component-71/sample-component-71.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent71 } from './sample-component-71.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent71()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-71/sample-component-71.ts b/test-data/test-scope/sample-component-71/sample-component-71.ts
deleted file mode 100644
index 635693c..0000000
--- a/test-data/test-scope/sample-component-71/sample-component-71.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent71() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-72/index.ts b/test-data/test-scope/sample-component-72/index.ts
deleted file mode 100644
index bcfcb23..0000000
--- a/test-data/test-scope/sample-component-72/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent72 } from './sample-component-72.js';
diff --git a/test-data/test-scope/sample-component-72/sample-component-72.docs.mdx b/test-data/test-scope/sample-component-72/sample-component-72.docs.mdx
deleted file mode 100644
index f684ead..0000000
--- a/test-data/test-scope/sample-component-72/sample-component-72.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent72', 'module']
-description: 'A SampleComponent72 module.'
----
-
-A sampleComponent72 module.
-
-```ts
-sampleComponent72();
-```
diff --git a/test-data/test-scope/sample-component-72/sample-component-72.spec.ts b/test-data/test-scope/sample-component-72/sample-component-72.spec.ts
deleted file mode 100644
index c2c7619..0000000
--- a/test-data/test-scope/sample-component-72/sample-component-72.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent72 } from './sample-component-72.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent72()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-72/sample-component-72.ts b/test-data/test-scope/sample-component-72/sample-component-72.ts
deleted file mode 100644
index 910ebb6..0000000
--- a/test-data/test-scope/sample-component-72/sample-component-72.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent72() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-73/index.ts b/test-data/test-scope/sample-component-73/index.ts
deleted file mode 100644
index 82a2558..0000000
--- a/test-data/test-scope/sample-component-73/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent73 } from './sample-component-73.js';
diff --git a/test-data/test-scope/sample-component-73/sample-component-73.docs.mdx b/test-data/test-scope/sample-component-73/sample-component-73.docs.mdx
deleted file mode 100644
index 8c0bd31..0000000
--- a/test-data/test-scope/sample-component-73/sample-component-73.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent73', 'module']
-description: 'A SampleComponent73 module.'
----
-
-A sampleComponent73 module.
-
-```ts
-sampleComponent73();
-```
diff --git a/test-data/test-scope/sample-component-73/sample-component-73.spec.ts b/test-data/test-scope/sample-component-73/sample-component-73.spec.ts
deleted file mode 100644
index 9a69318..0000000
--- a/test-data/test-scope/sample-component-73/sample-component-73.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent73 } from './sample-component-73.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent73()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-73/sample-component-73.ts b/test-data/test-scope/sample-component-73/sample-component-73.ts
deleted file mode 100644
index 164a7e1..0000000
--- a/test-data/test-scope/sample-component-73/sample-component-73.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent73() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-74/index.ts b/test-data/test-scope/sample-component-74/index.ts
deleted file mode 100644
index d7c4bdc..0000000
--- a/test-data/test-scope/sample-component-74/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent74 } from './sample-component-74.js';
diff --git a/test-data/test-scope/sample-component-74/sample-component-74.docs.mdx b/test-data/test-scope/sample-component-74/sample-component-74.docs.mdx
deleted file mode 100644
index 96fddc2..0000000
--- a/test-data/test-scope/sample-component-74/sample-component-74.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent74', 'module']
-description: 'A SampleComponent74 module.'
----
-
-A sampleComponent74 module.
-
-```ts
-sampleComponent74();
-```
diff --git a/test-data/test-scope/sample-component-74/sample-component-74.spec.ts b/test-data/test-scope/sample-component-74/sample-component-74.spec.ts
deleted file mode 100644
index e177efa..0000000
--- a/test-data/test-scope/sample-component-74/sample-component-74.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent74 } from './sample-component-74.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent74()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-74/sample-component-74.ts b/test-data/test-scope/sample-component-74/sample-component-74.ts
deleted file mode 100644
index 77a728d..0000000
--- a/test-data/test-scope/sample-component-74/sample-component-74.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent74() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-75/index.ts b/test-data/test-scope/sample-component-75/index.ts
deleted file mode 100644
index 4c71934..0000000
--- a/test-data/test-scope/sample-component-75/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent75 } from './sample-component-75.js';
diff --git a/test-data/test-scope/sample-component-75/sample-component-75.docs.mdx b/test-data/test-scope/sample-component-75/sample-component-75.docs.mdx
deleted file mode 100644
index 353dea0..0000000
--- a/test-data/test-scope/sample-component-75/sample-component-75.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent75', 'module']
-description: 'A SampleComponent75 module.'
----
-
-A sampleComponent75 module.
-
-```ts
-sampleComponent75();
-```
diff --git a/test-data/test-scope/sample-component-75/sample-component-75.spec.ts b/test-data/test-scope/sample-component-75/sample-component-75.spec.ts
deleted file mode 100644
index e78080e..0000000
--- a/test-data/test-scope/sample-component-75/sample-component-75.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent75 } from './sample-component-75.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent75()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-75/sample-component-75.ts b/test-data/test-scope/sample-component-75/sample-component-75.ts
deleted file mode 100644
index d68f435..0000000
--- a/test-data/test-scope/sample-component-75/sample-component-75.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent75() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-76/index.ts b/test-data/test-scope/sample-component-76/index.ts
deleted file mode 100644
index d0ad44a..0000000
--- a/test-data/test-scope/sample-component-76/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent76 } from './sample-component-76.js';
diff --git a/test-data/test-scope/sample-component-76/sample-component-76.docs.mdx b/test-data/test-scope/sample-component-76/sample-component-76.docs.mdx
deleted file mode 100644
index e889e6f..0000000
--- a/test-data/test-scope/sample-component-76/sample-component-76.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent76', 'module']
-description: 'A SampleComponent76 module.'
----
-
-A sampleComponent76 module.
-
-```ts
-sampleComponent76();
-```
diff --git a/test-data/test-scope/sample-component-76/sample-component-76.spec.ts b/test-data/test-scope/sample-component-76/sample-component-76.spec.ts
deleted file mode 100644
index 19f98d3..0000000
--- a/test-data/test-scope/sample-component-76/sample-component-76.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent76 } from './sample-component-76.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent76()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-76/sample-component-76.ts b/test-data/test-scope/sample-component-76/sample-component-76.ts
deleted file mode 100644
index 88a4364..0000000
--- a/test-data/test-scope/sample-component-76/sample-component-76.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent76() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-77/index.ts b/test-data/test-scope/sample-component-77/index.ts
deleted file mode 100644
index 869bcab..0000000
--- a/test-data/test-scope/sample-component-77/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent77 } from './sample-component-77.js';
diff --git a/test-data/test-scope/sample-component-77/sample-component-77.docs.mdx b/test-data/test-scope/sample-component-77/sample-component-77.docs.mdx
deleted file mode 100644
index 94b6b61..0000000
--- a/test-data/test-scope/sample-component-77/sample-component-77.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent77', 'module']
-description: 'A SampleComponent77 module.'
----
-
-A sampleComponent77 module.
-
-```ts
-sampleComponent77();
-```
diff --git a/test-data/test-scope/sample-component-77/sample-component-77.spec.ts b/test-data/test-scope/sample-component-77/sample-component-77.spec.ts
deleted file mode 100644
index e25a31d..0000000
--- a/test-data/test-scope/sample-component-77/sample-component-77.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent77 } from './sample-component-77.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent77()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-77/sample-component-77.ts b/test-data/test-scope/sample-component-77/sample-component-77.ts
deleted file mode 100644
index f32a285..0000000
--- a/test-data/test-scope/sample-component-77/sample-component-77.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent77() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-78/index.ts b/test-data/test-scope/sample-component-78/index.ts
deleted file mode 100644
index 5240936..0000000
--- a/test-data/test-scope/sample-component-78/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent78 } from './sample-component-78.js';
diff --git a/test-data/test-scope/sample-component-78/sample-component-78.docs.mdx b/test-data/test-scope/sample-component-78/sample-component-78.docs.mdx
deleted file mode 100644
index 6d2f43d..0000000
--- a/test-data/test-scope/sample-component-78/sample-component-78.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent78', 'module']
-description: 'A SampleComponent78 module.'
----
-
-A sampleComponent78 module.
-
-```ts
-sampleComponent78();
-```
diff --git a/test-data/test-scope/sample-component-78/sample-component-78.spec.ts b/test-data/test-scope/sample-component-78/sample-component-78.spec.ts
deleted file mode 100644
index 251f1b0..0000000
--- a/test-data/test-scope/sample-component-78/sample-component-78.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent78 } from './sample-component-78.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent78()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-78/sample-component-78.ts b/test-data/test-scope/sample-component-78/sample-component-78.ts
deleted file mode 100644
index a3ac7bc..0000000
--- a/test-data/test-scope/sample-component-78/sample-component-78.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent78() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-79/index.ts b/test-data/test-scope/sample-component-79/index.ts
deleted file mode 100644
index 8186646..0000000
--- a/test-data/test-scope/sample-component-79/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent79 } from './sample-component-79.js';
diff --git a/test-data/test-scope/sample-component-79/sample-component-79.docs.mdx b/test-data/test-scope/sample-component-79/sample-component-79.docs.mdx
deleted file mode 100644
index 7be93ba..0000000
--- a/test-data/test-scope/sample-component-79/sample-component-79.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent79', 'module']
-description: 'A SampleComponent79 module.'
----
-
-A sampleComponent79 module.
-
-```ts
-sampleComponent79();
-```
diff --git a/test-data/test-scope/sample-component-79/sample-component-79.spec.ts b/test-data/test-scope/sample-component-79/sample-component-79.spec.ts
deleted file mode 100644
index a186c70..0000000
--- a/test-data/test-scope/sample-component-79/sample-component-79.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent79 } from './sample-component-79.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent79()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-79/sample-component-79.ts b/test-data/test-scope/sample-component-79/sample-component-79.ts
deleted file mode 100644
index 08b12ee..0000000
--- a/test-data/test-scope/sample-component-79/sample-component-79.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent79() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-8/index.ts b/test-data/test-scope/sample-component-8/index.ts
deleted file mode 100644
index 376595b..0000000
--- a/test-data/test-scope/sample-component-8/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent8 } from './sample-component-8.js';
diff --git a/test-data/test-scope/sample-component-8/sample-component-8.docs.mdx b/test-data/test-scope/sample-component-8/sample-component-8.docs.mdx
deleted file mode 100644
index 27956f7..0000000
--- a/test-data/test-scope/sample-component-8/sample-component-8.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent8', 'module']
-description: 'A SampleComponent8 module.'
----
-
-A sampleComponent8 module.
-
-```ts
-sampleComponent8();
-```
diff --git a/test-data/test-scope/sample-component-8/sample-component-8.spec.ts b/test-data/test-scope/sample-component-8/sample-component-8.spec.ts
deleted file mode 100644
index 25eb35f..0000000
--- a/test-data/test-scope/sample-component-8/sample-component-8.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent8 } from './sample-component-8.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent8()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-8/sample-component-8.ts b/test-data/test-scope/sample-component-8/sample-component-8.ts
deleted file mode 100644
index 36216f2..0000000
--- a/test-data/test-scope/sample-component-8/sample-component-8.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent8() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-80/index.ts b/test-data/test-scope/sample-component-80/index.ts
deleted file mode 100644
index 80dfbce..0000000
--- a/test-data/test-scope/sample-component-80/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent80 } from './sample-component-80.js';
diff --git a/test-data/test-scope/sample-component-80/sample-component-80.docs.mdx b/test-data/test-scope/sample-component-80/sample-component-80.docs.mdx
deleted file mode 100644
index 800c3f9..0000000
--- a/test-data/test-scope/sample-component-80/sample-component-80.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent80', 'module']
-description: 'A SampleComponent80 module.'
----
-
-A sampleComponent80 module.
-
-```ts
-sampleComponent80();
-```
diff --git a/test-data/test-scope/sample-component-80/sample-component-80.spec.ts b/test-data/test-scope/sample-component-80/sample-component-80.spec.ts
deleted file mode 100644
index 219439d..0000000
--- a/test-data/test-scope/sample-component-80/sample-component-80.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent80 } from './sample-component-80.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent80()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-80/sample-component-80.ts b/test-data/test-scope/sample-component-80/sample-component-80.ts
deleted file mode 100644
index 8a2b978..0000000
--- a/test-data/test-scope/sample-component-80/sample-component-80.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent80() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-81/index.ts b/test-data/test-scope/sample-component-81/index.ts
deleted file mode 100644
index d5d9159..0000000
--- a/test-data/test-scope/sample-component-81/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent81 } from './sample-component-81.js';
diff --git a/test-data/test-scope/sample-component-81/sample-component-81.docs.mdx b/test-data/test-scope/sample-component-81/sample-component-81.docs.mdx
deleted file mode 100644
index 0fed109..0000000
--- a/test-data/test-scope/sample-component-81/sample-component-81.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent81', 'module']
-description: 'A SampleComponent81 module.'
----
-
-A sampleComponent81 module.
-
-```ts
-sampleComponent81();
-```
diff --git a/test-data/test-scope/sample-component-81/sample-component-81.spec.ts b/test-data/test-scope/sample-component-81/sample-component-81.spec.ts
deleted file mode 100644
index 0248b9e..0000000
--- a/test-data/test-scope/sample-component-81/sample-component-81.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent81 } from './sample-component-81.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent81()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-81/sample-component-81.ts b/test-data/test-scope/sample-component-81/sample-component-81.ts
deleted file mode 100644
index 032105a..0000000
--- a/test-data/test-scope/sample-component-81/sample-component-81.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent81() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-82/index.ts b/test-data/test-scope/sample-component-82/index.ts
deleted file mode 100644
index 98a37b1..0000000
--- a/test-data/test-scope/sample-component-82/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent82 } from './sample-component-82.js';
diff --git a/test-data/test-scope/sample-component-82/sample-component-82.docs.mdx b/test-data/test-scope/sample-component-82/sample-component-82.docs.mdx
deleted file mode 100644
index 86ca1db..0000000
--- a/test-data/test-scope/sample-component-82/sample-component-82.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent82', 'module']
-description: 'A SampleComponent82 module.'
----
-
-A sampleComponent82 module.
-
-```ts
-sampleComponent82();
-```
diff --git a/test-data/test-scope/sample-component-82/sample-component-82.spec.ts b/test-data/test-scope/sample-component-82/sample-component-82.spec.ts
deleted file mode 100644
index 46835a2..0000000
--- a/test-data/test-scope/sample-component-82/sample-component-82.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent82 } from './sample-component-82.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent82()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-82/sample-component-82.ts b/test-data/test-scope/sample-component-82/sample-component-82.ts
deleted file mode 100644
index 715d0ad..0000000
--- a/test-data/test-scope/sample-component-82/sample-component-82.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent82() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-83/index.ts b/test-data/test-scope/sample-component-83/index.ts
deleted file mode 100644
index e579184..0000000
--- a/test-data/test-scope/sample-component-83/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent83 } from './sample-component-83.js';
diff --git a/test-data/test-scope/sample-component-83/sample-component-83.docs.mdx b/test-data/test-scope/sample-component-83/sample-component-83.docs.mdx
deleted file mode 100644
index c0f08a5..0000000
--- a/test-data/test-scope/sample-component-83/sample-component-83.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent83', 'module']
-description: 'A SampleComponent83 module.'
----
-
-A sampleComponent83 module.
-
-```ts
-sampleComponent83();
-```
diff --git a/test-data/test-scope/sample-component-83/sample-component-83.spec.ts b/test-data/test-scope/sample-component-83/sample-component-83.spec.ts
deleted file mode 100644
index bdd0559..0000000
--- a/test-data/test-scope/sample-component-83/sample-component-83.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent83 } from './sample-component-83.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent83()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-83/sample-component-83.ts b/test-data/test-scope/sample-component-83/sample-component-83.ts
deleted file mode 100644
index c1ef1eb..0000000
--- a/test-data/test-scope/sample-component-83/sample-component-83.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent83() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-84/index.ts b/test-data/test-scope/sample-component-84/index.ts
deleted file mode 100644
index 75ba918..0000000
--- a/test-data/test-scope/sample-component-84/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent84 } from './sample-component-84.js';
diff --git a/test-data/test-scope/sample-component-84/sample-component-84.docs.mdx b/test-data/test-scope/sample-component-84/sample-component-84.docs.mdx
deleted file mode 100644
index 49592b9..0000000
--- a/test-data/test-scope/sample-component-84/sample-component-84.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent84', 'module']
-description: 'A SampleComponent84 module.'
----
-
-A sampleComponent84 module.
-
-```ts
-sampleComponent84();
-```
diff --git a/test-data/test-scope/sample-component-84/sample-component-84.spec.ts b/test-data/test-scope/sample-component-84/sample-component-84.spec.ts
deleted file mode 100644
index f4c9a74..0000000
--- a/test-data/test-scope/sample-component-84/sample-component-84.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent84 } from './sample-component-84.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent84()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-84/sample-component-84.ts b/test-data/test-scope/sample-component-84/sample-component-84.ts
deleted file mode 100644
index 5e30ecf..0000000
--- a/test-data/test-scope/sample-component-84/sample-component-84.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent84() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-85/index.ts b/test-data/test-scope/sample-component-85/index.ts
deleted file mode 100644
index fa831ec..0000000
--- a/test-data/test-scope/sample-component-85/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent85 } from './sample-component-85.js';
diff --git a/test-data/test-scope/sample-component-85/sample-component-85.docs.mdx b/test-data/test-scope/sample-component-85/sample-component-85.docs.mdx
deleted file mode 100644
index de20ab9..0000000
--- a/test-data/test-scope/sample-component-85/sample-component-85.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent85', 'module']
-description: 'A SampleComponent85 module.'
----
-
-A sampleComponent85 module.
-
-```ts
-sampleComponent85();
-```
diff --git a/test-data/test-scope/sample-component-85/sample-component-85.spec.ts b/test-data/test-scope/sample-component-85/sample-component-85.spec.ts
deleted file mode 100644
index dd9794a..0000000
--- a/test-data/test-scope/sample-component-85/sample-component-85.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent85 } from './sample-component-85.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent85()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-85/sample-component-85.ts b/test-data/test-scope/sample-component-85/sample-component-85.ts
deleted file mode 100644
index ca7bf74..0000000
--- a/test-data/test-scope/sample-component-85/sample-component-85.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent85() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-86/index.ts b/test-data/test-scope/sample-component-86/index.ts
deleted file mode 100644
index 74c9f0b..0000000
--- a/test-data/test-scope/sample-component-86/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent86 } from './sample-component-86.js';
diff --git a/test-data/test-scope/sample-component-86/sample-component-86.docs.mdx b/test-data/test-scope/sample-component-86/sample-component-86.docs.mdx
deleted file mode 100644
index 9d60f30..0000000
--- a/test-data/test-scope/sample-component-86/sample-component-86.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent86', 'module']
-description: 'A SampleComponent86 module.'
----
-
-A sampleComponent86 module.
-
-```ts
-sampleComponent86();
-```
diff --git a/test-data/test-scope/sample-component-86/sample-component-86.spec.ts b/test-data/test-scope/sample-component-86/sample-component-86.spec.ts
deleted file mode 100644
index ee5e5e4..0000000
--- a/test-data/test-scope/sample-component-86/sample-component-86.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent86 } from './sample-component-86.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent86()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-86/sample-component-86.ts b/test-data/test-scope/sample-component-86/sample-component-86.ts
deleted file mode 100644
index a2a9fb2..0000000
--- a/test-data/test-scope/sample-component-86/sample-component-86.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent86() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-87/index.ts b/test-data/test-scope/sample-component-87/index.ts
deleted file mode 100644
index 2c21552..0000000
--- a/test-data/test-scope/sample-component-87/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent87 } from './sample-component-87.js';
diff --git a/test-data/test-scope/sample-component-87/sample-component-87.docs.mdx b/test-data/test-scope/sample-component-87/sample-component-87.docs.mdx
deleted file mode 100644
index 32b4dc8..0000000
--- a/test-data/test-scope/sample-component-87/sample-component-87.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent87', 'module']
-description: 'A SampleComponent87 module.'
----
-
-A sampleComponent87 module.
-
-```ts
-sampleComponent87();
-```
diff --git a/test-data/test-scope/sample-component-87/sample-component-87.spec.ts b/test-data/test-scope/sample-component-87/sample-component-87.spec.ts
deleted file mode 100644
index 129eae0..0000000
--- a/test-data/test-scope/sample-component-87/sample-component-87.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent87 } from './sample-component-87.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent87()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-87/sample-component-87.ts b/test-data/test-scope/sample-component-87/sample-component-87.ts
deleted file mode 100644
index f4c736c..0000000
--- a/test-data/test-scope/sample-component-87/sample-component-87.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent87() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-88/index.ts b/test-data/test-scope/sample-component-88/index.ts
deleted file mode 100644
index 698fd32..0000000
--- a/test-data/test-scope/sample-component-88/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent88 } from './sample-component-88.js';
diff --git a/test-data/test-scope/sample-component-88/sample-component-88.docs.mdx b/test-data/test-scope/sample-component-88/sample-component-88.docs.mdx
deleted file mode 100644
index b98bd07..0000000
--- a/test-data/test-scope/sample-component-88/sample-component-88.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent88', 'module']
-description: 'A SampleComponent88 module.'
----
-
-A sampleComponent88 module.
-
-```ts
-sampleComponent88();
-```
diff --git a/test-data/test-scope/sample-component-88/sample-component-88.spec.ts b/test-data/test-scope/sample-component-88/sample-component-88.spec.ts
deleted file mode 100644
index b6a2c08..0000000
--- a/test-data/test-scope/sample-component-88/sample-component-88.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent88 } from './sample-component-88.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent88()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-88/sample-component-88.ts b/test-data/test-scope/sample-component-88/sample-component-88.ts
deleted file mode 100644
index 6f56d29..0000000
--- a/test-data/test-scope/sample-component-88/sample-component-88.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent88() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-89/index.ts b/test-data/test-scope/sample-component-89/index.ts
deleted file mode 100644
index 37b90d9..0000000
--- a/test-data/test-scope/sample-component-89/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent89 } from './sample-component-89.js';
diff --git a/test-data/test-scope/sample-component-89/sample-component-89.docs.mdx b/test-data/test-scope/sample-component-89/sample-component-89.docs.mdx
deleted file mode 100644
index 05f4431..0000000
--- a/test-data/test-scope/sample-component-89/sample-component-89.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent89', 'module']
-description: 'A SampleComponent89 module.'
----
-
-A sampleComponent89 module.
-
-```ts
-sampleComponent89();
-```
diff --git a/test-data/test-scope/sample-component-89/sample-component-89.spec.ts b/test-data/test-scope/sample-component-89/sample-component-89.spec.ts
deleted file mode 100644
index f745155..0000000
--- a/test-data/test-scope/sample-component-89/sample-component-89.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent89 } from './sample-component-89.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent89()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-89/sample-component-89.ts b/test-data/test-scope/sample-component-89/sample-component-89.ts
deleted file mode 100644
index ea34758..0000000
--- a/test-data/test-scope/sample-component-89/sample-component-89.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent89() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-9/index.ts b/test-data/test-scope/sample-component-9/index.ts
deleted file mode 100644
index 4d894bc..0000000
--- a/test-data/test-scope/sample-component-9/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent9 } from './sample-component-9.js';
diff --git a/test-data/test-scope/sample-component-9/sample-component-9.docs.mdx b/test-data/test-scope/sample-component-9/sample-component-9.docs.mdx
deleted file mode 100644
index 4eb7c10..0000000
--- a/test-data/test-scope/sample-component-9/sample-component-9.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent9', 'module']
-description: 'A SampleComponent9 module.'
----
-
-A sampleComponent9 module.
-
-```ts
-sampleComponent9();
-```
diff --git a/test-data/test-scope/sample-component-9/sample-component-9.spec.ts b/test-data/test-scope/sample-component-9/sample-component-9.spec.ts
deleted file mode 100644
index 1545da4..0000000
--- a/test-data/test-scope/sample-component-9/sample-component-9.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent9 } from './sample-component-9.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent9()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-9/sample-component-9.ts b/test-data/test-scope/sample-component-9/sample-component-9.ts
deleted file mode 100644
index 395a956..0000000
--- a/test-data/test-scope/sample-component-9/sample-component-9.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent9() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-90/index.ts b/test-data/test-scope/sample-component-90/index.ts
deleted file mode 100644
index c3d8123..0000000
--- a/test-data/test-scope/sample-component-90/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent90 } from './sample-component-90.js';
diff --git a/test-data/test-scope/sample-component-90/sample-component-90.docs.mdx b/test-data/test-scope/sample-component-90/sample-component-90.docs.mdx
deleted file mode 100644
index 41358bf..0000000
--- a/test-data/test-scope/sample-component-90/sample-component-90.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent90', 'module']
-description: 'A SampleComponent90 module.'
----
-
-A sampleComponent90 module.
-
-```ts
-sampleComponent90();
-```
diff --git a/test-data/test-scope/sample-component-90/sample-component-90.spec.ts b/test-data/test-scope/sample-component-90/sample-component-90.spec.ts
deleted file mode 100644
index 573efcd..0000000
--- a/test-data/test-scope/sample-component-90/sample-component-90.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent90 } from './sample-component-90.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent90()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-90/sample-component-90.ts b/test-data/test-scope/sample-component-90/sample-component-90.ts
deleted file mode 100644
index 7dae399..0000000
--- a/test-data/test-scope/sample-component-90/sample-component-90.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent90() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-91/index.ts b/test-data/test-scope/sample-component-91/index.ts
deleted file mode 100644
index 6b3e333..0000000
--- a/test-data/test-scope/sample-component-91/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent91 } from './sample-component-91.js';
diff --git a/test-data/test-scope/sample-component-91/sample-component-91.docs.mdx b/test-data/test-scope/sample-component-91/sample-component-91.docs.mdx
deleted file mode 100644
index c8c7d29..0000000
--- a/test-data/test-scope/sample-component-91/sample-component-91.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent91', 'module']
-description: 'A SampleComponent91 module.'
----
-
-A sampleComponent91 module.
-
-```ts
-sampleComponent91();
-```
diff --git a/test-data/test-scope/sample-component-91/sample-component-91.spec.ts b/test-data/test-scope/sample-component-91/sample-component-91.spec.ts
deleted file mode 100644
index 21be601..0000000
--- a/test-data/test-scope/sample-component-91/sample-component-91.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent91 } from './sample-component-91.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent91()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-91/sample-component-91.ts b/test-data/test-scope/sample-component-91/sample-component-91.ts
deleted file mode 100644
index 0fdcaca..0000000
--- a/test-data/test-scope/sample-component-91/sample-component-91.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent91() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-92/index.ts b/test-data/test-scope/sample-component-92/index.ts
deleted file mode 100644
index f83ee73..0000000
--- a/test-data/test-scope/sample-component-92/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent92 } from './sample-component-92.js';
diff --git a/test-data/test-scope/sample-component-92/sample-component-92.docs.mdx b/test-data/test-scope/sample-component-92/sample-component-92.docs.mdx
deleted file mode 100644
index 1ba3978..0000000
--- a/test-data/test-scope/sample-component-92/sample-component-92.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent92', 'module']
-description: 'A SampleComponent92 module.'
----
-
-A sampleComponent92 module.
-
-```ts
-sampleComponent92();
-```
diff --git a/test-data/test-scope/sample-component-92/sample-component-92.spec.ts b/test-data/test-scope/sample-component-92/sample-component-92.spec.ts
deleted file mode 100644
index b332f24..0000000
--- a/test-data/test-scope/sample-component-92/sample-component-92.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent92 } from './sample-component-92.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent92()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-92/sample-component-92.ts b/test-data/test-scope/sample-component-92/sample-component-92.ts
deleted file mode 100644
index ccbfdf0..0000000
--- a/test-data/test-scope/sample-component-92/sample-component-92.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent92() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-93/index.ts b/test-data/test-scope/sample-component-93/index.ts
deleted file mode 100644
index 3024e8c..0000000
--- a/test-data/test-scope/sample-component-93/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent93 } from './sample-component-93.js';
diff --git a/test-data/test-scope/sample-component-93/sample-component-93.docs.mdx b/test-data/test-scope/sample-component-93/sample-component-93.docs.mdx
deleted file mode 100644
index b7beb96..0000000
--- a/test-data/test-scope/sample-component-93/sample-component-93.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent93', 'module']
-description: 'A SampleComponent93 module.'
----
-
-A sampleComponent93 module.
-
-```ts
-sampleComponent93();
-```
diff --git a/test-data/test-scope/sample-component-93/sample-component-93.spec.ts b/test-data/test-scope/sample-component-93/sample-component-93.spec.ts
deleted file mode 100644
index c29f307..0000000
--- a/test-data/test-scope/sample-component-93/sample-component-93.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent93 } from './sample-component-93.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent93()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-93/sample-component-93.ts b/test-data/test-scope/sample-component-93/sample-component-93.ts
deleted file mode 100644
index beb2686..0000000
--- a/test-data/test-scope/sample-component-93/sample-component-93.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent93() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-94/index.ts b/test-data/test-scope/sample-component-94/index.ts
deleted file mode 100644
index 5594bf4..0000000
--- a/test-data/test-scope/sample-component-94/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent94 } from './sample-component-94.js';
diff --git a/test-data/test-scope/sample-component-94/sample-component-94.docs.mdx b/test-data/test-scope/sample-component-94/sample-component-94.docs.mdx
deleted file mode 100644
index 4b9d4e8..0000000
--- a/test-data/test-scope/sample-component-94/sample-component-94.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent94', 'module']
-description: 'A SampleComponent94 module.'
----
-
-A sampleComponent94 module.
-
-```ts
-sampleComponent94();
-```
diff --git a/test-data/test-scope/sample-component-94/sample-component-94.spec.ts b/test-data/test-scope/sample-component-94/sample-component-94.spec.ts
deleted file mode 100644
index 3cfea87..0000000
--- a/test-data/test-scope/sample-component-94/sample-component-94.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent94 } from './sample-component-94.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent94()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-94/sample-component-94.ts b/test-data/test-scope/sample-component-94/sample-component-94.ts
deleted file mode 100644
index a2a5ddd..0000000
--- a/test-data/test-scope/sample-component-94/sample-component-94.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent94() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-95/index.ts b/test-data/test-scope/sample-component-95/index.ts
deleted file mode 100644
index fddad82..0000000
--- a/test-data/test-scope/sample-component-95/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent95 } from './sample-component-95.js';
diff --git a/test-data/test-scope/sample-component-95/sample-component-95.docs.mdx b/test-data/test-scope/sample-component-95/sample-component-95.docs.mdx
deleted file mode 100644
index 92f9978..0000000
--- a/test-data/test-scope/sample-component-95/sample-component-95.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent95', 'module']
-description: 'A SampleComponent95 module.'
----
-
-A sampleComponent95 module.
-
-```ts
-sampleComponent95();
-```
diff --git a/test-data/test-scope/sample-component-95/sample-component-95.spec.ts b/test-data/test-scope/sample-component-95/sample-component-95.spec.ts
deleted file mode 100644
index 8aac916..0000000
--- a/test-data/test-scope/sample-component-95/sample-component-95.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent95 } from './sample-component-95.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent95()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-95/sample-component-95.ts b/test-data/test-scope/sample-component-95/sample-component-95.ts
deleted file mode 100644
index 7b9f809..0000000
--- a/test-data/test-scope/sample-component-95/sample-component-95.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent95() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-96/index.ts b/test-data/test-scope/sample-component-96/index.ts
deleted file mode 100644
index d69bc07..0000000
--- a/test-data/test-scope/sample-component-96/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent96 } from './sample-component-96.js';
diff --git a/test-data/test-scope/sample-component-96/sample-component-96.docs.mdx b/test-data/test-scope/sample-component-96/sample-component-96.docs.mdx
deleted file mode 100644
index c1656e0..0000000
--- a/test-data/test-scope/sample-component-96/sample-component-96.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent96', 'module']
-description: 'A SampleComponent96 module.'
----
-
-A sampleComponent96 module.
-
-```ts
-sampleComponent96();
-```
diff --git a/test-data/test-scope/sample-component-96/sample-component-96.spec.ts b/test-data/test-scope/sample-component-96/sample-component-96.spec.ts
deleted file mode 100644
index 042278e..0000000
--- a/test-data/test-scope/sample-component-96/sample-component-96.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent96 } from './sample-component-96.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent96()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-96/sample-component-96.ts b/test-data/test-scope/sample-component-96/sample-component-96.ts
deleted file mode 100644
index 3166a97..0000000
--- a/test-data/test-scope/sample-component-96/sample-component-96.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent96() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-97/index.ts b/test-data/test-scope/sample-component-97/index.ts
deleted file mode 100644
index 5f4564b..0000000
--- a/test-data/test-scope/sample-component-97/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent97 } from './sample-component-97.js';
diff --git a/test-data/test-scope/sample-component-97/sample-component-97.docs.mdx b/test-data/test-scope/sample-component-97/sample-component-97.docs.mdx
deleted file mode 100644
index 5f089b2..0000000
--- a/test-data/test-scope/sample-component-97/sample-component-97.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent97', 'module']
-description: 'A SampleComponent97 module.'
----
-
-A sampleComponent97 module.
-
-```ts
-sampleComponent97();
-```
diff --git a/test-data/test-scope/sample-component-97/sample-component-97.spec.ts b/test-data/test-scope/sample-component-97/sample-component-97.spec.ts
deleted file mode 100644
index 37ffe5b..0000000
--- a/test-data/test-scope/sample-component-97/sample-component-97.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent97 } from './sample-component-97.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent97()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-97/sample-component-97.ts b/test-data/test-scope/sample-component-97/sample-component-97.ts
deleted file mode 100644
index 49bbfe7..0000000
--- a/test-data/test-scope/sample-component-97/sample-component-97.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent97() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-98/index.ts b/test-data/test-scope/sample-component-98/index.ts
deleted file mode 100644
index d0785ac..0000000
--- a/test-data/test-scope/sample-component-98/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent98 } from './sample-component-98.js';
diff --git a/test-data/test-scope/sample-component-98/sample-component-98.docs.mdx b/test-data/test-scope/sample-component-98/sample-component-98.docs.mdx
deleted file mode 100644
index 570c736..0000000
--- a/test-data/test-scope/sample-component-98/sample-component-98.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent98', 'module']
-description: 'A SampleComponent98 module.'
----
-
-A sampleComponent98 module.
-
-```ts
-sampleComponent98();
-```
diff --git a/test-data/test-scope/sample-component-98/sample-component-98.spec.ts b/test-data/test-scope/sample-component-98/sample-component-98.spec.ts
deleted file mode 100644
index b5daafd..0000000
--- a/test-data/test-scope/sample-component-98/sample-component-98.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent98 } from './sample-component-98.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent98()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-98/sample-component-98.ts b/test-data/test-scope/sample-component-98/sample-component-98.ts
deleted file mode 100644
index c30e89c..0000000
--- a/test-data/test-scope/sample-component-98/sample-component-98.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent98() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/sample-component-99/index.ts b/test-data/test-scope/sample-component-99/index.ts
deleted file mode 100644
index a375782..0000000
--- a/test-data/test-scope/sample-component-99/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { sampleComponent99 } from './sample-component-99.js';
diff --git a/test-data/test-scope/sample-component-99/sample-component-99.docs.mdx b/test-data/test-scope/sample-component-99/sample-component-99.docs.mdx
deleted file mode 100644
index c4afde1..0000000
--- a/test-data/test-scope/sample-component-99/sample-component-99.docs.mdx
+++ /dev/null
@@ -1,10 +0,0 @@
----
-labels: ['SampleComponent99', 'module']
-description: 'A SampleComponent99 module.'
----
-
-A sampleComponent99 module.
-
-```ts
-sampleComponent99();
-```
diff --git a/test-data/test-scope/sample-component-99/sample-component-99.spec.ts b/test-data/test-scope/sample-component-99/sample-component-99.spec.ts
deleted file mode 100644
index dc2c484..0000000
--- a/test-data/test-scope/sample-component-99/sample-component-99.spec.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { sampleComponent99 } from './sample-component-99.js';
-
-it('renders with the correct text', () => {
- expect(sampleComponent99()).toEqual('hello world');
-});
diff --git a/test-data/test-scope/sample-component-99/sample-component-99.ts b/test-data/test-scope/sample-component-99/sample-component-99.ts
deleted file mode 100644
index ad839ad..0000000
--- a/test-data/test-scope/sample-component-99/sample-component-99.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-
-/**
- * returns 'hello world'
- */
-export function sampleComponent99() {
- return 'hello world';
-}
diff --git a/test-data/test-scope/ui/.eslintrc.json b/test-data/test-scope/ui/.eslintrc.json
deleted file mode 100644
index f98352a..0000000
--- a/test-data/test-scope/ui/.eslintrc.json
+++ /dev/null
@@ -1,6 +0,0 @@
-// bit-generated-eslint-config
-{
- "extends": [
- "./../../node_modules/.cache/.eslintrc.bit.0ebfdbef4694e77f594acde20df5906c50e1c7a8.json"
- ]
-}
\ No newline at end of file
diff --git a/test-data/test-scope/ui/hello-world/hello-world.composition.tsx b/test-data/test-scope/ui/hello-world/hello-world.composition.tsx
deleted file mode 100644
index 43a4773..0000000
--- a/test-data/test-scope/ui/hello-world/hello-world.composition.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { HelloWorld } from './hello-world.js';
-
-export const BasicHelloWorld = () => {
- return ;
-};
diff --git a/test-data/test-scope/ui/hello-world/hello-world.docs.mdx b/test-data/test-scope/ui/hello-world/hello-world.docs.mdx
deleted file mode 100644
index 074bc7b..0000000
--- a/test-data/test-scope/ui/hello-world/hello-world.docs.mdx
+++ /dev/null
@@ -1,4 +0,0 @@
----
-description: Displays a greeting message
-labels: ['react', 'hello-world']
----
diff --git a/test-data/test-scope/ui/hello-world/hello-world.spec.tsx b/test-data/test-scope/ui/hello-world/hello-world.spec.tsx
deleted file mode 100644
index ee4d487..0000000
--- a/test-data/test-scope/ui/hello-world/hello-world.spec.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { render } from '@testing-library/react';
-import { BasicHelloWorld } from './hello-world.composition.js';
-
-it('should render with the correct text', () => {
- const { getByText } = render();
- const rendered = getByText('Hello world!');
- expect(rendered).toBeTruthy();
-});
diff --git a/test-data/test-scope/ui/hello-world/hello-world.tsx b/test-data/test-scope/ui/hello-world/hello-world.tsx
deleted file mode 100644
index 3465348..0000000
--- a/test-data/test-scope/ui/hello-world/hello-world.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { getHelloWorld } from "@bit-tasks/test-scope.get-hello-world";
-
-/**
- * renders a "hello world" text 4
- */
-
-export function HelloWorld() {
- return {getHelloWorld()}
;
-}
diff --git a/test-data/test-scope/ui/hello-world/index.ts b/test-data/test-scope/ui/hello-world/index.ts
deleted file mode 100644
index 2146767..0000000
--- a/test-data/test-scope/ui/hello-world/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { HelloWorld } from './hello-world.js';
diff --git a/test-data/test-scope/ui/tsconfig.json b/test-data/test-scope/ui/tsconfig.json
deleted file mode 100644
index 2f15e17..0000000
--- a/test-data/test-scope/ui/tsconfig.json
+++ /dev/null
@@ -1,5 +0,0 @@
-// bit-generated-typescript-config
-
-{
- "extends": "./../../node_modules/.cache/tsconfig.bit.754597940e9abfd8eacb085e29f60aeb341bb92f.json"
-}
\ No newline at end of file
diff --git a/test-data/tsconfig.json b/test-data/tsconfig.json
index d22c813..d047d39 100644
--- a/test-data/tsconfig.json
+++ b/test-data/tsconfig.json
@@ -1,5 +1,5 @@
// bit-generated-typescript-config
{
- "extends": "./node_modules/.cache/tsconfig.bit.ff951d0f66583487f258ff08bc23902e3c1a54bc.json",
+ "extends": "./node_modules/.cache/tsconfig.bit.fe7102b0aa96dc7364d3813a86bb6186c63633f4.json",
"compilerOptions": {}
}
\ No newline at end of file
diff --git a/test-data/workspace.jsonc b/test-data/workspace.jsonc
index 9269fef..62478de 100644
--- a/test-data/workspace.jsonc
+++ b/test-data/workspace.jsonc
@@ -7,27 +7,10 @@
* main configuration of the Bit workspace.
**/
"teambit.workspace/workspace": {
- /**
- * the name of the component workspace. used for development purposes.
- **/
"name": "test-data",
- /**
- * set the icon to be shown on the Bit server.
- **/
"icon": "https://static.bit.dev/brands/bit-logo-min.png",
- /**
- * default directory to place a component during `bit import` and `bit create`.
- * the following placeholders are available:
- * name - component name includes namespace, e.g. 'ui/button'.
- * scopeId - full scope-id includes the owner, e.g. 'teambit.compilation'.
- * scope - scope name only, e.g. 'compilation'.
- * owner - owner name in bit.dev, e.g. 'teambit'.
- **/
"defaultDirectory": "{scope}/{name}",
- /**
- * default scope for all components in workspace.
- **/
- "defaultScope": "bit-tasks.test-scope",
+ "defaultScope": "frontend.ci-scripts-tests",
"resolveAspectsFromNodeModules": true,
"resolveEnvsFromRoots": true
},
@@ -39,29 +22,24 @@
**/
"teambit.generator/generator": {
"envs": [
- // "bitdev.node/node-env",
- // "bitdev.react/react-env",
- // "bitdev.vue/vue-env",
- // "bitdev.angular/angular-env"
+ "bitdev.node/node-env",
+ "bitdev.react/react-env"
+ // "bitdev.vue/vue-env",
+ // "bitdev.angular/angular-env"
+ // "bitdev.symphony/envs/symphony-env"
]
},
/**
* main configuration for component dependency resolution.
**/
"teambit.dependencies/dependency-resolver": {
- /**
- * choose the package manager for Bit to use. you can choose between 'yarn', 'pnpm'
- */
- "packageManager": "teambit.dependencies/pnpm",
"policy": {
"dependencies": {
- "@bitdev/react.app-types.vite-react": "^2.1.2",
- "@learnbit/hello-world.get-hello-world": "^0.0.15",
- "@learnbit/hello-world.ui.hello-world": "^0.0.19",
- "@teambit/node.node": "^1.0.101",
- "@teambit/react.apps.react-app-types": "^2.0.5",
- "@teambit/react.react-env": "^1.0.109",
- "@vitejs/plugin-react": "^4.3.2"
+ "@bitdev/react.app-types.vite-react": "^2.1.7",
+ "@bitdev/react.preview.react-docs-template": "^0.0.7",
+ "@bitdev/react.react-env": "^4.1.9",
+ "@teambit/react.mounter": "^1.0.49",
+ "@vitejs/plugin-react": "^4.6.0"
},
"peerDependencies": {}
},
@@ -71,5 +49,7 @@
"teambit.workspace/workspace-config-files": {
"enableWorkspaceConfigWrite": true
},
- "bit-tasks.test-scope/apps/my-app": {}
+ "teambit.harmony/bit": {
+ "engine": "1.12.2"
+ }
}