diff --git a/.gitignore b/.gitignore index 268afa85..69efbd8b 100644 --- a/.gitignore +++ b/.gitignore @@ -40,4 +40,5 @@ docker/devenv/server-data/* # Visual regression test outputs (keep baselines, ignore reports and temp files) playwright-report/ -test-results/ \ No newline at end of file +test-results/ +docker/devenv/wwwroot/* \ No newline at end of file diff --git a/.storybook/main.js b/.storybook/main.js index 4f6757be..36bbed9b 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -50,16 +50,9 @@ module.exports = { __DEV__: JSON.stringify(configType !== "PRODUCTION"), __VERSION__: JSON.stringify(process.env.APPVEYOR_BUILD_VERSION || ""), __COMMITHASH__: JSON.stringify(process.env.APPVEYOR_REPO_COMMIT || ""), - __BRANCH__: JSON.stringify(process.env.APPVEYOR_REPO_BRANCH || "master"), - "process.env.BLUEPRINT_NAMESPACE": JSON.stringify("bp3") + __BRANCH__: JSON.stringify(process.env.APPVEYOR_REPO_BRANCH || "master") }, resolve: { - alias: [ - { - find: /.*\/generated\/iconSvgPaths.*/, - replacement: path.resolve(__dirname, "..", "stdassets/bp-icons.js") - } - ] }, build: { target: "es2020" diff --git a/DONOTUPGRADE.md b/DONOTUPGRADE.md index 3b272b21..694ab672 100644 --- a/DONOTUPGRADE.md +++ b/DONOTUPGRADE.md @@ -32,4 +32,4 @@ Reasons for not upgrading: It's not so much the package itself may break our lib React 19 looks too new for our ecosystem -React 18 is the safest bet. We can upgrade to react 18 once we have fully decoupled ourselves from blueprint.js \ No newline at end of file +React 18 is the safest bet. We can upgrade to react 18 once we have fully decoupled ourselves from legacy UI toolkit dependencies. \ No newline at end of file diff --git a/README.md b/README.md index 6ed2ef27..8a11525f 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,6 @@ mapguide-react-layout could not be possible without the following tools and libr * [proj4js](http://proj4js.org/) * [TypeScript](https://www.typescriptlang.org/) * [React](https://facebook.github.io/react/) - * [Blueprint](http://blueprintjs.com/) * [sidebar-v2](https://github.com/Turbo87/sidebar-v2) mapguide-react-layout uses icons from the Fugue icons set, by [Yusuke Kamiyamane](http://p.yusukekamiyamane.com) diff --git a/docs_dev/content/KNOWN_ISSUES.md b/docs_dev/content/KNOWN_ISSUES.md index dd2a8e2c..158dfb02 100644 --- a/docs_dev/content/KNOWN_ISSUES.md +++ b/docs_dev/content/KNOWN_ISSUES.md @@ -60,8 +60,6 @@ Since the `0.14.3` release, the viewer has basic support for MapGuide Map Defini * Measure * Recorded measurements will temporarily disappear on templates with a collapsible Task Pane (eg. Slate) when the Task Pane panel is collapsed. - * Modal dialog backdrops do not work (due to recent Blueprint update) - ## Commands * General diff --git a/docs_dev/content/README.md b/docs_dev/content/README.md index 88f47ef3..cc32a09f 100644 --- a/docs_dev/content/README.md +++ b/docs_dev/content/README.md @@ -32,7 +32,6 @@ mapguide-react-layout could not be possible without the following tools and libr * [proj4js](http://proj4js.org/) * [TypeScript](https://www.typescriptlang.org/) * [React](https://facebook.github.io/react/) - * [Blueprint](http://blueprintjs.com/) * [sidebar-v2](https://github.com/Turbo87/sidebar-v2) mapguide-react-layout uses icons from the Fugue icons set, by [Yusuke Kamiyamane](http://p.yusukekamiyamane.com) diff --git a/docs_dev/content/UI_CUSTOMIZATION.md b/docs_dev/content/UI_CUSTOMIZATION.md index bde30b00..1d7aa423 100644 --- a/docs_dev/content/UI_CUSTOMIZATION.md +++ b/docs_dev/content/UI_CUSTOMIZATION.md @@ -24,7 +24,7 @@ The **provider** (the concrete implementation of `IElementContext`) is installed ## Default provider: `MinimalProvider` -Starting from version 0.15, the default provider is `MinimalProvider` — a lightweight implementation that uses **HTML intrinsic elements** and **plain CSS with CSS custom properties (variables)**. It has no dependency on Blueprint.js or any other large UI toolkit. +Starting from version 0.15, the default provider is `MinimalProvider` — a lightweight implementation that uses **HTML intrinsic elements** and **plain CSS with CSS custom properties (variables)**. It has no dependency on any large UI toolkit. Key characteristics of `MinimalProvider`: @@ -53,45 +53,6 @@ All other components — including `Icon` — are implemented with zero external > > If you are using `Application.mount()` to embed the viewer in a static HTML page from the pre-built `viewer.js` bundle, `MinimalProvider` is permanently baked in. Customisation in that scenario is done through [CSS variable overrides](#overriding-css-variables-design-tokens) only. -### Blueprint.js provider (optional) - -`@blueprintjs/core` is an **optional peer dependency**. It is **not** included in the default `viewer.js` bundle, so your users only download it if you explicitly opt in. - -> **Bundle impact**: Because Blueprint is excluded from the default bundle, every user of the viewer benefits from a smaller download — even if some deployments choose to enable the Blueprint provider. - -**Step 1 — Install the optional dependencies:** - -```bash -npm install @blueprintjs/core @blueprintjs/icons -# or -yarn add @blueprintjs/core @blueprintjs/icons -``` - -**Step 2 — Import Blueprint's CSS** (required for correct Blueprint rendering): - -```css -@import '@blueprintjs/core/lib/css/blueprint.css'; -@import '@blueprintjs/icons/lib/css/blueprint-icons.css'; -``` - -**Step 3 — Import and activate the Blueprint provider.** - -> **Note:** `BpProvider` is **not** exported from the main `mapguide-react-layout` bundle, because including it would unconditionally add Blueprint.js (~120 KB) to every user's download. It is intended for use in **custom bundle scenarios** where you control your own Vite/Rollup configuration. Import it directly from its source path: - -```tsx -import { ElementProvider } from 'mapguide-react-layout'; -import BpProvider from 'mapguide-react-layout/src/components/elements/providers/blueprint/provider'; - -// In your custom bundle entry or parent React app render: -function App() { - return ( - - {/* All viewer components inside will use Blueprint.js */} - - ); -} -``` - --- ## Overriding CSS variables (design tokens) @@ -213,7 +174,7 @@ All component class names use the `mrl-` prefix. You can override specific compo If you want to implement the viewer's UI atoms using a completely different component library (e.g. MUI, Ant Design, Radix UI), you can provide a full custom implementation. This is only applicable in the two scenarios described above (custom bundle or direct React integration). -> **Note:** The example below is **abbreviated** — it shows only 2 of the 32 required slots. For a complete reference implementation, see [`src/components/elements/providers/minimal/provider.tsx`](../src/components/elements/providers/minimal/provider.tsx) or the Blueprint provider at [`src/components/elements/providers/blueprint/provider.tsx`](../src/components/elements/providers/blueprint/provider.tsx). +> **Note:** The example below is **abbreviated** — it shows only 2 of the 32 required slots. For a complete reference implementation, see [`src/components/elements/providers/minimal/provider.tsx`](../src/components/elements/providers/minimal/provider.tsx). ```tsx import type { IElementContext } from 'mapguide-react-layout'; diff --git a/docs_dev/content/VISUAL_REGRESSION.md b/docs_dev/content/VISUAL_REGRESSION.md index 7936857b..f280086e 100644 --- a/docs_dev/content/VISUAL_REGRESSION.md +++ b/docs_dev/content/VISUAL_REGRESSION.md @@ -27,7 +27,7 @@ This project uses [`@storybook/test-runner`](https://storybook.js.org/docs/writi Baselines are PNG files stored in `visual-snapshots/` and are committed to git. -When you make an intentional visual change (e.g. replacing a Blueprint.js component): +When you make an intentional visual change (e.g. replacing a component or restyling a UI element): ```bash yarn test:visual:update diff --git a/package.json b/package.json index ac0085f3..b837d4d9 100644 --- a/package.json +++ b/package.json @@ -62,19 +62,19 @@ }, "homepage": "https://github.com/jumpinjackie/mapguide-react-layout#readme", "dependencies": { - "@reduxjs/toolkit": "^2.11.2", - "colorbrewer": "^1.6.1", - "dompurify": "^3.4.0", - "geojson-vt": "^4.0.2", - "jspdf": "^4.0.0", + "@reduxjs/toolkit": "^2.12.0", + "colorbrewer": "^1.7.0", + "dompurify": "^3.4.10", + "geojson-vt": "^4.0.3", + "jspdf": "^4.2.1", "lodash.debounce": "^4.0.8", "lodash.xor": "^4.5.0", "lodash.xorby": "^4.7.0", "ol": "^10.9.0", "papaparse": "^5.5.3", - "proj4": "2.20.8", + "proj4": "2.20.9", "react": "^17.0.2", - "react-colorful": "^5.6.1", + "react-colorful": "^5.7.0", "react-dom": "^17.0.2", "react-hot-toast": "2.6.0", "react-redux": "^8.1.3", @@ -84,7 +84,6 @@ "tslib": "^2.8.1" }, "devDependencies": { - "@blueprintjs/core": "^3.54.0", "@modelcontextprotocol/sdk": "1.29.0", "@playwright/test": "1.59.1", "@storybook/addon-actions": "^8.6.18", @@ -114,7 +113,7 @@ "@vitest/coverage-v8": "3.2.4", "@welldone-software/why-did-you-render": "^7.0.1", "barrelsby": "2.8.1", - "bestzip": "2.2.3", + "bestzip": "3.0.1", "concurrently": "9.2.1", "copyfiles": "2.4.1", "coveralls": "3.1.1", @@ -137,24 +136,12 @@ "typedoc-plugin-merge-modules": "7.0.0", "typescript": "5.9.3", "typescript-json-schema": "^0.67.1", - "vite": "^8.0.14", + "vite": "^8.0.16", "vitest": "3.2.6", - "wait-on": "9.0.5" + "wait-on": "9.0.10" }, "engines": { "node": ">=18" }, - "packageManager": "yarn@4.14.1", - "peerDependencies": { - "@blueprintjs/core": "^3.54.0", - "@blueprintjs/icons": "^3.33.0" - }, - "peerDependenciesMeta": { - "@blueprintjs/core": { - "optional": true - }, - "@blueprintjs/icons": { - "optional": true - } - } + "packageManager": "yarn@4.14.1" } diff --git a/src/components/elements/providers/blueprint/bp-override.css b/src/components/elements/providers/blueprint/bp-override.css deleted file mode 100644 index 9291c051..00000000 --- a/src/components/elements/providers/blueprint/bp-override.css +++ /dev/null @@ -1,13152 +0,0 @@ -@charset "UTF-8"; - -/* - * Blueprint CSS Override - * - * This file contains the release blueprint.css file with the following modifications for easier consumption into - * other applications without clashes with their CSS or design system. - * - * - All global styles removed (no styles against raw HTML elements, everything is against one or more classes) - * - Any raw HTML element styles that still exist are specified in context of a specific class - * - Styles rules for "global resets" grafted onto relevant CSS classes - * - Font usage is "opt-in" for relevant CSS classes, instead of applying it to body/html - * - Relvant CSS classes fixed up with missing style rules in light of global style removal - */ - -.bp3-callout > p, .bp3-heading, .bp3-non-ideal-state > div, .bp3-control, .bp3-card, .bp3-input-group, .bp3-slider-label { - font-family: - -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", - "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "Icons16", sans-serif; -} - -.bp3-input-group { - box-sizing: border-box; - color: rgb(24, 32, 38); - font-size: 14px; - font-weight: 400; - letter-spacing: normal; - line-height: 18px; - text-transform: none; -} - -.bp3-input-group > .bp3-input { - box-sizing: border-box; -} - -.bp3-heading > a { - color: #106ba3; - text-decoration: none; - letter-spacing: 0; - text-transform: none; - box-sizing: border-box; -} -.bp3-heading > a:hover { - text-decoration: underline; -} - -/* END OVERRIDES */ - -.bp3-heading { - color: #182026; - font-weight: 600; - margin: 0 0 10px; - padding: 0; -} - -.bp3-dark .bp3-heading { - color: #f5f8fa; -} - -h1.bp3-heading, -.bp3-running-text h1 { - font-size: 36px; - line-height: 40px; -} - -h2.bp3-heading, -.bp3-running-text h2 { - font-size: 28px; - line-height: 32px; -} - -h3.bp3-heading, -.bp3-running-text h3 { - font-size: 22px; - line-height: 25px; -} - -h4.bp3-heading, -.bp3-running-text h4 { - font-size: 18px; - line-height: 21px; -} - -h5.bp3-heading, -.bp3-running-text h5 { - font-size: 16px; - line-height: 19px; -} - -h6.bp3-heading, -.bp3-running-text h6 { - font-size: 14px; - line-height: 16px; -} -.bp3-ui-text { - font-size: 14px; - font-weight: 400; - letter-spacing: 0; - line-height: 1.28581; - text-transform: none; -} - -.bp3-monospace-text { - font-family: monospace; - text-transform: none; -} - -.bp3-text-muted { - color: #5c7080; -} -.bp3-dark .bp3-text-muted { - color: #a7b6c2; -} - -.bp3-text-disabled { - color: rgba(92, 112, 128, 0.6); -} -.bp3-dark .bp3-text-disabled { - color: rgba(167, 182, 194, 0.6); -} - -.bp3-text-overflow-ellipsis { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; -} -.bp3-running-text { - font-size: 14px; - line-height: 1.5; -} -.bp3-running-text h1 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h1 { - color: #f5f8fa; -} -.bp3-running-text h2 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h2 { - color: #f5f8fa; -} -.bp3-running-text h3 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h3 { - color: #f5f8fa; -} -.bp3-running-text h4 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h4 { - color: #f5f8fa; -} -.bp3-running-text h5 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h5 { - color: #f5f8fa; -} -.bp3-running-text h6 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h6 { - color: #f5f8fa; -} -.bp3-running-text hr { - border: none; - border-bottom: 1px solid rgba(16, 22, 26, 0.15); - margin: 20px 0; -} -.bp3-dark .bp3-running-text hr { - border-color: rgba(255, 255, 255, 0.15); -} -.bp3-running-text p { - margin: 0 0 10px; - padding: 0; -} - -.bp3-text-large { - font-size: 16px; -} - -.bp3-text-small { - font-size: 12px; -} -a .bp3-icon, -a .bp3-icon-standard, -a .bp3-icon-large { - color: inherit; -} -.bp3-dark a, -.bp3-dark a:hover { - color: #48aff0; -} -.bp3-dark a .bp3-icon, -.bp3-dark a .bp3-icon-standard, -.bp3-dark a .bp3-icon-large, -.bp3-dark a:hover .bp3-icon, -.bp3-dark a:hover .bp3-icon-standard, -.bp3-dark a:hover .bp3-icon-large { - color: inherit; -} -.bp3-running-text code, -.bp3-code { - font-family: monospace; - text-transform: none; - background: rgba(255, 255, 255, 0.7); - border-radius: 3px; - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2); - color: #5c7080; - font-size: smaller; - padding: 2px 5px; -} -.bp3-dark .bp3-running-text code, -.bp3-running-text .bp3-dark code, -.bp3-dark .bp3-code { - background: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #a7b6c2; -} -.bp3-running-text a > code, -a > .bp3-code { - color: #137cbd; -} -.bp3-dark .bp3-running-text a > code, -.bp3-running-text .bp3-dark a > code, -.bp3-dark a > .bp3-code { - color: inherit; -} - -.bp3-running-text pre, -.bp3-code-block { - font-family: monospace; - text-transform: none; - background: rgba(255, 255, 255, 0.7); - border-radius: 3px; - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); - color: #182026; - display: block; - font-size: 13px; - line-height: 1.4; - margin: 10px 0; - padding: 13px 15px 12px; - word-break: break-all; - word-wrap: break-word; -} -.bp3-dark .bp3-running-text pre, -.bp3-running-text .bp3-dark pre, -.bp3-dark .bp3-code-block { - background: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-running-text pre > code, -.bp3-code-block > code { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: inherit; - font-size: inherit; - padding: 0; -} - -.bp3-running-text kbd, -.bp3-key { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background: #ffffff; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - color: #5c7080; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-family: inherit; - font-size: 12px; - height: 24px; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - line-height: 24px; - min-width: 24px; - padding: 3px 6px; - vertical-align: middle; -} -.bp3-running-text kbd .bp3-icon, -.bp3-key .bp3-icon, -.bp3-running-text kbd .bp3-icon-standard, -.bp3-key .bp3-icon-standard, -.bp3-running-text kbd .bp3-icon-large, -.bp3-key .bp3-icon-large { - margin-right: 5px; -} -.bp3-dark .bp3-running-text kbd, -.bp3-running-text .bp3-dark kbd, -.bp3-dark .bp3-key { - background: #394b59; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - color: #a7b6c2; -} -.bp3-running-text blockquote, -.bp3-blockquote { - border-left: solid 4px rgba(167, 182, 194, 0.5); - margin: 0 0 10px; - padding: 0 20px; -} -.bp3-dark .bp3-running-text blockquote, -.bp3-running-text .bp3-dark blockquote, -.bp3-dark .bp3-blockquote { - border-color: rgba(115, 134, 148, 0.5); -} -.bp3-running-text ul, -.bp3-running-text ol, -.bp3-list { - margin: 10px 0; - padding-left: 30px; -} -.bp3-running-text ul li:not(:last-child), -.bp3-running-text ol li:not(:last-child), -.bp3-list li:not(:last-child) { - margin-bottom: 5px; -} -.bp3-running-text ul ol, -.bp3-running-text ol ol, -.bp3-list ol, -.bp3-running-text ul ul, -.bp3-running-text ol ul, -.bp3-list ul { - margin-top: 5px; -} - -.bp3-list-unstyled { - list-style: none; - margin: 0; - padding: 0; -} -.bp3-list-unstyled li { - padding: 0; -} -.bp3-rtl { - text-align: right; -} - -.bp3-dark { - color: #f5f8fa; -} -/* -:focus { - outline: rgba(19, 124, 189, 0.6) auto 2px; - outline-offset: 2px; - -moz-outline-radius: 6px; -} -*/ -.bp3-focus-disabled :focus { - outline: none !important; -} -.bp3-focus-disabled :focus ~ .bp3-control-indicator { - outline: none !important; -} -.bp3-alert { - max-width: 400px; - padding: 20px; -} - -.bp3-alert-body { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.bp3-alert-body .bp3-icon { - font-size: 40px; - margin-right: 20px; - margin-top: 0; -} - -.bp3-alert-contents { - word-break: break-word; -} - -.bp3-alert-footer { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - margin-top: 10px; -} -.bp3-alert-footer .bp3-button { - margin-left: 10px; -} -.bp3-breadcrumbs { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - cursor: default; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - height: 30px; - list-style: none; - margin: 0; - padding: 0; -} -.bp3-breadcrumbs > li { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.bp3-breadcrumbs > li::after { - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e"); - content: ""; - display: block; - height: 16px; - margin: 0 5px; - width: 16px; -} -.bp3-breadcrumbs > li:last-of-type::after { - display: none; -} - -.bp3-breadcrumb, -.bp3-breadcrumb-current, -.bp3-breadcrumbs-collapsed { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 16px; -} - -.bp3-breadcrumb, -.bp3-breadcrumbs-collapsed { - color: #5c7080; -} - -.bp3-breadcrumb:hover { - text-decoration: none; -} - -.bp3-breadcrumb.bp3-disabled { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} - -.bp3-breadcrumb .bp3-icon { - margin-right: 5px; -} - -.bp3-breadcrumb-current { - color: inherit; - font-weight: 600; -} -.bp3-breadcrumb-current .bp3-input { - font-size: inherit; - font-weight: inherit; - vertical-align: baseline; -} - -.bp3-breadcrumbs-collapsed { - background: #ced9e0; - border: none; - border-radius: 3px; - cursor: pointer; - margin-right: 2px; - padding: 1px 5px; - vertical-align: text-bottom; -} -.bp3-breadcrumbs-collapsed::before { - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e") - center no-repeat; - content: ""; - display: block; - height: 16px; - width: 16px; -} -.bp3-breadcrumbs-collapsed:hover { - background: #bfccd6; - color: #182026; - text-decoration: none; -} - -.bp3-dark .bp3-breadcrumb, -.bp3-dark .bp3-breadcrumbs-collapsed { - color: #a7b6c2; -} - -.bp3-dark .bp3-breadcrumbs > li::after { - color: #a7b6c2; -} - -.bp3-dark .bp3-breadcrumb.bp3-disabled { - color: rgba(167, 182, 194, 0.6); -} - -.bp3-dark .bp3-breadcrumb-current { - color: #f5f8fa; -} - -.bp3-dark .bp3-breadcrumbs-collapsed { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-breadcrumbs-collapsed:hover { - background: rgba(16, 22, 26, 0.6); - color: #f5f8fa; -} -.bp3-button { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: none; - border-radius: 3px; - cursor: pointer; - font-size: 14px; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding: 5px 10px; - text-align: left; - vertical-align: middle; - min-height: 30px; - min-width: 30px; -} -.bp3-button > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-button > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-button::before, -.bp3-button > * { - margin-right: 7px; -} -.bp3-button:empty::before, -.bp3-button > :last-child { - margin-right: 0; -} -.bp3-button:empty { - padding: 0 !important; -} -.bp3-button:disabled, -.bp3-button.bp3-disabled { - cursor: not-allowed; -} -.bp3-button.bp3-fill { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; -} -.bp3-button.bp3-align-right, -.bp3-align-right .bp3-button { - text-align: right; -} -.bp3-button.bp3-align-left, -.bp3-align-left .bp3-button { - text-align: left; -} -.bp3-button:not([class*="bp3-intent-"]) { - background-color: #f5f8fa; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.8)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.8), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; -} -.bp3-button:not([class*="bp3-intent-"]):hover { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-button:not([class*="bp3-intent-"]):active, -.bp3-button:not([class*="bp3-intent-"]).bp3-active { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button:not([class*="bp3-intent-"]):disabled, -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active, -.bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active:hover, -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active, -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-button.bp3-intent-primary { - background-color: #137cbd; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-button.bp3-intent-primary:hover, -.bp3-button.bp3-intent-primary:active, -.bp3-button.bp3-intent-primary.bp3-active { - color: #ffffff; -} -.bp3-button.bp3-intent-primary:hover { - background-color: #106ba3; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-primary:active, -.bp3-button.bp3-intent-primary.bp3-active { - background-color: #0e5a8a; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-primary:disabled, -.bp3-button.bp3-intent-primary.bp3-disabled { - background-color: rgba(19, 124, 189, 0.5); - background-image: none; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(255, 255, 255, 0.6); -} -.bp3-button.bp3-intent-success { - background-color: #0f9960; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-button.bp3-intent-success:hover, -.bp3-button.bp3-intent-success:active, -.bp3-button.bp3-intent-success.bp3-active { - color: #ffffff; -} -.bp3-button.bp3-intent-success:hover { - background-color: #0d8050; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-success:active, -.bp3-button.bp3-intent-success.bp3-active { - background-color: #0a6640; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-success:disabled, -.bp3-button.bp3-intent-success.bp3-disabled { - background-color: rgba(15, 153, 96, 0.5); - background-image: none; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(255, 255, 255, 0.6); -} -.bp3-button.bp3-intent-warning { - background-color: #d9822b; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-button.bp3-intent-warning:hover, -.bp3-button.bp3-intent-warning:active, -.bp3-button.bp3-intent-warning.bp3-active { - color: #ffffff; -} -.bp3-button.bp3-intent-warning:hover { - background-color: #bf7326; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-warning:active, -.bp3-button.bp3-intent-warning.bp3-active { - background-color: #a66321; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-warning:disabled, -.bp3-button.bp3-intent-warning.bp3-disabled { - background-color: rgba(217, 130, 43, 0.5); - background-image: none; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(255, 255, 255, 0.6); -} -.bp3-button.bp3-intent-danger { - background-color: #db3737; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-button.bp3-intent-danger:hover, -.bp3-button.bp3-intent-danger:active, -.bp3-button.bp3-intent-danger.bp3-active { - color: #ffffff; -} -.bp3-button.bp3-intent-danger:hover { - background-color: #c23030; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-danger:active, -.bp3-button.bp3-intent-danger.bp3-active { - background-color: #a82a2a; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-danger:disabled, -.bp3-button.bp3-intent-danger.bp3-disabled { - background-color: rgba(219, 55, 55, 0.5); - background-image: none; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(255, 255, 255, 0.6); -} -.bp3-button[class*="bp3-intent-"] .bp3-button-spinner .bp3-spinner-head { - stroke: #ffffff; -} -.bp3-button.bp3-large, -.bp3-large .bp3-button { - min-height: 40px; - min-width: 40px; - font-size: 16px; - padding: 5px 15px; -} -.bp3-button.bp3-large::before, -.bp3-button.bp3-large > *, -.bp3-large .bp3-button::before, -.bp3-large .bp3-button > * { - margin-right: 10px; -} -.bp3-button.bp3-large:empty::before, -.bp3-button.bp3-large > :last-child, -.bp3-large .bp3-button:empty::before, -.bp3-large .bp3-button > :last-child { - margin-right: 0; -} -.bp3-button.bp3-small, -.bp3-small .bp3-button { - min-height: 24px; - min-width: 24px; - padding: 0 7px; -} -.bp3-button.bp3-loading { - position: relative; -} -.bp3-button.bp3-loading[class*="bp3-icon-"]::before { - visibility: hidden; -} -.bp3-button.bp3-loading .bp3-button-spinner { - margin: 0; - position: absolute; -} -.bp3-button.bp3-loading > :not(.bp3-button-spinner) { - visibility: hidden; -} -.bp3-button[class*="bp3-icon-"]::before { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - color: #5c7080; -} -.bp3-button .bp3-icon, -.bp3-button .bp3-icon-standard, -.bp3-button .bp3-icon-large { - color: #5c7080; -} -.bp3-button .bp3-icon.bp3-align-right, -.bp3-button .bp3-icon-standard.bp3-align-right, -.bp3-button .bp3-icon-large.bp3-align-right { - margin-left: 7px; -} -.bp3-button .bp3-icon:first-child:last-child, -.bp3-button .bp3-spinner + .bp3-icon:last-child { - margin: 0 -7px; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]) { - background-color: #394b59; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.05)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.05), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active { - color: #f5f8fa; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover { - background-color: #30404d; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active { - background-color: #202b33; - background-image: none; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-button-spinner - .bp3-spinner-head { - background: rgba(16, 22, 26, 0.5); - stroke: #8a9ba8; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"])[class*="bp3-icon-"]::before { - color: #a7b6c2; -} -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon:not([class*="bp3-intent-"]), -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon-standard:not([class*="bp3-intent-"]), -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon-large:not([class*="bp3-intent-"]) { - color: #a7b6c2; -} -.bp3-dark .bp3-button[class*="bp3-intent-"] { - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-button[class*="bp3-intent-"]:hover { - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-button[class*="bp3-intent-"]:active, -.bp3-dark .bp3-button[class*="bp3-intent-"].bp3-active { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-button[class*="bp3-intent-"]:disabled, -.bp3-dark .bp3-button[class*="bp3-intent-"].bp3-disabled { - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(255, 255, 255, 0.3); -} -.bp3-dark - .bp3-button[class*="bp3-intent-"] - .bp3-button-spinner - .bp3-spinner-head { - stroke: #8a9ba8; -} -.bp3-button:disabled::before, -.bp3-button:disabled .bp3-icon, -.bp3-button:disabled .bp3-icon-standard, -.bp3-button:disabled .bp3-icon-large, -.bp3-button.bp3-disabled::before, -.bp3-button.bp3-disabled .bp3-icon, -.bp3-button.bp3-disabled .bp3-icon-standard, -.bp3-button.bp3-disabled .bp3-icon-large, -.bp3-button[class*="bp3-intent-"]::before, -.bp3-button[class*="bp3-intent-"] .bp3-icon, -.bp3-button[class*="bp3-intent-"] .bp3-icon-standard, -.bp3-button[class*="bp3-intent-"] .bp3-icon-large { - color: inherit !important; -} -.bp3-button.bp3-minimal { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-button.bp3-minimal:hover { - background: rgba(167, 182, 194, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button.bp3-minimal:active, -.bp3-button.bp3-minimal.bp3-active { - background: rgba(115, 134, 148, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; -} -.bp3-button.bp3-minimal:disabled, -.bp3-button.bp3-minimal:disabled:hover, -.bp3-button.bp3-minimal.bp3-disabled, -.bp3-button.bp3-minimal.bp3-disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button.bp3-minimal:disabled.bp3-active, -.bp3-button.bp3-minimal:disabled:hover.bp3-active, -.bp3-button.bp3-minimal.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button.bp3-minimal { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button.bp3-minimal:hover, -.bp3-dark .bp3-button.bp3-minimal:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-button.bp3-minimal:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button.bp3-minimal:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button.bp3-minimal:disabled, -.bp3-dark .bp3-button.bp3-minimal:disabled:hover, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-primary { - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary:hover, -.bp3-button.bp3-minimal.bp3-intent-primary:active, -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary:active, -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary:disabled, -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-success { - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success:hover, -.bp3-button.bp3-minimal.bp3-intent-success:active, -.bp3-button.bp3-minimal.bp3-intent-success.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success:active, -.bp3-button.bp3-minimal.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success:disabled, -.bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-warning { - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning:hover, -.bp3-button.bp3-minimal.bp3-intent-warning:active, -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning:active, -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning:disabled, -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-danger { - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger:hover, -.bp3-button.bp3-minimal.bp3-intent-danger:active, -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger:active, -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger:disabled, -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(255, 115, 115, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid rgba(24, 32, 38, 0.2); - -webkit-box-sizing: border-box; - box-sizing: border-box; -} -.bp3-button.bp3-outlined:hover { - background: rgba(167, 182, 194, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button.bp3-outlined:active, -.bp3-button.bp3-outlined.bp3-active { - background: rgba(115, 134, 148, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; -} -.bp3-button.bp3-outlined:disabled, -.bp3-button.bp3-outlined:disabled:hover, -.bp3-button.bp3-outlined.bp3-disabled, -.bp3-button.bp3-outlined.bp3-disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button.bp3-outlined:disabled.bp3-active, -.bp3-button.bp3-outlined:disabled:hover.bp3-active, -.bp3-button.bp3-outlined.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button.bp3-outlined { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button.bp3-outlined:hover, -.bp3-dark .bp3-button.bp3-outlined:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-button.bp3-outlined:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button.bp3-outlined:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button.bp3-outlined:disabled, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-primary { - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary:hover, -.bp3-button.bp3-outlined.bp3-intent-primary:active, -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary:active, -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary:disabled, -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-success { - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success:hover, -.bp3-button.bp3-outlined.bp3-intent-success:active, -.bp3-button.bp3-outlined.bp3-intent-success.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success:active, -.bp3-button.bp3-outlined.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success:disabled, -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-warning { - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning:hover, -.bp3-button.bp3-outlined.bp3-intent-warning:active, -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning:active, -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning:disabled, -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-danger { - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger:hover, -.bp3-button.bp3-outlined.bp3-intent-danger:active, -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger:active, -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger:disabled, -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(255, 115, 115, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined:disabled, -.bp3-button.bp3-outlined.bp3-disabled, -.bp3-button.bp3-outlined:disabled:hover, -.bp3-button.bp3-outlined.bp3-disabled:hover { - border-color: rgba(92, 112, 128, 0.1); -} -.bp3-dark .bp3-button.bp3-outlined { - border-color: rgba(255, 255, 255, 0.4); -} -.bp3-dark .bp3-button.bp3-outlined:disabled, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover { - border-color: rgba(255, 255, 255, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-primary { - border-color: rgba(16, 107, 163, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-primary:disabled, -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled { - border-color: rgba(16, 107, 163, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary { - border-color: rgba(72, 175, 240, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled { - border-color: rgba(72, 175, 240, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-success { - border-color: rgba(13, 128, 80, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-success:disabled, -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled { - border-color: rgba(13, 128, 80, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success { - border-color: rgba(61, 204, 145, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled { - border-color: rgba(61, 204, 145, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-warning { - border-color: rgba(191, 115, 38, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-warning:disabled, -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled { - border-color: rgba(191, 115, 38, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning { - border-color: rgba(255, 179, 102, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled { - border-color: rgba(255, 179, 102, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-danger { - border-color: rgba(194, 48, 48, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-danger:disabled, -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled { - border-color: rgba(194, 48, 48, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger { - border-color: rgba(255, 115, 115, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled { - border-color: rgba(255, 115, 115, 0.2); -} - -a.bp3-button { - text-align: center; - text-decoration: none; - -webkit-transition: none; - transition: none; -} -a.bp3-button, -a.bp3-button:hover, -a.bp3-button:active { - color: #182026; -} -a.bp3-button.bp3-disabled { - color: rgba(92, 112, 128, 0.6); -} - -.bp3-button-text { - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} - -.bp3-button.bp3-align-left .bp3-button-text, -.bp3-button.bp3-align-right .bp3-button-text, -.bp3-button-group.bp3-align-left .bp3-button-text, -.bp3-button-group.bp3-align-right .bp3-button-text { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} -.bp3-button-group { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; -} -.bp3-button-group .bp3-button { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - position: relative; - z-index: 4; -} -.bp3-button-group .bp3-button:focus { - z-index: 5; -} -.bp3-button-group .bp3-button:hover { - z-index: 6; -} -.bp3-button-group .bp3-button:active, -.bp3-button-group .bp3-button.bp3-active { - z-index: 7; -} -.bp3-button-group .bp3-button:disabled, -.bp3-button-group .bp3-button.bp3-disabled { - z-index: 3; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"] { - z-index: 9; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:focus { - z-index: 10; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:hover { - z-index: 11; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:active, -.bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-active { - z-index: 12; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:disabled, -.bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-disabled { - z-index: 8; -} -.bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:first-child) - .bp3-button, -.bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button, -.bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; -} -.bp3-button-group.bp3-minimal .bp3-button { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-button-group.bp3-minimal .bp3-button:hover { - background: rgba(167, 182, 194, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button-group.bp3-minimal .bp3-button:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-active { - background: rgba(115, 134, 148, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; -} -.bp3-button-group.bp3-minimal .bp3-button:disabled, -.bp3-button-group.bp3-minimal .bp3-button:disabled:hover, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary { - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary:disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary:disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success { - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success:disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success:disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning { - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning:disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning:disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger { - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(255, 115, 115, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger:disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button-group .bp3-popover-wrapper, -.bp3-button-group .bp3-popover-target { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} -.bp3-button-group.bp3-fill { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; -} -.bp3-button-group .bp3-button.bp3-fill, -.bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed) { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} -.bp3-button-group.bp3-vertical { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: top; -} -.bp3-button-group.bp3-vertical.bp3-fill { - height: 100%; - width: unset; -} -.bp3-button-group.bp3-vertical .bp3-button { - margin-right: 0 !important; - width: 100%; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:first-child - .bp3-button, -.bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child { - border-radius: 3px 3px 0 0; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:last-child - .bp3-button, -.bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child { - border-radius: 0 0 3px 3px; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button, -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-button:not(:last-child) { - margin-bottom: -1px; -} -.bp3-button-group.bp3-align-left .bp3-button { - text-align: left; -} -.bp3-dark - .bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button, -.bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child) { - margin-right: 1px; -} -.bp3-dark - .bp3-button-group.bp3-vertical - > .bp3-popover-wrapper:not(:last-child) - .bp3-button, -.bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child) { - margin-bottom: 1px; -} -.bp3-callout { - font-size: 14px; - line-height: 1.5; - background-color: rgba(138, 155, 168, 0.15); - border-radius: 3px; - padding: 10px 12px 9px; - position: relative; - width: 100%; -} -.bp3-callout[class*="bp3-icon-"] { - padding-left: 40px; -} -.bp3-callout[class*="bp3-icon-"]::before { - font-family: "Icons20", sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - color: #5c7080; - left: 10px; - position: absolute; - top: 10px; -} -.bp3-callout.bp3-callout-icon { - padding-left: 40px; -} -.bp3-callout.bp3-callout-icon > .bp3-icon:first-child { - color: #5c7080; - left: 10px; - position: absolute; - top: 10px; -} -.bp3-callout .bp3-heading { - line-height: 20px; - margin-bottom: 5px; - margin-top: 0; -} -.bp3-callout .bp3-heading:last-child { - margin-bottom: 0; -} -.bp3-dark .bp3-callout { - background-color: rgba(138, 155, 168, 0.2); -} -.bp3-dark .bp3-callout[class*="bp3-icon-"]::before { - color: #a7b6c2; -} -.bp3-callout.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.15); -} -.bp3-callout.bp3-intent-primary[class*="bp3-icon-"]::before, -.bp3-callout.bp3-intent-primary > .bp3-icon:first-child, -.bp3-callout.bp3-intent-primary .bp3-heading { - color: #106ba3; -} -.bp3-dark .bp3-callout.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-primary[class*="bp3-icon-"]::before, -.bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading { - color: #48aff0; -} -.bp3-callout.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.15); -} -.bp3-callout.bp3-intent-success[class*="bp3-icon-"]::before, -.bp3-callout.bp3-intent-success > .bp3-icon:first-child, -.bp3-callout.bp3-intent-success .bp3-heading { - color: #0d8050; -} -.bp3-dark .bp3-callout.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-success[class*="bp3-icon-"]::before, -.bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-success .bp3-heading { - color: #3dcc91; -} -.bp3-callout.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.15); -} -.bp3-callout.bp3-intent-warning[class*="bp3-icon-"]::before, -.bp3-callout.bp3-intent-warning > .bp3-icon:first-child, -.bp3-callout.bp3-intent-warning .bp3-heading { - color: #bf7326; -} -.bp3-dark .bp3-callout.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-warning[class*="bp3-icon-"]::before, -.bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading { - color: #ffb366; -} -.bp3-callout.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.15); -} -.bp3-callout.bp3-intent-danger[class*="bp3-icon-"]::before, -.bp3-callout.bp3-intent-danger > .bp3-icon:first-child, -.bp3-callout.bp3-intent-danger .bp3-heading { - color: #c23030; -} -.bp3-dark .bp3-callout.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-danger[class*="bp3-icon-"]::before, -.bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading { - color: #ff7373; -} -.bp3-running-text .bp3-callout { - margin: 20px 0; -} -.bp3-card { - background-color: #ffffff; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.15), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.15), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - padding: 20px; - -webkit-transition: - -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-card.bp3-dark, -.bp3-dark .bp3-card { - background-color: #30404d; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} - -.bp3-elevation-0 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.15), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.15), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} -.bp3-elevation-0.bp3-dark, -.bp3-dark .bp3-elevation-0 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} - -.bp3-elevation-1 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-elevation-1.bp3-dark, -.bp3-dark .bp3-elevation-1 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} - -.bp3-elevation-2 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 1px 1px rgba(16, 22, 26, 0.2), - 0 2px 6px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 1px 1px rgba(16, 22, 26, 0.2), - 0 2px 6px rgba(16, 22, 26, 0.2); -} -.bp3-elevation-2.bp3-dark, -.bp3-dark .bp3-elevation-2 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.4), - 0 2px 6px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.4), - 0 2px 6px rgba(16, 22, 26, 0.4); -} - -.bp3-elevation-3 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); -} -.bp3-elevation-3.bp3-dark, -.bp3-dark .bp3-elevation-3 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} - -.bp3-elevation-4 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); -} -.bp3-elevation-4.bp3-dark, -.bp3-dark .bp3-elevation-4 { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); -} - -.bp3-card.bp3-interactive:hover { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - cursor: pointer; -} -.bp3-card.bp3-interactive:hover.bp3-dark, -.bp3-dark .bp3-card.bp3-interactive:hover { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} - -.bp3-card.bp3-interactive:active { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - opacity: 0.9; - -webkit-transition-duration: 0; - transition-duration: 0; -} -.bp3-card.bp3-interactive:active.bp3-dark, -.bp3-dark .bp3-card.bp3-interactive:active { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-collapse { - height: 0; - overflow-y: hidden; - -webkit-transition: height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-collapse .bp3-collapse-body { - -webkit-transition: -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-collapse .bp3-collapse-body[aria-hidden="true"] { - display: none; -} - -.bp3-context-menu .bp3-popover-target { - display: block; -} - -.bp3-context-menu-popover-target { - position: fixed; -} -.bp3-divider { - border-bottom: 1px solid rgba(16, 22, 26, 0.15); - border-right: 1px solid rgba(16, 22, 26, 0.15); - margin: 5px; -} -.bp3-dark .bp3-divider { - border-color: rgba(16, 22, 26, 0.4); -} -.bp3-dialog-container { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - min-height: 100%; - pointer-events: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - width: 100%; -} -.bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, -.bp3-dialog-container.bp3-overlay-appear > .bp3-dialog { - opacity: 0; - -webkit-transform: scale(0.5); - transform: scale(0.5); -} -.bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, -.bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: opacity, transform; - transition-property: - opacity, - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-dialog-container.bp3-overlay-exit > .bp3-dialog { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog { - opacity: 0; - -webkit-transform: scale(0.5); - transform: scale(0.5); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: opacity, transform; - transition-property: - opacity, - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} - -.bp3-dialog { - background: #ebf1f5; - border-radius: 6px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 30px 0; - padding-bottom: 20px; - pointer-events: all; - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; - width: 500px; -} -.bp3-dialog:focus { - outline: 0; -} -.bp3-dialog.bp3-dark, -.bp3-dark .bp3-dialog { - background: #293742; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} - -.bp3-dialog-header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background: #ffffff; - border-radius: 6px 6px 0 0; - -webkit-box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - min-height: 40px; - padding-left: 20px; - padding-right: 5px; - z-index: 0; -} -.bp3-dialog-header .bp3-icon-large, -.bp3-dialog-header .bp3-icon { - color: #5c7080; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - margin-right: 10px; -} -.bp3-dialog-header .bp3-heading { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - line-height: inherit; - margin: 0; -} -.bp3-dialog-header .bp3-heading:last-child { - margin-right: 20px; -} -.bp3-dark .bp3-dialog-header { - background: #30404d; - -webkit-box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-dialog-header .bp3-icon-large, -.bp3-dark .bp3-dialog-header .bp3-icon { - color: #a7b6c2; -} - -.bp3-dialog-body { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - line-height: 18px; - margin: 20px; -} - -.bp3-dialog-footer { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - margin: 0 20px; -} - -.bp3-dialog-footer-actions { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} -.bp3-dialog-footer-actions .bp3-button { - margin-left: 10px; -} -.bp3-multistep-dialog-panels { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.bp3-multistep-dialog-panels:first-child - .bp3-dialog-step-container:first-child { - border-radius: 6px 0 0 0; -} -.bp3-multistep-dialog-panels:first-child .bp3-multistep-dialog-right-panel { - border-top-right-radius: 6px; -} - -.bp3-multistep-dialog-left-panel { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.bp3-dark .bp3-multistep-dialog-left-panel { - background: #202b33; -} - -.bp3-multistep-dialog-right-panel { - background-color: #f5f8fa; - border-left: 1px solid rgba(16, 22, 26, 0.15); - border-radius: 0 0 6px 0; - -webkit-box-flex: 3; - -ms-flex: 3; - flex: 3; - min-width: 0; -} -.bp3-dark .bp3-multistep-dialog-right-panel { - background-color: #293742; - border-left: 1px solid rgba(16, 22, 26, 0.4); -} - -.bp3-multistep-dialog-footer { - background-color: #ffffff; - border-radius: 0 0 6px 0; - border-top: 1px solid rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 10px; -} -.bp3-dark .bp3-multistep-dialog-footer { - background: #30404d; - border-top: 1px solid rgba(16, 22, 26, 0.4); -} -.bp3-multistep-dialog-footer .bp3-dialog-footer-actions { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -.bp3-dialog-step-container { - background-color: #f5f8fa; - border-bottom: 1px solid rgba(16, 22, 26, 0.15); -} -.bp3-dark .bp3-dialog-step-container { - background: #293742; - border-bottom: 1px solid rgba(16, 22, 26, 0.4); -} -.bp3-dialog-step-container.bp3-dialog-step-viewed { - background-color: #ffffff; -} -.bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed { - background: #30404d; -} - -.bp3-dialog-step { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #f5f8fa; - border-radius: 6px; - cursor: not-allowed; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 4px; - padding: 6px 14px; -} -.bp3-dark .bp3-dialog-step { - background: #293742; -} -.bp3-dialog-step-viewed .bp3-dialog-step { - background-color: #ffffff; - cursor: pointer; -} -.bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step { - background: #30404d; -} -.bp3-dialog-step:hover { - background-color: #f5f8fa; -} -.bp3-dark .bp3-dialog-step:hover { - background: #293742; -} - -.bp3-dialog-step-icon { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: rgba(92, 112, 128, 0.6); - border-radius: 50%; - color: #ffffff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 25px; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: 25px; -} -.bp3-dark .bp3-dialog-step-icon { - background-color: rgba(167, 182, 194, 0.6); -} -.bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon { - background-color: #2b95d6; -} -.bp3-dialog-step-viewed .bp3-dialog-step-icon { - background-color: #8a9ba8; -} - -.bp3-dialog-step-title { - color: rgba(92, 112, 128, 0.6); - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - padding-left: 10px; -} -.bp3-dark .bp3-dialog-step-title { - color: rgba(167, 182, 194, 0.6); -} -.bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title { - color: #2b95d6; -} -.bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title { - color: #182026; -} -.bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title { - color: #f5f8fa; -} -.bp3-drawer { - background: #ffffff; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 0; - padding: 0; -} -.bp3-drawer:focus { - outline: 0; -} -.bp3-drawer.bp3-position-top { - height: 50%; - left: 0; - right: 0; - top: 0; -} -.bp3-drawer.bp3-position-top.bp3-overlay-enter, -.bp3-drawer.bp3-position-top.bp3-overlay-appear { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); -} -.bp3-drawer.bp3-position-top.bp3-overlay-enter-active, -.bp3-drawer.bp3-position-top.bp3-overlay-appear-active { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-top.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer.bp3-position-top.bp3-overlay-exit-active { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-bottom { - bottom: 0; - height: 50%; - left: 0; - right: 0; -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-enter, -.bp3-drawer.bp3-position-bottom.bp3-overlay-appear { - -webkit-transform: translateY(100%); - transform: translateY(100%); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, -.bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active { - -webkit-transform: translateY(100%); - transform: translateY(100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-left { - bottom: 0; - left: 0; - top: 0; - width: 50%; -} -.bp3-drawer.bp3-position-left.bp3-overlay-enter, -.bp3-drawer.bp3-position-left.bp3-overlay-appear { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} -.bp3-drawer.bp3-position-left.bp3-overlay-enter-active, -.bp3-drawer.bp3-position-left.bp3-overlay-appear-active { - -webkit-transform: translateX(0); - transform: translateX(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-left.bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer.bp3-position-left.bp3-overlay-exit-active { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-right { - bottom: 0; - right: 0; - top: 0; - width: 50%; -} -.bp3-drawer.bp3-position-right.bp3-overlay-enter, -.bp3-drawer.bp3-position-right.bp3-overlay-appear { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-drawer.bp3-position-right.bp3-overlay-enter-active, -.bp3-drawer.bp3-position-right.bp3-overlay-appear-active { - -webkit-transform: translateX(0); - transform: translateX(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-right.bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer.bp3-position-right.bp3-overlay-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical) { - bottom: 0; - right: 0; - top: 0; - width: 50%; -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-appear { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active { - -webkit-transform: translateX(0); - transform: translateX(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical { - bottom: 0; - height: 50%; - left: 0; - right: 0; -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-enter, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-appear { - -webkit-transform: translateY(100%); - transform: translateY(100%); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-enter-active, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-appear-active { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not( - .bp3-position-left - ):not(.bp3-position-right).bp3-vertical.bp3-overlay-exit-active { - -webkit-transform: translateY(100%); - transform: translateY(100%); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-dark, -.bp3-dark .bp3-drawer { - background: #30404d; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} - -.bp3-drawer-header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0; - -webkit-box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - min-height: 40px; - padding: 5px; - padding-left: 20px; - position: relative; -} -.bp3-drawer-header .bp3-icon-large, -.bp3-drawer-header .bp3-icon { - color: #5c7080; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - margin-right: 10px; -} -.bp3-drawer-header .bp3-heading { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - line-height: inherit; - margin: 0; -} -.bp3-drawer-header .bp3-heading:last-child { - margin-right: 20px; -} -.bp3-dark .bp3-drawer-header { - -webkit-box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-drawer-header .bp3-icon-large, -.bp3-dark .bp3-drawer-header .bp3-icon { - color: #a7b6c2; -} - -.bp3-drawer-body { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - line-height: 18px; - overflow: auto; -} - -.bp3-drawer-footer { - -webkit-box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.15); - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding: 10px 20px; - position: relative; -} -.bp3-dark .bp3-drawer-footer { - -webkit-box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.4); - box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-editable-text { - cursor: text; - display: inline-block; - max-width: 100%; - position: relative; - vertical-align: top; - white-space: nowrap; -} -.bp3-editable-text::before { - bottom: -3px; - left: -3px; - position: absolute; - right: -3px; - top: -3px; - border-radius: 3px; - content: ""; - -webkit-transition: - background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-editable-text:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-editable-text.bp3-editable-text-editing::before { - background-color: #ffffff; - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-disabled::before { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-editable-text.bp3-intent-primary .bp3-editable-text-input, -.bp3-editable-text.bp3-intent-primary .bp3-editable-text-content { - color: #137cbd; -} -.bp3-editable-text.bp3-intent-primary:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(19, 124, 189, 0.4); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(19, 124, 189, 0.4); -} -.bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-success .bp3-editable-text-input, -.bp3-editable-text.bp3-intent-success .bp3-editable-text-content { - color: #0f9960; -} -.bp3-editable-text.bp3-intent-success:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px rgba(15, 153, 96, 0.4); - box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px rgba(15, 153, 96, 0.4); -} -.bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-warning .bp3-editable-text-input, -.bp3-editable-text.bp3-intent-warning .bp3-editable-text-content { - color: #d9822b; -} -.bp3-editable-text.bp3-intent-warning:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px rgba(217, 130, 43, 0.4); - box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px rgba(217, 130, 43, 0.4); -} -.bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-danger .bp3-editable-text-input, -.bp3-editable-text.bp3-intent-danger .bp3-editable-text-content { - color: #db3737; -} -.bp3-editable-text.bp3-intent-danger:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px rgba(219, 55, 55, 0.4); - box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px rgba(219, 55, 55, 0.4); -} -.bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-editable-text:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(255, 255, 255, 0.15); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(255, 255, 255, 0.15); -} -.bp3-dark .bp3-editable-text.bp3-editable-text-editing::before { - background-color: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-disabled::before { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content { - color: #48aff0; -} -.bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(72, 175, 240, 0), - 0 0 0 0 rgba(72, 175, 240, 0), - inset 0 0 0 1px rgba(72, 175, 240, 0.4); - box-shadow: - 0 0 0 0 rgba(72, 175, 240, 0), - 0 0 0 0 rgba(72, 175, 240, 0), - inset 0 0 0 1px rgba(72, 175, 240, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #48aff0, - 0 0 0 3px rgba(72, 175, 240, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #48aff0, - 0 0 0 3px rgba(72, 175, 240, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content { - color: #3dcc91; -} -.bp3-dark .bp3-editable-text.bp3-intent-success:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(61, 204, 145, 0), - 0 0 0 0 rgba(61, 204, 145, 0), - inset 0 0 0 1px rgba(61, 204, 145, 0.4); - box-shadow: - 0 0 0 0 rgba(61, 204, 145, 0), - 0 0 0 0 rgba(61, 204, 145, 0), - inset 0 0 0 1px rgba(61, 204, 145, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #3dcc91, - 0 0 0 3px rgba(61, 204, 145, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #3dcc91, - 0 0 0 3px rgba(61, 204, 145, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content { - color: #ffb366; -} -.bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(255, 179, 102, 0), - 0 0 0 0 rgba(255, 179, 102, 0), - inset 0 0 0 1px rgba(255, 179, 102, 0.4); - box-shadow: - 0 0 0 0 rgba(255, 179, 102, 0), - 0 0 0 0 rgba(255, 179, 102, 0), - inset 0 0 0 1px rgba(255, 179, 102, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #ffb366, - 0 0 0 3px rgba(255, 179, 102, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #ffb366, - 0 0 0 3px rgba(255, 179, 102, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content { - color: #ff7373; -} -.bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before { - -webkit-box-shadow: - 0 0 0 0 rgba(255, 115, 115, 0), - 0 0 0 0 rgba(255, 115, 115, 0), - inset 0 0 0 1px rgba(255, 115, 115, 0.4); - box-shadow: - 0 0 0 0 rgba(255, 115, 115, 0), - 0 0 0 0 rgba(255, 115, 115, 0), - inset 0 0 0 1px rgba(255, 115, 115, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before { - -webkit-box-shadow: - 0 0 0 1px #ff7373, - 0 0 0 3px rgba(255, 115, 115, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #ff7373, - 0 0 0 3px rgba(255, 115, 115, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} - -.bp3-editable-text-input, -.bp3-editable-text-content { - color: inherit; - display: inherit; - font: inherit; - letter-spacing: inherit; - max-width: inherit; - min-width: inherit; - position: relative; - resize: none; - text-transform: inherit; - vertical-align: top; -} - -.bp3-editable-text-input { - background: none; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0; - white-space: pre-wrap; - width: 100%; -} -.bp3-editable-text-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input::-moz-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input::-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input:focus { - outline: none; -} -.bp3-editable-text-input::-ms-clear { - display: none; -} - -.bp3-editable-text-content { - overflow: hidden; - padding-right: 2px; - text-overflow: ellipsis; - white-space: pre; -} -.bp3-editable-text-editing > .bp3-editable-text-content { - left: 0; - position: absolute; - visibility: hidden; -} -.bp3-editable-text-placeholder > .bp3-editable-text-content { - color: rgba(92, 112, 128, 0.6); -} -.bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content { - color: rgba(167, 182, 194, 0.6); -} - -.bp3-editable-text.bp3-multiline { - display: block; -} -.bp3-editable-text.bp3-multiline .bp3-editable-text-content { - overflow: auto; - white-space: pre-wrap; - word-wrap: break-word; -} -.bp3-divider { - border-bottom: 1px solid rgba(16, 22, 26, 0.15); - border-right: 1px solid rgba(16, 22, 26, 0.15); - margin: 5px; -} -.bp3-dark .bp3-divider { - border-color: rgba(16, 22, 26, 0.4); -} -.bp3-control-group { - -webkit-transform: translateZ(0); - transform: translateZ(0); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} -.bp3-control-group > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-control-group > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-control-group .bp3-button, -.bp3-control-group .bp3-html-select, -.bp3-control-group .bp3-input, -.bp3-control-group .bp3-select { - position: relative; -} -.bp3-control-group .bp3-input { - border-radius: inherit; - z-index: 2; -} -.bp3-control-group .bp3-input:focus { - border-radius: 3px; - z-index: 14; -} -.bp3-control-group .bp3-input[class*="bp3-intent"] { - z-index: 13; -} -.bp3-control-group .bp3-input[class*="bp3-intent"]:focus { - z-index: 15; -} -.bp3-control-group .bp3-input[readonly], -.bp3-control-group .bp3-input:disabled, -.bp3-control-group .bp3-input.bp3-disabled { - z-index: 1; -} -.bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input { - z-index: 13; -} -.bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input:focus { - z-index: 15; -} -.bp3-control-group .bp3-button, -.bp3-control-group .bp3-html-select select, -.bp3-control-group .bp3-select select { - -webkit-transform: translateZ(0); - transform: translateZ(0); - border-radius: inherit; - z-index: 4; -} -.bp3-control-group .bp3-button:focus, -.bp3-control-group .bp3-html-select select:focus, -.bp3-control-group .bp3-select select:focus { - z-index: 5; -} -.bp3-control-group .bp3-button:hover, -.bp3-control-group .bp3-html-select select:hover, -.bp3-control-group .bp3-select select:hover { - z-index: 6; -} -.bp3-control-group .bp3-button:active, -.bp3-control-group .bp3-html-select select:active, -.bp3-control-group .bp3-select select:active { - z-index: 7; -} -.bp3-control-group .bp3-button[readonly], -.bp3-control-group .bp3-button:disabled, -.bp3-control-group .bp3-button.bp3-disabled, -.bp3-control-group .bp3-html-select select[readonly], -.bp3-control-group .bp3-html-select select:disabled, -.bp3-control-group .bp3-html-select select.bp3-disabled, -.bp3-control-group .bp3-select select[readonly], -.bp3-control-group .bp3-select select:disabled, -.bp3-control-group .bp3-select select.bp3-disabled { - z-index: 3; -} -.bp3-control-group .bp3-button[class*="bp3-intent"], -.bp3-control-group .bp3-html-select select[class*="bp3-intent"], -.bp3-control-group .bp3-select select[class*="bp3-intent"] { - z-index: 9; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:focus, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:focus, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:focus { - z-index: 10; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:hover, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:hover, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:hover { - z-index: 11; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:active, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:active, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:active { - z-index: 12; -} -.bp3-control-group .bp3-button[class*="bp3-intent"][readonly], -.bp3-control-group .bp3-button[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-button[class*="bp3-intent"].bp3-disabled, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"][readonly], -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"].bp3-disabled, -.bp3-control-group .bp3-select select[class*="bp3-intent"][readonly], -.bp3-control-group .bp3-select select[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-select select[class*="bp3-intent"].bp3-disabled { - z-index: 8; -} -.bp3-control-group .bp3-input-group > .bp3-icon, -.bp3-control-group .bp3-input-group > .bp3-button, -.bp3-control-group .bp3-input-group > .bp3-input-left-container, -.bp3-control-group .bp3-input-group > .bp3-input-action { - z-index: 16; -} -.bp3-control-group .bp3-select::after, -.bp3-control-group .bp3-html-select::after, -.bp3-control-group .bp3-select > .bp3-icon, -.bp3-control-group .bp3-html-select > .bp3-icon { - z-index: 17; -} -.bp3-control-group .bp3-select:focus-within { - z-index: 5; -} -.bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider) { - margin-right: -1px; -} -.bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child) { - margin-left: 6px; -} -.bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider) { - margin-right: 0; -} -.bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button { - margin-left: 1px; -} -.bp3-control-group .bp3-popover-wrapper, -.bp3-control-group .bp3-popover-target { - border-radius: inherit; -} -.bp3-control-group > :first-child { - border-radius: 3px 0 0 3px; -} -.bp3-control-group > :last-child { - border-radius: 0 3px 3px 0; - margin-right: 0; -} -.bp3-control-group > :only-child { - border-radius: 3px; - margin-right: 0; -} -.bp3-control-group .bp3-input-group .bp3-button { - border-radius: 3px; -} -.bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.bp3-control-group.bp3-fill { - width: 100%; -} -.bp3-control-group > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} -.bp3-control-group.bp3-fill > *:not(.bp3-fixed) { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} -.bp3-control-group.bp3-vertical { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.bp3-control-group.bp3-vertical > * { - margin-top: -1px; -} -.bp3-control-group.bp3-vertical > :first-child { - border-radius: 3px 3px 0 0; - margin-top: 0; -} -.bp3-control-group.bp3-vertical > :last-child { - border-radius: 0 0 3px 3px; -} -.bp3-control { - cursor: pointer; - display: block; - margin-bottom: 10px; - position: relative; - text-transform: none; -} -.bp3-control input:checked ~ .bp3-control-indicator { - background-color: #137cbd; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-control:hover input:checked ~ .bp3-control-indicator { - background-color: #106ba3; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator { - background: #0e5a8a; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control input:disabled:checked ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-control input:checked ~ .bp3-control-indicator { - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator { - background-color: #106ba3; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control - input:not(:disabled):active:checked - ~ .bp3-control-indicator { - background-color: #0e5a8a; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-control:not(.bp3-align-right) { - padding-left: 26px; -} -.bp3-control:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -26px; -} -.bp3-control.bp3-align-right { - padding-right: 26px; -} -.bp3-control.bp3-align-right .bp3-control-indicator { - margin-right: -26px; -} -.bp3-control.bp3-disabled { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-control.bp3-inline { - display: inline-block; - margin-right: 20px; -} -.bp3-control input { - left: 0; - opacity: 0; - position: absolute; - top: 0; - z-index: -1; -} -.bp3-control .bp3-control-indicator { - background-clip: padding-box; - background-color: #f5f8fa; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.8)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.8), - rgba(255, 255, 255, 0) - ); - border: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - cursor: pointer; - display: inline-block; - font-size: 16px; - height: 1em; - margin-right: 10px; - margin-top: -3px; - position: relative; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; -} -.bp3-control .bp3-control-indicator::before { - content: ""; - display: block; - height: 1em; - width: 1em; -} -.bp3-control:hover .bp3-control-indicator { - background-color: #ebf1f5; -} -.bp3-control input:not(:disabled):active ~ .bp3-control-indicator { - background: #d8e1e8; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control input:disabled ~ .bp3-control-indicator { - background: rgba(206, 217, 224, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - cursor: not-allowed; -} -.bp3-control input:focus ~ .bp3-control-indicator { - outline: rgba(19, 124, 189, 0.6) auto 2px; - outline-offset: 2px; - -moz-outline-radius: 6px; -} -.bp3-control.bp3-align-right .bp3-control-indicator { - float: right; - margin-left: 10px; - margin-top: 1px; -} -.bp3-control.bp3-large { - font-size: 16px; -} -.bp3-control.bp3-large:not(.bp3-align-right) { - padding-left: 30px; -} -.bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -30px; -} -.bp3-control.bp3-large.bp3-align-right { - padding-right: 30px; -} -.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator { - margin-right: -30px; -} -.bp3-control.bp3-large .bp3-control-indicator { - font-size: 20px; -} -.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator { - margin-top: 0; -} -.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator { - background-color: #137cbd; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.1)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.1), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #ffffff; -} -.bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator { - background-color: #106ba3; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-control.bp3-checkbox - input:not(:disabled):active:indeterminate - ~ .bp3-control-indicator { - background: #0e5a8a; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark - .bp3-control.bp3-checkbox - input:indeterminate - ~ .bp3-control-indicator { - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-checkbox:hover - input:indeterminate - ~ .bp3-control-indicator { - background-color: #106ba3; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-checkbox - input:not(:disabled):active:indeterminate - ~ .bp3-control-indicator { - background-color: #0e5a8a; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-control.bp3-checkbox .bp3-control-indicator { - border-radius: 3px; -} -.bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e"); -} -.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e"); -} -.bp3-control.bp3-radio .bp3-control-indicator { - border-radius: 50%; -} -.bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before { - background-image: radial-gradient(#ffffff, #ffffff 28%, transparent 32%); -} -.bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before { - opacity: 0.5; -} -.bp3-control.bp3-radio input:focus ~ .bp3-control-indicator { - -moz-outline-radius: 16px; -} -.bp3-control.bp3-switch input ~ .bp3-control-indicator { - background: rgba(167, 182, 194, 0.5); -} -.bp3-control.bp3-switch:hover input ~ .bp3-control-indicator { - background: rgba(115, 134, 148, 0.5); -} -.bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator { - background: rgba(92, 112, 128, 0.5); -} -.bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator { - background: rgba(206, 217, 224, 0.5); -} -.bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before { - background: rgba(255, 255, 255, 0.8); -} -.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator { - background: #137cbd; -} -.bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator { - background: #106ba3; -} -.bp3-control.bp3-switch - input:checked:not(:disabled):active - ~ .bp3-control-indicator { - background: #0e5a8a; -} -.bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); -} -.bp3-control.bp3-switch - input:checked:disabled - ~ .bp3-control-indicator::before { - background: rgba(255, 255, 255, 0.8); -} -.bp3-control.bp3-switch:not(.bp3-align-right) { - padding-left: 38px; -} -.bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -38px; -} -.bp3-control.bp3-switch.bp3-align-right { - padding-right: 38px; -} -.bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator { - margin-right: -38px; -} -.bp3-control.bp3-switch .bp3-control-indicator { - border: none; - border-radius: 1.75em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - min-width: 1.75em; - -webkit-transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - width: auto; -} -.bp3-control.bp3-switch .bp3-control-indicator::before { - background: #ffffff; - border-radius: 50%; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - height: calc(1em - 4px); - left: 0; - margin: 2px; - position: absolute; - -webkit-transition: left 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: left 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - width: calc(1em - 4px); -} -.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before { - left: calc(100% - 1em); -} -.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) { - padding-left: 45px; -} -.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -45px; -} -.bp3-control.bp3-switch.bp3-large.bp3-align-right { - padding-right: 45px; -} -.bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator { - margin-right: -45px; -} -.bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.7); -} -.bp3-dark - .bp3-control.bp3-switch - input:not(:disabled):active - ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.9); -} -.bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator { - background: rgba(57, 75, 89, 0.5); -} -.bp3-dark - .bp3-control.bp3-switch - input:disabled - ~ .bp3-control-indicator::before { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator { - background: #137cbd; -} -.bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator { - background: #106ba3; -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:not(:disabled):active - ~ .bp3-control-indicator { - background: #0e5a8a; -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:disabled - ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:disabled - ~ .bp3-control-indicator::before { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before { - background: #394b59; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator::before { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-control.bp3-switch .bp3-switch-inner-text { - font-size: 0.7em; - text-align: center; -} -.bp3-control.bp3-switch .bp3-control-indicator-child:first-child { - line-height: 0; - margin-left: 0.5em; - margin-right: 1.2em; - visibility: hidden; -} -.bp3-control.bp3-switch .bp3-control-indicator-child:last-child { - line-height: 1em; - margin-left: 1.2em; - margin-right: 0.5em; - visibility: visible; -} -.bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator - .bp3-control-indicator-child:first-child { - line-height: 1em; - visibility: visible; -} -.bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator - .bp3-control-indicator-child:last-child { - line-height: 0; - visibility: hidden; -} -.bp3-dark .bp3-control { - color: #f5f8fa; -} -.bp3-dark .bp3-control.bp3-disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-control .bp3-control-indicator { - background-color: #394b59; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.05)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.05), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control:hover .bp3-control-indicator { - background-color: #30404d; -} -.bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator { - background: #202b33; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator { - background: rgba(57, 75, 89, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - cursor: not-allowed; -} -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:checked - ~ .bp3-control-indicator, -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - color: rgba(167, 182, 194, 0.6); -} -.bp3-file-input { - cursor: pointer; - display: inline-block; - height: 30px; - position: relative; -} -.bp3-file-input input { - margin: 0; - min-width: 200px; - opacity: 0; -} -.bp3-file-input input:disabled + .bp3-file-upload-input, -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input { - background: rgba(206, 217, 224, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-file-input input:disabled + .bp3-file-upload-input::after, -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, -.bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover, -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active, -.bp3-file-input - input.bp3-disabled - + .bp3-file-upload-input::after.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, -.bp3-dark .bp3-file-input input.bp3-disabled + .bp3-file-upload-input { - background: rgba(57, 75, 89, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, -.bp3-dark .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark - .bp3-file-input - input:disabled - + .bp3-file-upload-input::after.bp3-active, -.bp3-dark - .bp3-file-input - input.bp3-disabled - + .bp3-file-upload-input::after.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input { - color: #182026; -} -.bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input { - color: #f5f8fa; -} -.bp3-file-input.bp3-fill { - width: 100%; -} -.bp3-file-input.bp3-large, -.bp3-large .bp3-file-input { - height: 40px; -} -.bp3-file-input .bp3-file-upload-input-custom-text::after { - content: attr(bp3-button-text); -} - -.bp3-file-upload-input { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: #ffffff; - border: none; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - color: #182026; - font-size: 14px; - font-weight: 400; - height: 30px; - line-height: 30px; - outline: none; - padding: 0 10px; - -webkit-transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - vertical-align: middle; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - color: rgba(92, 112, 128, 0.6); - left: 0; - padding-right: 80px; - position: absolute; - right: 0; - top: 0; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-file-upload-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input::-moz-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input::-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input:focus, -.bp3-file-upload-input.bp3-active { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input[type="search"], -.bp3-file-upload-input.bp3-round { - border-radius: 30px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-left: 10px; -} -.bp3-file-upload-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-file-upload-input:disabled, -.bp3-file-upload-input.bp3-disabled { - background: rgba(206, 217, 224, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-file-upload-input::after { - background-color: #f5f8fa; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.8)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.8), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; - min-height: 24px; - min-width: 24px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - border-radius: 3px; - content: "Browse"; - line-height: 24px; - margin: 3px; - position: absolute; - right: 0; - text-align: center; - top: 0; - width: 70px; -} -.bp3-file-upload-input::after:hover { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-file-upload-input::after:active, -.bp3-file-upload-input::after.bp3-active { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input::after:disabled, -.bp3-file-upload-input::after.bp3-disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-file-upload-input::after:disabled.bp3-active, -.bp3-file-upload-input::after:disabled.bp3-active:hover, -.bp3-file-upload-input::after.bp3-disabled.bp3-active, -.bp3-file-upload-input::after.bp3-disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-file-upload-input:hover::after { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-file-upload-input:active::after { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-large .bp3-file-upload-input { - font-size: 16px; - height: 40px; - line-height: 40px; - padding-right: 95px; -} -.bp3-large .bp3-file-upload-input[type="search"], -.bp3-large .bp3-file-upload-input.bp3-round { - padding: 0 15px; -} -.bp3-large .bp3-file-upload-input::after { - min-height: 30px; - min-width: 30px; - line-height: 30px; - margin: 5px; - width: 85px; -} -.bp3-dark .bp3-file-upload-input { - background: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::-moz-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input:disabled, -.bp3-dark .bp3-file-upload-input.bp3-disabled { - background: rgba(57, 75, 89, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::after { - background-color: #394b59; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.05)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.05), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-file-upload-input::after:hover, -.bp3-dark .bp3-file-upload-input::after:active, -.bp3-dark .bp3-file-upload-input::after.bp3-active { - color: #f5f8fa; -} -.bp3-dark .bp3-file-upload-input::after:hover { - background-color: #30404d; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input::after:active, -.bp3-dark .bp3-file-upload-input::after.bp3-active { - background-color: #202b33; - background-image: none; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-file-upload-input::after:disabled, -.bp3-dark .bp3-file-upload-input::after.bp3-disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, -.bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head { - background: rgba(16, 22, 26, 0.5); - stroke: #8a9ba8; -} -.bp3-dark .bp3-file-upload-input:hover::after { - background-color: #30404d; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input:active::after { - background-color: #202b33; - background-image: none; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input::after { - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-form-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 0 0 15px; -} -.bp3-form-group label.bp3-label { - margin-bottom: 5px; -} -.bp3-form-group .bp3-control { - margin-top: 7px; -} -.bp3-form-group .bp3-form-group-sub-label, -.bp3-form-group .bp3-form-helper-text { - color: #5c7080; - font-size: 12px; -} -.bp3-form-group .bp3-form-group-sub-label { - margin-bottom: 5px; -} -.bp3-form-group .bp3-form-helper-text { - margin-top: 5px; -} -.bp3-form-group.bp3-intent-primary .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-primary .bp3-form-helper-text { - color: #106ba3; -} -.bp3-form-group.bp3-intent-success .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-success .bp3-form-helper-text { - color: #0d8050; -} -.bp3-form-group.bp3-intent-warning .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-warning .bp3-form-helper-text { - color: #bf7326; -} -.bp3-form-group.bp3-intent-danger .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-danger .bp3-form-helper-text { - color: #c23030; -} -.bp3-form-group.bp3-inline { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; -} -.bp3-form-group.bp3-inline.bp3-large label.bp3-label { - line-height: 40px; - margin: 0 10px 0 0; -} -.bp3-form-group.bp3-inline label.bp3-label { - line-height: 30px; - margin: 0 10px 0 0; -} -.bp3-form-group.bp3-disabled .bp3-label, -.bp3-form-group.bp3-disabled .bp3-text-muted, -.bp3-form-group.bp3-disabled .bp3-form-group-sub-label, -.bp3-form-group.bp3-disabled .bp3-form-helper-text { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text { - color: #48aff0; -} -.bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text { - color: #3dcc91; -} -.bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text { - color: #ffb366; -} -.bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text { - color: #ff7373; -} -.bp3-dark .bp3-form-group .bp3-form-helper-text { - color: #a7b6c2; -} -.bp3-dark .bp3-form-group.bp3-disabled .bp3-label, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text { - color: rgba(167, 182, 194, 0.6) !important; -} -.bp3-input-group { - display: block; - position: relative; -} -.bp3-input-group .bp3-input { - position: relative; - width: 100%; -} -.bp3-input-group .bp3-input:not(:first-child) { - padding-left: 30px; -} -.bp3-input-group .bp3-input:not(:last-child) { - padding-right: 30px; -} -.bp3-input-group .bp3-input-action, -.bp3-input-group > .bp3-input-left-container, -.bp3-input-group > .bp3-button, -.bp3-input-group > .bp3-icon { - position: absolute; - top: 0; -} -.bp3-input-group .bp3-input-action:first-child, -.bp3-input-group > .bp3-input-left-container:first-child, -.bp3-input-group > .bp3-button:first-child, -.bp3-input-group > .bp3-icon:first-child { - left: 0; -} -.bp3-input-group .bp3-input-action:last-child, -.bp3-input-group > .bp3-input-left-container:last-child, -.bp3-input-group > .bp3-button:last-child, -.bp3-input-group > .bp3-icon:last-child { - right: 0; -} -.bp3-input-group .bp3-button { - min-height: 24px; - min-width: 24px; - margin: 3px; - padding: 0 7px; -} -.bp3-input-group .bp3-button:empty { - padding: 0; -} -.bp3-input-group > .bp3-input-left-container, -.bp3-input-group > .bp3-icon { - z-index: 1; -} -.bp3-input-group > .bp3-input-left-container > .bp3-icon, -.bp3-input-group > .bp3-icon { - color: #5c7080; -} -.bp3-input-group > .bp3-input-left-container > .bp3-icon:empty, -.bp3-input-group > .bp3-icon:empty { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; -} -.bp3-input-group > .bp3-input-left-container > .bp3-icon, -.bp3-input-group > .bp3-icon, -.bp3-input-group .bp3-input-action > .bp3-spinner { - margin: 7px; -} -.bp3-input-group .bp3-tag { - margin: 5px; -} -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus), -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) { - color: #5c7080; -} -.bp3-dark - .bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus), -.bp3-dark - .bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) { - color: #a7b6c2; -} -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-large { - color: #5c7080; -} -.bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon-large { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-input-group.bp3-disabled { - cursor: not-allowed; -} -.bp3-input-group.bp3-disabled .bp3-icon { - color: rgba(92, 112, 128, 0.6); -} -.bp3-input-group.bp3-large .bp3-button { - min-height: 30px; - min-width: 30px; - margin: 5px; -} -.bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon, -.bp3-input-group.bp3-large > .bp3-icon, -.bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner { - margin: 12px; -} -.bp3-input-group.bp3-large .bp3-input { - font-size: 16px; - height: 40px; - line-height: 40px; -} -.bp3-input-group.bp3-large .bp3-input[type="search"], -.bp3-input-group.bp3-large .bp3-input.bp3-round { - padding: 0 15px; -} -.bp3-input-group.bp3-large .bp3-input:not(:first-child) { - padding-left: 40px; -} -.bp3-input-group.bp3-large .bp3-input:not(:last-child) { - padding-right: 40px; -} -.bp3-input-group.bp3-small .bp3-button { - min-height: 20px; - min-width: 20px; - margin: 2px; -} -.bp3-input-group.bp3-small .bp3-tag { - min-height: 20px; - min-width: 20px; - margin: 2px; -} -.bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon, -.bp3-input-group.bp3-small > .bp3-icon, -.bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner { - margin: 4px; -} -.bp3-input-group.bp3-small .bp3-input { - font-size: 12px; - height: 24px; - line-height: 24px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-input-group.bp3-small .bp3-input[type="search"], -.bp3-input-group.bp3-small .bp3-input.bp3-round { - padding: 0 12px; -} -.bp3-input-group.bp3-small .bp3-input:not(:first-child) { - padding-left: 24px; -} -.bp3-input-group.bp3-small .bp3-input:not(:last-child) { - padding-right: 24px; -} -.bp3-input-group.bp3-fill { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 100%; -} -.bp3-input-group.bp3-round .bp3-button, -.bp3-input-group.bp3-round .bp3-input, -.bp3-input-group.bp3-round .bp3-tag { - border-radius: 30px; -} -.bp3-dark .bp3-input-group .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-input-group.bp3-disabled .bp3-icon { - color: rgba(167, 182, 194, 0.6); -} -.bp3-input-group.bp3-intent-primary .bp3-input { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-primary .bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-primary .bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #137cbd; - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-input-group.bp3-intent-primary .bp3-input:disabled, -.bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input-group.bp3-intent-primary > .bp3-icon { - color: #106ba3; -} -.bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon { - color: #48aff0; -} -.bp3-input-group.bp3-intent-success .bp3-input { - -webkit-box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-success .bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-success .bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #0f9960; - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-input-group.bp3-intent-success .bp3-input:disabled, -.bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input-group.bp3-intent-success > .bp3-icon { - color: #0d8050; -} -.bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon { - color: #3dcc91; -} -.bp3-input-group.bp3-intent-warning .bp3-input { - -webkit-box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-warning .bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-warning .bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #d9822b; - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-input-group.bp3-intent-warning .bp3-input:disabled, -.bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input-group.bp3-intent-warning > .bp3-icon { - color: #bf7326; -} -.bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon { - color: #ffb366; -} -.bp3-input-group.bp3-intent-danger .bp3-input { - -webkit-box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-danger .bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-danger .bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #db3737; - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-input-group.bp3-intent-danger .bp3-input:disabled, -.bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input-group.bp3-intent-danger > .bp3-icon { - color: #c23030; -} -.bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon { - color: #ff7373; -} -.bp3-input { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: #ffffff; - border: none; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - color: #182026; - font-size: 14px; - font-weight: 400; - height: 30px; - line-height: 30px; - outline: none; - padding: 0 10px; - -webkit-transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); - vertical-align: middle; -} -.bp3-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input::-moz-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input::-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input:focus, -.bp3-input.bp3-active { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input[type="search"], -.bp3-input.bp3-round { - border-radius: 30px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-left: 10px; -} -.bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-input:disabled, -.bp3-input.bp3-disabled { - background: rgba(206, 217, 224, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-input.bp3-large { - font-size: 16px; - height: 40px; - line-height: 40px; -} -.bp3-input.bp3-large[type="search"], -.bp3-input.bp3-large.bp3-round { - padding: 0 15px; -} -.bp3-input.bp3-small { - font-size: 12px; - height: 24px; - line-height: 24px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-input.bp3-small[type="search"], -.bp3-input.bp3-small.bp3-round { - padding: 0 12px; -} -.bp3-input.bp3-fill { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 100%; -} -.bp3-dark .bp3-input { - background: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input::-moz-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input::-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input:disabled, -.bp3-dark .bp3-input.bp3-disabled { - background: rgba(57, 75, 89, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-input.bp3-intent-primary { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-primary:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-primary[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #137cbd; - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-input.bp3-intent-primary:disabled, -.bp3-input.bp3-intent-primary.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-primary { - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-primary:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-primary[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #137cbd; - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-dark .bp3-input.bp3-intent-primary:disabled, -.bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input.bp3-intent-success { - -webkit-box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-success:focus { - -webkit-box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-success[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #0f9960; - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-input.bp3-intent-success:disabled, -.bp3-input.bp3-intent-success.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-success { - -webkit-box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-success:focus { - -webkit-box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #0f9960, - 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-success[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #0f9960; - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-dark .bp3-input.bp3-intent-success:disabled, -.bp3-dark .bp3-input.bp3-intent-success.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input.bp3-intent-warning { - -webkit-box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-warning:focus { - -webkit-box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-warning[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #d9822b; - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-input.bp3-intent-warning:disabled, -.bp3-input.bp3-intent-warning.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-warning { - -webkit-box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-warning:focus { - -webkit-box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #d9822b, - 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-warning[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #d9822b; - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-dark .bp3-input.bp3-intent-warning:disabled, -.bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input.bp3-intent-danger { - -webkit-box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-danger:focus { - -webkit-box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-danger[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #db3737; - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-input.bp3-intent-danger:disabled, -.bp3-input.bp3-intent-danger.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-danger { - -webkit-box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-danger:focus { - -webkit-box-shadow: - 0 0 0 1px #db3737, - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #db3737, - 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-danger[readonly] { - -webkit-box-shadow: inset 0 0 0 1px #db3737; - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-dark .bp3-input.bp3-intent-danger:disabled, -.bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-input::-ms-clear { - display: none; -} -textarea.bp3-input { - max-width: 100%; - padding: 10px; -} -textarea.bp3-input, -textarea.bp3-input.bp3-large, -textarea.bp3-input.bp3-small { - height: auto; - line-height: inherit; -} -textarea.bp3-input.bp3-small { - padding: 8px; -} -.bp3-dark textarea.bp3-input { - background: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark textarea.bp3-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input::-moz-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input::-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input:focus { - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark textarea.bp3-input[readonly] { - -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark textarea.bp3-input:disabled, -.bp3-dark textarea.bp3-input.bp3-disabled { - background: rgba(57, 75, 89, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -label.bp3-label { - display: block; - margin-bottom: 15px; - margin-top: 0; -} -label.bp3-label .bp3-html-select, -label.bp3-label .bp3-input, -label.bp3-label .bp3-select, -label.bp3-label .bp3-slider, -label.bp3-label .bp3-popover-wrapper { - display: block; - margin-top: 5px; - text-transform: none; -} -label.bp3-label .bp3-button-group { - margin-top: 5px; -} -label.bp3-label .bp3-select select, -label.bp3-label .bp3-html-select select { - font-weight: 400; - vertical-align: top; - width: 100%; -} -label.bp3-label.bp3-disabled, -label.bp3-label.bp3-disabled .bp3-text-muted { - color: rgba(92, 112, 128, 0.6); -} -label.bp3-label.bp3-inline { - line-height: 30px; -} -label.bp3-label.bp3-inline .bp3-html-select, -label.bp3-label.bp3-inline .bp3-input, -label.bp3-label.bp3-inline .bp3-input-group, -label.bp3-label.bp3-inline .bp3-select, -label.bp3-label.bp3-inline .bp3-popover-wrapper { - display: inline-block; - margin: 0 0 0 5px; - vertical-align: top; -} -label.bp3-label.bp3-inline .bp3-button-group { - margin: 0 0 0 5px; -} -label.bp3-label.bp3-inline .bp3-input-group .bp3-input { - margin-left: 0; -} -label.bp3-label.bp3-inline.bp3-large { - line-height: 40px; -} -label.bp3-label:not(.bp3-inline) .bp3-popover-target { - display: block; -} -.bp3-dark label.bp3-label { - color: #f5f8fa; -} -.bp3-dark label.bp3-label.bp3-disabled, -.bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted { - color: rgba(167, 182, 194, 0.6); -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button { - -webkit-box-flex: 1; - -ms-flex: 1 1 14px; - flex: 1 1 14px; - min-height: 0; - padding: 0; - width: 30px; -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child { - border-radius: 0 3px 0 0; -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child { - border-radius: 0 0 3px 0; -} - -.bp3-numeric-input - .bp3-button-group.bp3-vertical:first-child - > .bp3-button:first-child { - border-radius: 3px 0 0 0; -} - -.bp3-numeric-input - .bp3-button-group.bp3-vertical:first-child - > .bp3-button:last-child { - border-radius: 0 0 0 3px; -} - -.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button { - width: 40px; -} - -form { - display: block; -} -.bp3-html-select select, -.bp3-select select { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: none; - border-radius: 3px; - cursor: pointer; - font-size: 14px; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding: 5px 10px; - text-align: left; - vertical-align: middle; - background-color: #f5f8fa; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.8)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.8), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; - -moz-appearance: none; - -webkit-appearance: none; - border-radius: 3px; - height: 30px; - padding: 0 25px 0 10px; - width: 100%; -} -.bp3-html-select select > *, -.bp3-select select > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-html-select select > .bp3-fill, -.bp3-select select > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-html-select select::before, -.bp3-select select::before, -.bp3-html-select select > *, -.bp3-select select > * { - margin-right: 7px; -} -.bp3-html-select select:empty::before, -.bp3-select select:empty::before, -.bp3-html-select select > :last-child, -.bp3-select select > :last-child { - margin-right: 0; -} -.bp3-html-select select:hover, -.bp3-select select:hover { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-html-select select:active, -.bp3-select select:active, -.bp3-html-select select.bp3-active, -.bp3-select select.bp3-active { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-html-select select:disabled, -.bp3-select select:disabled, -.bp3-html-select select.bp3-disabled, -.bp3-select select.bp3-disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-html-select select:disabled.bp3-active, -.bp3-select select:disabled.bp3-active, -.bp3-html-select select:disabled.bp3-active:hover, -.bp3-select select:disabled.bp3-active:hover, -.bp3-html-select select.bp3-disabled.bp3-active, -.bp3-select select.bp3-disabled.bp3-active, -.bp3-html-select select.bp3-disabled.bp3-active:hover, -.bp3-select select.bp3-disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} - -.bp3-html-select.bp3-minimal select, -.bp3-select.bp3-minimal select { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-html-select.bp3-minimal select:hover, -.bp3-select.bp3-minimal select:hover { - background: rgba(167, 182, 194, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-html-select.bp3-minimal select:active, -.bp3-select.bp3-minimal select:active, -.bp3-html-select.bp3-minimal select.bp3-active, -.bp3-select.bp3-minimal select.bp3-active { - background: rgba(115, 134, 148, 0.3); - -webkit-box-shadow: none; - box-shadow: none; - color: #182026; -} -.bp3-html-select.bp3-minimal select:disabled, -.bp3-select.bp3-minimal select:disabled, -.bp3-html-select.bp3-minimal select:disabled:hover, -.bp3-select.bp3-minimal select:disabled:hover, -.bp3-html-select.bp3-minimal select.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-disabled:hover, -.bp3-select.bp3-minimal select.bp3-disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-html-select.bp3-minimal select:disabled.bp3-active, -.bp3-select.bp3-minimal select:disabled.bp3-active, -.bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-html-select.bp3-minimal select, -.bp3-html-select.bp3-minimal .bp3-dark select, -.bp3-dark .bp3-select.bp3-minimal select, -.bp3-select.bp3-minimal .bp3-dark select { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-html-select.bp3-minimal select:hover, -.bp3-html-select.bp3-minimal .bp3-dark select:hover, -.bp3-dark .bp3-select.bp3-minimal select:hover, -.bp3-select.bp3-minimal .bp3-dark select:hover, -.bp3-dark .bp3-html-select.bp3-minimal select:active, -.bp3-html-select.bp3-minimal .bp3-dark select:active, -.bp3-dark .bp3-select.bp3-minimal select:active, -.bp3-select.bp3-minimal .bp3-dark select:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-html-select.bp3-minimal select:hover, -.bp3-html-select.bp3-minimal .bp3-dark select:hover, -.bp3-dark .bp3-select.bp3-minimal select:hover, -.bp3-select.bp3-minimal .bp3-dark select:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-html-select.bp3-minimal select:active, -.bp3-html-select.bp3-minimal .bp3-dark select:active, -.bp3-dark .bp3-select.bp3-minimal select:active, -.bp3-select.bp3-minimal .bp3-dark select:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-html-select.bp3-minimal select:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled, -.bp3-dark .bp3-select.bp3-minimal select:disabled, -.bp3-select.bp3-minimal .bp3-dark select:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover, -.bp3-dark .bp3-select.bp3-minimal select:disabled:hover, -.bp3-select.bp3-minimal .bp3-dark select:disabled:hover, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary, -.bp3-select.bp3-minimal select.bp3-intent-primary { - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal select.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-primary:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary.bp3-disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-success, -.bp3-select.bp3-minimal select.bp3-intent-success { - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-select.bp3-minimal select.bp3-intent-success:active, -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-select.bp3-minimal select.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-select.bp3-minimal select.bp3-intent-success:active, -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-success:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-success:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-success.bp3-disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning, -.bp3-select.bp3-minimal select.bp3-intent-warning { - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal select.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-warning:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning.bp3-disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger, -.bp3-select.bp3-minimal select.bp3-intent-danger { - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active { - background: none; - -webkit-box-shadow: none; - box-shadow: none; - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal select.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled { - background: none; - color: rgba(255, 115, 115, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-danger:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger.bp3-disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} - -.bp3-html-select.bp3-large select, -.bp3-select.bp3-large select { - font-size: 16px; - height: 40px; - padding-right: 35px; -} - -.bp3-dark .bp3-html-select select, -.bp3-dark .bp3-select select { - background-color: #394b59; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.05)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.05), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-html-select select:hover, -.bp3-dark .bp3-select select:hover, -.bp3-dark .bp3-html-select select:active, -.bp3-dark .bp3-select select:active, -.bp3-dark .bp3-html-select select.bp3-active, -.bp3-dark .bp3-select select.bp3-active { - color: #f5f8fa; -} -.bp3-dark .bp3-html-select select:hover, -.bp3-dark .bp3-select select:hover { - background-color: #30404d; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-html-select select:active, -.bp3-dark .bp3-select select:active, -.bp3-dark .bp3-html-select select.bp3-active, -.bp3-dark .bp3-select select.bp3-active { - background-color: #202b33; - background-image: none; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-html-select select:disabled, -.bp3-dark .bp3-select select:disabled, -.bp3-dark .bp3-html-select select.bp3-disabled, -.bp3-dark .bp3-select select.bp3-disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-html-select select:disabled.bp3-active, -.bp3-dark .bp3-select select:disabled.bp3-active, -.bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, -.bp3-dark .bp3-select select.bp3-disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, -.bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head { - background: rgba(16, 22, 26, 0.5); - stroke: #8a9ba8; -} - -.bp3-html-select select:disabled, -.bp3-select select:disabled { - background-color: rgba(206, 217, 224, 0.5); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} - -.bp3-html-select .bp3-icon, -.bp3-select .bp3-icon, -.bp3-select::after { - color: #5c7080; - pointer-events: none; - position: absolute; - right: 7px; - top: 7px; -} -.bp3-html-select .bp3-disabled.bp3-icon, -.bp3-select .bp3-disabled.bp3-icon, -.bp3-disabled.bp3-select::after { - color: rgba(92, 112, 128, 0.6); -} -.bp3-html-select, -.bp3-select { - display: inline-block; - letter-spacing: normal; - position: relative; - vertical-align: middle; -} -.bp3-html-select select::-ms-expand, -.bp3-select select::-ms-expand { - display: none; -} -.bp3-html-select .bp3-icon, -.bp3-select .bp3-icon { - color: #5c7080; -} -.bp3-html-select .bp3-icon:hover, -.bp3-select .bp3-icon:hover { - color: #182026; -} -.bp3-dark .bp3-html-select .bp3-icon, -.bp3-dark .bp3-select .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-html-select .bp3-icon:hover, -.bp3-dark .bp3-select .bp3-icon:hover { - color: #f5f8fa; -} -.bp3-html-select.bp3-large::after, -.bp3-html-select.bp3-large .bp3-icon, -.bp3-select.bp3-large::after, -.bp3-select.bp3-large .bp3-icon { - right: 12px; - top: 12px; -} -.bp3-html-select.bp3-fill, -.bp3-html-select.bp3-fill select, -.bp3-select.bp3-fill, -.bp3-select.bp3-fill select { - width: 100%; -} -.bp3-dark .bp3-html-select option, -.bp3-dark .bp3-select option { - background-color: #30404d; - color: #f5f8fa; -} -.bp3-dark .bp3-html-select option:disabled, -.bp3-dark .bp3-select option:disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-html-select::after, -.bp3-dark .bp3-select::after { - color: #a7b6c2; -} - -.bp3-select::after { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - content: ""; -} -.bp3-running-text table, -table.bp3-html-table { - border-spacing: 0; - font-size: 14px; -} -.bp3-running-text table th, -table.bp3-html-table th, -.bp3-running-text table td, -table.bp3-html-table td { - padding: 11px; - text-align: left; - vertical-align: top; -} -.bp3-running-text table th, -table.bp3-html-table th { - color: #182026; - font-weight: 600; -} - -.bp3-running-text table td, -table.bp3-html-table td { - color: #182026; -} -.bp3-running-text table tbody tr:first-child th, -table.bp3-html-table tbody tr:first-child th, -.bp3-running-text table tbody tr:first-child td, -table.bp3-html-table tbody tr:first-child td, -.bp3-running-text table tfoot tr:first-child th, -table.bp3-html-table tfoot tr:first-child th, -.bp3-running-text table tfoot tr:first-child td, -table.bp3-html-table tfoot tr:first-child td { - -webkit-box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); -} -.bp3-dark .bp3-running-text table th, -.bp3-running-text .bp3-dark table th, -.bp3-dark table.bp3-html-table th { - color: #f5f8fa; -} -.bp3-dark .bp3-running-text table td, -.bp3-running-text .bp3-dark table td, -.bp3-dark table.bp3-html-table td { - color: #f5f8fa; -} -.bp3-dark .bp3-running-text table tbody tr:first-child th, -.bp3-running-text .bp3-dark table tbody tr:first-child th, -.bp3-dark table.bp3-html-table tbody tr:first-child th, -.bp3-dark .bp3-running-text table tbody tr:first-child td, -.bp3-running-text .bp3-dark table tbody tr:first-child td, -.bp3-dark table.bp3-html-table tbody tr:first-child td, -.bp3-dark .bp3-running-text table tfoot tr:first-child th, -.bp3-running-text .bp3-dark table tfoot tr:first-child th, -.bp3-dark table.bp3-html-table tfoot tr:first-child th, -.bp3-dark .bp3-running-text table tfoot tr:first-child td, -.bp3-running-text .bp3-dark table tfoot tr:first-child td, -.bp3-dark table.bp3-html-table tfoot tr:first-child td { - -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15); - box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15); -} - -table.bp3-html-table.bp3-html-table-condensed th, -table.bp3-html-table.bp3-html-table-condensed td, -table.bp3-html-table.bp3-small th, -table.bp3-html-table.bp3-small td { - padding-bottom: 6px; - padding-top: 6px; -} - -table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td { - background: rgba(191, 204, 214, 0.15); -} - -table.bp3-html-table.bp3-html-table-bordered th:not(:first-child) { - -webkit-box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); -} - -table.bp3-html-table.bp3-html-table-bordered tbody tr td, -table.bp3-html-table.bp3-html-table-bordered tfoot tr td { - -webkit-box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); -} -table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child), -table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child) { - -webkit-box-shadow: inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); -} - -table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td { - -webkit-box-shadow: none; - box-shadow: none; -} -table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td:not(:first-child) { - -webkit-box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); - box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); -} - -table.bp3-html-table.bp3-interactive tbody tr:hover td { - background-color: rgba(191, 204, 214, 0.3); - cursor: pointer; -} - -table.bp3-html-table.bp3-interactive tbody tr:active td { - background-color: rgba(191, 204, 214, 0.4); -} - -.bp3-dark table.bp3-html-table { -} -.bp3-dark - table.bp3-html-table.bp3-html-table-striped - tbody - tr:nth-child(odd) - td { - background: rgba(92, 112, 128, 0.15); -} -.bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child) { - -webkit-box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.15); - box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.15); -} -.bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td, -.bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td { - -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15); - box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered - tbody - tr - td:not(:first-child), -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered - tfoot - tr - td:not(:first-child) { - -webkit-box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); - box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td { - -webkit-box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.15); - box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td { - background-color: rgba(92, 112, 128, 0.3); - cursor: pointer; -} -.bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td { - background-color: rgba(92, 112, 128, 0.4); -} -.bp3-key-combo { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.bp3-key-combo > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-key-combo > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-key-combo::before, -.bp3-key-combo > * { - margin-right: 5px; -} -.bp3-key-combo:empty::before, -.bp3-key-combo > :last-child { - margin-right: 0; -} - -.bp3-hotkey-dialog { - padding-bottom: 0; - top: 40px; -} -.bp3-hotkey-dialog .bp3-dialog-body { - margin: 0; - padding: 0; -} -.bp3-hotkey-dialog .bp3-hotkey-label { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -.bp3-hotkey-column { - margin: auto; - max-height: 80vh; - overflow-y: auto; - padding: 30px; -} -.bp3-hotkey-column .bp3-heading { - margin-bottom: 20px; -} -.bp3-hotkey-column .bp3-heading:not(:first-child) { - margin-top: 40px; -} - -.bp3-hotkey { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - margin-left: 0; - margin-right: 0; -} -.bp3-hotkey:not(:last-child) { - margin-bottom: 10px; -} -.bp3-icon { - display: inline-block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - vertical-align: text-bottom; -} -.bp3-icon:not(:empty)::before { - content: "" !important; - content: unset !important; -} -.bp3-icon > svg { - display: block; -} -.bp3-icon > svg:not([fill]) { - fill: currentColor; -} - -.bp3-icon.bp3-intent-primary, -.bp3-icon-standard.bp3-intent-primary, -.bp3-icon-large.bp3-intent-primary { - color: #106ba3; -} -.bp3-dark .bp3-icon.bp3-intent-primary, -.bp3-dark .bp3-icon-standard.bp3-intent-primary, -.bp3-dark .bp3-icon-large.bp3-intent-primary { - color: #48aff0; -} - -.bp3-icon.bp3-intent-success, -.bp3-icon-standard.bp3-intent-success, -.bp3-icon-large.bp3-intent-success { - color: #0d8050; -} -.bp3-dark .bp3-icon.bp3-intent-success, -.bp3-dark .bp3-icon-standard.bp3-intent-success, -.bp3-dark .bp3-icon-large.bp3-intent-success { - color: #3dcc91; -} - -.bp3-icon.bp3-intent-warning, -.bp3-icon-standard.bp3-intent-warning, -.bp3-icon-large.bp3-intent-warning { - color: #bf7326; -} -.bp3-dark .bp3-icon.bp3-intent-warning, -.bp3-dark .bp3-icon-standard.bp3-intent-warning, -.bp3-dark .bp3-icon-large.bp3-intent-warning { - color: #ffb366; -} - -.bp3-icon.bp3-intent-danger, -.bp3-icon-standard.bp3-intent-danger, -.bp3-icon-large.bp3-intent-danger { - color: #c23030; -} -.bp3-dark .bp3-icon.bp3-intent-danger, -.bp3-dark .bp3-icon-standard.bp3-intent-danger, -.bp3-dark .bp3-icon-large.bp3-intent-danger { - color: #ff7373; -} - -span.bp3-icon-standard { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; -} - -span.bp3-icon-large { - font-family: "Icons20", sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; -} - -span.bp3-icon:empty { - font-family: "Icons20"; - font-size: inherit; - font-style: normal; - font-weight: 400; - line-height: 1; -} -span.bp3-icon:empty::before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; -} - -.bp3-icon-add::before { - content: ""; -} - -.bp3-icon-add-column-left::before { - content: ""; -} - -.bp3-icon-add-column-right::before { - content: ""; -} - -.bp3-icon-add-row-bottom::before { - content: ""; -} - -.bp3-icon-add-row-top::before { - content: ""; -} - -.bp3-icon-add-to-artifact::before { - content: ""; -} - -.bp3-icon-add-to-folder::before { - content: ""; -} - -.bp3-icon-airplane::before { - content: ""; -} - -.bp3-icon-align-center::before { - content: ""; -} - -.bp3-icon-align-justify::before { - content: ""; -} - -.bp3-icon-align-left::before { - content: ""; -} - -.bp3-icon-align-right::before { - content: ""; -} - -.bp3-icon-alignment-bottom::before { - content: ""; -} - -.bp3-icon-alignment-horizontal-center::before { - content: ""; -} - -.bp3-icon-alignment-left::before { - content: ""; -} - -.bp3-icon-alignment-right::before { - content: ""; -} - -.bp3-icon-alignment-top::before { - content: ""; -} - -.bp3-icon-alignment-vertical-center::before { - content: ""; -} - -.bp3-icon-annotation::before { - content: ""; -} - -.bp3-icon-application::before { - content: ""; -} - -.bp3-icon-applications::before { - content: ""; -} - -.bp3-icon-archive::before { - content: ""; -} - -.bp3-icon-arrow-bottom-left::before { - content: "↙"; -} - -.bp3-icon-arrow-bottom-right::before { - content: "↘"; -} - -.bp3-icon-arrow-down::before { - content: "↓"; -} - -.bp3-icon-arrow-left::before { - content: "←"; -} - -.bp3-icon-arrow-right::before { - content: "→"; -} - -.bp3-icon-arrow-top-left::before { - content: "↖"; -} - -.bp3-icon-arrow-top-right::before { - content: "↗"; -} - -.bp3-icon-arrow-up::before { - content: "↑"; -} - -.bp3-icon-arrows-horizontal::before { - content: "↔"; -} - -.bp3-icon-arrows-vertical::before { - content: "↕"; -} - -.bp3-icon-asterisk::before { - content: "*"; -} - -.bp3-icon-automatic-updates::before { - content: ""; -} - -.bp3-icon-badge::before { - content: ""; -} - -.bp3-icon-ban-circle::before { - content: ""; -} - -.bp3-icon-bank-account::before { - content: ""; -} - -.bp3-icon-barcode::before { - content: ""; -} - -.bp3-icon-blank::before { - content: ""; -} - -.bp3-icon-blocked-person::before { - content: ""; -} - -.bp3-icon-bold::before { - content: ""; -} - -.bp3-icon-book::before { - content: ""; -} - -.bp3-icon-bookmark::before { - content: ""; -} - -.bp3-icon-box::before { - content: ""; -} - -.bp3-icon-briefcase::before { - content: ""; -} - -.bp3-icon-bring-data::before { - content: ""; -} - -.bp3-icon-build::before { - content: ""; -} - -.bp3-icon-calculator::before { - content: ""; -} - -.bp3-icon-calendar::before { - content: ""; -} - -.bp3-icon-camera::before { - content: ""; -} - -.bp3-icon-caret-down::before { - content: "⌄"; -} - -.bp3-icon-caret-left::before { - content: "〈"; -} - -.bp3-icon-caret-right::before { - content: "〉"; -} - -.bp3-icon-caret-up::before { - content: "⌃"; -} - -.bp3-icon-cell-tower::before { - content: ""; -} - -.bp3-icon-changes::before { - content: ""; -} - -.bp3-icon-chart::before { - content: ""; -} - -.bp3-icon-chat::before { - content: ""; -} - -.bp3-icon-chevron-backward::before { - content: ""; -} - -.bp3-icon-chevron-down::before { - content: ""; -} - -.bp3-icon-chevron-forward::before { - content: ""; -} - -.bp3-icon-chevron-left::before { - content: ""; -} - -.bp3-icon-chevron-right::before { - content: ""; -} - -.bp3-icon-chevron-up::before { - content: ""; -} - -.bp3-icon-circle::before { - content: ""; -} - -.bp3-icon-circle-arrow-down::before { - content: ""; -} - -.bp3-icon-circle-arrow-left::before { - content: ""; -} - -.bp3-icon-circle-arrow-right::before { - content: ""; -} - -.bp3-icon-circle-arrow-up::before { - content: ""; -} - -.bp3-icon-citation::before { - content: ""; -} - -.bp3-icon-clean::before { - content: ""; -} - -.bp3-icon-clipboard::before { - content: ""; -} - -.bp3-icon-cloud::before { - content: "☁"; -} - -.bp3-icon-cloud-download::before { - content: ""; -} - -.bp3-icon-cloud-upload::before { - content: ""; -} - -.bp3-icon-code::before { - content: ""; -} - -.bp3-icon-code-block::before { - content: ""; -} - -.bp3-icon-cog::before { - content: ""; -} - -.bp3-icon-collapse-all::before { - content: ""; -} - -.bp3-icon-column-layout::before { - content: ""; -} - -.bp3-icon-comment::before { - content: ""; -} - -.bp3-icon-comparison::before { - content: ""; -} - -.bp3-icon-compass::before { - content: ""; -} - -.bp3-icon-compressed::before { - content: ""; -} - -.bp3-icon-confirm::before { - content: ""; -} - -.bp3-icon-console::before { - content: ""; -} - -.bp3-icon-contrast::before { - content: ""; -} - -.bp3-icon-control::before { - content: ""; -} - -.bp3-icon-credit-card::before { - content: ""; -} - -.bp3-icon-cross::before { - content: "✗"; -} - -.bp3-icon-crown::before { - content: ""; -} - -.bp3-icon-cube::before { - content: ""; -} - -.bp3-icon-cube-add::before { - content: ""; -} - -.bp3-icon-cube-remove::before { - content: ""; -} - -.bp3-icon-curved-range-chart::before { - content: ""; -} - -.bp3-icon-cut::before { - content: ""; -} - -.bp3-icon-dashboard::before { - content: ""; -} - -.bp3-icon-data-lineage::before { - content: ""; -} - -.bp3-icon-database::before { - content: ""; -} - -.bp3-icon-delete::before { - content: ""; -} - -.bp3-icon-delta::before { - content: "Δ"; -} - -.bp3-icon-derive-column::before { - content: ""; -} - -.bp3-icon-desktop::before { - content: ""; -} - -.bp3-icon-diagnosis::before { - content: ""; -} - -.bp3-icon-diagram-tree::before { - content: ""; -} - -.bp3-icon-direction-left::before { - content: ""; -} - -.bp3-icon-direction-right::before { - content: ""; -} - -.bp3-icon-disable::before { - content: ""; -} - -.bp3-icon-document::before { - content: ""; -} - -.bp3-icon-document-open::before { - content: ""; -} - -.bp3-icon-document-share::before { - content: ""; -} - -.bp3-icon-dollar::before { - content: "$"; -} - -.bp3-icon-dot::before { - content: "•"; -} - -.bp3-icon-double-caret-horizontal::before { - content: ""; -} - -.bp3-icon-double-caret-vertical::before { - content: ""; -} - -.bp3-icon-double-chevron-down::before { - content: ""; -} - -.bp3-icon-double-chevron-left::before { - content: ""; -} - -.bp3-icon-double-chevron-right::before { - content: ""; -} - -.bp3-icon-double-chevron-up::before { - content: ""; -} - -.bp3-icon-doughnut-chart::before { - content: ""; -} - -.bp3-icon-download::before { - content: ""; -} - -.bp3-icon-drag-handle-horizontal::before { - content: ""; -} - -.bp3-icon-drag-handle-vertical::before { - content: ""; -} - -.bp3-icon-draw::before { - content: ""; -} - -.bp3-icon-drive-time::before { - content: ""; -} - -.bp3-icon-duplicate::before { - content: ""; -} - -.bp3-icon-edit::before { - content: "✎"; -} - -.bp3-icon-eject::before { - content: "⏏"; -} - -.bp3-icon-endorsed::before { - content: ""; -} - -.bp3-icon-envelope::before { - content: "✉"; -} - -.bp3-icon-equals::before { - content: ""; -} - -.bp3-icon-eraser::before { - content: ""; -} - -.bp3-icon-error::before { - content: ""; -} - -.bp3-icon-euro::before { - content: "€"; -} - -.bp3-icon-exchange::before { - content: ""; -} - -.bp3-icon-exclude-row::before { - content: ""; -} - -.bp3-icon-expand-all::before { - content: ""; -} - -.bp3-icon-export::before { - content: ""; -} - -.bp3-icon-eye-off::before { - content: ""; -} - -.bp3-icon-eye-on::before { - content: ""; -} - -.bp3-icon-eye-open::before { - content: ""; -} - -.bp3-icon-fast-backward::before { - content: ""; -} - -.bp3-icon-fast-forward::before { - content: ""; -} - -.bp3-icon-feed::before { - content: ""; -} - -.bp3-icon-feed-subscribed::before { - content: ""; -} - -.bp3-icon-film::before { - content: ""; -} - -.bp3-icon-filter::before { - content: ""; -} - -.bp3-icon-filter-keep::before { - content: ""; -} - -.bp3-icon-filter-list::before { - content: ""; -} - -.bp3-icon-filter-open::before { - content: ""; -} - -.bp3-icon-filter-remove::before { - content: ""; -} - -.bp3-icon-flag::before { - content: "⚑"; -} - -.bp3-icon-flame::before { - content: ""; -} - -.bp3-icon-flash::before { - content: ""; -} - -.bp3-icon-floppy-disk::before { - content: ""; -} - -.bp3-icon-flow-branch::before { - content: ""; -} - -.bp3-icon-flow-end::before { - content: ""; -} - -.bp3-icon-flow-linear::before { - content: ""; -} - -.bp3-icon-flow-review::before { - content: ""; -} - -.bp3-icon-flow-review-branch::before { - content: ""; -} - -.bp3-icon-flows::before { - content: ""; -} - -.bp3-icon-folder-close::before { - content: ""; -} - -.bp3-icon-folder-new::before { - content: ""; -} - -.bp3-icon-folder-open::before { - content: ""; -} - -.bp3-icon-folder-shared::before { - content: ""; -} - -.bp3-icon-folder-shared-open::before { - content: ""; -} - -.bp3-icon-follower::before { - content: ""; -} - -.bp3-icon-following::before { - content: ""; -} - -.bp3-icon-font::before { - content: ""; -} - -.bp3-icon-fork::before { - content: ""; -} - -.bp3-icon-form::before { - content: ""; -} - -.bp3-icon-full-circle::before { - content: ""; -} - -.bp3-icon-full-stacked-chart::before { - content: ""; -} - -.bp3-icon-fullscreen::before { - content: ""; -} - -.bp3-icon-function::before { - content: ""; -} - -.bp3-icon-gantt-chart::before { - content: ""; -} - -.bp3-icon-geolocation::before { - content: ""; -} - -.bp3-icon-geosearch::before { - content: ""; -} - -.bp3-icon-git-branch::before { - content: ""; -} - -.bp3-icon-git-commit::before { - content: ""; -} - -.bp3-icon-git-merge::before { - content: ""; -} - -.bp3-icon-git-new-branch::before { - content: ""; -} - -.bp3-icon-git-pull::before { - content: ""; -} - -.bp3-icon-git-push::before { - content: ""; -} - -.bp3-icon-git-repo::before { - content: ""; -} - -.bp3-icon-glass::before { - content: ""; -} - -.bp3-icon-globe::before { - content: ""; -} - -.bp3-icon-globe-network::before { - content: ""; -} - -.bp3-icon-graph::before { - content: ""; -} - -.bp3-icon-graph-remove::before { - content: ""; -} - -.bp3-icon-greater-than::before { - content: ""; -} - -.bp3-icon-greater-than-or-equal-to::before { - content: ""; -} - -.bp3-icon-grid::before { - content: ""; -} - -.bp3-icon-grid-view::before { - content: ""; -} - -.bp3-icon-group-objects::before { - content: ""; -} - -.bp3-icon-grouped-bar-chart::before { - content: ""; -} - -.bp3-icon-hand::before { - content: ""; -} - -.bp3-icon-hand-down::before { - content: ""; -} - -.bp3-icon-hand-left::before { - content: ""; -} - -.bp3-icon-hand-right::before { - content: ""; -} - -.bp3-icon-hand-up::before { - content: ""; -} - -.bp3-icon-header::before { - content: ""; -} - -.bp3-icon-header-one::before { - content: ""; -} - -.bp3-icon-header-two::before { - content: ""; -} - -.bp3-icon-headset::before { - content: ""; -} - -.bp3-icon-heart::before { - content: "♥"; -} - -.bp3-icon-heart-broken::before { - content: ""; -} - -.bp3-icon-heat-grid::before { - content: ""; -} - -.bp3-icon-heatmap::before { - content: ""; -} - -.bp3-icon-help::before { - content: "?"; -} - -.bp3-icon-helper-management::before { - content: ""; -} - -.bp3-icon-highlight::before { - content: ""; -} - -.bp3-icon-history::before { - content: ""; -} - -.bp3-icon-home::before { - content: "⌂"; -} - -.bp3-icon-horizontal-bar-chart::before { - content: ""; -} - -.bp3-icon-horizontal-bar-chart-asc::before { - content: ""; -} - -.bp3-icon-horizontal-bar-chart-desc::before { - content: ""; -} - -.bp3-icon-horizontal-distribution::before { - content: ""; -} - -.bp3-icon-id-number::before { - content: ""; -} - -.bp3-icon-image-rotate-left::before { - content: ""; -} - -.bp3-icon-image-rotate-right::before { - content: ""; -} - -.bp3-icon-import::before { - content: ""; -} - -.bp3-icon-inbox::before { - content: ""; -} - -.bp3-icon-inbox-filtered::before { - content: ""; -} - -.bp3-icon-inbox-geo::before { - content: ""; -} - -.bp3-icon-inbox-search::before { - content: ""; -} - -.bp3-icon-inbox-update::before { - content: ""; -} - -.bp3-icon-info-sign::before { - content: "ℹ"; -} - -.bp3-icon-inheritance::before { - content: ""; -} - -.bp3-icon-inner-join::before { - content: ""; -} - -.bp3-icon-insert::before { - content: ""; -} - -.bp3-icon-intersection::before { - content: ""; -} - -.bp3-icon-ip-address::before { - content: ""; -} - -.bp3-icon-issue::before { - content: ""; -} - -.bp3-icon-issue-closed::before { - content: ""; -} - -.bp3-icon-issue-new::before { - content: ""; -} - -.bp3-icon-italic::before { - content: ""; -} - -.bp3-icon-join-table::before { - content: ""; -} - -.bp3-icon-key::before { - content: ""; -} - -.bp3-icon-key-backspace::before { - content: ""; -} - -.bp3-icon-key-command::before { - content: ""; -} - -.bp3-icon-key-control::before { - content: ""; -} - -.bp3-icon-key-delete::before { - content: ""; -} - -.bp3-icon-key-enter::before { - content: ""; -} - -.bp3-icon-key-escape::before { - content: ""; -} - -.bp3-icon-key-option::before { - content: ""; -} - -.bp3-icon-key-shift::before { - content: ""; -} - -.bp3-icon-key-tab::before { - content: ""; -} - -.bp3-icon-known-vehicle::before { - content: ""; -} - -.bp3-icon-lab-test::before { - content: ""; -} - -.bp3-icon-label::before { - content: ""; -} - -.bp3-icon-layer::before { - content: ""; -} - -.bp3-icon-layers::before { - content: ""; -} - -.bp3-icon-layout::before { - content: ""; -} - -.bp3-icon-layout-auto::before { - content: ""; -} - -.bp3-icon-layout-balloon::before { - content: ""; -} - -.bp3-icon-layout-circle::before { - content: ""; -} - -.bp3-icon-layout-grid::before { - content: ""; -} - -.bp3-icon-layout-group-by::before { - content: ""; -} - -.bp3-icon-layout-hierarchy::before { - content: ""; -} - -.bp3-icon-layout-linear::before { - content: ""; -} - -.bp3-icon-layout-skew-grid::before { - content: ""; -} - -.bp3-icon-layout-sorted-clusters::before { - content: ""; -} - -.bp3-icon-learning::before { - content: ""; -} - -.bp3-icon-left-join::before { - content: ""; -} - -.bp3-icon-less-than::before { - content: ""; -} - -.bp3-icon-less-than-or-equal-to::before { - content: ""; -} - -.bp3-icon-lifesaver::before { - content: ""; -} - -.bp3-icon-lightbulb::before { - content: ""; -} - -.bp3-icon-link::before { - content: ""; -} - -.bp3-icon-list::before { - content: "☰"; -} - -.bp3-icon-list-columns::before { - content: ""; -} - -.bp3-icon-list-detail-view::before { - content: ""; -} - -.bp3-icon-locate::before { - content: ""; -} - -.bp3-icon-lock::before { - content: ""; -} - -.bp3-icon-log-in::before { - content: ""; -} - -.bp3-icon-log-out::before { - content: ""; -} - -.bp3-icon-manual::before { - content: ""; -} - -.bp3-icon-manually-entered-data::before { - content: ""; -} - -.bp3-icon-map::before { - content: ""; -} - -.bp3-icon-map-create::before { - content: ""; -} - -.bp3-icon-map-marker::before { - content: ""; -} - -.bp3-icon-maximize::before { - content: ""; -} - -.bp3-icon-media::before { - content: ""; -} - -.bp3-icon-menu::before { - content: ""; -} - -.bp3-icon-menu-closed::before { - content: ""; -} - -.bp3-icon-menu-open::before { - content: ""; -} - -.bp3-icon-merge-columns::before { - content: ""; -} - -.bp3-icon-merge-links::before { - content: ""; -} - -.bp3-icon-minimize::before { - content: ""; -} - -.bp3-icon-minus::before { - content: "−"; -} - -.bp3-icon-mobile-phone::before { - content: ""; -} - -.bp3-icon-mobile-video::before { - content: ""; -} - -.bp3-icon-moon::before { - content: ""; -} - -.bp3-icon-more::before { - content: ""; -} - -.bp3-icon-mountain::before { - content: ""; -} - -.bp3-icon-move::before { - content: ""; -} - -.bp3-icon-mugshot::before { - content: ""; -} - -.bp3-icon-multi-select::before { - content: ""; -} - -.bp3-icon-music::before { - content: ""; -} - -.bp3-icon-new-drawing::before { - content: ""; -} - -.bp3-icon-new-grid-item::before { - content: ""; -} - -.bp3-icon-new-layer::before { - content: ""; -} - -.bp3-icon-new-layers::before { - content: ""; -} - -.bp3-icon-new-link::before { - content: ""; -} - -.bp3-icon-new-object::before { - content: ""; -} - -.bp3-icon-new-person::before { - content: ""; -} - -.bp3-icon-new-prescription::before { - content: ""; -} - -.bp3-icon-new-text-box::before { - content: ""; -} - -.bp3-icon-ninja::before { - content: ""; -} - -.bp3-icon-not-equal-to::before { - content: ""; -} - -.bp3-icon-notifications::before { - content: ""; -} - -.bp3-icon-notifications-updated::before { - content: ""; -} - -.bp3-icon-numbered-list::before { - content: ""; -} - -.bp3-icon-numerical::before { - content: ""; -} - -.bp3-icon-office::before { - content: ""; -} - -.bp3-icon-offline::before { - content: ""; -} - -.bp3-icon-oil-field::before { - content: ""; -} - -.bp3-icon-one-column::before { - content: ""; -} - -.bp3-icon-outdated::before { - content: ""; -} - -.bp3-icon-page-layout::before { - content: ""; -} - -.bp3-icon-panel-stats::before { - content: ""; -} - -.bp3-icon-panel-table::before { - content: ""; -} - -.bp3-icon-paperclip::before { - content: ""; -} - -.bp3-icon-paragraph::before { - content: ""; -} - -.bp3-icon-path::before { - content: ""; -} - -.bp3-icon-path-search::before { - content: ""; -} - -.bp3-icon-pause::before { - content: ""; -} - -.bp3-icon-people::before { - content: ""; -} - -.bp3-icon-percentage::before { - content: ""; -} - -.bp3-icon-person::before { - content: ""; -} - -.bp3-icon-phone::before { - content: "☎"; -} - -.bp3-icon-pie-chart::before { - content: ""; -} - -.bp3-icon-pin::before { - content: ""; -} - -.bp3-icon-pivot::before { - content: ""; -} - -.bp3-icon-pivot-table::before { - content: ""; -} - -.bp3-icon-play::before { - content: ""; -} - -.bp3-icon-plus::before { - content: "+"; -} - -.bp3-icon-polygon-filter::before { - content: ""; -} - -.bp3-icon-power::before { - content: ""; -} - -.bp3-icon-predictive-analysis::before { - content: ""; -} - -.bp3-icon-prescription::before { - content: ""; -} - -.bp3-icon-presentation::before { - content: ""; -} - -.bp3-icon-print::before { - content: "⎙"; -} - -.bp3-icon-projects::before { - content: ""; -} - -.bp3-icon-properties::before { - content: ""; -} - -.bp3-icon-property::before { - content: ""; -} - -.bp3-icon-publish-function::before { - content: ""; -} - -.bp3-icon-pulse::before { - content: ""; -} - -.bp3-icon-random::before { - content: ""; -} - -.bp3-icon-record::before { - content: ""; -} - -.bp3-icon-redo::before { - content: ""; -} - -.bp3-icon-refresh::before { - content: ""; -} - -.bp3-icon-regression-chart::before { - content: ""; -} - -.bp3-icon-remove::before { - content: ""; -} - -.bp3-icon-remove-column::before { - content: ""; -} - -.bp3-icon-remove-column-left::before { - content: ""; -} - -.bp3-icon-remove-column-right::before { - content: ""; -} - -.bp3-icon-remove-row-bottom::before { - content: ""; -} - -.bp3-icon-remove-row-top::before { - content: ""; -} - -.bp3-icon-repeat::before { - content: ""; -} - -.bp3-icon-reset::before { - content: ""; -} - -.bp3-icon-resolve::before { - content: ""; -} - -.bp3-icon-rig::before { - content: ""; -} - -.bp3-icon-right-join::before { - content: ""; -} - -.bp3-icon-ring::before { - content: ""; -} - -.bp3-icon-rotate-document::before { - content: ""; -} - -.bp3-icon-rotate-page::before { - content: ""; -} - -.bp3-icon-satellite::before { - content: ""; -} - -.bp3-icon-saved::before { - content: ""; -} - -.bp3-icon-scatter-plot::before { - content: ""; -} - -.bp3-icon-search::before { - content: ""; -} - -.bp3-icon-search-around::before { - content: ""; -} - -.bp3-icon-search-template::before { - content: ""; -} - -.bp3-icon-search-text::before { - content: ""; -} - -.bp3-icon-segmented-control::before { - content: ""; -} - -.bp3-icon-select::before { - content: ""; -} - -.bp3-icon-selection::before { - content: "⦿"; -} - -.bp3-icon-send-to::before { - content: ""; -} - -.bp3-icon-send-to-graph::before { - content: ""; -} - -.bp3-icon-send-to-map::before { - content: ""; -} - -.bp3-icon-series-add::before { - content: ""; -} - -.bp3-icon-series-configuration::before { - content: ""; -} - -.bp3-icon-series-derived::before { - content: ""; -} - -.bp3-icon-series-filtered::before { - content: ""; -} - -.bp3-icon-series-search::before { - content: ""; -} - -.bp3-icon-settings::before { - content: ""; -} - -.bp3-icon-share::before { - content: ""; -} - -.bp3-icon-shield::before { - content: ""; -} - -.bp3-icon-shop::before { - content: ""; -} - -.bp3-icon-shopping-cart::before { - content: ""; -} - -.bp3-icon-signal-search::before { - content: ""; -} - -.bp3-icon-sim-card::before { - content: ""; -} - -.bp3-icon-slash::before { - content: ""; -} - -.bp3-icon-small-cross::before { - content: ""; -} - -.bp3-icon-small-minus::before { - content: ""; -} - -.bp3-icon-small-plus::before { - content: ""; -} - -.bp3-icon-small-tick::before { - content: ""; -} - -.bp3-icon-snowflake::before { - content: ""; -} - -.bp3-icon-social-media::before { - content: ""; -} - -.bp3-icon-sort::before { - content: ""; -} - -.bp3-icon-sort-alphabetical::before { - content: ""; -} - -.bp3-icon-sort-alphabetical-desc::before { - content: ""; -} - -.bp3-icon-sort-asc::before { - content: ""; -} - -.bp3-icon-sort-desc::before { - content: ""; -} - -.bp3-icon-sort-numerical::before { - content: ""; -} - -.bp3-icon-sort-numerical-desc::before { - content: ""; -} - -.bp3-icon-split-columns::before { - content: ""; -} - -.bp3-icon-square::before { - content: ""; -} - -.bp3-icon-stacked-chart::before { - content: ""; -} - -.bp3-icon-star::before { - content: "★"; -} - -.bp3-icon-star-empty::before { - content: "☆"; -} - -.bp3-icon-step-backward::before { - content: ""; -} - -.bp3-icon-step-chart::before { - content: ""; -} - -.bp3-icon-step-forward::before { - content: ""; -} - -.bp3-icon-stop::before { - content: ""; -} - -.bp3-icon-stopwatch::before { - content: ""; -} - -.bp3-icon-strikethrough::before { - content: ""; -} - -.bp3-icon-style::before { - content: ""; -} - -.bp3-icon-swap-horizontal::before { - content: ""; -} - -.bp3-icon-swap-vertical::before { - content: ""; -} - -.bp3-icon-symbol-circle::before { - content: ""; -} - -.bp3-icon-symbol-cross::before { - content: ""; -} - -.bp3-icon-symbol-diamond::before { - content: ""; -} - -.bp3-icon-symbol-square::before { - content: ""; -} - -.bp3-icon-symbol-triangle-down::before { - content: ""; -} - -.bp3-icon-symbol-triangle-up::before { - content: ""; -} - -.bp3-icon-tag::before { - content: ""; -} - -.bp3-icon-take-action::before { - content: ""; -} - -.bp3-icon-taxi::before { - content: ""; -} - -.bp3-icon-text-highlight::before { - content: ""; -} - -.bp3-icon-th::before { - content: ""; -} - -.bp3-icon-th-derived::before { - content: ""; -} - -.bp3-icon-th-disconnect::before { - content: ""; -} - -.bp3-icon-th-filtered::before { - content: ""; -} - -.bp3-icon-th-list::before { - content: ""; -} - -.bp3-icon-thumbs-down::before { - content: ""; -} - -.bp3-icon-thumbs-up::before { - content: ""; -} - -.bp3-icon-tick::before { - content: "✓"; -} - -.bp3-icon-tick-circle::before { - content: ""; -} - -.bp3-icon-time::before { - content: "⏲"; -} - -.bp3-icon-timeline-area-chart::before { - content: ""; -} - -.bp3-icon-timeline-bar-chart::before { - content: ""; -} - -.bp3-icon-timeline-events::before { - content: ""; -} - -.bp3-icon-timeline-line-chart::before { - content: ""; -} - -.bp3-icon-tint::before { - content: ""; -} - -.bp3-icon-torch::before { - content: ""; -} - -.bp3-icon-tractor::before { - content: ""; -} - -.bp3-icon-train::before { - content: ""; -} - -.bp3-icon-translate::before { - content: ""; -} - -.bp3-icon-trash::before { - content: ""; -} - -.bp3-icon-tree::before { - content: ""; -} - -.bp3-icon-trending-down::before { - content: ""; -} - -.bp3-icon-trending-up::before { - content: ""; -} - -.bp3-icon-truck::before { - content: ""; -} - -.bp3-icon-two-columns::before { - content: ""; -} - -.bp3-icon-unarchive::before { - content: ""; -} - -.bp3-icon-underline::before { - content: "⎁"; -} - -.bp3-icon-undo::before { - content: "⎌"; -} - -.bp3-icon-ungroup-objects::before { - content: ""; -} - -.bp3-icon-unknown-vehicle::before { - content: ""; -} - -.bp3-icon-unlock::before { - content: ""; -} - -.bp3-icon-unpin::before { - content: ""; -} - -.bp3-icon-unresolve::before { - content: ""; -} - -.bp3-icon-updated::before { - content: ""; -} - -.bp3-icon-upload::before { - content: ""; -} - -.bp3-icon-user::before { - content: ""; -} - -.bp3-icon-variable::before { - content: ""; -} - -.bp3-icon-vertical-bar-chart-asc::before { - content: ""; -} - -.bp3-icon-vertical-bar-chart-desc::before { - content: ""; -} - -.bp3-icon-vertical-distribution::before { - content: ""; -} - -.bp3-icon-video::before { - content: ""; -} - -.bp3-icon-volume-down::before { - content: ""; -} - -.bp3-icon-volume-off::before { - content: ""; -} - -.bp3-icon-volume-up::before { - content: ""; -} - -.bp3-icon-walk::before { - content: ""; -} - -.bp3-icon-warning-sign::before { - content: ""; -} - -.bp3-icon-waterfall-chart::before { - content: ""; -} - -.bp3-icon-widget::before { - content: ""; -} - -.bp3-icon-widget-button::before { - content: ""; -} - -.bp3-icon-widget-footer::before { - content: ""; -} - -.bp3-icon-widget-header::before { - content: ""; -} - -.bp3-icon-wrench::before { - content: ""; -} - -.bp3-icon-zoom-in::before { - content: ""; -} - -.bp3-icon-zoom-out::before { - content: ""; -} - -.bp3-icon-zoom-to-fit::before { - content: ""; -} -.bp3-submenu > .bp3-popover-wrapper { - display: block; -} - -.bp3-submenu .bp3-popover-target { - display: block; -} -.bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item { -} - -.bp3-submenu.bp3-popover { - -webkit-box-shadow: none; - box-shadow: none; - padding: 0 5px; -} -.bp3-submenu.bp3-popover > .bp3-popover-content { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-submenu.bp3-popover, -.bp3-submenu.bp3-popover.bp3-dark { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, -.bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-menu { - background: #ffffff; - border-radius: 3px; - color: #182026; - list-style: none; - margin: 0; - min-width: 180px; - padding: 5px; - text-align: left; -} - -.bp3-menu-divider { - border-top: 1px solid rgba(16, 22, 26, 0.15); - display: block; - margin: 5px; -} -.bp3-dark .bp3-menu-divider { - border-top-color: rgba(255, 255, 255, 0.15); -} - -.bp3-menu-item { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - border-radius: 2px; - color: inherit; - line-height: 20px; - padding: 5px 7px; - text-decoration: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-menu-item > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-menu-item > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-menu-item::before, -.bp3-menu-item > * { - margin-right: 7px; -} -.bp3-menu-item:empty::before, -.bp3-menu-item > :last-child { - margin-right: 0; -} -.bp3-menu-item > .bp3-fill { - word-break: break-word; -} -.bp3-menu-item:hover, -.bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - background-color: rgba(167, 182, 194, 0.3); - cursor: pointer; - text-decoration: none; -} -.bp3-menu-item.bp3-disabled { - background-color: inherit; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-menu-item { - color: inherit; -} -.bp3-dark .bp3-menu-item:hover, -.bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, -.bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - background-color: rgba(138, 155, 168, 0.15); - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-disabled { - background-color: inherit; - color: rgba(167, 182, 194, 0.6); -} -.bp3-menu-item.bp3-intent-primary { - color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-primary::before, -.bp3-menu-item.bp3-intent-primary::after, -.bp3-menu-item.bp3-intent-primary .bp3-menu-item-label { - color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-menu-item.bp3-intent-primary.bp3-active { - background-color: #137cbd; -} -.bp3-menu-item.bp3-intent-primary:active { - background-color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-menu-item.bp3-intent-primary:hover::before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::before, -.bp3-menu-item.bp3-intent-primary:hover::after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::after, -.bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary:active, -.bp3-menu-item.bp3-intent-primary:active::before, -.bp3-menu-item.bp3-intent-primary:active::after, -.bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-menu-item.bp3-intent-primary.bp3-active::before, -.bp3-menu-item.bp3-intent-primary.bp3-active::after, -.bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-menu-item.bp3-intent-success { - color: #0d8050; -} -.bp3-menu-item.bp3-intent-success .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-success::before, -.bp3-menu-item.bp3-intent-success::after, -.bp3-menu-item.bp3-intent-success .bp3-menu-item-label { - color: #0d8050; -} -.bp3-menu-item.bp3-intent-success:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-menu-item.bp3-intent-success.bp3-active { - background-color: #0f9960; -} -.bp3-menu-item.bp3-intent-success:active { - background-color: #0d8050; -} -.bp3-menu-item.bp3-intent-success:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-menu-item.bp3-intent-success:hover::before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::before, -.bp3-menu-item.bp3-intent-success:hover::after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::after, -.bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success:active, -.bp3-menu-item.bp3-intent-success:active::before, -.bp3-menu-item.bp3-intent-success:active::after, -.bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-menu-item.bp3-intent-success.bp3-active::before, -.bp3-menu-item.bp3-intent-success.bp3-active::after, -.bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-menu-item.bp3-intent-warning { - color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-warning::before, -.bp3-menu-item.bp3-intent-warning::after, -.bp3-menu-item.bp3-intent-warning .bp3-menu-item-label { - color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-menu-item.bp3-intent-warning.bp3-active { - background-color: #d9822b; -} -.bp3-menu-item.bp3-intent-warning:active { - background-color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-menu-item.bp3-intent-warning:hover::before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::before, -.bp3-menu-item.bp3-intent-warning:hover::after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::after, -.bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning:active, -.bp3-menu-item.bp3-intent-warning:active::before, -.bp3-menu-item.bp3-intent-warning:active::after, -.bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-menu-item.bp3-intent-warning.bp3-active::before, -.bp3-menu-item.bp3-intent-warning.bp3-active::after, -.bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-menu-item.bp3-intent-danger { - color: #c23030; -} -.bp3-menu-item.bp3-intent-danger .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-danger::before, -.bp3-menu-item.bp3-intent-danger::after, -.bp3-menu-item.bp3-intent-danger .bp3-menu-item-label { - color: #c23030; -} -.bp3-menu-item.bp3-intent-danger:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-menu-item.bp3-intent-danger.bp3-active { - background-color: #db3737; -} -.bp3-menu-item.bp3-intent-danger:active { - background-color: #c23030; -} -.bp3-menu-item.bp3-intent-danger:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-menu-item.bp3-intent-danger:hover::before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::before, -.bp3-menu-item.bp3-intent-danger:hover::after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::after, -.bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger:active, -.bp3-menu-item.bp3-intent-danger:active::before, -.bp3-menu-item.bp3-intent-danger:active::after, -.bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-menu-item.bp3-intent-danger.bp3-active::before, -.bp3-menu-item.bp3-intent-danger.bp3-active::after, -.bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-menu-item::before { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - margin-right: 7px; -} -.bp3-menu-item::before, -.bp3-menu-item > .bp3-icon { - color: #5c7080; - margin-top: 2px; -} -.bp3-menu-item .bp3-menu-item-label { - color: #5c7080; -} -.bp3-menu-item:hover, -.bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - color: inherit; -} -.bp3-menu-item.bp3-active, -.bp3-menu-item:active { - background-color: rgba(115, 134, 148, 0.3); -} -.bp3-menu-item.bp3-disabled { - background-color: inherit !important; - color: rgba(92, 112, 128, 0.6) !important; - cursor: not-allowed !important; - outline: none !important; -} -.bp3-menu-item.bp3-disabled::before, -.bp3-menu-item.bp3-disabled > .bp3-icon, -.bp3-menu-item.bp3-disabled .bp3-menu-item-label { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-large .bp3-menu-item { - font-size: 16px; - line-height: 22px; - padding: 9px 7px; -} -.bp3-large .bp3-menu-item .bp3-icon { - margin-top: 3px; -} -.bp3-large .bp3-menu-item::before { - font-family: "Icons20", sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - margin-right: 10px; - margin-top: 1px; -} - -button.bp3-menu-item { - background: none; - border: none; - text-align: left; - width: 100%; -} -.bp3-menu-header { - border-top: 1px solid rgba(16, 22, 26, 0.15); - display: block; - margin: 5px; - cursor: default; - padding-left: 2px; -} -.bp3-dark .bp3-menu-header { - border-top-color: rgba(255, 255, 255, 0.15); -} -.bp3-menu-header:first-of-type { - border-top: none; -} -.bp3-menu-header > h6 { - color: #182026; - font-weight: 600; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - line-height: 17px; - margin: 0; - padding: 10px 7px 0 1px; -} -.bp3-dark .bp3-menu-header > h6 { - color: #f5f8fa; -} -.bp3-menu-header:first-of-type > h6 { - padding-top: 0; -} -.bp3-large .bp3-menu-header > h6 { - font-size: 18px; - padding-bottom: 5px; - padding-top: 15px; -} -.bp3-large .bp3-menu-header:first-of-type > h6 { - padding-top: 0; -} - -.bp3-dark .bp3-menu { - background: #30404d; - color: #f5f8fa; -} - -.bp3-dark .bp3-menu-item { -} -.bp3-dark .bp3-menu-item.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary::before, -.bp3-dark .bp3-menu-item.bp3-intent-primary::after, -.bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label { - color: #48aff0; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active { - background-color: #137cbd; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary:active { - background-color: #106ba3; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::before, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item::after, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active::after, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-dark .bp3-menu-item.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-success::before, -.bp3-dark .bp3-menu-item.bp3-intent-success::after, -.bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label { - color: #3dcc91; -} -.bp3-dark .bp3-menu-item.bp3-intent-success:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active { - background-color: #0f9960; -} -.bp3-dark .bp3-menu-item.bp3-intent-success:active { - background-color: #0d8050; -} -.bp3-dark .bp3-menu-item.bp3-intent-success:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::before, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item::after, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success:active, -.bp3-dark .bp3-menu-item.bp3-intent-success:active::before, -.bp3-dark .bp3-menu-item.bp3-intent-success:active::after, -.bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning::before, -.bp3-dark .bp3-menu-item.bp3-intent-warning::after, -.bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label { - color: #ffb366; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active { - background-color: #d9822b; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning:active { - background-color: #bf7326; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::before, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item::after, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active::after, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger::before, -.bp3-dark .bp3-menu-item.bp3-intent-danger::after, -.bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label { - color: #ff7373; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active { - background-color: #db3737; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger:active { - background-color: #c23030; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::before, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item::after, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active::after, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label { - color: #ffffff; -} -.bp3-dark .bp3-menu-item::before, -.bp3-dark .bp3-menu-item > .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-menu-item .bp3-menu-item-label { - color: #a7b6c2; -} -.bp3-dark .bp3-menu-item.bp3-active, -.bp3-dark .bp3-menu-item:active { - background-color: rgba(138, 155, 168, 0.3); -} -.bp3-dark .bp3-menu-item.bp3-disabled { - color: rgba(167, 182, 194, 0.6) !important; -} -.bp3-dark .bp3-menu-item.bp3-disabled::before, -.bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon, -.bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label { - color: rgba(167, 182, 194, 0.6) !important; -} - -.bp3-dark .bp3-menu-divider, -.bp3-dark .bp3-menu-header { - border-color: rgba(255, 255, 255, 0.15); -} - -.bp3-dark .bp3-menu-header > h6 { - color: #f5f8fa; -} - -.bp3-label .bp3-menu { - margin-top: 5px; -} -.bp3-navbar { - background-color: #ffffff; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - height: 50px; - padding: 0 15px; - position: relative; - width: 100%; - z-index: 10; -} -.bp3-navbar.bp3-dark, -.bp3-dark .bp3-navbar { - background-color: #394b59; -} -.bp3-navbar.bp3-dark { - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-navbar { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-navbar.bp3-fixed-top { - left: 0; - position: fixed; - right: 0; - top: 0; -} - -.bp3-navbar-heading { - font-size: 16px; - margin-right: 15px; -} - -.bp3-navbar-group { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 50px; -} -.bp3-navbar-group.bp3-align-left { - float: left; -} -.bp3-navbar-group.bp3-align-right { - float: right; -} - -.bp3-navbar-divider { - border-left: 1px solid rgba(16, 22, 26, 0.15); - height: 20px; - margin: 0 10px; -} -.bp3-dark .bp3-navbar-divider { - border-left-color: rgba(255, 255, 255, 0.15); -} -.bp3-non-ideal-state { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 100%; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - text-align: center; - width: 100%; -} -.bp3-non-ideal-state > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-non-ideal-state > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-non-ideal-state::before, -.bp3-non-ideal-state > * { - margin-bottom: 20px; -} -.bp3-non-ideal-state:empty::before, -.bp3-non-ideal-state > :last-child { - margin-bottom: 0; -} -.bp3-non-ideal-state > * { - max-width: 400px; -} - -.bp3-non-ideal-state-visual { - color: rgba(92, 112, 128, 0.6); - font-size: 60px; -} -.bp3-dark .bp3-non-ideal-state-visual { - color: rgba(167, 182, 194, 0.6); -} - -.bp3-overflow-list { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - min-width: 0; -} - -.bp3-overflow-list-spacer { - -ms-flex-negative: 1; - flex-shrink: 1; - width: 1px; -} -body.bp3-overlay-open { - overflow: hidden; -} - -.bp3-overlay { - bottom: 0; - left: 0; - position: static; - right: 0; - top: 0; - z-index: 20; -} -.bp3-overlay:not(.bp3-overlay-open) { - pointer-events: none; -} -.bp3-overlay.bp3-overlay-container { - overflow: hidden; - position: fixed; -} -.bp3-overlay.bp3-overlay-container.bp3-overlay-inline { - position: absolute; -} -.bp3-overlay.bp3-overlay-scroll-container { - overflow: auto; - position: fixed; -} -.bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline { - position: absolute; -} -.bp3-overlay.bp3-overlay-inline { - display: inline; - overflow: visible; -} - -.bp3-overlay-content { - position: fixed; - z-index: 20; -} -.bp3-overlay-inline .bp3-overlay-content, -.bp3-overlay-scroll-container .bp3-overlay-content { - position: absolute; -} - -.bp3-overlay-backdrop { - bottom: 0; - left: 0; - position: fixed; - right: 0; - top: 0; - opacity: 1; - background-color: rgba(16, 22, 26, 0.7); - overflow: auto; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - z-index: 20; -} -.bp3-overlay-backdrop.bp3-overlay-enter, -.bp3-overlay-backdrop.bp3-overlay-appear { - opacity: 0; -} -.bp3-overlay-backdrop.bp3-overlay-enter-active, -.bp3-overlay-backdrop.bp3-overlay-appear-active { - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: opacity; - transition-property: opacity; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-overlay-backdrop.bp3-overlay-exit { - opacity: 1; -} -.bp3-overlay-backdrop.bp3-overlay-exit-active { - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-property: opacity; - transition-property: opacity; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-overlay-backdrop:focus { - outline: none; -} -.bp3-overlay-inline .bp3-overlay-backdrop { - position: absolute; -} -.bp3-panel-stack { - overflow: hidden; - position: relative; -} - -.bp3-panel-stack-header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-shadow: 0 1px rgba(16, 22, 26, 0.15); - box-shadow: 0 1px rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-negative: 0; - flex-shrink: 0; - height: 30px; - z-index: 1; -} -.bp3-dark .bp3-panel-stack-header { - -webkit-box-shadow: 0 1px rgba(255, 255, 255, 0.15); - box-shadow: 0 1px rgba(255, 255, 255, 0.15); -} -.bp3-panel-stack-header > span { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} -.bp3-panel-stack-header .bp3-heading { - margin: 0 5px; -} - -.bp3-button.bp3-panel-stack-header-back { - margin-left: 5px; - padding-left: 0; - white-space: nowrap; -} -.bp3-button.bp3-panel-stack-header-back .bp3-icon { - margin: 0 2px; -} - -.bp3-panel-stack-view { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - background-color: #ffffff; - border-right: 1px solid rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-right: -1px; - overflow-y: auto; - z-index: 1; -} -.bp3-dark .bp3-panel-stack-view { - background-color: #30404d; -} -.bp3-panel-stack-view:nth-last-child(n + 4) { - display: none; -} - -.bp3-panel-stack-push .bp3-panel-stack-enter, -.bp3-panel-stack-push .bp3-panel-stack-appear { - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; -} - -.bp3-panel-stack-push .bp3-panel-stack-enter-active, -.bp3-panel-stack-push .bp3-panel-stack-appear-active { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack-push .bp3-panel-stack-exit { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; -} - -.bp3-panel-stack-push .bp3-panel-stack-exit-active { - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack-pop .bp3-panel-stack-enter, -.bp3-panel-stack-pop .bp3-panel-stack-appear { - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - opacity: 0; -} - -.bp3-panel-stack-pop .bp3-panel-stack-enter-active, -.bp3-panel-stack-pop .bp3-panel-stack-appear-active { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack-pop .bp3-panel-stack-exit { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; -} - -.bp3-panel-stack-pop .bp3-panel-stack-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} -.bp3-panel-stack2 { - overflow: hidden; - position: relative; -} - -.bp3-panel-stack2-header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-shadow: 0 1px rgba(16, 22, 26, 0.15); - box-shadow: 0 1px rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-negative: 0; - flex-shrink: 0; - height: 30px; - z-index: 1; -} -.bp3-dark .bp3-panel-stack2-header { - -webkit-box-shadow: 0 1px rgba(255, 255, 255, 0.15); - box-shadow: 0 1px rgba(255, 255, 255, 0.15); -} -.bp3-panel-stack2-header > span { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} -.bp3-panel-stack2-header .bp3-heading { - margin: 0 5px; -} - -.bp3-button.bp3-panel-stack2-header-back { - margin-left: 5px; - padding-left: 0; - white-space: nowrap; -} -.bp3-button.bp3-panel-stack2-header-back .bp3-icon { - margin: 0 2px; -} - -.bp3-panel-stack2-view { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; - background-color: #ffffff; - border-right: 1px solid rgba(16, 22, 26, 0.15); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-right: -1px; - overflow-y: auto; - z-index: 1; -} -.bp3-dark .bp3-panel-stack2-view { - background-color: #30404d; -} -.bp3-panel-stack2-view:nth-last-child(n + 4) { - display: none; -} - -.bp3-panel-stack2-push .bp3-panel-stack2-enter, -.bp3-panel-stack2-push .bp3-panel-stack2-appear { - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; -} - -.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, -.bp3-panel-stack2-push .bp3-panel-stack2-appear-active { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack2-push .bp3-panel-stack2-exit { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; -} - -.bp3-panel-stack2-push .bp3-panel-stack2-exit-active { - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack2-pop .bp3-panel-stack2-enter, -.bp3-panel-stack2-pop .bp3-panel-stack2-appear { - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - opacity: 0; -} - -.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, -.bp3-panel-stack2-pop .bp3-panel-stack2-appear-active { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.bp3-panel-stack2-pop .bp3-panel-stack2-exit { - -webkit-transform: translate(0%); - transform: translate(0%); - opacity: 1; -} - -.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - -webkit-transition-property: - opacity, - -webkit-transform; - transition-property: - opacity, - -webkit-transform; - transition-property: transform, opacity; - transition-property: - transform, - opacity, - -webkit-transform; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} -.bp3-popover { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - -webkit-transform: scale(1); - transform: scale(1); - border-radius: 3px; - display: inline-block; - z-index: 20; -} -.bp3-popover .bp3-popover-arrow { - height: 30px; - position: absolute; - width: 30px; -} -.bp3-popover .bp3-popover-arrow::before { - height: 20px; - margin: 5px; - width: 20px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover { - margin-bottom: 17px; - margin-top: -17px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow { - bottom: -11px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover { - margin-left: 17px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow { - left: -11px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(0); - transform: rotate(0); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover { - margin-top: 17px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow { - top: -11px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover { - margin-left: -17px; - margin-right: 17px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow { - right: -11px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -.bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow { - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} -.bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow { - right: 50%; - -webkit-transform: translateX(50%); - transform: translateX(50%); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow { - top: -0.3934px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow { - right: -0.3934px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow { - left: -0.3934px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow { - bottom: -0.3934px; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: top left; - transform-origin: top left; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: top center; - transform-origin: top center; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: top right; - transform-origin: top right; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: center left; - transform-origin: center left; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: center center; - transform-origin: center center; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: center right; - transform-origin: center right; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: bottom right; - transform-origin: bottom right; -} -.bp3-popover .bp3-popover-content { - background: #ffffff; -} -.bp3-popover .bp3-popover-content, -.bp3-popover .bp3-heading { - color: inherit; -} -.bp3-popover .bp3-popover-arrow::before { - -webkit-box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); -} -.bp3-popover .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.1; -} -.bp3-popover .bp3-popover-arrow-fill { - fill: #ffffff; -} -.bp3-popover-enter > .bp3-popover, -.bp3-popover-appear > .bp3-popover { - -webkit-transform: scale(0.3); - transform: scale(0.3); -} -.bp3-popover-enter-active > .bp3-popover, -.bp3-popover-appear-active > .bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-popover-exit > .bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-popover { - -webkit-transform: scale(0.3); - transform: scale(0.3); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-popover .bp3-popover-content { - border-radius: 3px; - position: relative; -} -.bp3-popover.bp3-popover-content-sizing .bp3-popover-content { - max-width: 350px; - padding: 20px; -} -.bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing { - width: 350px; -} -.bp3-popover.bp3-minimal { - margin: 0 !important; -} -.bp3-popover.bp3-minimal .bp3-popover-arrow { - display: none; -} -.bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, -.bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, -.bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-popover.bp3-dark, -.bp3-dark .bp3-popover { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-popover.bp3-dark .bp3-popover-content, -.bp3-dark .bp3-popover .bp3-popover-content { - background: #30404d; -} -.bp3-popover.bp3-dark .bp3-popover-content, -.bp3-popover.bp3-dark .bp3-heading, -.bp3-dark .bp3-popover .bp3-popover-content, -.bp3-dark .bp3-popover .bp3-heading { - color: inherit; -} -.bp3-popover.bp3-dark .bp3-popover-arrow::before, -.bp3-dark .bp3-popover .bp3-popover-arrow::before { - -webkit-box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); -} -.bp3-popover.bp3-dark .bp3-popover-arrow-border, -.bp3-dark .bp3-popover .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.2; -} -.bp3-popover.bp3-dark .bp3-popover-arrow-fill, -.bp3-dark .bp3-popover .bp3-popover-arrow-fill { - fill: #30404d; -} - -.bp3-popover-arrow::before { - border-radius: 2px; - content: ""; - display: block; - position: absolute; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); -} - -.bp3-tether-pinned .bp3-popover-arrow { - display: none; -} - -.bp3-popover-backdrop { - background: rgba(255, 255, 255, 0); -} - -.bp3-transition-container { - opacity: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - z-index: 20; -} -.bp3-transition-container.bp3-popover-enter, -.bp3-transition-container.bp3-popover-appear { - opacity: 0; -} -.bp3-transition-container.bp3-popover-enter-active, -.bp3-transition-container.bp3-popover-appear-active { - opacity: 1; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: opacity; - transition-property: opacity; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-transition-container.bp3-popover-exit { - opacity: 1; -} -.bp3-transition-container.bp3-popover-exit-active { - opacity: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: opacity; - transition-property: opacity; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-transition-container:focus { - outline: none; -} -.bp3-transition-container.bp3-popover-leave .bp3-popover-content { - pointer-events: none; -} -.bp3-transition-container[data-x-out-of-boundaries] { - display: none; -} - -span.bp3-popover-target { - display: inline-block; -} - -.bp3-popover-wrapper.bp3-fill { - width: 100%; -} - -.bp3-portal { - left: 0; - position: absolute; - right: 0; - top: 0; -} -@-webkit-keyframes linear-progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 30px 0; - } -} -@keyframes linear-progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 30px 0; - } -} - -.bp3-progress-bar { - background: rgba(92, 112, 128, 0.2); - border-radius: 40px; - display: block; - height: 8px; - overflow: hidden; - position: relative; - width: 100%; -} -.bp3-progress-bar .bp3-progress-meter { - background: linear-gradient( - -45deg, - rgba(255, 255, 255, 0.2) 25%, - transparent 25%, - transparent 50%, - rgba(255, 255, 255, 0.2) 50%, - rgba(255, 255, 255, 0.2) 75%, - transparent 75% - ); - background-color: rgba(92, 112, 128, 0.8); - background-size: 30px 30px; - border-radius: 40px; - height: 100%; - position: absolute; - -webkit-transition: width 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: width 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - width: 100%; -} -.bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) - .bp3-progress-meter { - animation: linear-progress-bar-stripes 300ms linear infinite reverse; -} -.bp3-progress-bar.bp3-no-stripes .bp3-progress-meter { - background-image: none; -} - -.bp3-dark .bp3-progress-bar { - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-progress-bar .bp3-progress-meter { - background-color: #8a9ba8; -} - -.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter { - background-color: #137cbd; -} - -.bp3-progress-bar.bp3-intent-success .bp3-progress-meter { - background-color: #0f9960; -} - -.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter { - background-color: #d9822b; -} - -.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter { - background-color: #db3737; -} -@-webkit-keyframes skeleton-glow { - from { - background: rgba(206, 217, 224, 0.2); - border-color: rgba(206, 217, 224, 0.2); - } - to { - background: rgba(92, 112, 128, 0.2); - border-color: rgba(92, 112, 128, 0.2); - } -} -@keyframes skeleton-glow { - from { - background: rgba(206, 217, 224, 0.2); - border-color: rgba(206, 217, 224, 0.2); - } - to { - background: rgba(92, 112, 128, 0.2); - border-color: rgba(92, 112, 128, 0.2); - } -} -.bp3-skeleton { - -webkit-animation: 1000ms linear infinite alternate skeleton-glow; - animation: 1000ms linear infinite alternate skeleton-glow; - background: rgba(206, 217, 224, 0.2); - background-clip: padding-box !important; - border-color: rgba(206, 217, 224, 0.2) !important; - border-radius: 2px; - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: transparent !important; - cursor: default; - pointer-events: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-skeleton::before, -.bp3-skeleton::after, -.bp3-skeleton * { - visibility: hidden !important; -} -.bp3-slider { - height: 40px; - min-width: 150px; - width: 100%; - cursor: default; - outline: none; - position: relative; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-slider:hover { - cursor: pointer; -} -.bp3-slider:active { - cursor: -webkit-grabbing; - cursor: grabbing; -} -.bp3-slider.bp3-disabled { - cursor: not-allowed; - opacity: 0.5; -} -.bp3-slider.bp3-slider-unlabeled { - height: 16px; -} - -.bp3-slider-track, -.bp3-slider-progress { - height: 6px; - left: 0; - right: 0; - top: 5px; - position: absolute; -} - -.bp3-slider-track { - border-radius: 3px; - overflow: hidden; -} - -.bp3-slider-progress { - background: rgba(92, 112, 128, 0.2); -} -.bp3-dark .bp3-slider-progress { - background: rgba(16, 22, 26, 0.5); -} -.bp3-slider-progress.bp3-intent-primary { - background-color: #137cbd; -} -.bp3-slider-progress.bp3-intent-success { - background-color: #0f9960; -} -.bp3-slider-progress.bp3-intent-warning { - background-color: #d9822b; -} -.bp3-slider-progress.bp3-intent-danger { - background-color: #db3737; -} - -.bp3-slider-handle { - background-color: #f5f8fa; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.8)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.8), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - cursor: pointer; - height: 16px; - left: 0; - position: absolute; - top: 0; - width: 16px; -} -.bp3-slider-handle:hover { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-slider-handle:active, -.bp3-slider-handle.bp3-active { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-slider-handle:disabled, -.bp3-slider-handle.bp3-disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-slider-handle:disabled.bp3-active, -.bp3-slider-handle:disabled.bp3-active:hover, -.bp3-slider-handle.bp3-disabled.bp3-active, -.bp3-slider-handle.bp3-disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-slider-handle:focus { - z-index: 1; -} -.bp3-slider-handle:hover { - background-clip: padding-box; - background-color: #ebf1f5; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 1px 1px rgba(16, 22, 26, 0.2); - cursor: -webkit-grab; - cursor: grab; - z-index: 2; -} -.bp3-slider-handle.bp3-active { - background-color: #d8e1e8; - background-image: none; - -webkit-box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 1px rgba(16, 22, 26, 0.1); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 1px rgba(16, 22, 26, 0.1); - cursor: -webkit-grabbing; - cursor: grabbing; -} -.bp3-disabled .bp3-slider-handle { - background: #bfccd6; - -webkit-box-shadow: none; - box-shadow: none; - pointer-events: none; -} -.bp3-dark .bp3-slider-handle { - background-color: #394b59; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0.05)), - to(rgba(255, 255, 255, 0)) - ); - background-image: linear-gradient( - to bottom, - rgba(255, 255, 255, 0.05), - rgba(255, 255, 255, 0) - ); - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-slider-handle:hover, -.bp3-dark .bp3-slider-handle:active, -.bp3-dark .bp3-slider-handle.bp3-active { - color: #f5f8fa; -} -.bp3-dark .bp3-slider-handle:hover { - background-color: #30404d; - -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-slider-handle:active, -.bp3-dark .bp3-slider-handle.bp3-active { - background-color: #202b33; - background-image: none; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-slider-handle:disabled, -.bp3-dark .bp3-slider-handle.bp3-disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-slider-handle:disabled.bp3-active, -.bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head { - background: rgba(16, 22, 26, 0.5); - stroke: #8a9ba8; -} -.bp3-dark .bp3-slider-handle, -.bp3-dark .bp3-slider-handle:hover { - background-color: #394b59; -} -.bp3-dark .bp3-slider-handle.bp3-active { - background-color: #293742; -} -.bp3-dark .bp3-disabled .bp3-slider-handle { - background: #5c7080; - border-color: #5c7080; - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-slider-handle .bp3-slider-label { - background: #394b59; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - color: #f5f8fa; - margin-left: 8px; -} -.bp3-dark .bp3-slider-handle .bp3-slider-label { - background: #e1e8ed; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - color: #394b59; -} -.bp3-disabled .bp3-slider-handle .bp3-slider-label { - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-slider-handle.bp3-start, -.bp3-slider-handle.bp3-end { - width: 8px; -} -.bp3-slider-handle.bp3-start { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.bp3-slider-handle.bp3-end { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - margin-left: 8px; -} -.bp3-slider-handle.bp3-end .bp3-slider-label { - margin-left: 0; -} - -.bp3-slider-label { - -webkit-transform: translate(-50%, 20px); - transform: translate(-50%, 20px); - display: inline-block; - font-size: 12px; - line-height: 1; - padding: 2px 5px; - position: absolute; - vertical-align: top; -} - -.bp3-slider.bp3-vertical { - height: 150px; - min-width: 40px; - width: 40px; -} -.bp3-slider.bp3-vertical .bp3-slider-track, -.bp3-slider.bp3-vertical .bp3-slider-progress { - bottom: 0; - height: auto; - left: 5px; - top: 0; - width: 6px; -} -.bp3-slider.bp3-vertical .bp3-slider-progress { - top: auto; -} -.bp3-slider.bp3-vertical .bp3-slider-label { - -webkit-transform: translate(20px, 50%); - transform: translate(20px, 50%); -} -.bp3-slider.bp3-vertical .bp3-slider-handle { - top: auto; -} -.bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label { - margin-left: 0; - margin-top: -8px; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start { - height: 8px; - margin-left: 0; - width: 16px; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start { - border-bottom-right-radius: 3px; - border-top-left-radius: 0; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label { - -webkit-transform: translate(20px); - transform: translate(20px); -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - border-top-left-radius: 3px; - margin-bottom: 8px; -} -@-webkit-keyframes pt-spinner-animation { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} -@keyframes pt-spinner-animation { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.bp3-spinner { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - overflow: visible; - vertical-align: middle; -} -.bp3-spinner svg { - display: block; -} -.bp3-spinner path { - fill-opacity: 0; -} -.bp3-spinner .bp3-spinner-head { - stroke: rgba(92, 112, 128, 0.8); - stroke-linecap: round; - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transition: stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-spinner .bp3-spinner-track { - stroke: rgba(92, 112, 128, 0.2); -} - -.bp3-spinner-animation { - -webkit-animation: pt-spinner-animation 500ms linear infinite; - animation: pt-spinner-animation 500ms linear infinite; -} -.bp3-no-spin > .bp3-spinner-animation { - -webkit-animation: none; - animation: none; -} - -.bp3-dark .bp3-spinner .bp3-spinner-head { - stroke: #8a9ba8; -} - -.bp3-dark .bp3-spinner .bp3-spinner-track { - stroke: rgba(16, 22, 26, 0.5); -} - -.bp3-spinner.bp3-intent-primary .bp3-spinner-head { - stroke: #137cbd; -} - -.bp3-spinner.bp3-intent-success .bp3-spinner-head { - stroke: #0f9960; -} - -.bp3-spinner.bp3-intent-warning .bp3-spinner-head { - stroke: #d9822b; -} - -.bp3-spinner.bp3-intent-danger .bp3-spinner-head { - stroke: #db3737; -} -.bp3-tabs.bp3-vertical { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab { - border-radius: 3px; - padding: 0 10px; - width: 100%; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected="true"] { - background-color: rgba(19, 124, 189, 0.2); - -webkit-box-shadow: none; - box-shadow: none; -} -.bp3-tabs.bp3-vertical - > .bp3-tab-list - .bp3-tab-indicator-wrapper - .bp3-tab-indicator { - background-color: rgba(19, 124, 189, 0.2); - border-radius: 3px; - bottom: 0; - height: auto; - left: 0; - right: 0; - top: 0; -} -.bp3-tabs.bp3-vertical > .bp3-tab-panel { - margin-top: 0; - padding-left: 20px; -} - -.bp3-tab-list { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; - border: none; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - list-style: none; - margin: 0; - padding: 0; - position: relative; -} -.bp3-tab-list > *:not(:last-child) { - margin-right: 20px; -} - -.bp3-tab { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - color: #182026; - cursor: pointer; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - font-size: 14px; - line-height: 30px; - max-width: 100%; - position: relative; - vertical-align: top; -} -.bp3-tab a { - color: inherit; - display: block; - text-decoration: none; -} -.bp3-tab-indicator-wrapper ~ .bp3-tab { - background-color: transparent !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} -.bp3-tab[aria-disabled="true"] { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-tab[aria-selected="true"] { - border-radius: 0; - -webkit-box-shadow: inset 0 -3px 0 #106ba3; - box-shadow: inset 0 -3px 0 #106ba3; -} -.bp3-tab[aria-selected="true"], -.bp3-tab:not([aria-disabled="true"]):hover { - color: #106ba3; -} -.bp3-tab:focus { - -moz-outline-radius: 0; -} -.bp3-large > .bp3-tab { - font-size: 16px; - line-height: 40px; -} - -.bp3-tab-panel { - margin-top: 20px; -} -.bp3-tab-panel[aria-hidden="true"] { - display: none; -} - -.bp3-tab-indicator-wrapper { - left: 0; - pointer-events: none; - position: absolute; - top: 0; - -webkit-transform: translateX(0), translateY(0); - transform: translateX(0), translateY(0); - -webkit-transition: - height, - width, - -webkit-transform; - transition: - height, - width, - -webkit-transform; - transition: height, transform, width; - transition: - height, - transform, - width, - -webkit-transform; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tab-indicator-wrapper .bp3-tab-indicator { - background-color: #106ba3; - bottom: 0; - height: 3px; - left: 0; - position: absolute; - right: 0; -} -.bp3-tab-indicator-wrapper.bp3-no-animation { - -webkit-transition: none; - transition: none; -} - -.bp3-dark .bp3-tab { - color: #f5f8fa; -} -.bp3-dark .bp3-tab[aria-disabled="true"] { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tab[aria-selected="true"] { - -webkit-box-shadow: inset 0 -3px 0 #48aff0; - box-shadow: inset 0 -3px 0 #48aff0; -} -.bp3-dark .bp3-tab[aria-selected="true"], -.bp3-dark .bp3-tab:not([aria-disabled="true"]):hover { - color: #48aff0; -} - -.bp3-dark .bp3-tab-indicator { - background-color: #48aff0; -} - -.bp3-flex-expander { - -webkit-box-flex: 1; - -ms-flex: 1 1; - flex: 1 1; -} -.bp3-tag { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #5c7080; - border: none; - border-radius: 3px; - -webkit-box-shadow: none; - box-shadow: none; - color: #f5f8fa; - font-size: 12px; - line-height: 16px; - max-width: 100%; - min-height: 20px; - min-width: 20px; - padding: 2px 6px; - position: relative; -} -.bp3-tag.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-interactive:hover { - background-color: rgba(92, 112, 128, 0.85); -} -.bp3-tag.bp3-interactive.bp3-active, -.bp3-tag.bp3-interactive:active { - background-color: rgba(92, 112, 128, 0.7); -} -.bp3-tag > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-tag > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-tag::before, -.bp3-tag > * { - margin-right: 4px; -} -.bp3-tag:empty::before, -.bp3-tag > :last-child { - margin-right: 0; -} -.bp3-tag:focus { - outline: rgba(19, 124, 189, 0.6) auto 2px; - outline-offset: 0; - -moz-outline-radius: 6px; -} -.bp3-tag.bp3-round { - border-radius: 30px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-dark .bp3-tag { - background-color: #bfccd6; - color: #182026; -} -.bp3-dark .bp3-tag.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-interactive:hover { - background-color: rgba(191, 204, 214, 0.85); -} -.bp3-dark .bp3-tag.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-interactive:active { - background-color: rgba(191, 204, 214, 0.7); -} -.bp3-dark .bp3-tag > .bp3-icon, -.bp3-dark .bp3-tag .bp3-icon-standard, -.bp3-dark .bp3-tag .bp3-icon-large { - fill: currentColor; -} -.bp3-tag > .bp3-icon, -.bp3-tag .bp3-icon-standard, -.bp3-tag .bp3-icon-large { - fill: #ffffff; -} -.bp3-tag.bp3-large, -.bp3-large .bp3-tag { - font-size: 14px; - line-height: 20px; - min-height: 30px; - min-width: 30px; - padding: 5px 10px; -} -.bp3-tag.bp3-large::before, -.bp3-tag.bp3-large > *, -.bp3-large .bp3-tag::before, -.bp3-large .bp3-tag > * { - margin-right: 7px; -} -.bp3-tag.bp3-large:empty::before, -.bp3-tag.bp3-large > :last-child, -.bp3-large .bp3-tag:empty::before, -.bp3-large .bp3-tag > :last-child { - margin-right: 0; -} -.bp3-tag.bp3-large.bp3-round, -.bp3-large .bp3-tag.bp3-round { - padding-left: 12px; - padding-right: 12px; -} -.bp3-tag.bp3-intent-primary { - background: #137cbd; - color: #ffffff; -} -.bp3-tag.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.85); -} -.bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.7); -} -.bp3-tag.bp3-intent-success { - background: #0f9960; - color: #ffffff; -} -.bp3-tag.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.85); -} -.bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.7); -} -.bp3-tag.bp3-intent-warning { - background: #d9822b; - color: #ffffff; -} -.bp3-tag.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.85); -} -.bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.7); -} -.bp3-tag.bp3-intent-danger { - background: #db3737; - color: #ffffff; -} -.bp3-tag.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.85); -} -.bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.7); -} -.bp3-tag.bp3-fill { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; -} -.bp3-tag.bp3-minimal > .bp3-icon, -.bp3-tag.bp3-minimal .bp3-icon-standard, -.bp3-tag.bp3-minimal .bp3-icon-large { - fill: #5c7080; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) { - background-color: rgba(138, 155, 168, 0.2); - color: #182026; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover { - background-color: rgba(92, 112, 128, 0.3); -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active { - background-color: rgba(92, 112, 128, 0.4); -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) { - color: #f5f8fa; -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive { - cursor: pointer; -} -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover { - background-color: rgba(191, 204, 214, 0.3); -} -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active { - background-color: rgba(191, 204, 214, 0.4); -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) > .bp3-icon, -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-standard, -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-large { - fill: #a7b6c2; -} -.bp3-tag.bp3-minimal.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, -.bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large { - fill: #137cbd; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.25); - color: #48aff0; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, -.bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large { - fill: #0f9960; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.25); - color: #3dcc91; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, -.bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large { - fill: #d9822b; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.25); - color: #ffb366; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, -.bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large { - fill: #db3737; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.25); - color: #ff7373; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.45); -} - -.bp3-tag-remove { - background: none; - border: none; - color: inherit; - cursor: pointer; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin-bottom: -2px; - margin-right: -6px !important; - margin-top: -2px; - opacity: 0.5; - padding: 2px; - padding-left: 0; -} -.bp3-tag-remove:hover { - background: none; - opacity: 0.8; - text-decoration: none; -} -.bp3-tag-remove:active { - opacity: 1; -} -.bp3-tag-remove:empty::before { - font-family: "Icons16", sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - content: ""; -} -.bp3-large .bp3-tag-remove { - margin-right: -10px !important; - padding: 0 5px 0 0; -} -.bp3-large .bp3-tag-remove:empty::before { - font-family: "Icons20", sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-tag-input { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - cursor: text; - height: auto; - line-height: inherit; - min-height: 30px; - padding-left: 5px; - padding-right: 0; -} -.bp3-tag-input > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-tag-input > .bp3-tag-input-values { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-tag-input .bp3-tag-input-icon { - color: #5c7080; - margin-left: 2px; - margin-right: 7px; - margin-top: 7px; -} -.bp3-tag-input .bp3-tag-input-values { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -ms-flex-item-align: stretch; - align-self: stretch; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: 7px; - margin-top: 5px; - min-width: 0; -} -.bp3-tag-input .bp3-tag-input-values > * { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} -.bp3-tag-input .bp3-tag-input-values > .bp3-fill { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} -.bp3-tag-input .bp3-tag-input-values::before, -.bp3-tag-input .bp3-tag-input-values > * { - margin-right: 5px; -} -.bp3-tag-input .bp3-tag-input-values:empty::before, -.bp3-tag-input .bp3-tag-input-values > :last-child { - margin-right: 0; -} -.bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child { - padding-left: 5px; -} -.bp3-tag-input .bp3-tag-input-values > * { - margin-bottom: 5px; -} -.bp3-tag-input .bp3-tag { - overflow-wrap: break-word; -} -.bp3-tag-input .bp3-tag.bp3-active { - outline: rgba(19, 124, 189, 0.6) auto 2px; - outline-offset: 0; - -moz-outline-radius: 6px; -} -.bp3-tag-input .bp3-input-ghost { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - line-height: 20px; - width: 80px; -} -.bp3-tag-input .bp3-input-ghost:disabled, -.bp3-tag-input .bp3-input-ghost.bp3-disabled { - cursor: not-allowed; -} -.bp3-tag-input .bp3-button, -.bp3-tag-input .bp3-spinner { - margin: 3px; - margin-left: 0; -} -.bp3-tag-input .bp3-button { - min-height: 24px; - min-width: 24px; - padding: 0 7px; -} -.bp3-tag-input.bp3-large { - height: auto; - min-height: 40px; -} -.bp3-tag-input.bp3-large::before, -.bp3-tag-input.bp3-large > * { - margin-right: 10px; -} -.bp3-tag-input.bp3-large:empty::before, -.bp3-tag-input.bp3-large > :last-child { - margin-right: 0; -} -.bp3-tag-input.bp3-large .bp3-tag-input-icon { - margin-left: 5px; - margin-top: 10px; -} -.bp3-tag-input.bp3-large .bp3-input-ghost { - line-height: 30px; -} -.bp3-tag-input.bp3-large .bp3-button { - min-height: 30px; - min-width: 30px; - padding: 5px 10px; - margin: 5px; - margin-left: 0; -} -.bp3-tag-input.bp3-large .bp3-spinner { - margin: 8px; - margin-left: 0; -} -.bp3-tag-input.bp3-active { - background-color: #ffffff; - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-primary { - -webkit-box-shadow: - 0 0 0 1px #106ba3, - 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #106ba3, - 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-success { - -webkit-box-shadow: - 0 0 0 1px #0d8050, - 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #0d8050, - 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-warning { - -webkit-box-shadow: - 0 0 0 1px #bf7326, - 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #bf7326, - 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-danger { - -webkit-box-shadow: - 0 0 0 1px #c23030, - 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px #c23030, - 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-tag-input .bp3-tag-input-icon, -.bp3-tag-input.bp3-dark .bp3-tag-input-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-tag-input .bp3-input-ghost, -.bp3-tag-input.bp3-dark .bp3-input-ghost { - color: #f5f8fa; -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input.bp3-active, -.bp3-tag-input.bp3-dark.bp3-active { - background-color: rgba(16, 22, 26, 0.3); - -webkit-box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #137cbd, - 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary { - -webkit-box-shadow: - 0 0 0 1px #106ba3, - 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #106ba3, - 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success { - -webkit-box-shadow: - 0 0 0 1px #0d8050, - 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #0d8050, - 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning { - -webkit-box-shadow: - 0 0 0 1px #bf7326, - 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #bf7326, - 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger { - -webkit-box-shadow: - 0 0 0 1px #c23030, - 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px #c23030, - 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} - -.bp3-input-ghost { - background: none; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0; -} -.bp3-input-ghost::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost::-moz-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost::-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost:focus { - outline: none !important; -} -.bp3-toast { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - background-color: #ffffff; - border-radius: 3px; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 20px 0 0; - max-width: 500px; - min-width: 300px; - pointer-events: all; - position: relative !important; -} -.bp3-toast.bp3-toast-enter, -.bp3-toast.bp3-toast-appear { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); -} -.bp3-toast.bp3-toast-enter-active, -.bp3-toast.bp3-toast-appear-active { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-toast.bp3-toast-enter ~ .bp3-toast, -.bp3-toast.bp3-toast-appear ~ .bp3-toast { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); -} -.bp3-toast.bp3-toast-enter-active ~ .bp3-toast, -.bp3-toast.bp3-toast-appear-active ~ .bp3-toast { - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-toast.bp3-toast-exit { - opacity: 1; - -webkit-filter: blur(0); - filter: blur(0); -} -.bp3-toast.bp3-toast-exit-active { - opacity: 0; - -webkit-filter: blur(10px); - filter: blur(10px); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 300ms; - transition-duration: 300ms; - -webkit-transition-property: - opacity, - -webkit-filter; - transition-property: - opacity, - -webkit-filter; - transition-property: opacity, filter; - transition-property: - opacity, - filter, - -webkit-filter; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-toast.bp3-toast-exit ~ .bp3-toast { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-toast.bp3-toast-exit-active ~ .bp3-toast { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); - -webkit-transition-delay: 50ms; - transition-delay: 50ms; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-toast .bp3-button-group { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding: 5px; - padding-left: 0; -} -.bp3-toast > .bp3-icon { - color: #5c7080; - margin: 12px; - margin-right: 0; -} -.bp3-toast.bp3-dark, -.bp3-dark .bp3-toast { - background-color: #394b59; - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-toast.bp3-dark > .bp3-icon, -.bp3-dark .bp3-toast > .bp3-icon { - color: #a7b6c2; -} -.bp3-toast[class*="bp3-intent-"] a { - color: rgba(255, 255, 255, 0.7); -} -.bp3-toast[class*="bp3-intent-"] a:hover { - color: #ffffff; -} -.bp3-toast[class*="bp3-intent-"] > .bp3-icon { - color: #ffffff; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button, -.bp3-toast[class*="bp3-intent-"] .bp3-button::before, -.bp3-toast[class*="bp3-intent-"] .bp3-button .bp3-icon, -.bp3-toast[class*="bp3-intent-"] .bp3-button:active { - color: rgba(255, 255, 255, 0.7) !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:focus { - outline-color: rgba(255, 255, 255, 0.5); -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:hover { - background-color: rgba(255, 255, 255, 0.15) !important; - color: #ffffff !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:active { - background-color: rgba(255, 255, 255, 0.3) !important; - color: #ffffff !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button::after { - background: rgba(255, 255, 255, 0.3) !important; -} -.bp3-toast.bp3-intent-primary { - background-color: #137cbd; - color: #ffffff; -} -.bp3-toast.bp3-intent-success { - background-color: #0f9960; - color: #ffffff; -} -.bp3-toast.bp3-intent-warning { - background-color: #d9822b; - color: #ffffff; -} -.bp3-toast.bp3-intent-danger { - background-color: #db3737; - color: #ffffff; -} - -.bp3-toast-message { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 11px; - word-break: break-word; -} - -.bp3-toast-container { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - left: 0; - overflow: hidden; - padding: 0 20px 20px; - pointer-events: none; - right: 0; - z-index: 40; -} -.bp3-toast-container.bp3-toast-container-in-portal { - position: fixed; -} -.bp3-toast-container.bp3-toast-container-inline { - position: absolute; -} -.bp3-toast-container.bp3-toast-container-top { - top: 0; -} -.bp3-toast-container.bp3-toast-container-bottom { - bottom: 0; - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - top: auto; -} -.bp3-toast-container.bp3-toast-container-left { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; -} -.bp3-toast-container.bp3-toast-container-right { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; -} - -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active), -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) - ~ .bp3-toast, -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active), -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) - ~ .bp3-toast, -.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast, -.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast { - -webkit-transform: translateY(60px); - transform: translateY(60px); -} -.bp3-tooltip { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.1), - 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-tooltip .bp3-popover-arrow { - height: 22px; - position: absolute; - width: 22px; -} -.bp3-tooltip .bp3-popover-arrow::before { - height: 14px; - margin: 4px; - width: 14px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip { - margin-bottom: 11px; - margin-top: -11px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow { - bottom: -8px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip { - margin-left: 11px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow { - left: -8px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(0); - transform: rotate(0); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip { - margin-top: 11px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow { - top: -8px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip { - margin-left: -11px; - margin-right: 11px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow { - right: -8px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -.bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow { - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} -.bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow { - right: 50%; - -webkit-transform: translateX(50%); - transform: translateX(50%); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow { - top: -0.22183px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow { - right: -0.22183px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow { - left: -0.22183px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow { - bottom: -0.22183px; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: top left; - transform-origin: top left; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: top center; - transform-origin: top center; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: top right; - transform-origin: top right; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: center left; - transform-origin: center left; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: center center; - transform-origin: center center; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: center right; - transform-origin: center right; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: bottom right; - transform-origin: bottom right; -} -.bp3-tooltip .bp3-popover-content { - background: #394b59; -} -.bp3-tooltip .bp3-popover-content, -.bp3-tooltip .bp3-heading { - color: #f5f8fa; -} -.bp3-tooltip .bp3-popover-arrow::before { - -webkit-box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); -} -.bp3-tooltip .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.1; -} -.bp3-tooltip .bp3-popover-arrow-fill { - fill: #394b59; -} -.bp3-popover-enter > .bp3-tooltip, -.bp3-popover-appear > .bp3-tooltip { - -webkit-transform: scale(0.8); - transform: scale(0.8); -} -.bp3-popover-enter-active > .bp3-tooltip, -.bp3-popover-appear-active > .bp3-tooltip { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-popover-exit > .bp3-tooltip { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-tooltip { - -webkit-transform: scale(0.8); - transform: scale(0.8); - -webkit-transition-delay: 0; - transition-delay: 0; - -webkit-transition-duration: 100ms; - transition-duration: 100ms; - -webkit-transition-property: -webkit-transform; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: - transform, - -webkit-transform; - -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tooltip .bp3-popover-content { - padding: 10px 12px; -} -.bp3-tooltip.bp3-dark, -.bp3-dark .bp3-tooltip { - -webkit-box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - box-shadow: - 0 0 0 1px rgba(16, 22, 26, 0.2), - 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-tooltip.bp3-dark .bp3-popover-content, -.bp3-dark .bp3-tooltip .bp3-popover-content { - background: #e1e8ed; -} -.bp3-tooltip.bp3-dark .bp3-popover-content, -.bp3-tooltip.bp3-dark .bp3-heading, -.bp3-dark .bp3-tooltip .bp3-popover-content, -.bp3-dark .bp3-tooltip .bp3-heading { - color: #394b59; -} -.bp3-tooltip.bp3-dark .bp3-popover-arrow::before, -.bp3-dark .bp3-tooltip .bp3-popover-arrow::before { - -webkit-box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); -} -.bp3-tooltip.bp3-dark .bp3-popover-arrow-border, -.bp3-dark .bp3-tooltip .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.2; -} -.bp3-tooltip.bp3-dark .bp3-popover-arrow-fill, -.bp3-dark .bp3-tooltip .bp3-popover-arrow-fill { - fill: #e1e8ed; -} -.bp3-tooltip.bp3-intent-primary .bp3-popover-content { - background: #137cbd; - color: #ffffff; -} -.bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill { - fill: #137cbd; -} -.bp3-tooltip.bp3-intent-success .bp3-popover-content { - background: #0f9960; - color: #ffffff; -} -.bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill { - fill: #0f9960; -} -.bp3-tooltip.bp3-intent-warning .bp3-popover-content { - background: #d9822b; - color: #ffffff; -} -.bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill { - fill: #d9822b; -} -.bp3-tooltip.bp3-intent-danger .bp3-popover-content { - background: #db3737; - color: #ffffff; -} -.bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill { - fill: #db3737; -} - -.bp3-tooltip-indicator { - border-bottom: dotted 1px; - cursor: help; -} -.bp3-tree .bp3-icon, -.bp3-tree .bp3-icon-standard, -.bp3-tree .bp3-icon-large { - color: #5c7080; -} -.bp3-tree .bp3-icon.bp3-intent-primary, -.bp3-tree .bp3-icon-standard.bp3-intent-primary, -.bp3-tree .bp3-icon-large.bp3-intent-primary { - color: #137cbd; -} -.bp3-tree .bp3-icon.bp3-intent-success, -.bp3-tree .bp3-icon-standard.bp3-intent-success, -.bp3-tree .bp3-icon-large.bp3-intent-success { - color: #0f9960; -} -.bp3-tree .bp3-icon.bp3-intent-warning, -.bp3-tree .bp3-icon-standard.bp3-intent-warning, -.bp3-tree .bp3-icon-large.bp3-intent-warning { - color: #d9822b; -} -.bp3-tree .bp3-icon.bp3-intent-danger, -.bp3-tree .bp3-icon-standard.bp3-intent-danger, -.bp3-tree .bp3-icon-large.bp3-intent-danger { - color: #db3737; -} - -.bp3-tree-node-list { - list-style: none; - margin: 0; - padding-left: 0; -} - -.bp3-tree-root { - background-color: transparent; - cursor: default; - padding-left: 0; - position: relative; -} - -.bp3-tree-node-content-0 { - padding-left: 0px; -} - -.bp3-tree-node-content-1 { - padding-left: 23px; -} - -.bp3-tree-node-content-2 { - padding-left: 46px; -} - -.bp3-tree-node-content-3 { - padding-left: 69px; -} - -.bp3-tree-node-content-4 { - padding-left: 92px; -} - -.bp3-tree-node-content-5 { - padding-left: 115px; -} - -.bp3-tree-node-content-6 { - padding-left: 138px; -} - -.bp3-tree-node-content-7 { - padding-left: 161px; -} - -.bp3-tree-node-content-8 { - padding-left: 184px; -} - -.bp3-tree-node-content-9 { - padding-left: 207px; -} - -.bp3-tree-node-content-10 { - padding-left: 230px; -} - -.bp3-tree-node-content-11 { - padding-left: 253px; -} - -.bp3-tree-node-content-12 { - padding-left: 276px; -} - -.bp3-tree-node-content-13 { - padding-left: 299px; -} - -.bp3-tree-node-content-14 { - padding-left: 322px; -} - -.bp3-tree-node-content-15 { - padding-left: 345px; -} - -.bp3-tree-node-content-16 { - padding-left: 368px; -} - -.bp3-tree-node-content-17 { - padding-left: 391px; -} - -.bp3-tree-node-content-18 { - padding-left: 414px; -} - -.bp3-tree-node-content-19 { - padding-left: 437px; -} - -.bp3-tree-node-content-20 { - padding-left: 460px; -} - -.bp3-tree-node-content { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 30px; - padding-right: 5px; - width: 100%; -} -.bp3-tree-node-content:hover { - background-color: rgba(191, 204, 214, 0.4); -} - -.bp3-tree-node-caret, -.bp3-tree-node-caret-none { - min-width: 30px; -} - -.bp3-tree-node-caret { - color: #5c7080; - cursor: pointer; - padding: 7px; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - -webkit-transition: -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); - transition: - transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tree-node-caret:hover { - color: #182026; -} -.bp3-dark .bp3-tree-node-caret { - color: #a7b6c2; -} -.bp3-dark .bp3-tree-node-caret:hover { - color: #f5f8fa; -} -.bp3-tree-node-caret.bp3-tree-node-caret-open { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tree-node-caret.bp3-icon-standard::before { - content: ""; -} - -.bp3-tree-node-icon { - margin-right: 7px; - position: relative; -} - -.bp3-tree-node-label { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - position: relative; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-tree-node-label span { - display: inline; -} - -.bp3-tree-node-secondary-label { - padding: 0 5px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-tree-node-secondary-label .bp3-popover-wrapper, -.bp3-tree-node-secondary-label .bp3-popover-target { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -.bp3-tree-node.bp3-disabled .bp3-tree-node-content { - background-color: inherit; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} - -.bp3-tree-node.bp3-disabled .bp3-tree-node-caret, -.bp3-tree-node.bp3-disabled .bp3-tree-node-icon { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} - -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content { - background-color: #137cbd; -} -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content, -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-icon-standard, -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large { - color: #ffffff; -} -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-tree-node-caret::before { - color: rgba(255, 255, 255, 0.7); -} -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-tree-node-caret:hover::before { - color: #ffffff; -} - -.bp3-dark .bp3-tree-node-content:hover { - background-color: rgba(92, 112, 128, 0.3); -} - -.bp3-dark .bp3-tree .bp3-icon, -.bp3-dark .bp3-tree .bp3-icon-standard, -.bp3-dark .bp3-tree .bp3-icon-large { - color: #a7b6c2; -} -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary { - color: #137cbd; -} -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success { - color: #0f9960; -} -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning { - color: #d9822b; -} -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger { - color: #db3737; -} - -.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content { - background-color: #137cbd; -} diff --git a/src/components/elements/providers/blueprint/button.tsx b/src/components/elements/providers/blueprint/button.tsx deleted file mode 100644 index 779efb0f..00000000 --- a/src/components/elements/providers/blueprint/button.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { Button } from "@blueprintjs/core"; -import { ButtonProps } from "../../element-context"; -import { iconName, variantToIntent } from "./utils"; -import React from "react"; - -/** - * @hidden - */ -export const BpButton: React.FC> = (props) => { - return - {props.children} - -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/callout.tsx b/src/components/elements/providers/blueprint/callout.tsx deleted file mode 100644 index 88ad402f..00000000 --- a/src/components/elements/providers/blueprint/callout.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { Callout } from '@blueprintjs/core'; -import { CalloutProps } from '../../element-context'; -import React from 'react'; -import { iconName, variantToIntent } from './utils'; - -/** - * @hidden - */ -export const BpCallout: React.FC> = (props) => { - const title = props.title; - const content = title ? <> - {title} - {props.children} - > : props.children; - - return - {content} - ; -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/card.tsx b/src/components/elements/providers/blueprint/card.tsx deleted file mode 100644 index 3b9b9d07..00000000 --- a/src/components/elements/providers/blueprint/card.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { Card } from "@blueprintjs/core"; -import { CardProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpCard: React.FC> = (props) => { - return - {props.children} - ; -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/checkbox.tsx b/src/components/elements/providers/blueprint/checkbox.tsx deleted file mode 100644 index b3470c37..00000000 --- a/src/components/elements/providers/blueprint/checkbox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { Checkbox } from "@blueprintjs/core"; -import { CheckboxProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpCheckbox: React.FC = (props) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/collapsible.tsx b/src/components/elements/providers/blueprint/collapsible.tsx deleted file mode 100644 index c40845de..00000000 --- a/src/components/elements/providers/blueprint/collapsible.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { Collapse } from "@blueprintjs/core"; -import React from "react"; -import { CollapsibleProps } from "../../element-context"; - -/** - * @hidden - */ -export const BpCollapsible: React.FC> = (props) => { - return {props.children} -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/dialog.tsx b/src/components/elements/providers/blueprint/dialog.tsx deleted file mode 100644 index 74e05cdd..00000000 --- a/src/components/elements/providers/blueprint/dialog.tsx +++ /dev/null @@ -1,88 +0,0 @@ -import { Dialog } from "@blueprintjs/core"; -import React from "react"; -import type { DialogBodyProps, DialogContainerProps, DialogFooterActionsProps, DialogFooterProps, DialogHeaderProps, DialogProps, DialogShellProps } from "../../element-context"; -import { iconName } from "./utils"; - -/** - * @hidden - */ -export const BpDialog: React.FC> = ({ icon, isOpen, usePortal, onClose, title, children }) => { - return - {children} - ; -}; - -BpDialog.displayName = "BpDialog"; - -/** - * @hidden - */ -export const BpDialogContainer: React.FC> = ({ className, style, children }) => { - const cls = ["bp3-dialog-container", className].filter(Boolean).join(" "); - return {children}; -}; - -BpDialogContainer.displayName = "BpDialogContainer"; - -/** - * @hidden - */ -export const BpDialogShell: React.FC> = ({ style, className, children }) => { - const cls = ["bp3-dialog", className].filter(Boolean).join(" "); - const combinedStyle: React.CSSProperties = { - // Neutralize Blueprint's default padding-bottom that would otherwise shrink the - // available flex layout area for the dialog body when an explicit height is set. - paddingBottom: 0, - // Clip any content that exceeds the dialog shell bounds. - overflow: "hidden", - ...style, - }; - return {children}; -}; - -BpDialogShell.displayName = "BpDialogShell"; - -/** - * @hidden - */ -export const BpDialogHeader: React.FC> = ({ className, children }) => { - const cls = ["bp3-dialog-header", className].filter(Boolean).join(" "); - return {children}; -}; - -BpDialogHeader.displayName = "BpDialogHeader"; - -/** - * @hidden - */ -export const BpDialogBody: React.FC> = ({ style, className, children }) => { - const cls = ["bp3-dialog-body", className].filter(Boolean).join(" "); - return {children}; -}; - -BpDialogBody.displayName = "BpDialogBody"; - -/** - * @hidden - */ -export const BpDialogFooter: React.FC> = ({ style, className, children }) => { - const cls = ["bp3-dialog-footer", className].filter(Boolean).join(" "); - return {children}; -}; - -BpDialogFooter.displayName = "BpDialogFooter"; - -/** - * @hidden - */ -export const BpDialogFooterActions: React.FC> = ({ style, className, children }) => { - const cls = ["bp3-dialog-footer-actions", className].filter(Boolean).join(" "); - return {children}; -}; - -BpDialogFooterActions.displayName = "BpDialogFooterActions"; diff --git a/src/components/elements/providers/blueprint/drawer.tsx b/src/components/elements/providers/blueprint/drawer.tsx deleted file mode 100644 index c2bbf1bf..00000000 --- a/src/components/elements/providers/blueprint/drawer.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { Drawer, DrawerSize } from "@blueprintjs/core" -import { DrawerProps } from "../../element-context" -import React from "react" -import { iconName } from "./utils" - -/** - * @hidden - */ -export const BpDrawer: React.FC> = ({ icon, onClose, title, position, isOpen, children }) => { - return - {children} - -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/editable-text.tsx b/src/components/elements/providers/blueprint/editable-text.tsx deleted file mode 100644 index f0cdb488..00000000 --- a/src/components/elements/providers/blueprint/editable-text.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import { EditableText } from "@blueprintjs/core"; -import { EditableTextProps } from "../../element-context"; -import React from "react"; - -export const BpEditableText: React.FC = ({ value, onChange }) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/file-input.tsx b/src/components/elements/providers/blueprint/file-input.tsx deleted file mode 100644 index 10c7e086..00000000 --- a/src/components/elements/providers/blueprint/file-input.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { FileInput } from "@blueprintjs/core"; -import { FileInputProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpFileInput: React.FC = ({ fill, text, buttonText, onInputChange }) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/form-group.tsx b/src/components/elements/providers/blueprint/form-group.tsx deleted file mode 100644 index 7375edfa..00000000 --- a/src/components/elements/providers/blueprint/form-group.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { FormGroup } from "@blueprintjs/core"; -import { FormGroupProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpFormGroup: React.FC> = ({ label, labelFor, inline, children }) => { - return - {children} - -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/heading.tsx b/src/components/elements/providers/blueprint/heading.tsx deleted file mode 100644 index a054493f..00000000 --- a/src/components/elements/providers/blueprint/heading.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -import { assertNever } from "../../../../utils/never"; -import { HeadingProps } from "../../element-context"; - -export const BpHeading: React.FC> = ({ level, className, style, children }) => { - switch (level) { - case 1: - return {children}; - case 2: - return {children}; - case 3: - return {children}; - case 4: - return {children}; - case 5: - return {children}; - case 6: - return {children}; - default: - assertNever(level); - return null; - } -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/html-table.tsx b/src/components/elements/providers/blueprint/html-table.tsx deleted file mode 100644 index feb1a071..00000000 --- a/src/components/elements/providers/blueprint/html-table.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from "react"; -import type { HtmlTableProps } from "../../element-context"; - -/** - * @hidden - * @since 0.15 - */ -export const BpHtmlTable: React.FC> = ({ condensed, bordered, className, style, children }) => { - const classes = ["bp3-html-table"]; - if (condensed) { - classes.push("bp3-html-table-condensed"); - } - if (bordered) { - classes.push("bp3-html-table-bordered"); - } - if (className) { - classes.push(className); - } - return {children}; -}; diff --git a/src/components/elements/providers/blueprint/icon.tsx b/src/components/elements/providers/blueprint/icon.tsx deleted file mode 100644 index ce4b2c5f..00000000 --- a/src/components/elements/providers/blueprint/icon.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { Icon } from '@blueprintjs/core'; -import { IconProps } from '../../element-context'; -import React from 'react'; -import { iconName } from './utils'; - -/** - * @hidden - */ -export const BpIcon: React.FC = (props) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/input-group.tsx b/src/components/elements/providers/blueprint/input-group.tsx deleted file mode 100644 index 063721c0..00000000 --- a/src/components/elements/providers/blueprint/input-group.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { InputGroup } from "@blueprintjs/core"; -import { InputGroupProps } from "../../element-context"; -import { iconName } from "./utils"; -import React from "react"; - -/** - * @hidden - */ -export const BpInputGroup: React.FC = (props) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/menu.tsx b/src/components/elements/providers/blueprint/menu.tsx deleted file mode 100644 index 44e16c81..00000000 --- a/src/components/elements/providers/blueprint/menu.tsx +++ /dev/null @@ -1,57 +0,0 @@ -import * as React from "react"; -import { isMenu } from "../../../../utils/type-guards"; -import { IItem, getIconStyle, getEnabled } from "../../../toolbar"; -import { ImageIcon } from "../../../icon"; -import { Menu, MenuDivider, MenuItem } from '@blueprintjs/core'; -import { MenuComponentProps } from "../../element-context"; -import { getText } from "../../../../utils/menu"; - -const MENU_ITEM_HEIGHT = 30; - -/** - * A generic menu component - * @param props - */ -export const BpMenuComponent: React.FC = (props) => { - const onClick = (item: IItem) => { - if (getEnabled(item)) { - item?.invoke?.(); - props.onInvoked?.(); - } - } - return - {props.items.map((item, index) => { - if (item.isSeparator) { - return ; - } else if (isMenu(item)) { - let text = ""; - if (typeof (item.label) == 'function') { - text = item.label(); - } else { - text = item.label || ""; - } - return - - ; - } else { - const height = MENU_ITEM_HEIGHT; - let enabled = true; - if (item.enabled != null) { - if (typeof (item.enabled) == 'function') { - enabled = item.enabled(); - } else { - enabled = item.enabled; - } - } - const imgStyle = { - marginRight: 5, - ...getIconStyle(enabled, height) - }; - //NOTE: Not using MenuItem here as we want fine control over the item content - return - onClick(item)}> {getText(item.label)} - ; - } - })} - ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/non-ideal-state.tsx b/src/components/elements/providers/blueprint/non-ideal-state.tsx deleted file mode 100644 index 901a4d09..00000000 --- a/src/components/elements/providers/blueprint/non-ideal-state.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { NonIdealState } from "@blueprintjs/core"; -import { NonIdealStateProps } from "../../element-context"; -import React from "react"; -import { iconName } from "./utils"; - -/** - * @hidden - */ -export const BpNonIdealState: React.FC = ({ icon, title, description, action }) => { - return -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/numeric-input.tsx b/src/components/elements/providers/blueprint/numeric-input.tsx deleted file mode 100644 index f5031c82..00000000 --- a/src/components/elements/providers/blueprint/numeric-input.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { NumericInput } from '@blueprintjs/core'; -import { NumericInputProps } from '../../element-context'; -import React from 'react'; - -/** - * @hidden - */ -export const BpNumericInput: React.FC = (props) => { - return props.onChange?.(e)}/>; -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/popover.tsx b/src/components/elements/providers/blueprint/popover.tsx deleted file mode 100644 index 6708f50d..00000000 --- a/src/components/elements/providers/blueprint/popover.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { Popover } from "@blueprintjs/core"; -import { PopoverProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpPopover: React.FC> = ({ usePortal, position, minimal, children }) => { - return - {children} - -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/provider.tsx b/src/components/elements/providers/blueprint/provider.tsx deleted file mode 100644 index 5eefa213..00000000 --- a/src/components/elements/providers/blueprint/provider.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import React from "react"; -import { IElementContext } from "../../element-context"; -import { BpButton } from "./button"; -import { BpCheckbox } from "./checkbox"; -import { BpCard } from "./card"; -import { BpIcon } from "./icon"; -import { BpSlider } from "./slider"; -import { BpCallout } from "./callout"; -import { BpNumericInput } from "./numeric-input"; -import { BpCollapsible } from "./collapsible"; -import { BpRadio } from "./radio"; -import { BpInputGroup } from "./input-group"; -import { BpNonIdealState } from "./non-ideal-state"; -import { BpSpinner } from "./spinner"; -import { BpSwitch } from "./switch"; -import { BpSelect } from "./select"; -import { BpFileInput } from "./file-input"; -import { BpFormGroup } from "./form-group"; -import { BpEditableText } from "./editable-text"; -import { BpMenuComponent } from "./menu"; -import { BpTabSet } from "./tab-set"; -import { BpPopover } from "./popover"; -import { BpDrawer } from "./drawer"; -import { BpHeading } from "./heading"; -import { BpText } from "./text"; -import { BpToaster } from "./toaster"; -import { BpDialog, BpDialogBody, BpDialogContainer, BpDialogFooter, BpDialogFooterActions, BpDialogHeader, BpDialogShell } from "./dialog"; -import { BpHtmlTable } from "./html-table"; - -import "./bp-override.css"; - -const provider: IElementContext = { - Text: BpText, - Heading: BpHeading, - Button: BpButton, - Radio: BpRadio, - Slider: BpSlider, - Collapsible: BpCollapsible, - Callout: BpCallout, - Checkbox: BpCheckbox, - Icon: BpIcon, - Card: BpCard, - NumericInput: BpNumericInput, - InputGroup: BpInputGroup, - NonIdealState: BpNonIdealState, - Spinner: BpSpinner, - Switch: BpSwitch, - Select: BpSelect, - FileInput: BpFileInput, - FormGroup: BpFormGroup, - EditableText: BpEditableText, - MenuComponent: BpMenuComponent, - TabSet: BpTabSet, - Drawer: BpDrawer, - Popover: BpPopover, - Toaster: BpToaster, - Dialog: BpDialog, - DialogContainer: BpDialogContainer, - DialogShell: BpDialogShell, - DialogHeader: BpDialogHeader, - DialogBody: BpDialogBody, - DialogFooter: BpDialogFooter, - DialogFooterActions: BpDialogFooterActions, - HtmlTable: BpHtmlTable -}; - -export default provider; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/radio.tsx b/src/components/elements/providers/blueprint/radio.tsx deleted file mode 100644 index 465cab9b..00000000 --- a/src/components/elements/providers/blueprint/radio.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import { Radio } from '@blueprintjs/core'; -import { RadioProps } from '../../element-context'; -import React from 'react'; - -/** - * @hidden - */ -export const BpRadio: React.FC = (props) => { - return ; -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/select.tsx b/src/components/elements/providers/blueprint/select.tsx deleted file mode 100644 index 7d744edc..00000000 --- a/src/components/elements/providers/blueprint/select.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -import { SelectProps } from "../../element-context"; -import { strIsNullOrEmpty } from "../../../../utils/string"; - -/** - * @hidden - */ -export const BpSelect: React.FC = ({ id, name, value, onChange, items, fill, placeholder, keyFunc, extraClassNames, style }) => { - const classes = `bp3-select ${!!fill ? 'bp3-fill' : ''} ${extraClassNames}`.trim(); - return - onChange?.(e.target.value)}> - {!strIsNullOrEmpty(placeholder) && {placeholder}} - {items.map((item, i) => { - let key: React.Key = item.value; - if (typeof(keyFunc) === 'function') { - key = keyFunc(item); - } - const label = item.label; - return {label}; - })} - - ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/slider.tsx b/src/components/elements/providers/blueprint/slider.tsx deleted file mode 100644 index b8747cea..00000000 --- a/src/components/elements/providers/blueprint/slider.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import { Slider } from '@blueprintjs/core'; -import { SliderProps } from '../../element-context'; -import React from 'react'; - -/** - * @hidden - */ -export const BpSlider: React.FC = (props) => { - return ; -}; \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/spinner.tsx b/src/components/elements/providers/blueprint/spinner.tsx deleted file mode 100644 index 6e007290..00000000 --- a/src/components/elements/providers/blueprint/spinner.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { Spinner, SpinnerSize as BpSpinSize } from "@blueprintjs/core"; -import { SpinnerProps, SpinnerSize } from "../../element-context"; -import React from "react"; -import { variantToIntent } from "./utils"; - -function presetToSize(preset: SpinnerSize | undefined) { - switch (preset) { - case "small": - return BpSpinSize.SMALL; - case "standard": - return BpSpinSize.STANDARD; - case "large": - return BpSpinSize.LARGE; - } - return undefined; -} - -/** - * @hidden - */ -export const BpSpinner: React.FC = (props) => { - return ; -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/switch.tsx b/src/components/elements/providers/blueprint/switch.tsx deleted file mode 100644 index 202d6fba..00000000 --- a/src/components/elements/providers/blueprint/switch.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { Switch } from "@blueprintjs/core"; -import { SwitchProps } from "../../element-context"; -import React from "react"; - -/** - * @hidden - */ -export const BpSwitch: React.FC = (props) => { - return -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/tab-set.tsx b/src/components/elements/providers/blueprint/tab-set.tsx deleted file mode 100644 index 87060dc1..00000000 --- a/src/components/elements/providers/blueprint/tab-set.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { Tab, Tabs } from "@blueprintjs/core"; -import { TabSetProps } from "../../element-context"; -import React from "react"; - -export const BpTabSet: React.FC = (props) => { - const { id, className, onTabChanged, tabs, activeTabId } = props; - return onTabChanged?.(tabId)} selectedTabId={activeTabId}> - {tabs.map(tab => )} - -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/text.tsx b/src/components/elements/providers/blueprint/text.tsx deleted file mode 100644 index 756c05d6..00000000 --- a/src/components/elements/providers/blueprint/text.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from "react" -import { TextProps } from "../../element-context" - -export const BpText: React.FC = ({ component, className, style, children }) => { - const cmp = component || "span"; - switch (cmp) { - case "p": - return {children}; - case "div": - return {children}; - default: - return {children}; - } -} \ No newline at end of file diff --git a/src/components/elements/providers/blueprint/toaster.tsx b/src/components/elements/providers/blueprint/toaster.tsx deleted file mode 100644 index 1ae191a7..00000000 --- a/src/components/elements/providers/blueprint/toaster.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { Toaster, Position } from "@blueprintjs/core"; -import type { ToasterPosition } from "@blueprintjs/core"; -import React from "react"; -import type { IToasterRef, ToasterProps, ToastPosition } from "../../element-context"; -import { iconName, variantToIntent } from "./utils"; - -function toastPositionToBp(position: ToastPosition | undefined): ToasterPosition { - switch (position) { - case "top-left": return Position.TOP_LEFT as ToasterPosition; - case "top-right": return Position.TOP_RIGHT as ToasterPosition; - case "bottom": return Position.BOTTOM as ToasterPosition; - case "bottom-left": return Position.BOTTOM_LEFT as ToasterPosition; - case "bottom-right": return Position.BOTTOM_RIGHT as ToasterPosition; - case "top": - default: - return Position.TOP as ToasterPosition; - } -} - -/** - * @hidden - */ -export const BpToaster = React.forwardRef((props, ref) => { - const bpToasterRef = React.useRef(null); - - React.useImperativeHandle(ref, () => ({ - show(message) { - return bpToasterRef.current?.show({ - icon: iconName(message.icon), - message: message.message, - intent: variantToIntent(message.variant) - }); - }, - dismiss(key) { - bpToasterRef.current?.dismiss(key); - } - })); - - return ; -}); - -BpToaster.displayName = "BpToaster"; diff --git a/src/components/elements/providers/blueprint/utils.ts b/src/components/elements/providers/blueprint/utils.ts deleted file mode 100644 index af9d76bf..00000000 --- a/src/components/elements/providers/blueprint/utils.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { IconName, Intent } from "@blueprintjs/core"; -import { ElementVariant } from "../../element-context"; - -/** - * @hidden - */ -export function iconName(name: string | undefined): IconName | undefined { - return name as IconName; -} - -/** - * @hidden - */ -export function variantToIntent(variant: ElementVariant | undefined): Intent | undefined { - switch (variant) { - case "primary": - return Intent.PRIMARY; - case "warning": - return Intent.WARNING; - case "danger": - return Intent.DANGER; - case "success": - return Intent.SUCCESS; - default: - return undefined; - } -} \ No newline at end of file diff --git a/src/components/elements/providers/minimal/icon-map.ts b/src/components/elements/providers/minimal/icon-map.ts index 90f79049..1040437e 100644 --- a/src/components/elements/providers/minimal/icon-map.ts +++ b/src/components/elements/providers/minimal/icon-map.ts @@ -1,12 +1,12 @@ -// Minimal provider – Icon map (Blueprint icon names pass-through) -// No external icon library — all SVG data is bundled inline in svg-icons.tsx. +// Minimal provider – Icon map (icon name pass-through) +// All SVG data is bundled inline in svg-icons.tsx. /** - * Returns the incoming Blueprint icon name for SVG lookup. + * Returns the incoming icon name for SVG lookup. * * @hidden * @since 0.15 */ -export function getSvgIconName(blueprintName: string): string | null { - return blueprintName; +export function getSvgIconName(iconName: string): string | null { + return iconName; } diff --git a/src/components/elements/providers/minimal/svg-icons.tsx b/src/components/elements/providers/minimal/svg-icons.tsx index 5a8383f2..53c5e22d 100644 --- a/src/components/elements/providers/minimal/svg-icons.tsx +++ b/src/components/elements/providers/minimal/svg-icons.tsx @@ -4,7 +4,7 @@ import React from "react"; // Each icon is represented as an array of [tagName, attributes] tuples. type SvgNode = [string, Record]; type SvgNodeList = SvgNode[]; -type IBlueprintPathMap = Record; +type ISvgPathMap = Record; /** * @hidden @@ -14,7 +14,7 @@ export type InlineSvgIcon = SvgNodeList; /** * All icon path data, keyed by a logical name. - * SVG paths are replicated from our Blueprint icon path subset. + * SVG paths are embedded inline — no external icon library required. * @hidden * @since 0.15 */ @@ -22,13 +22,13 @@ function toInlineSvgIcon(paths: string[]): InlineSvgIcon { return paths.map((d) => ["path", { d }]); } -function buildSvgIconRegistry(pathMap: IBlueprintPathMap): Record { +function buildSvgIconRegistry(pathMap: ISvgPathMap): Record { return Object.fromEntries( Object.entries(pathMap).map(([name, paths]) => [name, toInlineSvgIcon(paths)]) ); } -const BP_ICONS_20: IBlueprintPathMap = { +const SVG_ICON_PATHS_20: ISvgPathMap = { "arrow-left": [ "M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z" ], @@ -183,10 +183,10 @@ const BP_ICONS_20: IBlueprintPathMap = { ] }; -export const SVG_ICONS: Record = buildSvgIconRegistry(BP_ICONS_20); +export const SVG_ICONS: Record = buildSvgIconRegistry(SVG_ICON_PATHS_20); -function getBlueprintIconPaths(name: string): { paths: string[]; viewBoxSize: number } | null { - const paths = BP_ICONS_20[name]; +function getSvgIconPaths(name: string): { paths: string[]; viewBoxSize: number } | null { + const paths = SVG_ICON_PATHS_20[name]; if (!paths) { return null; } @@ -200,7 +200,7 @@ function getBlueprintIconPaths(name: string): { paths: string[]; viewBoxSize: nu * @hidden */ export const SvgIcon: React.FC<{ name: string; size?: number; style?: React.CSSProperties }> = ({ name, size = 16, style }) => { - const iconData = getBlueprintIconPaths(name); + const iconData = getSvgIconPaths(name); if (!iconData) { return null; } diff --git a/src/components/flyout-region.tsx b/src/components/flyout-region.tsx index 73ba111a..f260d29a 100644 --- a/src/components/flyout-region.tsx +++ b/src/components/flyout-region.tsx @@ -80,7 +80,7 @@ export const FlyoutRegion = (props: IFlyoutRegionProps) => { const met = flyout.metrics; if (flyoutId == WEBLAYOUT_CONTEXTMENU) { // TODO: Refine the layout positioning so that it better behaves like it did - // previously when the blueprint context menu worked (ie. If right-clicking near + // previously when the context menu worked (ie. If right-clicking near // the bottom, the menu should be shown "above" the cursor) containerStyle.top = met.posY - 40; containerStyle.left = met.posX + 20; diff --git a/src/components/map-viewer-swipe.tsx b/src/components/map-viewer-swipe.tsx index a924997e..a57f661f 100644 --- a/src/components/map-viewer-swipe.tsx +++ b/src/components/map-viewer-swipe.tsx @@ -235,7 +235,7 @@ export const MapComparisonControl: React.FC = () => { /* * Pointer events and mouse events are separate event streams. * stopPropagation on pointerdown/pointerup does NOT stop mousedown/mouseup. - * BlueprintJS Popover listens for mousedown on document to detect outside clicks, + * Popover listens for mousedown on document to detect outside clicks, * so we must also stop mouse events from propagating to prevent the popover * from closing when the swipe handle is dragged. */ diff --git a/src/components/navigator.tsx b/src/components/navigator.tsx index 630d23d7..ae99fa0f 100644 --- a/src/components/navigator.tsx +++ b/src/components/navigator.tsx @@ -1,7 +1,11 @@ import * as React from "react"; import { tr } from "../api/i18n"; // TODO: Consolidate on react-rnd which should be able to provide equivalent functionality -import Draggable from "react-draggable"; +import DraggableBase from "react-draggable"; + +// react-draggable@4.x has stricter types incompatible with @types/react@17. +// Cast through unknown to bypass the type mismatch. +const Draggable = DraggableBase as unknown as React.ComponentType; import { getFiniteScaleIndexForScale } from "../utils/number"; import { IMG_SLIDER, @@ -156,6 +160,10 @@ export const Navigator = (props: INavigatorProps) => { handle="img.navigator-drag-handle" position={{ x: 0, y: (VERT_START + pos) }} bounds={{ top: VERT_START, bottom: (VERT_START + VERT_SPAN), left: 0, right: 0 }} + disabled={false} + allowAnyClick={false} + allowMobileScroll={false} + enableUserSelectHack={true} onStart={onStart} onDrag={onDrag} onStop={onStop}> diff --git a/src/containers/measure.tsx b/src/containers/measure.tsx index 9ab3e178..9bfc2535 100644 --- a/src/containers/measure.tsx +++ b/src/containers/measure.tsx @@ -17,7 +17,7 @@ import DOMPurify from "dompurify"; import { ElementGroup, TypedSelect, useElementContext } from "../components/elements/element-context"; export const MeasureContainer = () => { - const { Callout, Button, HtmlTable } = useElementContext(); + const { Callout, Button, HtmlTable, FormGroup } = useElementContext(); const activeMapName = useActiveMapName(); const locale = useViewerLocale(); const mapNames = useAvailableMaps()?.map(m => m.value); @@ -155,13 +155,12 @@ export const MeasureContainer = () => { return - - {tr("MEASUREMENT_TYPE", locale)} + value={drawType} onChange={onTypeChanged} items={measurementTypes} /> - + {tr("MEASUREMENT_START", locale)} {tr("MEASUREMENT_END", locale)} diff --git a/src/containers/neo-map-viewer.tsx b/src/containers/neo-map-viewer.tsx index 208316e5..6b0a6b36 100644 --- a/src/containers/neo-map-viewer.tsx +++ b/src/containers/neo-map-viewer.tsx @@ -246,7 +246,7 @@ export const MapViewer = ({ children }: { children?: React.ReactNode }) => { if (nextState.isReady) { return ( <> - {/* HACK: usePortal=false to workaround what I think is: https://github.com/palantir/blueprint/issues/3248 */} + {/* HACK: usePortal=false to workaround potential portal z-index issues */} { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return - + Map Viewer - + This story (and all sibling stories) showcases the map viewer component and other components that depend or interact with map viewer state @@ -87,12 +87,12 @@ export const MapViewer = () => { export const TaskPane = () => ; export const MouseCoordinates = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + Mouse Coordinates - + Move the mouse around the map and its geographic coordinates should be shown below @@ -103,12 +103,12 @@ export const MouseCoordinates = () => { }; export const ViewSize = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + View Size - + Zoom in or out of the map. The physical map size should be shown below @@ -118,13 +118,12 @@ export const ViewSize = () => { }; export const ScaleDisplay = () => { - const { Card } = useElementContext(); - return - <> + const { Card, Heading } = useElementContext(); + return <> - + Scale Display - + Zoom in or out of the map. The map scale should be shown below diff --git a/src/stories/mapguide.stories.tsx b/src/stories/mapguide.stories.tsx index ff6bbe7d..2cc094ef 100644 --- a/src/stories/mapguide.stories.tsx +++ b/src/stories/mapguide.stories.tsx @@ -40,12 +40,12 @@ export const LegendWithBaseLayerSwitcher = { }; export const SelectedFeatureCount = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + Selected Feature Count - + Click the test select button to simulate a map selection request. The selection count should display below diff --git a/src/styles/index.css b/src/styles/index.css index 760ba49b..a7d75e5f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -2,11 +2,6 @@ @import "../../stdassets/sprites/icons.css"; @import "./splitter-layout.css"; -/* HACK: Clear out any trace of the font icon as HTMLSelect should be using the SVG counterpart */ -.bp3-select:after { - content: ""; -} - .legend-label-highlight-text { background-color: yellow; } @@ -19,6 +14,10 @@ background-color: white; } +.map-viewer-component:focus { + outline: none; +} + .map-viewer-component .ol-overlaycontainer, .map-viewer-component .ol-overlaycontainer-stopevent { z-index: 20; @@ -520,10 +519,6 @@ div.InfoText { word-wrap: break-word; } -.bp3-dark { - background-color: #30404d; -} - .colorpicker { position: relative; width: 100%; diff --git a/stdassets/bp-icons.js b/stdassets/bp-icons.js deleted file mode 100644 index ce4d1f82..00000000 --- a/stdassets/bp-icons.js +++ /dev/null @@ -1,121 +0,0 @@ -/** - * bp-icons.js - * - * A verbatim subset of the Blueprint.js SVG icon set that we actually use - * - * All usages of the BP icon set will be replaced with this via - * bundler aliasing in the build config - * - * When adding icons, copy the relevant icon path definitions from - * node_modules/@blueprintjs/icons/src/generated/iconSvgPaths.ts - */ - -//TODO/FIXME: This module is not used directly by sources, so changes to -//this file may not trigger a rebuild. If making changes, you may -//have to restart the current build process. - -export const IconSvgPaths16 = { - "arrow-left": ["M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z"], - "arrow-right": ["M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"], - "arrows-horizontal": ["M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z"], - "caret-up": ["M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z"], - "chevron-down": ["M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z"], - "chevron-right": ["M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "cog": ["M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"], - "comment": ["M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z"], - "comparison": ["M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z"], - "delete": ["M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z"], - "disable": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z"], - "double-caret-vertical": ["M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"], - "edit": ["M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z"], - "error": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z"], - "folder-close": ["M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z"], - "hand": ["M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z"], - "home": ["M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z"], - "issue": ["M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z"], - "layer": ["M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z"], - "layers": ["M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z"], - "map": ["M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z"], - "media": ["M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z"], - "menu-closed": ["M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z"], - "minus": ["M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z"], - "new-layer": ["M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z"], - "path-search": ["M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z"], - "play": ["M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z"], - "plus": ["M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z"], - "properties": ["M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"], - "search": ["M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"], - "select": ["M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z"], - "small-cross": ["M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "stop": ["M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z"], - "th": ["M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z"], - "tick": ["M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z"], - "trash": ["M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z"], - "upload": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z"], - "warning-sign": ["M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z"], - "zoom-to-fit": ["M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z"] -} - -export const IconSvgPaths20 = { - "arrow-left": ["M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z"], - "arrow-right": ["M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "arrows-horizontal": ["M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z"], - "caret-up": ["M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z"], - "chevron-down": ["M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z"], - "chevron-right": ["M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "cog": ["M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "comment": ["M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"], - "comparison": ["M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z"], - "delete": ["M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"], - "disable": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z"], - "double-caret-vertical": ["M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z"], - "edit": ["M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z"], - "error": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z"], - "folder-close": ["M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z"], - "hand": ["M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z"], - "home": ["M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z"], - "issue": ["M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z"], - "layer": ["M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z"], - "layers": ["M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z", -"M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", -"M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z"], - "map": ["M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z"], - "media": ["M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z"], - "menu-closed": ["M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "minus": ["M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z"], - "new-layer": ["M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z"], - "path-search": ["M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "play": ["M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z"], - "plus": ["M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z"], - "properties": ["M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "select": ["M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z"], - "search": ["M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"], - "small-cross": ["M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "stop": ["M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z"], - "th": ["M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z"], - "tick": ["M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z"], - "trash": ["M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z"], - "upload": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z"], - "warning-sign": ["M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z"], - "zoom-to-fit": ["M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z"] -} \ No newline at end of file diff --git a/test/components/map-load-indicator.spec.tsx b/test/components/map-load-indicator.spec.tsx index f208ca96..9576724a 100644 --- a/test/components/map-load-indicator.spec.tsx +++ b/test/components/map-load-indicator.spec.tsx @@ -16,7 +16,7 @@ describe("MapLoadIndicator", () => { const { container } = render(); const div = container.firstChild as HTMLDivElement; expect(div).toBeInTheDocument(); - expect(div.style.width).toBe("50.0%"); + expect(div.style.width).toBe("50%"); expect(div.style.background).toBe("rgb(255, 0, 0)"); // #ff0000 in rgb expect(div.style.visibility).toBe("visible"); expect(div.style.position).toBe("absolute"); @@ -61,7 +61,7 @@ describe("MapLoadIndicator", () => { const props = { ...baseProps, loaded: 0, loading: 10 }; const { container } = render(); const div = container.firstChild as HTMLDivElement; - expect(div.style.width).toBe("0.0%"); + expect(div.style.width).toBe("0%"); expect(div.style.visibility).toBe("visible"); }); }); \ No newline at end of file diff --git a/test/containers/add-manage-layers.spec.tsx b/test/containers/add-manage-layers.spec.tsx index 32a0570c..cb85b2b6 100644 --- a/test/containers/add-manage-layers.spec.tsx +++ b/test/containers/add-manage-layers.spec.tsx @@ -31,8 +31,8 @@ import { AddManageLayersContainer } from "../../src/containers/add-manage-layers import { tr } from "../../src/api/i18n"; // --------------------------------------------------------------------------- -// Mock element-context so that Blueprint components are replaced with simple -// HTML elements that work in jsdom without any Blueprint CSS / portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without any external CSS / portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ diff --git a/test/containers/measure.spec.tsx b/test/containers/measure.spec.tsx index 95cef2c7..233d35e6 100644 --- a/test/containers/measure.spec.tsx +++ b/test/containers/measure.spec.tsx @@ -75,6 +75,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ Callout: ({ children }: React.PropsWithChildren<{}>) => {children}, Button: ({ children, onClick, disabled }: any) => {children}, HtmlTable: ({ children }: React.PropsWithChildren<{}>) => {children}, + FormGroup: ({ children }: React.PropsWithChildren<{}>) => {children}, }), })); diff --git a/test/containers/selection-panel.spec.tsx b/test/containers/selection-panel.spec.tsx index ed7f002b..2c03cae7 100644 --- a/test/containers/selection-panel.spec.tsx +++ b/test/containers/selection-panel.spec.tsx @@ -31,8 +31,8 @@ import { tr } from "../../src/api/i18n"; import { createSelectionSet, createClientSelectionSet } from "../../test-data"; // --------------------------------------------------------------------------- -// Mock element-context so Blueprint components are replaced with simple HTML -// elements that work in jsdom without Blueprint CSS/portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without external CSS/portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ @@ -71,7 +71,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ })); // --------------------------------------------------------------------------- -// Mock the SelectionPanel component to avoid deep OL / Blueprint dependencies. +// Mock the SelectionPanel component to avoid deep OL dependencies. // Renders a sentinel element so tests can verify it is rendered vs. not, and // exposes a "Show Feature" button so tests can trigger onShowSelectedFeature. // --------------------------------------------------------------------------- diff --git a/viewer/css/limegold.css b/viewer/css/limegold.css index 86471a54..4c6091aa 100644 --- a/viewer/css/limegold.css +++ b/viewer/css/limegold.css @@ -40,13 +40,10 @@ .limegold-status-bar { background: #FFFEBE; } -.bp3-tab[aria-selected="true"], .bp3-tab:not([aria-disabled="true"]):hover { +.mrl-tab--active, .mrl-tab:hover:not(.mrl-tab--active) { color: black; } -.bp3-tab-indicator-wrapper .bp3-tab-indicator { - background-color: black; -} -.limegold-sidebar-tabs > .bp3-tab-list { +.limegold-sidebar-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f48000+0,fabb00+100 */ background: #f48000; /* Old browsers */ diff --git a/viewer/css/turquoise-yellow.css b/viewer/css/turquoise-yellow.css index 5baa31b9..74893293 100644 --- a/viewer/css/turquoise-yellow.css +++ b/viewer/css/turquoise-yellow.css @@ -67,7 +67,7 @@ .turquoise-yellow-splitter > .layout-splitter { background-color: #578bad; } -.turquoise-yellow-sb-tabs > .bp3-tab-list { +.turquoise-yellow-sb-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#faea98+0,fefcea+100 */ background: #faea98; /* Old browsers */ @@ -76,6 +76,6 @@ background: linear-gradient(to bottom, #faea98 0%,#fefcea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faea98', endColorstr='#fefcea',GradientType=0 ); /* IE6-9 */ } -.turquoise-yellow-sb-tabs > .bp3-tab-list > .bp3-tab { +.turquoise-yellow-sb-tabs > .mrl-tab-list > .mrl-tab { color: #11449E; } \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index b9dc7d31..f6649fb3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -14,8 +14,7 @@ const getBuildMetadata = () => ({ __VERSION__: JSON.stringify(process.env.APPVEYOR_BUILD_VERSION || ""), __COMMITHASH__: JSON.stringify(process.env.APPVEYOR_REPO_COMMIT || ""), __BRANCH__: JSON.stringify(process.env.APPVEYOR_REPO_BRANCH || "master"), - "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development"), - "process.env.BLUEPRINT_NAMESPACE": JSON.stringify("bp3") + "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development") }); const getAssetFileName = (assetInfo: IAssetFileInfo, isDebugBuild: boolean) => { @@ -256,12 +255,6 @@ const config = async ({ mode }: { mode: string }) => { __DEV__: JSON.stringify(!isProduction) }, resolve: { - alias: [ - { - find: /.*\/generated\/iconSvgPaths.*/, - replacement: path.resolve(__dirname, "stdassets/bp-icons.js") - } - ] }, build: { target: "es2015", diff --git a/yarn.lock b/yarn.lock index 6671b300..81391bef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,9 +6,9 @@ __metadata: cacheKey: 10c0 "@adobe/css-tools@npm:^4.4.0": - version: 4.4.3 - resolution: "@adobe/css-tools@npm:4.4.3" - checksum: 10c0/6d16c4d4b6752d73becf6e58611f893c7ed96e04017ff7084310901ccdbe0295171b722b158f6a2b0aa77182ef3446ffd62b39488fa5a7adab1f0dfe5ffafbae + version: 4.5.0 + resolution: "@adobe/css-tools@npm:4.5.0" + checksum: 10c0/fc969e1117098eb4cccdb73beb2508daa0e52760af1183d6288bafea59204943490ab3ede28593032ffb8929c0cee270b2a53254fe61139ab00604ea8fc33cea languageName: node linkType: hard @@ -22,7 +22,7 @@ __metadata: languageName: node linkType: hard -"@asamuzakjp/css-color@npm:^3.1.2": +"@asamuzakjp/css-color@npm:^3.2.0": version: 3.2.0 resolution: "@asamuzakjp/css-color@npm:3.2.0" dependencies: @@ -44,29 +44,7 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/code-frame@npm:7.27.1" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.27.1" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00 - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.28.6": - version: 7.29.0 - resolution: "@babel/code-frame@npm:7.29.0" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.28.5" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.29.7": +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.29.7": version: 7.29.7 resolution: "@babel/code-frame@npm:7.29.7" dependencies: @@ -107,33 +85,7 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5": - version: 7.29.1 - resolution: "@babel/generator@npm:7.29.1" - dependencies: - "@babel/parser": "npm:^7.29.0" - "@babel/types": "npm:^7.29.0" - "@jridgewell/gen-mapping": "npm:^0.3.12" - "@jridgewell/trace-mapping": "npm:^0.3.28" - jsesc: "npm:^3.0.2" - checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/generator@npm:7.27.1" - dependencies: - "@babel/parser": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" - jsesc: "npm:^3.0.2" - checksum: 10c0/c4156434b21818f558ebd93ce45f027c53ee570ce55a84fd2d9ba45a79ad204c17e0bff753c886fb6c07df3385445a9e34dc7ccb070d0ac7e80bb91c8b57f423 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.29.7": +"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5, @babel/generator@npm:^7.29.7": version: 7.29.7 resolution: "@babel/generator@npm:7.29.7" dependencies: @@ -166,17 +118,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.16.7": - version: 7.27.1 - resolution: "@babel/helper-module-imports@npm:7.27.1" - dependencies: - "@babel/traverse": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8 - languageName: node - linkType: hard - -"@babel/helper-module-imports@npm:^7.29.7": +"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-module-imports@npm:7.29.7" dependencies: @@ -199,17 +141,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.8.0": - version: 7.28.6 - resolution: "@babel/helper-plugin-utils@npm:7.28.6" - checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-string-parser@npm:7.27.1" - checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.29.7, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.29.7 + resolution: "@babel/helper-plugin-utils@npm:7.29.7" + checksum: 10c0/380477a06133274a2759f9355929cb60a95e8b8fee624a1ae1fa349e1d1645b89daca456f72833f6d1062bffa12ee4271c5bf0cc5a61c0166cdc24c7591e2408 languageName: node linkType: hard @@ -220,21 +155,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-validator-identifier@npm:7.27.1" - checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/helper-validator-identifier@npm:7.28.5" - checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.29.7": +"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-validator-identifier@npm:7.29.7" checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b @@ -270,29 +191,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/parser@npm:7.27.2" - dependencies: - "@babel/types": "npm:^7.27.1" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": - version: 7.29.2 - resolution: "@babel/parser@npm:7.29.2" - dependencies: - "@babel/types": "npm:^7.29.0" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/e5a4e69e3ac7acdde995f37cf299a68458cfe7009dff66bd0962fd04920bef287201169006af365af479c08ff216bfefbb595e331f87f6ae7283858aebbc3317 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.29.7": +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.29.7": version: 7.29.7 resolution: "@babel/parser@npm:7.29.7" dependencies: @@ -348,13 +247,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-import-attributes@npm:^7.24.7": - version: 7.28.6 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/1be160e2c426faa74e5be2e30e39e8d0d8c543063bd5d06cd804f8751b8fbcb82ce824ca7f9ce4b09c003693f6c06a11ce503b7e34d85e1a259631e4c3f72ad2 + checksum: 10c0/b9a47e869d8c06676297069895ae34e2bd244ec4c3bdf15002f1e69aed32eef0361044af22a43f271b8de5e23a40534fe6a74a63e7ab98e3d60a74b322444b49 languageName: node linkType: hard @@ -381,13 +280,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-jsx@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-jsx@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b98fc3cd75e4ca3d5ca1162f610c286e14ede1486e0d297c13a5eb0ac85680ac9656d17d348bddd9160a54d797a08cea5eaac02b9330ddebb7b26732b7b99fb5 + checksum: 10c0/1736000de183538ba8eef34520105508860e48b0c763254ba9158af5e814ed8bbceeedbb4281fbda33de787ae5b3870e92f60c6ae7131e7d322e451d57387896 languageName: node linkType: hard @@ -480,67 +379,24 @@ __metadata: linkType: hard "@babel/plugin-syntax-typescript@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-typescript@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-typescript@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b0c392a35624883ac480277401ac7d92d8646b66e33639f5d350de7a6723924265985ae11ab9ebd551740ded261c443eaa9a87ea19def9763ca1e0d78c97dea8 + checksum: 10c0/c49883b0327e8683b770dc823205af5c697da216e590dcf5bf53f3f031e7e381de450b164f8f99853f0837a3de5cb793298e2be6697a0f6e452bb9dd34b5165e languageName: node linkType: hard -"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8": - version: 7.27.1 - resolution: "@babel/runtime@npm:7.27.1" - checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": - version: 7.27.3 - resolution: "@babel/runtime@npm:7.27.3" - checksum: 10c0/b860fe374a36fddbeeb238e52e59443abcacc046eebda1bf278bffbc67b5c8f713b939e09c126b086ca5f97cba1987ea17fd1737568bc50fedb1f6ef1cf46f69 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.1": - version: 7.29.2 - resolution: "@babel/runtime@npm:7.29.2" - checksum: 10c0/30b80a0140d16467792e1bbeb06f655b0dab70407da38dfac7fedae9c859f9ae9d846ef14ad77bd3814c064295fe9b1bc551f1541ea14646ae9f22b71a8bc17a - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.28.6": +"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.28.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": version: 7.29.7 resolution: "@babel/runtime@npm:7.29.7" checksum: 10c0/ca11572f7146b21e0bde6a9ed4bb6a89eafbee5f0944c7eb54d0d8a2dac962c33638a1d611e14faa71dfbb92b4b5f9236232208568a6b7d5c6f3f39ddb91771e languageName: node linkType: hard -"@babel/template@npm:^7.22.5": - version: 7.28.6 - resolution: "@babel/template@npm:7.28.6" - dependencies: - "@babel/code-frame": "npm:^7.28.6" - "@babel/parser": "npm:^7.28.6" - "@babel/types": "npm:^7.28.6" - checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5 - languageName: node - linkType: hard - -"@babel/template@npm:^7.27.1": - version: 7.27.2 - resolution: "@babel/template@npm:7.27.2" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.2" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81 - languageName: node - linkType: hard - -"@babel/template@npm:^7.29.7": +"@babel/template@npm:^7.22.5, @babel/template@npm:^7.29.7": version: 7.29.7 resolution: "@babel/template@npm:7.29.7" dependencies: @@ -551,22 +407,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/traverse@npm:7.27.1" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: 10c0/d912110037b03b1d70a2436cfd51316d930366a5f54252da2bced1ba38642f644f848240a951e5caf12f1ef6c40d3d96baa92ea6e84800f2e891c15e97b25d50 - languageName: node - linkType: hard - -"@babel/traverse@npm:^7.29.7": +"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.29.7": version: 7.29.7 resolution: "@babel/traverse@npm:7.29.7" dependencies: @@ -581,27 +422,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/types@npm:7.27.1" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10c0/ed736f14db2fdf0d36c539c8e06b6bb5e8f9649a12b5c0e1c516fed827f27ef35085abe08bf4d1302a4e20c9a254e762eed453bce659786d4a6e01ba26a91377 - languageName: node - linkType: hard - -"@babel/types@npm:^7.22.5, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": - version: 7.29.0 - resolution: "@babel/types@npm:7.29.0" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.28.5" - checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f - languageName: node - linkType: hard - -"@babel/types@npm:^7.29.7": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.29.7": version: 7.29.7 resolution: "@babel/types@npm:7.29.7" dependencies: @@ -625,51 +446,6 @@ __metadata: languageName: node linkType: hard -"@blueprintjs/colors@npm:^4.0.0-alpha.3": - version: 4.2.1 - resolution: "@blueprintjs/colors@npm:4.2.1" - dependencies: - tslib: "npm:~2.5.0" - checksum: 10c0/3a95ebfb1dc3c7c299845ac473ffa0f58e5212e5ba5cad072196aadbadfc27393cf16efda7aba2df1ba29703c05851cf5f84896f4172d484230fe68861621f97 - languageName: node - linkType: hard - -"@blueprintjs/core@npm:^3.54.0": - version: 3.54.0 - resolution: "@blueprintjs/core@npm:3.54.0" - dependencies: - "@blueprintjs/colors": "npm:^4.0.0-alpha.3" - "@blueprintjs/icons": "npm:^3.33.0" - "@juggle/resize-observer": "npm:^3.3.1" - "@types/dom4": "npm:^2.0.1" - classnames: "npm:^2.2" - dom4: "npm:^2.1.5" - normalize.css: "npm:^8.0.1" - popper.js: "npm:^1.16.1" - react-lifecycles-compat: "npm:^3.0.4" - react-popper: "npm:^1.3.7" - react-transition-group: "npm:^2.9.0" - tslib: "npm:~2.3.1" - peerDependencies: - react: ^15.3.0 || 16 || 17 - react-dom: ^15.3.0 || 16 || 17 - bin: - upgrade-blueprint-2.0.0-rename: scripts/upgrade-blueprint-2.0.0-rename.sh - upgrade-blueprint-3.0.0-rename: scripts/upgrade-blueprint-3.0.0-rename.sh - checksum: 10c0/2d32339085f237edbfe105c56a464a9fd408d3fcc9a113b32fac4cbe3673e109a1a15968ce3c1a9feb406a3264e680967591f7def374f5a218e991a12373abe9 - languageName: node - linkType: hard - -"@blueprintjs/icons@npm:^3.33.0": - version: 3.33.0 - resolution: "@blueprintjs/icons@npm:3.33.0" - dependencies: - classnames: "npm:^2.2" - tslib: "npm:~2.3.1" - checksum: 10c0/030bdc77791b2d5287c8f046cb416d419d1204953ed84526c0a220b39bcc5acbaa04b2af9f8dbdcbb8189dab72b3c8b8c2df8bbc50af57ec510d0e705c0b01b9 - languageName: node - linkType: hard - "@cspotcode/source-map-support@npm:^0.8.0": version: 0.8.1 resolution: "@cspotcode/source-map-support@npm:0.8.1" @@ -679,49 +455,59 @@ __metadata: languageName: node linkType: hard -"@csstools/color-helpers@npm:^5.0.2": - version: 5.0.2 - resolution: "@csstools/color-helpers@npm:5.0.2" - checksum: 10c0/bebaddb28b9eb58b0449edd5d0c0318fa88f3cb079602ee27e88c9118070d666dcc4e09a5aa936aba2fde6ba419922ade07b7b506af97dd7051abd08dfb2959b +"@csstools/color-helpers@npm:^5.1.0": + version: 5.1.0 + resolution: "@csstools/color-helpers@npm:5.1.0" + checksum: 10c0/b7f99d2e455cf1c9b41a67a5327d5d02888cd5c8802a68b1887dffef537d9d4bc66b3c10c1e62b40bbed638b6c1d60b85a232f904ed7b39809c4029cb36567db languageName: node linkType: hard -"@csstools/css-calc@npm:^2.1.3": - version: 2.1.3 - resolution: "@csstools/css-calc@npm:2.1.3" +"@csstools/css-calc@npm:^2.1.3, @csstools/css-calc@npm:^2.1.4": + version: 2.1.4 + resolution: "@csstools/css-calc@npm:2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/85f5b4f96d60f395d5f0108056b0ddee037b22d6deba448d74324b50f1c554de284f84715ebfac7b2888b78e09d20d02a7cd213ee7bdaa71011ea9b4eee3a251 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/42ce5793e55ec4d772083808a11e9fb2dfe36db3ec168713069a276b4c3882205b3507c4680224c28a5d35fe0bc2d308c77f8f2c39c7c09aad8747708eb8ddd8 languageName: node linkType: hard "@csstools/css-color-parser@npm:^3.0.9": - version: 3.0.9 - resolution: "@csstools/css-color-parser@npm:3.0.9" + version: 3.1.0 + resolution: "@csstools/css-color-parser@npm:3.1.0" dependencies: - "@csstools/color-helpers": "npm:^5.0.2" - "@csstools/css-calc": "npm:^2.1.3" + "@csstools/color-helpers": "npm:^5.1.0" + "@csstools/css-calc": "npm:^2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/acc026a6bd6d8c4c641fa5f9b4d77cd5dfa54c57c3278ae52329d96b5837723428dcb93c34db4062bbea2f45a98451119df06eaf39fd196aaf6368c59d799f20 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/0e0c670ad54ec8ec4d9b07568b80defd83b9482191f5e8ca84ab546b7be6db5d7cc2ba7ac9fae54488b129a4be235d6183d3aab4416fec5e89351f73af4222c5 languageName: node linkType: hard "@csstools/css-parser-algorithms@npm:^3.0.4": - version: 3.0.4 - resolution: "@csstools/css-parser-algorithms@npm:3.0.4" + version: 3.0.5 + resolution: "@csstools/css-parser-algorithms@npm:3.0.5" peerDependencies: - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/d411f07765e14eede17bccc6bd4f90ff303694df09aabfede3fd104b2dfacfd4fe3697cd25ddad14684c850328f3f9420ebfa9f78380892492974db24ae47dbd + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/d9a1c888bd43849ae3437ca39251d5c95d2c8fd6b5ccdb7c45491dfd2c1cbdc3075645e80901d120e4d2c1993db9a5b2d83793b779dbbabcfb132adb142eb7f7 languageName: node linkType: hard "@csstools/css-tokenizer@npm:^3.0.3": - version: 3.0.3 - resolution: "@csstools/css-tokenizer@npm:3.0.3" - checksum: 10c0/c31bf410e1244b942e71798e37c54639d040cb59e0121b21712b40015fced2b0fb1ffe588434c5f8923c9cd0017cfc1c1c8f3921abc94c96edf471aac2eba5e5 + version: 3.0.4 + resolution: "@csstools/css-tokenizer@npm:3.0.4" + checksum: 10c0/3b589f8e9942075a642213b389bab75a2d50d05d203727fcdac6827648a5572674caff07907eff3f9a2389d86a4ee47308fafe4f8588f4a77b7167c588d2559f + languageName: node + linkType: hard + +"@emnapi/core@npm:1.10.0": + version: 1.10.0 + resolution: "@emnapi/core@npm:1.10.0" + dependencies: + "@emnapi/wasi-threads": "npm:1.2.1" + tslib: "npm:^2.4.0" + checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb languageName: node linkType: hard @@ -735,13 +521,12 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.4.3": +"@emnapi/runtime@npm:1.10.0": version: 1.10.0 - resolution: "@emnapi/core@npm:1.10.0" + resolution: "@emnapi/runtime@npm:1.10.0" dependencies: - "@emnapi/wasi-threads": "npm:1.2.1" tslib: "npm:^2.4.0" - checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb + checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 languageName: node linkType: hard @@ -754,15 +539,6 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.3": - version: 1.10.0 - resolution: "@emnapi/runtime@npm:1.10.0" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 - languageName: node - linkType: hard - "@emnapi/wasi-threads@npm:1.2.1": version: 1.2.1 resolution: "@emnapi/wasi-threads@npm:1.2.1" @@ -905,378 +681,385 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/aix-ppc64@npm:0.25.4" +"@esbuild/aix-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/aix-ppc64@npm:0.25.12" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/aix-ppc64@npm:0.27.7" +"@esbuild/aix-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/aix-ppc64@npm:0.28.1" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm64@npm:0.25.4" +"@esbuild/android-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm64@npm:0.25.12" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm64@npm:0.27.7" +"@esbuild/android-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm64@npm:0.28.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm@npm:0.25.4" +"@esbuild/android-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm@npm:0.25.12" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm@npm:0.27.7" +"@esbuild/android-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm@npm:0.28.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-x64@npm:0.25.4" +"@esbuild/android-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-x64@npm:0.25.12" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-x64@npm:0.27.7" +"@esbuild/android-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-x64@npm:0.28.1" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-arm64@npm:0.25.4" +"@esbuild/darwin-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-arm64@npm:0.25.12" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-arm64@npm:0.27.7" +"@esbuild/darwin-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-arm64@npm:0.28.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-x64@npm:0.25.4" +"@esbuild/darwin-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-x64@npm:0.25.12" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-x64@npm:0.27.7" +"@esbuild/darwin-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-x64@npm:0.28.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-arm64@npm:0.25.4" +"@esbuild/freebsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-arm64@npm:0.25.12" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-arm64@npm:0.27.7" +"@esbuild/freebsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-arm64@npm:0.28.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-x64@npm:0.25.4" +"@esbuild/freebsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-x64@npm:0.25.12" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-x64@npm:0.27.7" +"@esbuild/freebsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-x64@npm:0.28.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm64@npm:0.25.4" +"@esbuild/linux-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm64@npm:0.25.12" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm64@npm:0.27.7" +"@esbuild/linux-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm64@npm:0.28.1" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm@npm:0.25.4" +"@esbuild/linux-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm@npm:0.25.12" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm@npm:0.27.7" +"@esbuild/linux-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm@npm:0.28.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ia32@npm:0.25.4" +"@esbuild/linux-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ia32@npm:0.25.12" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ia32@npm:0.27.7" +"@esbuild/linux-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ia32@npm:0.28.1" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-loong64@npm:0.25.4" +"@esbuild/linux-loong64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-loong64@npm:0.25.12" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-loong64@npm:0.27.7" +"@esbuild/linux-loong64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-loong64@npm:0.28.1" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-mips64el@npm:0.25.4" +"@esbuild/linux-mips64el@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-mips64el@npm:0.25.12" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-mips64el@npm:0.27.7" +"@esbuild/linux-mips64el@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-mips64el@npm:0.28.1" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ppc64@npm:0.25.4" +"@esbuild/linux-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ppc64@npm:0.25.12" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ppc64@npm:0.27.7" +"@esbuild/linux-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ppc64@npm:0.28.1" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-riscv64@npm:0.25.4" +"@esbuild/linux-riscv64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-riscv64@npm:0.25.12" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-riscv64@npm:0.27.7" +"@esbuild/linux-riscv64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-riscv64@npm:0.28.1" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-s390x@npm:0.25.4" +"@esbuild/linux-s390x@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-s390x@npm:0.25.12" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-s390x@npm:0.27.7" +"@esbuild/linux-s390x@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-s390x@npm:0.28.1" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-x64@npm:0.25.4" +"@esbuild/linux-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-x64@npm:0.25.12" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-x64@npm:0.27.7" +"@esbuild/linux-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-x64@npm:0.28.1" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-arm64@npm:0.25.4" +"@esbuild/netbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-arm64@npm:0.25.12" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-arm64@npm:0.27.7" +"@esbuild/netbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-arm64@npm:0.28.1" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-x64@npm:0.25.4" +"@esbuild/netbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-x64@npm:0.25.12" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-x64@npm:0.27.7" +"@esbuild/netbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-x64@npm:0.28.1" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-arm64@npm:0.25.4" +"@esbuild/openbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-arm64@npm:0.25.12" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-arm64@npm:0.27.7" +"@esbuild/openbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-arm64@npm:0.28.1" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-x64@npm:0.25.4" +"@esbuild/openbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-x64@npm:0.25.12" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-x64@npm:0.27.7" +"@esbuild/openbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-x64@npm:0.28.1" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openharmony-arm64@npm:0.27.7" +"@esbuild/openharmony-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openharmony-arm64@npm:0.25.12" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/sunos-x64@npm:0.25.4" +"@esbuild/openharmony-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openharmony-arm64@npm:0.28.1" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/sunos-x64@npm:0.25.12" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/sunos-x64@npm:0.27.7" +"@esbuild/sunos-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/sunos-x64@npm:0.28.1" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-arm64@npm:0.25.4" +"@esbuild/win32-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-arm64@npm:0.25.12" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-arm64@npm:0.27.7" +"@esbuild/win32-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-arm64@npm:0.28.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-ia32@npm:0.25.4" +"@esbuild/win32-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-ia32@npm:0.25.12" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-ia32@npm:0.27.7" +"@esbuild/win32-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-ia32@npm:0.28.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-x64@npm:0.25.4" +"@esbuild/win32-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-x64@npm:0.25.12" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-x64@npm:0.27.7" +"@esbuild/win32-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-x64@npm:0.28.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.7.0 - resolution: "@eslint-community/eslint-utils@npm:4.7.0" + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/c0f4f2bd73b7b7a9de74b716a664873d08ab71ab439e51befe77d61915af41a81ecec93b408778b3a7856185244c34c2c8ee28912072ec14def84ba2dec70adf + checksum: 10c0/dc4ab5e3e364ef27e33666b11f4b86e1a6c1d7cbf16f0c6ff87b1619b3562335e9201a3d6ce806221887ff780ec9d828962a290bb910759fd40a674686503f02 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.12.1 - resolution: "@eslint-community/regexpp@npm:4.12.1" - checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 + version: 4.12.2 + resolution: "@eslint-community/regexpp@npm:4.12.2" + checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d languageName: node linkType: hard @@ -1321,36 +1104,29 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.7.0": - version: 1.7.0 - resolution: "@floating-ui/core@npm:1.7.0" +"@floating-ui/core@npm:^1.8.0": + version: 1.8.0 + resolution: "@floating-ui/core@npm:1.8.0" dependencies: - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/f7e66a650ad8c73765edb39a7530d81fa990c08c172f03b6129030234d32bccd4401c29ded9c8a4e4135e9beac349c5608d94962fa08c2a2ae2dab7a6530550c + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/cece958f6fab0f8cd7740cd57988c4f8bc5356dca39dd4c093433d44c91952c3a02c7a54d93d7ed6c078b6544d531a29f66621d2839c8bfbb4467dca6aed7df0 languageName: node linkType: hard "@floating-ui/dom@npm:^1.0.1": - version: 1.7.0 - resolution: "@floating-ui/dom@npm:1.7.0" + version: 1.8.0 + resolution: "@floating-ui/dom@npm:1.8.0" dependencies: - "@floating-ui/core": "npm:^1.7.0" - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/49a7f0fbef82ba2c2f0bde7bb4812b276ae431b59e6a81427283a55cfb36c0af9cc459cbeb0bb1a5cc3efca1a332f584e123e7b1a8f0a9c94a21989b09b8c060 + "@floating-ui/core": "npm:^1.8.0" + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/c32b2de7a596b69cfffa909c7028825e14f6319be1b45da529f8943c89fe16b75a49c214e800c87ded3f172353d3b99163d50072f11410488e756961b7b629cc languageName: node linkType: hard -"@floating-ui/utils@npm:^0.2.9": - version: 0.2.9 - resolution: "@floating-ui/utils@npm:0.2.9" - checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f - languageName: node - linkType: hard - -"@gar/promise-retry@npm:^1.0.0": - version: 1.0.3 - resolution: "@gar/promise-retry@npm:1.0.3" - checksum: 10c0/885b02c8b0d75b2d215da25f3b639158c4fbe8fefe0d79163304534b9a6d0710db4b7699f7cd3cc1a730792bff04cbe19f4850a62d3e105a663eaeec88f38332 +"@floating-ui/utils@npm:^0.2.12": + version: 0.2.12 + resolution: "@floating-ui/utils@npm:0.2.12" + checksum: 10c0/bb910b90d56991a62011afaf5f8e0c4b7fb6dab69403f4dd17fbd6eb25560b28d533dff9791f270b4f459852e9006a1077b5d73cbedb5e34d9424afc6a828314 languageName: node linkType: hard @@ -1405,9 +1181,9 @@ __metadata: linkType: hard "@hapi/tlds@npm:^1.1.1": - version: 1.1.6 - resolution: "@hapi/tlds@npm:1.1.6" - checksum: 10c0/75b2918dd10e8ba6418aadf53e6951c5fcf5b0d150cd497f257faa03492084dd9792e1cda1e41be959edf1c74602577de3d2593a44388b4caf3ad2a0c0a3da40 + version: 1.1.7 + resolution: "@hapi/tlds@npm:1.1.7" + checksum: 10c0/8429f08c83cd7d324f9b5a577442f78b2d721beba037f8a2a7f652707750800985e0f81302c4b98e9bc784717374005eb3758fb5af6dfb828c62fbb9a4f83a87 languageName: node linkType: hard @@ -1463,19 +1239,6 @@ __metadata: languageName: node linkType: hard -"@hypnosphi/create-react-context@npm:^0.3.1": - version: 0.3.1 - resolution: "@hypnosphi/create-react-context@npm:0.3.1" - dependencies: - gud: "npm:^1.0.0" - warning: "npm:^4.0.3" - peerDependencies: - prop-types: ^15.0.0 - react: ">=0.14.0" - checksum: 10c0/e8072221f9f9c2c47c3ebc5bc6079f9a71938e181d2b4aa3e1d3922707bc097336d5260dad088cf47c1d6e1ff34839fa21f2505a95bddda0d7548c5a955b5691 - languageName: node - linkType: hard - "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" @@ -1512,132 +1275,126 @@ __metadata: languageName: node linkType: hard -"@istanbuljs/schema@npm:^0.1.2": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.3": +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": version: 0.1.6 resolution: "@istanbuljs/schema@npm:0.1.6" checksum: 10c0/bb0d370bf3dd454d2f37f1bccb8921e2da99adacef2da56ef47850e25d7a4de69cf639ead8c189755aef38921369024b4afea3535a5c2ac9082b3e1171bcbc3a languageName: node linkType: hard -"@jest/console@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/console@npm:30.3.0" +"@jest/console@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/console@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/5458f26b0591b847b719a707cbd1d6b2b99960784a1480a28d19200a807b6092f066c1bd1810df8c6adebf934a64de7b6022dc35082cd7c8f09f35940da104d9 + checksum: 10c0/f782722ef5754ab864b996000cf1f0545f7be9db6ba8f89cb2381dfab9910a52c59a830e5ea069a76840023e40806493d9900d8eb7e9821d23a11a498f32739e languageName: node linkType: hard -"@jest/core@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/core@npm:30.3.0" +"@jest/core@npm:30.4.2": + version: 30.4.2 + resolution: "@jest/core@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/pattern": "npm:30.0.1" - "@jest/reporters": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/pattern": "npm:30.4.0" + "@jest/reporters": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" exit-x: "npm:^0.2.2" + fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-changed-files: "npm:30.3.0" - jest-config: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-resolve-dependencies: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-changed-files: "npm:30.4.1" + jest-config: "npm:30.4.2" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-resolve-dependencies: "npm:30.4.2" + jest-runner: "npm:30.4.2" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/1735f2263cca10c6cae4e1dbde9c3ccb36e2cbd1cc10bac6fc45e187b06c4e33a6a029f9a6444a3cd43a2a44ffaec3b686d94f70965cebf2b885b198c8615322 + checksum: 10c0/4237ec79d5403b82ba89e3be6e4318d9f37c3a11281bd76cfbdd4ff08d8c89850555607c4d494dab3526e01a90db3539e549017883967dd392b5084f1be0d5b2 languageName: node linkType: hard "@jest/create-cache-key-function@npm:^30.0.0": - version: 30.3.0 - resolution: "@jest/create-cache-key-function@npm:30.3.0" + version: 30.4.1 + resolution: "@jest/create-cache-key-function@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - checksum: 10c0/b1906d3b2230b6820877de065686c211bcbbe984cc40e09531b71b553e931505f837a453fdda481bee8686b8d572c95027d262af96789cbcbb6d58cbe0787fcc + "@jest/types": "npm:30.4.1" + checksum: 10c0/2cdf2479e020e022626da6543a95d2fbf7edccac7550c0e88dad13737b7fb5c97e172a0d62a9817c1ceca0fb5c24e220c28c6054a384d0101397ad3aa99174b2 languageName: node linkType: hard -"@jest/diff-sequences@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/diff-sequences@npm:30.3.0" - checksum: 10c0/8922c16a869b839b6c05f677023b3e5a9aa1610ad78a9c5ec8bd6654e35e8136ea1c7b60ad561910e2ad964bfdb0b09b0254ff8dcfacd4562095766f60c63d76 +"@jest/diff-sequences@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/diff-sequences@npm:30.4.0" + checksum: 10c0/b4358b1b885098b905cb777f58788ddd45f90c4ebc3ce2c04fb1d4c9516f35ac2d9daef8263cd21c537bd7a52ab320f03e4ba9521677959ae20e3d405356b420 languageName: node linkType: hard -"@jest/environment@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/environment@npm:30.3.0" +"@jest/environment@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/environment@npm:30.4.1" dependencies: - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - checksum: 10c0/4068ccc2e4761e52909239c21e71f73b57ad087bd120b75d3232c68d911686d68fd0fb20e19725517a624b0aa9d45431b00503bd1d5ab2f4958e1a18d265d8d5 + jest-mock: "npm:30.4.1" + checksum: 10c0/704987ff8650c91a8ed13796ce47e9c55da3c12a01902d9e384330cead18eb4d34ce665a8d9962dddf2736fac006f92efc1039b8da424adf8fdc16f8d81aff6c languageName: node linkType: hard -"@jest/expect-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect-utils@npm:30.3.0" +"@jest/expect-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - checksum: 10c0/4bb60fb434cb8ed325735bd39171b61621e110502ecc502089805d203ecb17b9fc5a400aeffb83b41fabcc819628a9c38c955f90a716d6aaff193d10926fc854 + checksum: 10c0/6dea9e11ebcc7be68fea5950ae5a1b7ff9fd1490101ee8af0aede336b9934ab24a28bcafe2f1171dac0f95982406386c609ca2659b9132e1a9d419e8d69b9cd4 languageName: node linkType: hard -"@jest/expect@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect@npm:30.3.0" +"@jest/expect@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect@npm:30.4.1" dependencies: - expect: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/1e052975fdf2b977a63dc9f3db1de56be9dce8e5cd660d9c72cc25093324b990b3e93318cd0c1ff9df7cb30ec7eef71331bc7e19d39700eb3f4498e17ee4c9e0 + expect: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/2133183e735982879408036237b115abc2e57fa52bb7324be0a1f2ab6941a57da93b2e6f498dc110b7d007dd20463013fbcc5b24377cf65e6a8518d3b2ff76bd languageName: node linkType: hard -"@jest/fake-timers@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/fake-timers@npm:30.3.0" +"@jest/fake-timers@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/fake-timers@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - "@sinonjs/fake-timers": "npm:^15.0.0" + "@jest/types": "npm:30.4.1" + "@sinonjs/fake-timers": "npm:^15.4.0" "@types/node": "npm:*" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/114855ca14d6b34c886855445852a5b960bc3df0ef97c4b971b375747fe0206b3111ec60efc6e658565677022f0d790acd7e232e478f3390ea854d04dea0c4d8 + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/4a10e4eb64bb5ea2531cdcc79f3058731f5c14faf2a74f498fcb37f6690c3c0f9b12a9856736d26e34631eb38db12e12812da71de27b9d332df44dda9f460fbe languageName: node linkType: hard @@ -1648,37 +1405,37 @@ __metadata: languageName: node linkType: hard -"@jest/globals@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/globals@npm:30.3.0" +"@jest/globals@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/globals@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - jest-mock: "npm:30.3.0" - checksum: 10c0/013554dcbf75867e715801e98a5c6eefbea67cb388efd019be9e0d83979d7354874c4b33bbabc95de698215f5b891e921c26a284841504f9825fd789432b1cd0 + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + jest-mock: "npm:30.4.1" + checksum: 10c0/7961eefdc9e69ba7754d11a1bae4bc2960f33e03d9c1d6c73f27895b8cf92a9118a234330f31dc8efe16e835fe70ef9cc6c26f60121f6b6e9fac71c8b1bcd709 languageName: node linkType: hard -"@jest/pattern@npm:30.0.1": - version: 30.0.1 - resolution: "@jest/pattern@npm:30.0.1" +"@jest/pattern@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/pattern@npm:30.4.0" dependencies: "@types/node": "npm:*" - jest-regex-util: "npm:30.0.1" - checksum: 10c0/32c5a7bfb6c591f004dac0ed36d645002ed168971e4c89bd915d1577031672870032594767557b855c5bc330aa1e39a2f54bf150d2ee88a7a0886e9cb65318bc + jest-regex-util: "npm:30.4.0" + checksum: 10c0/05bc0799f84f3750bbbff0f9a546979efd0dbcee86c1be98b9e2811a68885809ec7b5cca39b8dda1497cb7cf17b7be936019fba8dfbcd9c53b181e03e67f4f82 languageName: node linkType: hard -"@jest/reporters@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/reporters@npm:30.3.0" +"@jest/reporters@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/reporters@npm:30.4.1" dependencies: "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" "@types/node": "npm:*" chalk: "npm:^4.1.2" @@ -1691,9 +1448,9 @@ __metadata: istanbul-lib-report: "npm:^3.0.0" istanbul-lib-source-maps: "npm:^5.0.0" istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" slash: "npm:^3.0.0" string-length: "npm:^4.0.2" v8-to-istanbul: "npm:^9.0.1" @@ -1702,28 +1459,28 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/e1b6fb13df94435d4b8e6f4d4bd1c27dfc572ca7393b0a95d14c98013abe3c962aa28e2c56864f3ddd0894834d21c9a67485d11e6c31532aaaeea66ca6a2a026 + checksum: 10c0/cf5220462c6242fa564bbeb6d5988ebfd814e0351f3bddae07323b55c68c7ebd4aa4c23e717231ab4b2d63c4fc7fa4615b9dad8584be534bd44622981242dceb languageName: node linkType: hard -"@jest/schemas@npm:30.0.5": - version: 30.0.5 - resolution: "@jest/schemas@npm:30.0.5" +"@jest/schemas@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/schemas@npm:30.4.1" dependencies: "@sinclair/typebox": "npm:^0.34.0" - checksum: 10c0/449dcd7ec5c6505e9ac3169d1143937e67044ae3e66a729ce4baf31812dfd30535f2b3b2934393c97cfdf5984ff581120e6b38f62b8560c8b5b7cc07f4175f65 + checksum: 10c0/96f388ebfc1974457fcbde2ad36c40a0b549cba3f624fe8d9d6e5903a152dc75e4043f4ac9ac7668622f2ecb0f9a4dcb9a38edf3bc0d52b82045b2bb2b69b72a languageName: node linkType: hard -"@jest/snapshot-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/snapshot-utils@npm:30.3.0" +"@jest/snapshot-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/snapshot-utils@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" natural-compare: "npm:^1.4.0" - checksum: 10c0/ba4fea05a418b257d128d8f9eb7672a9004952563a45ad577bed80e5b2ea2ec6e6d3a24535781cc6530d9904d8fda7b27d15952d079ccdbe88f87a5e71112df0 + checksum: 10c0/81da9079719eece02b89c45cb97162b5b7d794981652c8d8fe2846843ac81ce219ea4bc21bde7cf76c9032006435f82bd9aee8d6139d90b77078ddad4865af02 languageName: node linkType: hard @@ -1738,64 +1495,64 @@ __metadata: languageName: node linkType: hard -"@jest/test-result@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-result@npm:30.3.0" +"@jest/test-result@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-result@npm:30.4.1" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" collect-v8-coverage: "npm:^1.0.2" - checksum: 10c0/67bcd405d0a1ac85b55afabf26e0ee0f184f9cfe0e659a44e0e4a4456c1c7fed9d2288f0116b017eaddfa49ded8c44426b8694c44f9a8a2af35be9202b8a9165 + checksum: 10c0/920fa3fe3cc8b5e11bfe36066d733030f1245865d7cac4862e3783a96f9c0a087fd8073c8cb56e4c87c6fcc97b46e6f828ecd3b10dd8e208f5e1b983fcc5cdb8 languageName: node linkType: hard -"@jest/test-sequencer@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-sequencer@npm:30.3.0" +"@jest/test-sequencer@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-sequencer@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/698be35e7145e79ea9d66071d4ec255f6cef4b5972b5142d299f3edbcbc0428cadf8ddecc6d21e938c98ed72b73b15a6d5f81e7b8b370aaa130d2f6b26fd017c + checksum: 10c0/531b19ffb2358b3b22a56b306359acf66db2073978dd6df8a9522b5b4034ad7540a9cb84bdfebbcb2872686d6d2ab8cabea04ad23ef9d4488cbafd03f7511501 languageName: node linkType: hard -"@jest/transform@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/transform@npm:30.3.0" +"@jest/transform@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/transform@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" babel-plugin-istanbul: "npm:^7.0.1" chalk: "npm:^4.1.2" convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" pirates: "npm:^4.0.7" slash: "npm:^3.0.0" write-file-atomic: "npm:^5.0.1" - checksum: 10c0/5ad0b5361910680b5160e3dc347c0beb75b4edc35a165ef4fc55837d01365179c276dd6f9cc80f7db94048c641b0c188757e1c98c6d4e9b55577956efbc00574 + checksum: 10c0/194f463f179f6ab3ccd6f4f0f03a117e3c01a7ce098ebf562250aca4c900ed3a9ec08b694227788eabd7cb4e0597f1d0788077c7550ddc679f68a0ad21cc87e0 languageName: node linkType: hard -"@jest/types@npm:30.3.0, @jest/types@npm:^30.0.1": - version: 30.3.0 - resolution: "@jest/types@npm:30.3.0" +"@jest/types@npm:30.4.1, @jest/types@npm:^30.0.1": + version: 30.4.1 + resolution: "@jest/types@npm:30.4.1" dependencies: - "@jest/pattern": "npm:30.0.1" - "@jest/schemas": "npm:30.0.5" + "@jest/pattern": "npm:30.4.0" + "@jest/schemas": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" "@types/istanbul-reports": "npm:^3.0.4" "@types/node": "npm:*" "@types/yargs": "npm:^17.0.33" chalk: "npm:^4.1.2" - checksum: 10c0/c3e3f4de0b77a7ced345f47d3687b1094c1b6c1521529a7ca66a76f9a80194f79179a1dbc32d6761a5b67914a8f78be1e65d1408107efcb1f252c4a63b5ddd92 + checksum: 10c0/4c79f6dbdb1c7eaab5da255fc696c7cae744759d4020e42da8aa63b37fe55ce594be73075fe1ee5407dd59d7e47975be9f674bfc81e91bae2c89c62d27ba55a1 languageName: node linkType: hard @@ -1816,7 +1573,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.12": +"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5": version: 0.3.13 resolution: "@jridgewell/gen-mapping@npm:0.3.13" dependencies: @@ -1826,17 +1583,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.5": - version: 0.3.8 - resolution: "@jridgewell/gen-mapping@npm:0.3.8" - dependencies: - "@jridgewell/set-array": "npm:^1.2.1" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.24" - checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a - languageName: node - linkType: hard - "@jridgewell/remapping@npm:^2.3.5": version: 2.3.5 resolution: "@jridgewell/remapping@npm:2.3.5" @@ -1854,21 +1600,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/set-array@npm:^1.2.1": - version: 1.2.1 - resolution: "@jridgewell/set-array@npm:1.2.1" - checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": - version: 1.5.0 - resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" - checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.5.5": +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5": version: 1.5.5 resolution: "@jridgewell/sourcemap-codec@npm:1.5.5" checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0 @@ -1885,7 +1617,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.28": +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.28, @jridgewell/trace-mapping@npm:^0.3.31": version: 0.3.31 resolution: "@jridgewell/trace-mapping@npm:0.3.31" dependencies: @@ -1895,23 +1627,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": - version: 0.3.25 - resolution: "@jridgewell/trace-mapping@npm:0.3.25" - dependencies: - "@jridgewell/resolve-uri": "npm:^3.1.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.14" - checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 - languageName: node - linkType: hard - -"@juggle/resize-observer@npm:^3.3.1": - version: 3.4.0 - resolution: "@juggle/resize-observer@npm:3.4.0" - checksum: 10c0/12930242357298c6f2ad5d4ec7cf631dfb344ca7c8c830ab7f64e6ac11eb1aae486901d8d880fd08fb1b257800c160a0da3aee1e7ed9adac0ccbb9b7c5d93347 - languageName: node - linkType: hard - "@mdx-js/react@npm:^3.0.0": version: 3.1.1 resolution: "@mdx-js/react@npm:3.1.1" @@ -1957,26 +1672,15 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^0.2.11": - version: 0.2.12 - resolution: "@napi-rs/wasm-runtime@npm:0.2.12" - dependencies: - "@emnapi/core": "npm:^1.4.3" - "@emnapi/runtime": "npm:^1.4.3" - "@tybys/wasm-util": "npm:^0.10.0" - checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d - languageName: node - linkType: hard - -"@napi-rs/wasm-runtime@npm:^1.1.5": - version: 1.1.5 - resolution: "@napi-rs/wasm-runtime@npm:1.1.5" +"@napi-rs/wasm-runtime@npm:^1.1.4, @napi-rs/wasm-runtime@npm:^1.1.6": + version: 1.1.6 + resolution: "@napi-rs/wasm-runtime@npm:1.1.6" dependencies: - "@tybys/wasm-util": "npm:^0.10.2" + "@tybys/wasm-util": "npm:^0.10.3" peerDependencies: "@emnapi/core": ^1.7.1 "@emnapi/runtime": ^1.7.1 - checksum: 10c0/727f2b6ae0e68bbe5d39aeb68aa6f183314e9f03dc50bb55a962849535b2db53ecc3fbf1554d8656a54488a608df5a2634670595cf5874dc4af2ee59f817c65d + checksum: 10c0/344518bf3ef65051dda4c00969f293aa4a21ab7dc7822b3f48519b17cd5eaa3f0bc34898d115d50ba59b1817a0cb905d46f7a7223c8249239cd14c28db388e10 languageName: node linkType: hard @@ -2007,39 +1711,10 @@ __metadata: languageName: node linkType: hard -"@npmcli/agent@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/agent@npm:4.0.0" - dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^11.2.1" - socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^5.0.0": - version: 5.0.0 - resolution: "@npmcli/fs@npm:5.0.0" - dependencies: - semver: "npm:^7.3.5" - checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b - languageName: node - linkType: hard - -"@npmcli/redact@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/redact@npm:4.0.0" - checksum: 10c0/a1e9ba9c70a6b40e175bda2c3dd8cfdaf096e6b7f7a132c855c083c8dfe545c3237cd56702e2e6627a580b1d63373599d49a1192c4078a85bf47bbde824df31c - languageName: node - linkType: hard - -"@oxc-project/types@npm:=0.137.0": - version: 0.137.0 - resolution: "@oxc-project/types@npm:0.137.0" - checksum: 10c0/5a6a50174e5ac79aebf38a120fe57be7a84c8bb0c77117f30de15183aa5ab0161e78364d2d3725397090e362e5c5f6eda754b53057b0b63983e3ee604f888aca +"@oxc-project/types@npm:=0.139.0": + version: 0.139.0 + resolution: "@oxc-project/types@npm:0.139.0" + checksum: 10c0/ad57d1bee4b972ecf6784183da12ac6865edfff326bd83712fb75262b901868bc2b72d6fb502465a5f0dbaaded2910003f73365caf3821901dad565cc0b7fdf2 languageName: node linkType: hard @@ -2057,17 +1732,10 @@ __metadata: languageName: node linkType: hard -"@pkgr/core@npm:^0.2.4": - version: 0.2.4 - resolution: "@pkgr/core@npm:0.2.4" - checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1 - languageName: node - linkType: hard - -"@pkgr/core@npm:^0.2.9": - version: 0.2.9 - resolution: "@pkgr/core@npm:0.2.9" - checksum: 10c0/ac8e4e8138b1a7a4ac6282873aef7389c352f1f8b577b4850778f5182e4a39a5241facbe48361fec817f56d02b51691b383010843fb08b34a8e8ea3614688fd5 +"@pkgr/core@npm:^0.3.6": + version: 0.3.6 + resolution: "@pkgr/core@npm:0.3.6" + checksum: 10c0/153f0f4563f505faeba13c733efa0e05e467ce1c6b941055a5fd3b4560da60fbf1dff4b11da0075f034ddda11f2842b90395f60895dde5825875b616edccc11c languageName: node linkType: hard @@ -2082,9 +1750,9 @@ __metadata: languageName: node linkType: hard -"@reduxjs/toolkit@npm:^2.11.2": - version: 2.11.2 - resolution: "@reduxjs/toolkit@npm:2.11.2" +"@reduxjs/toolkit@npm:^2.12.0": + version: 2.12.0 + resolution: "@reduxjs/toolkit@npm:2.12.0" dependencies: "@standard-schema/spec": "npm:^1.0.0" "@standard-schema/utils": "npm:^0.3.0" @@ -2100,120 +1768,120 @@ __metadata: optional: true react-redux: optional: true - checksum: 10c0/4d388b96dc4b12a577af23607c252b3647c1b3b5136dbb0212e1dbbef9bb309e93d3ba6a95795ee165e87e4286453025cd67a98b5b3bb6d244b93ea487dd1ac0 + checksum: 10c0/2b85e31294a7139994fd78b08eb3ce706ce3b03b5081c13403b93ba4883a152d637171e4d9d969766238851f8915b1daa9f36b5a0a458aff0ff7600ee38795c9 languageName: node linkType: hard -"@rolldown/binding-android-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-android-arm64@npm:1.1.2" +"@rolldown/binding-android-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-android-arm64@npm:1.1.5" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-arm64@npm:1.1.2" +"@rolldown/binding-darwin-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-arm64@npm:1.1.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-x64@npm:1.1.2" +"@rolldown/binding-darwin-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-x64@npm:1.1.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-freebsd-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-freebsd-x64@npm:1.1.2" +"@rolldown/binding-freebsd-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-freebsd-x64@npm:1.1.5" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2" +"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@rolldown/binding-linux-arm64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.2" +"@rolldown/binding-linux-arm64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-arm64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.2" +"@rolldown/binding-linux-arm64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-linux-ppc64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.2" +"@rolldown/binding-linux-ppc64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.5" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-s390x-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.2" +"@rolldown/binding-linux-s390x-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.5" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.2" +"@rolldown/binding-linux-x64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.2" +"@rolldown/binding-linux-x64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-openharmony-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.2" +"@rolldown/binding-openharmony-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.5" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-wasm32-wasi@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.2" +"@rolldown/binding-wasm32-wasi@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.5" dependencies: "@emnapi/core": "npm:1.11.1" "@emnapi/runtime": "npm:1.11.1" - "@napi-rs/wasm-runtime": "npm:^1.1.5" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@rolldown/binding-win32-arm64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.2" +"@rolldown/binding-win32-arm64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-win32-x64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.2" +"@rolldown/binding-win32-x64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rolldown/pluginutils@npm:^1.0.0": +"@rolldown/pluginutils@npm:^1.0.0, @rolldown/pluginutils@npm:^1.0.1": version: 1.0.1 resolution: "@rolldown/pluginutils@npm:1.0.1" checksum: 10c0/99d9b06d90196823e4d8c841f258db7a16e5dbba5824a2962b05d907b79f1ba929d56f22dd744fd530936e568c865ee56a719dc31e57e13bc0a8eb4764a8d8dd @@ -2221,8 +1889,8 @@ __metadata: linkType: hard "@rollup/pluginutils@npm:^5.0.2": - version: 5.3.0 - resolution: "@rollup/pluginutils@npm:5.3.0" + version: 5.4.0 + resolution: "@rollup/pluginutils@npm:5.4.0" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" @@ -2232,181 +1900,181 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/001834bf62d7cf5bac424d2617c113f7f7d3b2bf3c1778cbcccb72cdc957b68989f8e7747c782c2b911f1dde8257f56f8ac1e779e29e74e638e3f1e2cac2bcd0 + checksum: 10c0/ccc2cbd3a05df642df60ab05ffb81b2e564bd945e2a118bb8a474ea75b941033c8f44273133d4865643cca1492d0c80b14de1281f74779a64285a80fc3a194d8 languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.59.0" +"@rollup/rollup-android-arm-eabi@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.62.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm64@npm:4.59.0" +"@rollup/rollup-android-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm64@npm:4.62.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.59.0" +"@rollup/rollup-darwin-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-arm64@npm:4.62.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.59.0" +"@rollup/rollup-darwin-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-x64@npm:4.62.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.59.0" +"@rollup/rollup-freebsd-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.62.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-x64@npm:4.59.0" +"@rollup/rollup-freebsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-x64@npm:4.62.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.59.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.59.0" +"@rollup/rollup-linux-arm64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loong64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.59.0" +"@rollup/rollup-linux-loong64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-loong64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-musl@npm:4.59.0" +"@rollup/rollup-linux-loong64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.59.0" +"@rollup/rollup-linux-ppc64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.59.0" +"@rollup/rollup-linux-ppc64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.59.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.59.0" +"@rollup/rollup-linux-riscv64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.59.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.62.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.59.0" +"@rollup/rollup-linux-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.59.0" +"@rollup/rollup-linux-x64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-openbsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openbsd-x64@npm:4.59.0" +"@rollup/rollup-openbsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openbsd-x64@npm:4.62.2" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-openharmony-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openharmony-arm64@npm:4.59.0" +"@rollup/rollup-openharmony-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.62.2" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.59.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.62.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.59.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.62.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-gnu@npm:4.59.0" +"@rollup/rollup-win32-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.59.0" +"@rollup/rollup-win32-x64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -2480,9 +2148,9 @@ __metadata: linkType: hard "@sinclair/typebox@npm:^0.34.0": - version: 0.34.49 - resolution: "@sinclair/typebox@npm:0.34.49" - checksum: 10c0/16b7d87f039a49b68c10bb4cdcae2ce5242b2472228851fd6483731616aba4ef977690aa517b230a8d20da8185bb416eb34e326f30568b3963c1cf26b05d1ad8 + version: 0.34.52 + resolution: "@sinclair/typebox@npm:0.34.52" + checksum: 10c0/03e9be17ffb536ddd6dc35b6131c88eb113b2ce6cbec4fa60b1d5219de99e59b2649fc40ad70a85db561104395faa3406608971dc7b0abef529b80fb001dc821 languageName: node linkType: hard @@ -2502,12 +2170,12 @@ __metadata: languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^15.0.0": - version: 15.3.2 - resolution: "@sinonjs/fake-timers@npm:15.3.2" +"@sinonjs/fake-timers@npm:^15.4.0": + version: 15.4.0 + resolution: "@sinonjs/fake-timers@npm:15.4.0" dependencies: "@sinonjs/commons": "npm:^3.0.1" - checksum: 10c0/fea39af47e70acf7f6b431b857dc5b50886e1a19d48189bc7f9cf90806a9fdfd4931c04343558724772d429c47fb53df640fc8c8d6ddf6ad66164bd7cbd3220a + checksum: 10c0/de4522afe0699fa8d3ae9d1715cbaa4b47e518c707bb7988a9ec6c7c67557d9f6df451f6be0338598b984a86f65aab9fab38dd9ce75a3c0ffb801a9500d5b10d languageName: node linkType: hard @@ -2869,108 +2537,108 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-arm64@npm:1.15.32" +"@swc/core-darwin-arm64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-arm64@npm:1.15.46" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-x64@npm:1.15.32" +"@swc/core-darwin-x64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-x64@npm:1.15.46" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.32" +"@swc/core-linux-arm-gnueabihf@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.46" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-gnu@npm:1.15.32" +"@swc/core-linux-arm64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-gnu@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-musl@npm:1.15.32" +"@swc/core-linux-arm64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-musl@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-ppc64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.32" +"@swc/core-linux-ppc64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.46" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-s390x-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-s390x-gnu@npm:1.15.32" +"@swc/core-linux-s390x-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-s390x-gnu@npm:1.15.46" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-gnu@npm:1.15.32" +"@swc/core-linux-x64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-gnu@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-musl@npm:1.15.32" +"@swc/core-linux-x64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-musl@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-arm64-msvc@npm:1.15.32" +"@swc/core-win32-arm64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-arm64-msvc@npm:1.15.46" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-ia32-msvc@npm:1.15.32" +"@swc/core-win32-ia32-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-ia32-msvc@npm:1.15.46" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-x64-msvc@npm:1.15.32" +"@swc/core-win32-x64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-x64-msvc@npm:1.15.46" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.5.22": - version: 1.15.32 - resolution: "@swc/core@npm:1.15.32" - dependencies: - "@swc/core-darwin-arm64": "npm:1.15.32" - "@swc/core-darwin-x64": "npm:1.15.32" - "@swc/core-linux-arm-gnueabihf": "npm:1.15.32" - "@swc/core-linux-arm64-gnu": "npm:1.15.32" - "@swc/core-linux-arm64-musl": "npm:1.15.32" - "@swc/core-linux-ppc64-gnu": "npm:1.15.32" - "@swc/core-linux-s390x-gnu": "npm:1.15.32" - "@swc/core-linux-x64-gnu": "npm:1.15.32" - "@swc/core-linux-x64-musl": "npm:1.15.32" - "@swc/core-win32-arm64-msvc": "npm:1.15.32" - "@swc/core-win32-ia32-msvc": "npm:1.15.32" - "@swc/core-win32-x64-msvc": "npm:1.15.32" + version: 1.15.46 + resolution: "@swc/core@npm:1.15.46" + dependencies: + "@swc/core-darwin-arm64": "npm:1.15.46" + "@swc/core-darwin-x64": "npm:1.15.46" + "@swc/core-linux-arm-gnueabihf": "npm:1.15.46" + "@swc/core-linux-arm64-gnu": "npm:1.15.46" + "@swc/core-linux-arm64-musl": "npm:1.15.46" + "@swc/core-linux-ppc64-gnu": "npm:1.15.46" + "@swc/core-linux-s390x-gnu": "npm:1.15.46" + "@swc/core-linux-x64-gnu": "npm:1.15.46" + "@swc/core-linux-x64-musl": "npm:1.15.46" + "@swc/core-win32-arm64-msvc": "npm:1.15.46" + "@swc/core-win32-ia32-msvc": "npm:1.15.46" + "@swc/core-win32-x64-msvc": "npm:1.15.46" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.26" + "@swc/types": "npm:^0.1.27" peerDependencies: "@swc/helpers": ">=0.5.17" dependenciesMeta: @@ -3001,7 +2669,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/114e2d08a588de6dc0b01106368461d471464ec1bd0d046f4007cd2af9f52c0ddbf473a6dc251aa7f71828b74fe8488221718019187bb91a5f503a45b91b5fb1 + checksum: 10c0/70cab177b55c69ba6fea493267a4f31fd28c5a078893810d26ed3a84238dc8e23b875697b9f6494efc34c76b8280f6935345a3d89ed2b4848a9efcc17e1f802f languageName: node linkType: hard @@ -3025,12 +2693,12 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.26": - version: 0.1.26 - resolution: "@swc/types@npm:0.1.26" +"@swc/types@npm:^0.1.27": + version: 0.1.27 + resolution: "@swc/types@npm:0.1.27" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10c0/8449341e8bbff81c14e9918c25421143cf605dff20f70f048847e1f7cede396f8dd73903cbef331a809b4a8e15d0db374a5f6809003e7b440f93df1dd4934d28 + checksum: 10c0/25f1bfa0ac34e9ac60aa7de91778f70906cd77a7abb3eb68c5da8d38d5202286b293300d4bb2792b3bb8840a7f5d5c4627c4ec34d2fae6533bfb3e14a70fd8fb languageName: node linkType: hard @@ -3091,17 +2759,16 @@ __metadata: linkType: hard "@testing-library/jest-dom@npm:^6.6.3": - version: 6.6.3 - resolution: "@testing-library/jest-dom@npm:6.6.3" + version: 6.9.1 + resolution: "@testing-library/jest-dom@npm:6.9.1" dependencies: "@adobe/css-tools": "npm:^4.4.0" aria-query: "npm:^5.0.0" - chalk: "npm:^3.0.0" css.escape: "npm:^1.5.1" dom-accessibility-api: "npm:^0.6.3" - lodash: "npm:^4.17.21" + picocolors: "npm:^1.1.1" redent: "npm:^3.0.0" - checksum: 10c0/5566b6c0b7b0709bc244aec3aa3dc9e5f4663e8fb2b99d8cd456fc07279e59db6076cbf798f9d3099a98fca7ef4cd50e4e1f4c4dec5a60a8fad8d24a638a5bf6 + checksum: 10c0/4291ebd2f0f38d14cefac142c56c337941775a5807e2a3d6f1a14c2fbd6be76a18e498ed189e95bedc97d9e8cf1738049bc76c85b5bc5e23fae7c9e10f7b3a12 languageName: node linkType: hard @@ -3129,9 +2796,9 @@ __metadata: linkType: hard "@tsconfig/node10@npm:^1.0.7": - version: 1.0.11 - resolution: "@tsconfig/node10@npm:1.0.11" - checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c + version: 1.0.12 + resolution: "@tsconfig/node10@npm:1.0.12" + checksum: 10c0/7bbbd7408cfaced86387a9b1b71cebc91c6fd701a120369735734da8eab1a4773fc079abd9f40c9e0b049e12586c8ac0e13f0da596bfd455b9b4c3faa813ebc5 languageName: node linkType: hard @@ -3156,16 +2823,7 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.10.0": - version: 0.10.1 - resolution: "@tybys/wasm-util@npm:0.10.1" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 - languageName: node - linkType: hard - -"@tybys/wasm-util@npm:^0.10.2": +"@tybys/wasm-util@npm:^0.10.3": version: 0.10.3 resolution: "@tybys/wasm-util@npm:0.10.3" dependencies: @@ -3214,20 +2872,21 @@ __metadata: linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.18.0": - version: 7.20.7 - resolution: "@types/babel__traverse@npm:7.20.7" + version: 7.28.0 + resolution: "@types/babel__traverse@npm:7.28.0" dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 10c0/5386f0af44f8746b063b87418f06129a814e16bb2686965a575e9d7376b360b088b89177778d8c426012abc43dd1a2d8ec3218bfc382280c898682746ce2ffbd + "@babel/types": "npm:^7.28.2" + checksum: 10c0/b52d7d4e8fc6a9018fe7361c4062c1c190f5778cf2466817cb9ed19d69fbbb54f9a85ffedeb748ed8062d2cf7d4cc088ee739848f47c57740de1c48cbf0d0994 languageName: node linkType: hard "@types/chai@npm:^5.2.2": - version: 5.2.2 - resolution: "@types/chai@npm:5.2.2" + version: 5.2.3 + resolution: "@types/chai@npm:5.2.3" dependencies: "@types/deep-eql": "npm:*" - checksum: 10c0/49282bf0e8246800ebb36f17256f97bd3a8c4fb31f92ad3c0eaa7623518d7e87f1eaad4ad206960fcaf7175854bdff4cb167e4fe96811e0081b4ada83dd533ec + assertion-error: "npm:^2.0.1" + checksum: 10c0/e0ef1de3b6f8045a5e473e867c8565788c444271409d155588504840ad1a53611011f85072188c2833941189400228c1745d78323dac13fcede9c2b28bacfb2f languageName: node linkType: hard @@ -3245,13 +2904,6 @@ __metadata: languageName: node linkType: hard -"@types/dom4@npm:^2.0.1": - version: 2.0.4 - resolution: "@types/dom4@npm:2.0.4" - checksum: 10c0/8314feb34415c021979b91fa2f0fb8caad152141a542642697170dcd06fbbeaf72a315d0ed69f2f9ce06548f062eccaddf93b8ae2f3cd675217345a112e2a007 - languageName: node - linkType: hard - "@types/dompurify@npm:^3.2.0": version: 3.2.0 resolution: "@types/dompurify@npm:3.2.0" @@ -3261,17 +2913,10 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:1.0.8": - version: 1.0.8 - resolution: "@types/estree@npm:1.0.8" - checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 - languageName: node - linkType: hard - -"@types/estree@npm:^1.0.0": - version: 1.0.7 - resolution: "@types/estree@npm:1.0.7" - checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c +"@types/estree@npm:1.0.9, @types/estree@npm:^1.0.0": + version: 1.0.9 + resolution: "@types/estree@npm:1.0.9" + checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387 languageName: node linkType: hard @@ -3283,11 +2928,11 @@ __metadata: linkType: hard "@types/hast@npm:^3.0.4": - version: 3.0.4 - resolution: "@types/hast@npm:3.0.4" + version: 3.0.5 + resolution: "@types/hast@npm:3.0.5" dependencies: "@types/unist": "npm:*" - checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7 + checksum: 10c0/f3af8594a6903a507ed191eda944af18099198d6708c29102ae17118c3e20779f6929e91ed37e033541fd28d58055d8a5910a4366dbdf976cf81b13a464741fb languageName: node linkType: hard @@ -3327,7 +2972,7 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db @@ -3371,34 +3016,34 @@ __metadata: linkType: hard "@types/lodash@npm:*": - version: 4.17.17 - resolution: "@types/lodash@npm:4.17.17" - checksum: 10c0/8e75df02a15f04d4322c5a503e4efd0e7a92470570ce80f17e9f11ce2b1f1a7c994009c9bcff39f07e0f9ffd8ccaff09b3598997c404b801abd5a7eee5a639dc + version: 4.17.24 + resolution: "@types/lodash@npm:4.17.24" + checksum: 10c0/b72f60d4daacdad1fa643edb3faba204c02a01eb1ac00a83ff73496a6d236fc55e459c06106e8ced42277dba932d087d8fc090f8de4ef590d3f91e6d6f7ce85a languageName: node linkType: hard "@types/mdx@npm:^2.0.0": - version: 2.0.13 - resolution: "@types/mdx@npm:2.0.13" - checksum: 10c0/5edf1099505ac568da55f9ae8a93e7e314e8cbc13d3445d0be61b75941226b005e1390d9b95caecf5dcb00c9d1bab2f1f60f6ff9876dc091a48b547495007720 + version: 2.0.14 + resolution: "@types/mdx@npm:2.0.14" + checksum: 10c0/f1e3873c1e36e2685fb99222bf81a23c55a8e2edf49d0c45cabf2c875b0ae814cd6050cce5770ff1c6881ac747d2ad33731e1de32139b04cf181d8d7e1943ff4 languageName: node linkType: hard "@types/node@npm:*": - version: 22.15.21 - resolution: "@types/node@npm:22.15.21" + version: 26.1.1 + resolution: "@types/node@npm:26.1.1" dependencies: - undici-types: "npm:~6.21.0" - checksum: 10c0/f092bbccda2131c2b2c8f720338080aa0ef1d928f5f1062c03954a4f7dafa7ee3ed29bc3e51bd4e2584473b3d943c637a2b39ad7174898970818270187cf10c1 + undici-types: "npm:~8.3.0" + checksum: 10c0/25ac5093195736dd074d5027adbba85617bc951d5a41506ebd3b9073048acb7233613f3822d5f9b9447f9c0841c91f6387c46283916767e3ef79f23917452c46 languageName: node linkType: hard -"@types/node@npm:^18.11.9": - version: 18.19.103 - resolution: "@types/node@npm:18.19.103" +"@types/node@npm:^24.10.2": + version: 24.13.3 + resolution: "@types/node@npm:24.13.3" dependencies: - undici-types: "npm:~5.26.4" - checksum: 10c0/a119321c90787fca6d0ae929e55a964602123690b4674bb0ef2dc2fb78b25cc7ae4804aa6d4014d1055fd245ba8286c66080765304740978047cc706f19ed934 + undici-types: "npm:~7.18.0" + checksum: 10c0/a5bc08f49b9581dcdca90e02cd77197a3c799840807664942e5cd5161a553d4d2ae8064f7e3294410d748d7d098b5c1848be7fa50c06f29c4193ab16be4e59eb languageName: node linkType: hard @@ -3424,9 +3069,9 @@ __metadata: linkType: hard "@types/prop-types@npm:*": - version: 15.7.14 - resolution: "@types/prop-types@npm:15.7.14" - checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1 + version: 15.7.15 + resolution: "@types/prop-types@npm:15.7.15" + checksum: 10c0/b59aad1ad19bf1733cf524fd4e618196c6c7690f48ee70a327eb450a42aab8e8a063fbe59ca0a5701aebe2d92d582292c0fb845ea57474f6a15f6994b0e260b2 languageName: node linkType: hard @@ -3497,9 +3142,9 @@ __metadata: linkType: hard "@types/semver@npm:^7.5.0": - version: 7.7.0 - resolution: "@types/semver@npm:7.7.0" - checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee + version: 7.7.1 + resolution: "@types/semver@npm:7.7.1" + checksum: 10c0/c938aef3bf79a73f0f3f6037c16e2e759ff40c54122ddf0b2583703393d8d3127130823facb880e694caa324eb6845628186aac1997ee8b31dc2d18fafe26268 languageName: node linkType: hard @@ -3554,16 +3199,7 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^17.0.10": - version: 17.0.33 - resolution: "@types/yargs@npm:17.0.33" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b - languageName: node - linkType: hard - -"@types/yargs@npm:^17.0.33": +"@types/yargs@npm:^17.0.10, @types/yargs@npm:^17.0.33": version: 17.0.35 resolution: "@types/yargs@npm:17.0.35" dependencies: @@ -3696,152 +3332,175 @@ __metadata: linkType: hard "@ungap/structured-clone@npm:^1.2.0, @ungap/structured-clone@npm:^1.3.0": - version: 1.3.0 - resolution: "@ungap/structured-clone@npm:1.3.0" - checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a + version: 1.3.3 + resolution: "@ungap/structured-clone@npm:1.3.3" + checksum: 10c0/b199e280ee06e9c447e0ccd38df60a65c2b2c13d3c77af50b1e6d77230aee1ea7da309d7b80c5a4850c8e22e4eee9e4b2813c6a33f8c360560d7f2e99a9f6e8f languageName: node linkType: hard -"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1" +"@unrs/resolver-binding-android-arm-eabi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.12.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-android-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1" +"@unrs/resolver-binding-android-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm64@npm:1.12.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1" +"@unrs/resolver-binding-darwin-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.12.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1" +"@unrs/resolver-binding-darwin-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-x64@npm:1.12.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-freebsd-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1" +"@unrs/resolver-binding-freebsd-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.12.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=musl + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1" +"@unrs/resolver-binding-openharmony-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-openharmony-arm64@npm:1.12.2" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@unrs/resolver-binding-wasm32-wasi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.12.2" dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.11" + "@emnapi/core": "npm:1.10.0" + "@emnapi/runtime": "npm:1.10.0" + "@napi-rs/wasm-runtime": "npm:^1.1.4" conditions: cpu=wasm32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@vitejs/plugin-react@npm:^6.0.2": - version: 6.0.2 - resolution: "@vitejs/plugin-react@npm:6.0.2" + version: 6.0.4 + resolution: "@vitejs/plugin-react@npm:6.0.4" dependencies: - "@rolldown/pluginutils": "npm:^1.0.0" + "@rolldown/pluginutils": "npm:^1.0.1" peerDependencies: "@rolldown/plugin-babel": ^0.1.7 || ^0.2.0 babel-plugin-react-compiler: ^1.0.0 @@ -3851,7 +3510,7 @@ __metadata: optional: true babel-plugin-react-compiler: optional: true - checksum: 10c0/6e2d90974e05f2a9aefafad1d137b75c3b3b4bf3f2affdbfe77c6b11b24832cff22dd8852430c6341e2fb5b00a4513fb00db306a6abdbec6f0f5841e93bbcfba + checksum: 10c0/38446b54f51760b97d81abfa2fb9130bdc7a545183c97b26cfc7a5982fbcbeef431f482a3d44ef8225ca3e8c37e852a0843f8f84d0834391cab49b36a172dbf8 languageName: node linkType: hard @@ -3944,7 +3603,7 @@ __metadata: languageName: node linkType: hard -"@vitest/pretty-format@npm:3.2.6, @vitest/pretty-format@npm:^3.2.6": +"@vitest/pretty-format@npm:3.2.6": version: 3.2.6 resolution: "@vitest/pretty-format@npm:3.2.6" dependencies: @@ -3953,6 +3612,15 @@ __metadata: languageName: node linkType: hard +"@vitest/pretty-format@npm:^3.2.6": + version: 3.2.7 + resolution: "@vitest/pretty-format@npm:3.2.7" + dependencies: + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/f556dd5f9e5240c7ab054d795622292c1b23f6aad3332d1e250f33d801783efbb7883387640b76d22cc91b81f30cb735b40371ec3e4f5293e735495f45d624df + languageName: node + linkType: hard + "@vitest/runner@npm:3.2.6": version: 3.2.6 resolution: "@vitest/runner@npm:3.2.6" @@ -4055,10 +3723,10 @@ __metadata: languageName: node linkType: hard -"abbrev@npm:^4.0.0": - version: 4.0.0 - resolution: "abbrev@npm:4.0.0" - checksum: 10c0/b4cc16935235e80702fc90192e349e32f8ef0ed151ef506aa78c81a7c455ec18375c4125414b99f84b2e055199d66383e787675f0bcd87da7a4dbd59f9eac1d5 +"abbrev@npm:^5.0.0": + version: 5.0.0 + resolution: "abbrev@npm:5.0.0" + checksum: 10c0/8e88f5c798ea4562d28c5a3e9ad69e3879890bc5d695d8f2dffb8609be4c890aacc8f80ef4553fdd2c6a62d70c2ce8bc57b38074e383beb7487bdafa9ed42ea5 languageName: node linkType: hard @@ -4091,29 +3759,20 @@ __metadata: linkType: hard "acorn-walk@npm:^8.1.1, acorn-walk@npm:^8.3.4": - version: 8.3.4 - resolution: "acorn-walk@npm:8.3.4" + version: 8.3.5 + resolution: "acorn-walk@npm:8.3.5" dependencies: acorn: "npm:^8.11.0" - checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62 - languageName: node - linkType: hard - -"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": - version: 8.14.1 - resolution: "acorn@npm:8.14.1" - bin: - acorn: bin/acorn - checksum: 10c0/dbd36c1ed1d2fa3550140000371fcf721578095b18777b85a79df231ca093b08edc6858d75d6e48c73e431c174dcf9214edbd7e6fa5911b93bd8abfa54e47123 + checksum: 10c0/e31bf5b5423ed1349437029d66d708b9fbd1b77a644b031501e2c753b028d13b56348210ed901d5b1d0d86eb3381c0a0fc0d0998511a9d546d1194936266a332 languageName: node linkType: hard -"acorn@npm:^8.15.0": - version: 8.15.0 - resolution: "acorn@npm:8.15.0" +"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": + version: 8.17.0 + resolution: "acorn@npm:8.17.0" bin: acorn: bin/acorn - checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec + checksum: 10c0/5dcefea5f8f023b6cc24cbe71fb5a8112b601d36c4fa07d14e4e6ffc2ee47383332c46b36c766d9437725aa6660156eae50efa0c838719823b50d7c327c4ed42 languageName: node linkType: hard @@ -4127,9 +3786,9 @@ __metadata: linkType: hard "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": - version: 7.1.3 - resolution: "agent-base@npm:7.1.3" - checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 + version: 7.1.4 + resolution: "agent-base@npm:7.1.4" + checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe languageName: node linkType: hard @@ -4158,30 +3817,18 @@ __metadata: linkType: hard "ajv@npm:^6.12.3, ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" + version: 6.15.0 + resolution: "ajv@npm:6.15.0" dependencies: fast-deep-equal: "npm:^3.1.1" fast-json-stable-stringify: "npm:^2.0.0" json-schema-traverse: "npm:^0.4.1" uri-js: "npm:^4.2.2" - checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 - languageName: node - linkType: hard - -"ajv@npm:^8.0.0": - version: 8.17.1 - resolution: "ajv@npm:8.17.1" - dependencies: - fast-deep-equal: "npm:^3.1.3" - fast-uri: "npm:^3.0.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35 + checksum: 10c0/67966499dd272ecde1c2e467084411132891523d057487587879d39ac04207f4351b7b2324c83198013967fbfa632c1612adc960114a30770fbe07a0773b32c2 languageName: node linkType: hard -"ajv@npm:^8.17.1": +"ajv@npm:^8.0.0, ajv@npm:^8.17.1": version: 8.20.0 resolution: "ajv@npm:8.20.0" dependencies: @@ -4241,13 +3888,6 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^6.0.1": - version: 6.1.0 - resolution: "ansi-regex@npm:6.1.0" - checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc - languageName: node - linkType: hard - "ansi-regex@npm:^6.2.2": version: 6.2.2 resolution: "ansi-regex@npm:6.2.2" @@ -4287,14 +3927,7 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"ansi-styles@npm:^6.2.1": +"ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": version: 6.2.3 resolution: "ansi-styles@npm:6.2.3" checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868 @@ -4320,33 +3953,20 @@ __metadata: languageName: node linkType: hard -"archiver-utils@npm:^5.0.0, archiver-utils@npm:^5.0.2": - version: 5.0.2 - resolution: "archiver-utils@npm:5.0.2" - dependencies: - glob: "npm:^10.0.0" - graceful-fs: "npm:^4.2.0" - is-stream: "npm:^2.0.1" - lazystream: "npm:^1.0.0" - lodash: "npm:^4.17.15" - normalize-path: "npm:^3.0.0" - readable-stream: "npm:^4.0.0" - checksum: 10c0/3782c5fa9922186aa1a8e41ed0c2867569faa5f15c8e5e6418ea4c1b730b476e21bd68270b3ea457daf459ae23aaea070b2b9f90cf90a59def8dc79b9e4ef538 - languageName: node - linkType: hard - -"archiver@npm:^7.0.1": - version: 7.0.1 - resolution: "archiver@npm:7.0.1" +"archiver@npm:^8.0.0": + version: 8.0.0 + resolution: "archiver@npm:8.0.0" dependencies: - archiver-utils: "npm:^5.0.2" async: "npm:^3.2.4" buffer-crc32: "npm:^1.0.0" + is-stream: "npm:^4.0.0" + lazystream: "npm:^1.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - readdir-glob: "npm:^1.1.2" + readdir-glob: "npm:^3.0.0" tar-stream: "npm:^3.0.0" - zip-stream: "npm:^6.0.1" - checksum: 10c0/02afd87ca16f6184f752db8e26884e6eff911c476812a0e7f7b26c4beb09f06119807f388a8e26ed2558aa8ba9db28646ebd147a4f99e46813b8b43158e1438e + zip-stream: "npm:^7.0.2" + checksum: 10c0/bcb12f3c8c0baac15ab0b3e92d2b6a249a09c59ffded8b259bdf5ff7ea547a75a93d79e614f99d8ba9d5f4a8ee43bbcedcd07117b1faef3369249fd8070efec8 languageName: node linkType: hard @@ -4455,13 +4075,27 @@ __metadata: linkType: hard "ast-v8-to-istanbul@npm:^0.3.3": - version: 0.3.3 - resolution: "ast-v8-to-istanbul@npm:0.3.3" + version: 0.3.12 + resolution: "ast-v8-to-istanbul@npm:0.3.12" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.25" + "@jridgewell/trace-mapping": "npm:^0.3.31" estree-walker: "npm:^3.0.3" - js-tokens: "npm:^9.0.1" - checksum: 10c0/ffc39bc3ab4b8c1f7aea945960ce6b1e518bab3da7c800277eab2da07d397eeae4a2cb8a5a5f817225646c8ea495c1e4434fbe082c84bae8042abddef53f50b2 + js-tokens: "npm:^10.0.0" + checksum: 10c0/bad6ba222b1073c165c8d65dbf366193d4a90536dabe37f93a3df162269b1c9473975756e4c048f708c235efccc26f8e5321c547b7e9563b64b21b2e0f27cbc9 + languageName: node + linkType: hard + +"async-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-function@npm:1.0.0" + checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73 + languageName: node + linkType: hard + +"async-generator-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-generator-function@npm:1.0.0" + checksum: 10c0/2c50ef856c543ad500d8d8777d347e3c1ba623b93e99c9263ecc5f965c1b12d2a140e2ab6e43c3d0b85366110696f28114649411cbcd10b452a92a2318394186 languageName: node linkType: hard @@ -4479,13 +4113,6 @@ __metadata: languageName: node linkType: hard -"at-least-node@npm:^1.0.0": - version: 1.0.0 - resolution: "at-least-node@npm:1.0.0" - checksum: 10c0/4c058baf6df1bc5a1697cf182e2029c58cd99975288a13f9e70068ef5d6f4e1f1fd7c4d2c3c4912eae44797d1725be9700995736deca441b39f3e66d8dee97ef - languageName: node - linkType: hard - "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" @@ -4509,7 +4136,7 @@ __metadata: languageName: node linkType: hard -"axios@npm:^1.15.0, axios@npm:^1.6.1": +"axios@npm:^1.16.0, axios@npm:^1.6.1": version: 1.18.1 resolution: "axios@npm:1.18.1" dependencies: @@ -4521,32 +4148,32 @@ __metadata: languageName: node linkType: hard -"b4a@npm:^1.6.4": - version: 1.8.0 - resolution: "b4a@npm:1.8.0" +"b4a@npm:^1.6.4, b4a@npm:^1.8.1": + version: 1.8.1 + resolution: "b4a@npm:1.8.1" peerDependencies: react-native-b4a: "*" peerDependenciesMeta: react-native-b4a: optional: true - checksum: 10c0/27eab5c50ea1f1314f36256f160d2e6d6950f55f02ee4942732ecafd8bcc4b3a2ed209fab532b288770d41df2befa97a2745175c06471875b716eb87abf31519 + checksum: 10c0/344d8c94b244ec7a9cb516ea43a98216312454cb72478e4b7628a679ee343be237564c53bbe73995ab10ea9bc923b420236081b180b3cf78fd0c945bfc886798 languageName: node linkType: hard -"babel-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-jest@npm:30.3.0" +"babel-jest@npm:30.4.1": + version: 30.4.1 + resolution: "babel-jest@npm:30.4.1" dependencies: - "@jest/transform": "npm:30.3.0" + "@jest/transform": "npm:30.4.1" "@types/babel__core": "npm:^7.20.5" babel-plugin-istanbul: "npm:^7.0.1" - babel-preset-jest: "npm:30.3.0" + babel-preset-jest: "npm:30.4.0" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-0 - checksum: 10c0/5e41e124a404ddb78aa37a20336d7c883feab5ad9c4f4c72ae26db71be2fcca345874b9a7fef97d9c5f64f144a264b247ebde8acfe493578320f314ca581bac3 + checksum: 10c0/339b449011f31dc9eb18d9c49f0bb84e8de284e1107e64159a2f4a432bbd532d6a729774a56b7fbe76f5ddd716a0b4b7ad737265feab23b4d0225489b79a6f72 languageName: node linkType: hard @@ -4563,12 +4190,12 @@ __metadata: languageName: node linkType: hard -"babel-plugin-jest-hoist@npm:30.3.0": - version: 30.3.0 - resolution: "babel-plugin-jest-hoist@npm:30.3.0" +"babel-plugin-jest-hoist@npm:30.4.0": + version: 30.4.0 + resolution: "babel-plugin-jest-hoist@npm:30.4.0" dependencies: "@types/babel__core": "npm:^7.20.5" - checksum: 10c0/5e15900a6487356131e084970f4a9ebe24b702d74930f786e897d4fab90b0987054f66661a3570ea692f429dcd158c2214c97ecf08f7356cbc60029d7b277c74 + checksum: 10c0/1738ed536bb5ff536b4d406b8db7dbbd76cf10f80bb20d902e6efdda79898f045b9a991124d7104d8c398d0bd995d511d57694952645fba0f6250595a45277b0 languageName: node linkType: hard @@ -4608,15 +4235,15 @@ __metadata: languageName: node linkType: hard -"babel-preset-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-preset-jest@npm:30.3.0" +"babel-preset-jest@npm:30.4.0": + version: 30.4.0 + resolution: "babel-preset-jest@npm:30.4.0" dependencies: - babel-plugin-jest-hoist: "npm:30.3.0" + babel-plugin-jest-hoist: "npm:30.4.0" babel-preset-current-node-syntax: "npm:^1.2.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-beta.1 - checksum: 10c0/a6839a1527d254bf04e82c0cf61a6a2aa283123a74f0a552e6fce462cb990abebab75a13ec3e9c58b09a865d4d2dfbac710c2d3975ae3ce6f2707cb314915c66 + checksum: 10c0/ca2623aa4d8bf82b1fd01e5724a87cea7f80ff089341cf12415e9ce4b10f74838ecc6c8a48921f421f90bcd44f7929c0ad300146082e2f400253adb97ab5eb3a languageName: node linkType: hard @@ -4635,20 +4262,20 @@ __metadata: linkType: hard "bare-events@npm:^2.5.4, bare-events@npm:^2.7.0": - version: 2.8.2 - resolution: "bare-events@npm:2.8.2" + version: 2.9.1 + resolution: "bare-events@npm:2.9.1" peerDependencies: bare-abort-controller: "*" peerDependenciesMeta: bare-abort-controller: optional: true - checksum: 10c0/53fef240cf2cdcca62f78b6eead90ddb5a59b0929f414b13a63764c2b4f9de98ea8a578d033b04d64bb7b86dfbc402e937984e69950855cc3754c7b63da7db21 + checksum: 10c0/576fba522bdd2167f35e86791e6c881fdaaf542aa5fca0acfaf8fac7a2c0789340f1cafa0b63e216808efb5cc710887c0cf683f1783293bf98a215d8555ecc36 languageName: node linkType: hard "bare-fs@npm:^4.5.5": - version: 4.6.0 - resolution: "bare-fs@npm:4.6.0" + version: 4.7.4 + resolution: "bare-fs@npm:4.7.4" dependencies: bare-events: "npm:^2.5.4" bare-path: "npm:^3.0.0" @@ -4660,30 +4287,22 @@ __metadata: peerDependenciesMeta: bare-buffer: optional: true - checksum: 10c0/fe7fce0c2b8f269ec1ff55d034b39201e4cd3100d9808950a267158603e1a85b37bda54c83237b3828ec6989094bef025ac4f44177d72a3d2ce26d69daff81d5 - languageName: node - linkType: hard - -"bare-os@npm:^3.0.1": - version: 3.8.7 - resolution: "bare-os@npm:3.8.7" - checksum: 10c0/6541b223a196a58b52e1103ef1f04d35018c1b56b6c250410fc54680767624273691ece741eb88502c95b058ab90b632972348a9231410df05c5df61a62c9c08 + checksum: 10c0/c189f8075c7f19142383cda7cb95e85c9a057366e6232f00ce8ad901471291bd2c716d5e480c203c38383c757e64c0388fa5184cfa767dc63c4808e566e16d89 languageName: node linkType: hard "bare-path@npm:^3.0.0": - version: 3.0.0 - resolution: "bare-path@npm:3.0.0" - dependencies: - bare-os: "npm:^3.0.1" - checksum: 10c0/56a3ca82a9f808f4976cb1188640ac206546ce0ddff582afafc7bd2a6a5b31c3bd16422653aec656eeada2830cfbaa433c6cbf6d6b4d9eba033d5e06d60d9a68 + version: 3.1.1 + resolution: "bare-path@npm:3.1.1" + checksum: 10c0/833f0fe2df164e518878b9c71646228d7841c2e35bd3fc428e432b512317ce7fdbd2a127649366f34db3312778d12a83f2fff5485004bbbdcdd15975fce73f4c languageName: node linkType: hard "bare-stream@npm:^2.6.4": - version: 2.12.0 - resolution: "bare-stream@npm:2.12.0" + version: 2.13.3 + resolution: "bare-stream@npm:2.13.3" dependencies: + b4a: "npm:^1.8.1" streamx: "npm:^2.25.0" teex: "npm:^1.0.1" peerDependencies: @@ -4697,16 +4316,16 @@ __metadata: optional: true bare-events: optional: true - checksum: 10c0/b2f306e2f23f8a53572c8df90ad71dda0d1565a7de70fef14c95259fe93421de20dfb9420b382698468cfbac4010fc260ba5bd75cca3965ebe47695d1679ad82 + checksum: 10c0/1867ca2e89042a7a9c53e8415a0be6e958bdc7231bc0858a793ec35614419eb6e57ad7a27db2de3dc75a799f7432494e27029b3805eee53693629ff64cae16c9 languageName: node linkType: hard "bare-url@npm:^2.2.2": - version: 2.4.0 - resolution: "bare-url@npm:2.4.0" + version: 2.4.6 + resolution: "bare-url@npm:2.4.6" dependencies: bare-path: "npm:^3.0.0" - checksum: 10c0/b349bf4d3826d6e9fea40aae0b8aaba6e7e83af89feac93ad0b87721c11e0dd84eb651549275242c5ae07a3a21d24620b76bf59c434db65e9605a6e3180f8af2 + checksum: 10c0/fa93bb9fc643133ca0b38c1431bb2041a7179fd1f5f39d08f303feba018ece752bb823133cfe7849b078c01f907ff31429d915a0ae4c47e03de7d8c42f671354 languageName: node linkType: hard @@ -4737,6 +4356,15 @@ __metadata: languageName: node linkType: hard +"baseline-browser-mapping@npm:^2.10.44": + version: 2.11.0 + resolution: "baseline-browser-mapping@npm:2.11.0" + bin: + baseline-browser-mapping: dist/cli.cjs + checksum: 10c0/03176d4d1c85a156971ae328241e9216288d59f46a5195acc95c41f1477b2e791185d0f68128788c311fd0fb0b93b321170d65c1ef7d9bcab096677c844365de + languageName: node + linkType: hard + "bcrypt-pbkdf@npm:^1.0.0": version: 1.0.2 resolution: "bcrypt-pbkdf@npm:1.0.2" @@ -4746,17 +4374,17 @@ __metadata: languageName: node linkType: hard -"bestzip@npm:2.2.3": - version: 2.2.3 - resolution: "bestzip@npm:2.2.3" +"bestzip@npm:3.0.1": + version: 3.0.1 + resolution: "bestzip@npm:3.0.1" dependencies: - archiver: "npm:^7.0.1" + archiver: "npm:^8.0.0" glob: "npm:^13.0.6" which: "npm:^6.0.1" yargs: "npm:^16.2.0" bin: bestzip: bin/cli.js - checksum: 10c0/fda17035db4cf364a2a7d0685db16013fe90559b9943e1268842b895207177a1f22b5cfdd07d51c3b239fd277ac11ad5d6596b23a83af4a7e1c32f2475743343 + checksum: 10c0/9979d6dc41e18267a3af8aa5df78dd39ada7684b34b5c151e465554473ce509f1aa6045b6aa53cb56a9a2266ee322f74c718ce99a3c52dbb15616475e7afc73a languageName: node linkType: hard @@ -4777,19 +4405,19 @@ __metadata: linkType: hard "body-parser@npm:^2.2.1": - version: 2.2.2 - resolution: "body-parser@npm:2.2.2" + version: 2.3.0 + resolution: "body-parser@npm:2.3.0" dependencies: bytes: "npm:^3.1.2" - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" debug: "npm:^4.4.3" - http-errors: "npm:^2.0.0" - iconv-lite: "npm:^0.7.0" + http-errors: "npm:^2.0.1" + iconv-lite: "npm:^0.7.2" on-finished: "npm:^2.4.1" - qs: "npm:^6.14.1" - raw-body: "npm:^3.0.1" - type-is: "npm:^2.0.1" - checksum: 10c0/95a830a003b38654b75166ca765358aa92ee3d561bf0e41d6ccdde0e1a0c9783cab6b90b20eb635d23172c010b59d3563a137a738e74da4ba714463510d05137 + qs: "npm:^6.15.2" + raw-body: "npm:^3.0.2" + type-is: "npm:^2.1.0" + checksum: 10c0/2a8fbbdc471b588338555a3e1a597d1eb0ad0c21cf20fdc3bac5d3f8d9c3a4b19b4163575ab852a43a5dfc0df7770ced5284f979e561f1a24c2f851ce89e695a languageName: node linkType: hard @@ -4819,21 +4447,21 @@ __metadata: languageName: node linkType: hard -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" +"brace-expansion@npm:^2.0.1, brace-expansion@npm:^2.0.2": + version: 2.1.2 + resolution: "brace-expansion@npm:2.1.2" dependencies: balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + checksum: 10c0/5442ecab84045d21826268bc56c81a6ef4215327ee1f5ee153f67928e93f7a915d130ecec9966623143277fa3cce036ebb50020024bcc4d78853cdd6af9a19f8 languageName: node linkType: hard "brace-expansion@npm:^5.0.5": - version: 5.0.5 - resolution: "brace-expansion@npm:5.0.5" + version: 5.0.7 + resolution: "brace-expansion@npm:5.0.7" dependencies: balanced-match: "npm:^4.0.2" - checksum: 10c0/4d238e14ed4f5cc9c07285550a41cef23121ca08ba99fa9eb5b55b580dcb6bf868b8210aa10526bdc9f8dc97f33ca2a7259039c4cc131a93042beddb424c48e3 + checksum: 10c0/4769109c3c082de178e449a371bcad50d51ab468f644bce2dd9188efe0cf0a080ed102105d7fc8577382cedc45bad7e6443a91bf3d8102264ee8cf927dbaf205 languageName: node linkType: hard @@ -4854,16 +4482,17 @@ __metadata: linkType: hard "browserslist@npm:^4.24.0": - version: 4.24.5 - resolution: "browserslist@npm:4.24.5" - dependencies: - caniuse-lite: "npm:^1.0.30001716" - electron-to-chromium: "npm:^1.5.149" - node-releases: "npm:^2.0.19" - update-browserslist-db: "npm:^1.1.3" + version: 4.28.7 + resolution: "browserslist@npm:4.28.7" + dependencies: + baseline-browser-mapping: "npm:^2.10.44" + caniuse-lite: "npm:^1.0.30001806" + electron-to-chromium: "npm:^1.5.393" + node-releases: "npm:^2.0.51" + update-browserslist-db: "npm:^1.2.3" bin: browserslist: cli.js - checksum: 10c0/f4c1ce1a7d8fdfab5e5b88bb6e93d09e8a883c393f86801537a252da0362dbdcde4dbd97b318246c5d84c6607b2f6b47af732c1b000d6a8a881ee024bad29204 + checksum: 10c0/dc41922a9ff0d81e5492498bdab2d932e3a3222f4277814ba38ee64f4e51f26e5244a7cce0777b4cac3ceff6eb196f5cadbb2a832620973a7f9c39611f6bc78e languageName: node linkType: hard @@ -4937,24 +4566,6 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^20.0.1": - version: 20.0.4 - resolution: "cacache@npm:20.0.4" - dependencies: - "@npmcli/fs": "npm:^5.0.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^13.0.0" - lru-cache: "npm:^11.1.0" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^7.0.2" - ssri: "npm:^13.0.0" - checksum: 10c0/539bf4020e44ba9ca5afc2ec435623ed7e0dd80c020097677e6b4a0545df5cc9d20b473212d01209c8b4aea43c0d095af0bb6da97bcb991642ea6fac0d7c462b - languageName: node - linkType: hard - "cacheable-request@npm:^6.0.0": version: 6.1.0 resolution: "cacheable-request@npm:6.1.0" @@ -4982,7 +4593,7 @@ __metadata: languageName: node linkType: hard -"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": version: 1.0.2 resolution: "call-bind-apply-helpers@npm:1.0.2" dependencies: @@ -4992,15 +4603,15 @@ __metadata: languageName: node linkType: hard -"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8": - version: 1.0.8 - resolution: "call-bind@npm:1.0.8" +"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8, call-bind@npm:^1.0.9": + version: 1.0.9 + resolution: "call-bind@npm:1.0.9" dependencies: - call-bind-apply-helpers: "npm:^1.0.0" - es-define-property: "npm:^1.0.0" - get-intrinsic: "npm:^1.2.4" + call-bind-apply-helpers: "npm:^1.0.2" + es-define-property: "npm:^1.0.1" + get-intrinsic: "npm:^1.3.0" set-function-length: "npm:^1.2.2" - checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 + checksum: 10c0/a6621f6da1444481919ce3b4983dff725691e0754d3507ae483ce56e54985f2da7d6f1df512c56dbf28660745cf1ca52553f1fc9aef5557f3ce353ef14fab714 languageName: node linkType: hard @@ -5035,10 +4646,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001716": - version: 1.0.30001718 - resolution: "caniuse-lite@npm:1.0.30001718" - checksum: 10c0/67f9ad09bc16443e28d14f265d6e468480cd8dc1900d0d8b982222de80c699c4f2306599c3da8a3fa7139f110d4b30d49dbac78f215470f479abb6ffe141d5d3 +"caniuse-lite@npm:^1.0.30001806": + version: 1.0.30001806 + resolution: "caniuse-lite@npm:1.0.30001806" + checksum: 10c0/9442c8afff0968e9b2ce0104a7340c1ce4a5c09f469ccb9eef10d25712ea0afe542486e5318c697c70dd502f988cfc04eaa1c9438c92ac3bcf4d708a2a17bee1 languageName: node linkType: hard @@ -5065,20 +4676,7 @@ __metadata: languageName: node linkType: hard -"chai@npm:^5.1.1": - version: 5.2.0 - resolution: "chai@npm:5.2.0" - dependencies: - assertion-error: "npm:^2.0.1" - check-error: "npm:^2.1.1" - deep-eql: "npm:^5.0.1" - loupe: "npm:^3.1.0" - pathval: "npm:^2.0.0" - checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d - languageName: node - linkType: hard - -"chai@npm:^5.2.0": +"chai@npm:^5.1.1, chai@npm:^5.2.0": version: 5.3.3 resolution: "chai@npm:5.3.3" dependencies: @@ -5150,9 +4748,9 @@ __metadata: linkType: hard "check-error@npm:^2.1.1": - version: 2.1.1 - resolution: "check-error@npm:2.1.1" - checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e + version: 2.1.3 + resolution: "check-error@npm:2.1.3" + checksum: 10c0/878e99038fb6476316b74668cd6a498c7e66df3efe48158fa40db80a06ba4258742ac3ee2229c4a2a98c5e73f5dff84eb3e50ceb6b65bbd8f831eafc8338607d languageName: node linkType: hard @@ -5210,13 +4808,6 @@ __metadata: languageName: node linkType: hard -"classnames@npm:^2.2": - version: 2.5.1 - resolution: "classnames@npm:2.5.1" - checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 - languageName: node - linkType: hard - "clean-regexp@npm:^1.0.0": version: 1.0.0 resolution: "clean-regexp@npm:1.0.0" @@ -5293,10 +4884,10 @@ __metadata: languageName: node linkType: hard -"clsx@npm:^1.1.1": - version: 1.2.1 - resolution: "clsx@npm:1.2.1" - checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 +"clsx@npm:^2.1.1": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839 languageName: node linkType: hard @@ -5346,10 +4937,10 @@ __metadata: languageName: node linkType: hard -"colorbrewer@npm:^1.6.1": - version: 1.6.1 - resolution: "colorbrewer@npm:1.6.1" - checksum: 10c0/27b8bb83f1343fa763541b16820c34a22b68b6200835dc43b5f8cc6b1270ad66c03c377a30b5819fa04c08d0930ea4e478b4779f5abcefd8f337c691e3c19189 +"colorbrewer@npm:^1.7.0": + version: 1.7.0 + resolution: "colorbrewer@npm:1.7.0" + checksum: 10c0/0671f1d626734d5edfac72b590aa98f118c4eb0f13292f2e37ca267d1746e1bd5bc07d8f4c79c7591b33a411f2aadf64384b2afa95c104cb89b5e43b74fa3a24 languageName: node linkType: hard @@ -5369,6 +4960,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^14.0.0": + version: 14.0.3 + resolution: "commander@npm:14.0.3" + checksum: 10c0/755652564bbf56ff2ff083313912b326450d3f8d8c85f4b71416539c9a05c3c67dbd206821ca72635bf6b160e2afdefcb458e86b317827d5cb333b69ce7f1a24 + languageName: node + linkType: hard + "commander@npm:^2.12.1": version: 2.20.3 resolution: "commander@npm:2.20.3" @@ -5390,16 +4988,16 @@ __metadata: languageName: node linkType: hard -"compress-commons@npm:^6.0.2": - version: 6.0.2 - resolution: "compress-commons@npm:6.0.2" +"compress-commons@npm:^7.0.0": + version: 7.0.1 + resolution: "compress-commons@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" - crc32-stream: "npm:^6.0.0" - is-stream: "npm:^2.0.1" + crc32-stream: "npm:^7.0.1" + is-stream: "npm:^4.0.0" normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/2347031b7c92c8ed5011b07b93ec53b298fa2cd1800897532ac4d4d1aeae06567883f481b6e35f13b65fc31b190c751df6635434d525562f0203fde76f1f0814 + checksum: 10c0/9837b9971c7e536f14b113178e944741a0cb76051db2c84ff23da2b6321f2f6da8ed922d713bb643987d4cd39eeaa537c73d9d7843f9eb74f8fe47afe93d0733 languageName: node linkType: hard @@ -5481,6 +5079,13 @@ __metadata: languageName: node linkType: hard +"content-type@npm:^2.0.0": + version: 2.0.0 + resolution: "content-type@npm:2.0.0" + checksum: 10c0/491539fff707d7594b0ca4fabcc084bef2a31ffa754ff0a4f80c4377e3963cff0394317f9271c24087596c97fa675bc123d61fa34ffe65b4904e7d3d3098de72 + languageName: node + linkType: hard + "convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.7.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" @@ -5536,14 +5141,7 @@ __metadata: languageName: node linkType: hard -"core-js@npm:^3.29.0": - version: 3.42.0 - resolution: "core-js@npm:3.42.0" - checksum: 10c0/2913d3d5452d54ad92f058d66046782d608c05e037bcc523aab79c04454fe640998f94e6011292969d66dfa472f398b085ce843dcb362056532a5799c627184e - languageName: node - linkType: hard - -"core-js@npm:^3.6.0, core-js@npm:^3.8.3": +"core-js@npm:^3.29.0, core-js@npm:^3.6.0, core-js@npm:^3.8.3": version: 3.49.0 resolution: "core-js@npm:3.49.0" checksum: 10c0/2e42edb47eda38fd5368380131623c8aa5d4a6b42164125b17744bdc08fa5ebbbdd06b4b4aa6ca3663470a560b0f2fba48e18f142dfe264b0039df85bc625694 @@ -5623,13 +5221,13 @@ __metadata: languageName: node linkType: hard -"crc32-stream@npm:^6.0.0": - version: 6.0.0 - resolution: "crc32-stream@npm:6.0.0" +"crc32-stream@npm:^7.0.1": + version: 7.0.1 + resolution: "crc32-stream@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/bf9c84571ede2d119c2b4f3a9ef5eeb9ff94b588493c0d3862259af86d3679dcce1c8569dd2b0a6eff2f35f5e2081cc1263b846d2538d4054da78cf34f262a3d + checksum: 10c0/0d8d217ca4f328bba859a6bef8593028d24841bef2fe4dc44ae892c7cace4301ce6d5676b568642ddb0a709ee3f0f7af1d1ada4c9c399bc5a4ff9b93d5d1071d languageName: node linkType: hard @@ -5688,23 +5286,16 @@ __metadata: linkType: hard "cssstyle@npm:^4.2.1": - version: 4.3.1 - resolution: "cssstyle@npm:4.3.1" + version: 4.6.0 + resolution: "cssstyle@npm:4.6.0" dependencies: - "@asamuzakjp/css-color": "npm:^3.1.2" + "@asamuzakjp/css-color": "npm:^3.2.0" rrweb-cssom: "npm:^0.8.0" - checksum: 10c0/89d73252d5f9930cf67f5c576de8030a9d960aae4c8bdd42d60464b2f67c8d809601fb7e620b43d4c84e03472016da77528df9a21a21393387ed256610ca0ab4 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 + checksum: 10c0/71add1b0ffafa1bedbef6855db6189b9523d3320e015a0bf3fbd504760efb9a81e1f1a225228d5fa892ee58e56d06994ca372e7f4e461cda7c4c9985fe075f65 languageName: node linkType: hard -"csstype@npm:^3.1.3, csstype@npm:^3.2.2": +"csstype@npm:^3.0.2, csstype@npm:^3.1.3, csstype@npm:^3.2.2": version: 3.2.3 resolution: "csstype@npm:3.2.3" checksum: 10c0/cd29c51e70fa822f1cecd8641a1445bed7063697469d35633b516e60fe8c1bde04b08f6c5b6022136bb669b64c63d4173af54864510fbb4ee23281801841a3ce @@ -5749,19 +5340,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.1": - version: 4.4.1 - resolution: "debug@npm:4.4.1" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 - languageName: node - linkType: hard - -"debug@npm:^4.4.0, debug@npm:^4.4.3": +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.0, debug@npm:^4.4.1, debug@npm:^4.4.3": version: 4.4.3 resolution: "debug@npm:4.4.3" dependencies: @@ -5781,9 +5360,9 @@ __metadata: linkType: hard "decimal.js@npm:^10.5.0": - version: 10.5.0 - resolution: "decimal.js@npm:10.5.0" - checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 + version: 10.6.0 + resolution: "decimal.js@npm:10.6.0" + checksum: 10c0/07d69fbcc54167a340d2d97de95f546f9ff1f69d2b45a02fd7a5292412df3cd9eb7e23065e532a318f5474a2e1bccf8392fdf0443ef467f97f3bf8cb0477e5aa languageName: node linkType: hard @@ -5815,20 +5394,6 @@ __metadata: languageName: node linkType: hard -"deep-equal@npm:^1.1.1": - version: 1.1.2 - resolution: "deep-equal@npm:1.1.2" - dependencies: - is-arguments: "npm:^1.1.1" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - regexp.prototype.flags: "npm:^1.5.1" - checksum: 10c0/cd85d822d18e9b3e1532d0f6ba412d229aa9d22881d70da161674428ae96e47925191296f7cda29306bac252889007da40ed8449363bd1c96c708acb82068a00 - languageName: node - linkType: hard - "deep-equal@npm:^2.0.5": version: 2.2.3 resolution: "deep-equal@npm:2.2.3" @@ -5988,9 +5553,9 @@ __metadata: linkType: hard "diff@npm:^4.0.1": - version: 4.0.2 - resolution: "diff@npm:4.0.2" - checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + version: 4.0.4 + resolution: "diff@npm:4.0.4" + checksum: 10c0/855fb70b093d1d9643ddc12ea76dca90dc9d9cdd7f82c08ee8b9325c0dc5748faf3c82e2047ced5dcaa8b26e58f7903900be2628d0380a222c02d79d8de385df languageName: node linkType: hard @@ -6089,15 +5654,6 @@ __metadata: languageName: node linkType: hard -"dom-helpers@npm:^3.4.0": - version: 3.4.0 - resolution: "dom-helpers@npm:3.4.0" - dependencies: - "@babel/runtime": "npm:^7.1.2" - checksum: 10c0/1d2d3e4eadac2c4f4c8c7470a737ab32b7ec28237c4d094ea967ec3184168fd12452196fcc424a5d7860b6176117301aeaecba39467bf1a6e8492a8e5c9639d1 - languageName: node - linkType: hard - "dom-helpers@npm:^5.0.1": version: 5.2.1 resolution: "dom-helpers@npm:5.2.1" @@ -6125,13 +5681,6 @@ __metadata: languageName: node linkType: hard -"dom4@npm:^2.1.5": - version: 2.1.6 - resolution: "dom4@npm:2.1.6" - checksum: 10c0/1ed3d869c5a3f1aa9c3c17615324ef367449c8b951b737297ae202357447d79d462855c93b79e57d2d0adcd2f68f0b3374904a2f9051da7290260a0f7b560d7f - languageName: node - linkType: hard - "domelementtype@npm:1, domelementtype@npm:^1.3.1": version: 1.3.1 resolution: "domelementtype@npm:1.3.1" @@ -6155,7 +5704,7 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.0": +"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.10": version: 3.4.12 resolution: "dompurify@npm:3.4.12" dependencies: @@ -6205,9 +5754,9 @@ __metadata: linkType: hard "earcut@npm:^3.0.0": - version: 3.0.1 - resolution: "earcut@npm:3.0.1" - checksum: 10c0/cc1d3ed87a08db1a601b3b836bfb2fe22c8f923dfcfcd7419c64a5d4c270ac6d966d8d1e673cc699f8d69dc32bce84fd6d87136c49431fa35057bd7141627769 + version: 3.2.3 + resolution: "earcut@npm:3.2.3" + checksum: 10c0/38660ec1ce55eecbbbf11d5a0072934c9f33851527bf5e40923c6656c3a0c6b00bb449ae8f4b28f89a0b249fe18568e630a8ea9ee39ce2707a50a89531a2f995 languageName: node linkType: hard @@ -6235,10 +5784,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.149": - version: 1.5.155 - resolution: "electron-to-chromium@npm:1.5.155" - checksum: 10c0/aee32a0b03282e488352370f6a910de37788b814031020a0e244943450e844e8a41f741d6e5ec70d553dfa4382ef80088034ddc400b48f45de95de331b9ec178 +"electron-to-chromium@npm:^1.5.393": + version: 1.5.395 + resolution: "electron-to-chromium@npm:1.5.395" + checksum: 10c0/f1e6f10ab7499ef528afcdcfdd8b900c10388e3fcc19333a0de2f0824404740e5450c675469d32c106cc2bfc08db2de88b925523a0d15540bcd8f65355e2ed7b languageName: node linkType: hard @@ -6285,11 +5834,11 @@ __metadata: linkType: hard "end-of-stream@npm:^1.1.0": - version: 1.4.4 - resolution: "end-of-stream@npm:1.4.4" + version: 1.4.5 + resolution: "end-of-stream@npm:1.4.5" dependencies: once: "npm:^1.4.0" - checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 + checksum: 10c0/b0701c92a10b89afb1cb45bf54a5292c6f008d744eb4382fa559d54775ff31617d1d7bc3ef617575f552e24fad2c7c1a1835948c66b3f3a4be0a6c1f35c883d8 languageName: node linkType: hard @@ -6317,7 +5866,7 @@ __metadata: languageName: node linkType: hard -"entities@npm:^4.4.0": +"entities@npm:^4.5.0": version: 4.5.0 resolution: "entities@npm:4.5.0" checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 @@ -6325,9 +5874,9 @@ __metadata: linkType: hard "entities@npm:^6.0.0": - version: 6.0.0 - resolution: "entities@npm:6.0.0" - checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e + version: 6.0.1 + resolution: "entities@npm:6.0.1" + checksum: 10c0/ed836ddac5acb34341094eb495185d527bd70e8632b6c0d59548cbfa23defdbae70b96f9a405c82904efa421230b5b3fd2283752447d737beffd3f3e6ee74414 languageName: node linkType: hard @@ -6346,11 +5895,11 @@ __metadata: linkType: hard "error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" + version: 1.3.4 + resolution: "error-ex@npm:1.3.4" dependencies: is-arrayish: "npm:^0.2.1" - checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + checksum: 10c0/b9e34ff4778b8f3b31a8377e1c654456f4c41aeaa3d10a1138c3b7635d8b7b2e03eb2475d46d8ae055c1f180a1063e100bffabf64ea7e7388b37735df5328664 languageName: node linkType: hard @@ -6393,11 +5942,11 @@ __metadata: linkType: hard "es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": - version: 1.1.1 - resolution: "es-object-atoms@npm:1.1.1" + version: 1.1.2 + resolution: "es-object-atoms@npm:1.1.2" dependencies: es-errors: "npm:^1.3.0" - checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c + checksum: 10c0/1772861f094f739d6f41b579cfb9a18579daffeb434552a370a5fbef50a32d22227e27b63fdbb757b7ddd429d1b42fe52ccae7966d9302a2ec221b6f1b41bbc4 languageName: node linkType: hard @@ -6432,34 +5981,35 @@ __metadata: linkType: hard "esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0": - version: 0.25.4 - resolution: "esbuild@npm:0.25.4" - dependencies: - "@esbuild/aix-ppc64": "npm:0.25.4" - "@esbuild/android-arm": "npm:0.25.4" - "@esbuild/android-arm64": "npm:0.25.4" - "@esbuild/android-x64": "npm:0.25.4" - "@esbuild/darwin-arm64": "npm:0.25.4" - "@esbuild/darwin-x64": "npm:0.25.4" - "@esbuild/freebsd-arm64": "npm:0.25.4" - "@esbuild/freebsd-x64": "npm:0.25.4" - "@esbuild/linux-arm": "npm:0.25.4" - "@esbuild/linux-arm64": "npm:0.25.4" - "@esbuild/linux-ia32": "npm:0.25.4" - "@esbuild/linux-loong64": "npm:0.25.4" - "@esbuild/linux-mips64el": "npm:0.25.4" - "@esbuild/linux-ppc64": "npm:0.25.4" - "@esbuild/linux-riscv64": "npm:0.25.4" - "@esbuild/linux-s390x": "npm:0.25.4" - "@esbuild/linux-x64": "npm:0.25.4" - "@esbuild/netbsd-arm64": "npm:0.25.4" - "@esbuild/netbsd-x64": "npm:0.25.4" - "@esbuild/openbsd-arm64": "npm:0.25.4" - "@esbuild/openbsd-x64": "npm:0.25.4" - "@esbuild/sunos-x64": "npm:0.25.4" - "@esbuild/win32-arm64": "npm:0.25.4" - "@esbuild/win32-ia32": "npm:0.25.4" - "@esbuild/win32-x64": "npm:0.25.4" + version: 0.25.12 + resolution: "esbuild@npm:0.25.12" + dependencies: + "@esbuild/aix-ppc64": "npm:0.25.12" + "@esbuild/android-arm": "npm:0.25.12" + "@esbuild/android-arm64": "npm:0.25.12" + "@esbuild/android-x64": "npm:0.25.12" + "@esbuild/darwin-arm64": "npm:0.25.12" + "@esbuild/darwin-x64": "npm:0.25.12" + "@esbuild/freebsd-arm64": "npm:0.25.12" + "@esbuild/freebsd-x64": "npm:0.25.12" + "@esbuild/linux-arm": "npm:0.25.12" + "@esbuild/linux-arm64": "npm:0.25.12" + "@esbuild/linux-ia32": "npm:0.25.12" + "@esbuild/linux-loong64": "npm:0.25.12" + "@esbuild/linux-mips64el": "npm:0.25.12" + "@esbuild/linux-ppc64": "npm:0.25.12" + "@esbuild/linux-riscv64": "npm:0.25.12" + "@esbuild/linux-s390x": "npm:0.25.12" + "@esbuild/linux-x64": "npm:0.25.12" + "@esbuild/netbsd-arm64": "npm:0.25.12" + "@esbuild/netbsd-x64": "npm:0.25.12" + "@esbuild/openbsd-arm64": "npm:0.25.12" + "@esbuild/openbsd-x64": "npm:0.25.12" + "@esbuild/openharmony-arm64": "npm:0.25.12" + "@esbuild/sunos-x64": "npm:0.25.12" + "@esbuild/win32-arm64": "npm:0.25.12" + "@esbuild/win32-ia32": "npm:0.25.12" + "@esbuild/win32-x64": "npm:0.25.12" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6503,6 +6053,8 @@ __metadata: optional: true "@esbuild/openbsd-x64": optional: true + "@esbuild/openharmony-arm64": + optional: true "@esbuild/sunos-x64": optional: true "@esbuild/win32-arm64": @@ -6513,40 +6065,40 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/db9f51248f0560bc46ab219461d338047617f6caf373c95f643b204760bdfa10c95b48cfde948949f7e509599ae4ab61c3f112092a3534936c6abfb800c565b0 - languageName: node - linkType: hard - -"esbuild@npm:^0.27.0, esbuild@npm:~0.27.0": - version: 0.27.7 - resolution: "esbuild@npm:0.27.7" - dependencies: - "@esbuild/aix-ppc64": "npm:0.27.7" - "@esbuild/android-arm": "npm:0.27.7" - "@esbuild/android-arm64": "npm:0.27.7" - "@esbuild/android-x64": "npm:0.27.7" - "@esbuild/darwin-arm64": "npm:0.27.7" - "@esbuild/darwin-x64": "npm:0.27.7" - "@esbuild/freebsd-arm64": "npm:0.27.7" - "@esbuild/freebsd-x64": "npm:0.27.7" - "@esbuild/linux-arm": "npm:0.27.7" - "@esbuild/linux-arm64": "npm:0.27.7" - "@esbuild/linux-ia32": "npm:0.27.7" - "@esbuild/linux-loong64": "npm:0.27.7" - "@esbuild/linux-mips64el": "npm:0.27.7" - "@esbuild/linux-ppc64": "npm:0.27.7" - "@esbuild/linux-riscv64": "npm:0.27.7" - "@esbuild/linux-s390x": "npm:0.27.7" - "@esbuild/linux-x64": "npm:0.27.7" - "@esbuild/netbsd-arm64": "npm:0.27.7" - "@esbuild/netbsd-x64": "npm:0.27.7" - "@esbuild/openbsd-arm64": "npm:0.27.7" - "@esbuild/openbsd-x64": "npm:0.27.7" - "@esbuild/openharmony-arm64": "npm:0.27.7" - "@esbuild/sunos-x64": "npm:0.27.7" - "@esbuild/win32-arm64": "npm:0.27.7" - "@esbuild/win32-ia32": "npm:0.27.7" - "@esbuild/win32-x64": "npm:0.27.7" + checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b + languageName: node + linkType: hard + +"esbuild@npm:^0.27.0 || ^0.28.0, esbuild@npm:~0.28.0": + version: 0.28.1 + resolution: "esbuild@npm:0.28.1" + dependencies: + "@esbuild/aix-ppc64": "npm:0.28.1" + "@esbuild/android-arm": "npm:0.28.1" + "@esbuild/android-arm64": "npm:0.28.1" + "@esbuild/android-x64": "npm:0.28.1" + "@esbuild/darwin-arm64": "npm:0.28.1" + "@esbuild/darwin-x64": "npm:0.28.1" + "@esbuild/freebsd-arm64": "npm:0.28.1" + "@esbuild/freebsd-x64": "npm:0.28.1" + "@esbuild/linux-arm": "npm:0.28.1" + "@esbuild/linux-arm64": "npm:0.28.1" + "@esbuild/linux-ia32": "npm:0.28.1" + "@esbuild/linux-loong64": "npm:0.28.1" + "@esbuild/linux-mips64el": "npm:0.28.1" + "@esbuild/linux-ppc64": "npm:0.28.1" + "@esbuild/linux-riscv64": "npm:0.28.1" + "@esbuild/linux-s390x": "npm:0.28.1" + "@esbuild/linux-x64": "npm:0.28.1" + "@esbuild/netbsd-arm64": "npm:0.28.1" + "@esbuild/netbsd-x64": "npm:0.28.1" + "@esbuild/openbsd-arm64": "npm:0.28.1" + "@esbuild/openbsd-x64": "npm:0.28.1" + "@esbuild/openharmony-arm64": "npm:0.28.1" + "@esbuild/sunos-x64": "npm:0.28.1" + "@esbuild/win32-arm64": "npm:0.28.1" + "@esbuild/win32-ia32": "npm:0.28.1" + "@esbuild/win32-x64": "npm:0.28.1" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6602,7 +6154,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/ccd51f0555708bc9ff4ec9dc3ac92d3daacd45ecaac949ca8645984c5c323bf8cefe98c2df307418685e0b4ce37f9a3bdbfe8e3651fe632a0059a436195a17d4 + checksum: 10c0/29cd456a79ce35ac2c7e05fe871330416b2c395c045d849653f843e51378d6e0d6e774d6dcd01b35f4e83238a29bf8decd04fcd34b3780c589a250b21e5f92bb languageName: node linkType: hard @@ -6649,23 +6201,23 @@ __metadata: linkType: hard "eslint-config-prettier@npm:^9.0.0": - version: 9.1.0 - resolution: "eslint-config-prettier@npm:9.1.0" + version: 9.1.2 + resolution: "eslint-config-prettier@npm:9.1.2" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d + checksum: 10c0/d2e9dc913b1677764a4732433d83d258f40820458c65d0274cb9e3eaf6559b39f2136446f310c05abed065a4b3c2e901807ccf583dff76c6227eaebf4132c39a languageName: node linkType: hard "eslint-formatter-codeframe@npm:^7.32.1": - version: 7.32.1 - resolution: "eslint-formatter-codeframe@npm:7.32.1" + version: 7.32.2 + resolution: "eslint-formatter-codeframe@npm:7.32.2" dependencies: "@babel/code-frame": "npm:7.12.11" chalk: "npm:^4.0.0" - checksum: 10c0/dcde3de808e3c039919e184d0f3752d786f312ac350db65a64bfed38e43c1fc6129127c7fda29938f81a690b79481d83706a351299268ab7983ed619bf9437b9 + checksum: 10c0/faf4bad2cfe24e2083be647ba5127b4c80628db90fcfdbd0b5300c498686f9e733efcef924f4be3df06f3dda13515f85e9103be631e0ec6d5940691022021a20 languageName: node linkType: hard @@ -6683,11 +6235,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.0.1": - version: 5.4.0 - resolution: "eslint-plugin-prettier@npm:5.4.0" + version: 5.5.6 + resolution: "eslint-plugin-prettier@npm:5.5.6" dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.11.0" + prettier-linter-helpers: "npm:^1.0.1" + synckit: "npm:^0.11.13" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -6698,7 +6250,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10c0/50718d16266dfbe6909697f9d7c9188d2664f5be50fa1de4decc0c8236565570823fdf5973f89cd51254af5551b6160650e092716002a62aaa0f0b2c18e8fc3e + checksum: 10c0/af37126c947ff3e87ff1ea76408db8cb1c7da966ebdaba68c6dd5924da7eb1b43b1abc4796d753a97b1bc26ea94c5497093e6ab9f8588fffe558d5a554e19bbf languageName: node linkType: hard @@ -6831,11 +6383,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2, esquery@npm:^1.5.0": - version: 1.6.0 - resolution: "esquery@npm:1.6.0" + version: 1.7.0 + resolution: "esquery@npm:1.7.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 + checksum: 10c0/77d5173db450b66f3bc685d11af4c90cffeedb340f34a39af96d43509a335ce39c894fd79233df32d38f5e4e219fa0f7076f6ec90bae8320170ba082c0db4793 languageName: node linkType: hard @@ -6909,9 +6461,9 @@ __metadata: linkType: hard "eventsource-parser@npm:^3.0.0, eventsource-parser@npm:^3.0.1": - version: 3.0.8 - resolution: "eventsource-parser@npm:3.0.8" - checksum: 10c0/3a73eee85311f33b12fa558381a477c1bdcf8c024a429a9d48f87b043e328c26d24ed280fd7ca92e2fdd4c8c37f749b758420c1533778aaca2beabf895024efa + version: 3.1.0 + resolution: "eventsource-parser@npm:3.1.0" + checksum: 10c0/5ab4c6c9a2a042be0b387b6d03810eb580bac4ce90e299ede56458125a97ffe3af8145b2740089fc898a96cfa5aae792ee79f2a06257fba2776b0e7bce037071 languageName: node linkType: hard @@ -6972,23 +6524,23 @@ __metadata: linkType: hard "expect-type@npm:^1.2.1": - version: 1.3.0 - resolution: "expect-type@npm:1.3.0" - checksum: 10c0/8412b3fe4f392c420ab41dae220b09700e4e47c639a29ba7ba2e83cc6cffd2b4926f7ac9e47d7e277e8f4f02acda76fd6931cb81fd2b382fa9477ef9ada953fd + version: 1.4.0 + resolution: "expect-type@npm:1.4.0" + checksum: 10c0/d40d76b8570695d36587beb3cc28494da2ca3ec8f04e67f5622ed2d372d850e401a9adef19c6835e1a8173903f157c79540b34c7b3fbd7cd8ce726cc903c57b7 languageName: node linkType: hard -"expect@npm:30.3.0": - version: 30.3.0 - resolution: "expect@npm:30.3.0" +"expect@npm:30.4.1": + version: 30.4.1 + resolution: "expect@npm:30.4.1" dependencies: - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/a07a157a0c8b3f1e29bfe5ccbf03a3add2c69fe60d1af8a0980053bb6403d721d5f5e4616f1ea5833b747913f8c880c79ce4d98c23a71a2f0c27cf7273892576 + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/ad04fbdffac5a2bae186478938a60f737e3aac823db9a80c87f3f390f9f458bddcc454dc3a3997d715706747c6aff928923e6a71db3a221adb89a51cc1582e72 languageName: node linkType: hard @@ -7000,13 +6552,14 @@ __metadata: linkType: hard "express-rate-limit@npm:^8.2.1": - version: 8.4.1 - resolution: "express-rate-limit@npm:8.4.1" + version: 8.6.0 + resolution: "express-rate-limit@npm:8.6.0" dependencies: - ip-address: "npm:10.1.0" + debug: "npm:^4.4.3" + ip-address: "npm:^10.2.0" peerDependencies: express: ">= 4.11" - checksum: 10c0/ead87bcf7b9b4094d2a597b6a77569eed34c7d2ff3a449eeef25e1cd4a96dc3de17b8da93e8cf82f757ef441974846138b4bc371621fbc72346f8cc4a07a712b + checksum: 10c0/cce72e87963d90797ddced59de71046b90ca3ca088ab8e73587b50e812aaefa0b79f5a779743034f3ada01fd27d5c7f82063992a02981c7bc9ac74f8b01bb41a languageName: node linkType: hard @@ -7134,11 +6687,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.19.1 - resolution: "fastq@npm:1.19.1" + version: 1.20.1 + resolution: "fastq@npm:1.20.1" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630 + checksum: 10c0/e5dd725884decb1f11e5c822221d76136f239d0236f176fab80b7b8f9e7619ae57e6b4e5b73defc21e6b9ef99437ee7b545cff8e6c2c337819633712fa9d352e languageName: node linkType: hard @@ -7163,14 +6716,7 @@ __metadata: languageName: node linkType: hard -"fflate@npm:^0.8.0": - version: 0.8.2 - resolution: "fflate@npm:0.8.2" - checksum: 10c0/03448d630c0a583abea594835a9fdb2aaf7d67787055a761515bf4ed862913cfd693b4c4ffd5c3f3b355a70cf1e19033e9ae5aedcca103188aaff91b8bd6e293 - languageName: node - linkType: hard - -"fflate@npm:^0.8.1": +"fflate@npm:^0.8.0, fflate@npm:^0.8.1": version: 0.8.3 resolution: "fflate@npm:0.8.3" checksum: 10c0/eab181ca37f5348ae76d4b6f840e0026e30220e33153289ac942222d8b9638237d486507dbcc09878d724095bd354993a2ee48bbee99c8f2c6440d4448719aa7 @@ -7178,11 +6724,13 @@ __metadata: linkType: hard "figlet@npm:^1.1.1": - version: 1.8.1 - resolution: "figlet@npm:1.8.1" + version: 1.11.3 + resolution: "figlet@npm:1.11.3" + dependencies: + commander: "npm:^14.0.0" bin: figlet: bin/index.js - checksum: 10c0/20a9023ee316b2cbbeb9ba94c9adfdb9fc1bd150efec0ddd3492c23a03e3311ac77fb1a65cfa14e3bf4eca250ddcf98ca380871222cb9909bd50071b3602e8da + checksum: 10c0/9aaff7e7e5cdfe15df50b3a6204f74096c1afd2bc18e22e6f4bf6468b827313c100ab43e58bb23bcc66523c7fd9c87ad19ff6d3d58807b619a32a9c9bef3bd23 languageName: node linkType: hard @@ -7395,15 +6943,15 @@ __metadata: linkType: hard "form-data@npm:^4.0.5": - version: 4.0.5 - resolution: "form-data@npm:4.0.5" + version: 4.0.6 + resolution: "form-data@npm:4.0.6" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" es-set-tostringtag: "npm:^2.1.0" - hasown: "npm:^2.0.2" - mime-types: "npm:^2.1.12" - checksum: 10c0/dd6b767ee0bbd6d84039db12a0fa5a2028160ffbfaba1800695713b46ae974a5f6e08b3356c3195137f8530dcd9dfcb5d5ae1eeff53d0db1e5aad863b619ce3b + hasown: "npm:^2.0.4" + mime-types: "npm:^2.1.35" + checksum: 10c0/43947a77bf0ff45c6ceed789778982d47a3f3e720a74b71721174ebf3310a5f1a8be1d6b38a3ee3688e8a18a2c4273073ec0844cd37efda3eaf46d41c9c318ff languageName: node linkType: hard @@ -7425,13 +6973,6 @@ __metadata: languageName: node linkType: hard -"fresh@npm:0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a - languageName: node - linkType: hard - "fresh@npm:^2.0.0": version: 2.0.0 resolution: "fresh@npm:2.0.0" @@ -7439,6 +6980,13 @@ __metadata: languageName: node linkType: hard +"fresh@npm:~0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a + languageName: node + linkType: hard + "fromentries@npm:^1.2.0": version: 1.3.2 resolution: "fromentries@npm:1.3.2" @@ -7453,35 +7001,25 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^8.1.0": - version: 8.1.0 - resolution: "fs-extra@npm:8.1.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^4.0.0" - universalify: "npm:^0.1.0" - checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 - languageName: node - linkType: hard - -"fs-extra@npm:^9.0.0": - version: 9.1.0 - resolution: "fs-extra@npm:9.1.0" +"fs-extra@npm:^10.0.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" dependencies: - at-least-node: "npm:^1.0.0" graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 10c0/9b808bd884beff5cb940773018179a6b94a966381d005479f00adda6b44e5e3d4abf765135773d849cc27efe68c349e4a7b86acd7d3306d5932c14f3a4b17a92 + checksum: 10c0/5f579466e7109719d162a9249abbeffe7f426eb133ea486e020b89bc6d67a741134076bf439983f2eb79276ceaf6bd7b7c1e43c3fd67fe889863e69072fb0a5e languageName: node linkType: hard -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 languageName: node linkType: hard @@ -7544,6 +7082,13 @@ __metadata: languageName: node linkType: hard +"generator-function@npm:^2.0.0": + version: 2.0.1 + resolution: "generator-function@npm:2.0.1" + checksum: 10c0/8a9f59df0f01cfefafdb3b451b80555e5cf6d76487095db91ac461a0e682e4ff7a9dbce15f4ecec191e53586d59eece01949e05a4b4492879600bbbe8e28d6b8 + languageName: node + linkType: hard + "gensync@npm:^1.0.0-beta.2": version: 1.0.0-beta.2 resolution: "gensync@npm:1.0.0-beta.2" @@ -7551,10 +7096,10 @@ __metadata: languageName: node linkType: hard -"geojson-vt@npm:^4.0.2": - version: 4.0.2 - resolution: "geojson-vt@npm:4.0.2" - checksum: 10c0/f2ca14d868e46f6262f5d3862f8e38a2418ecf9bd7cd6938a67bf87f1e2f8fbf65345d95996711b07cdf8f05ef512be0e2c20f0a8179c6393c2fd41badcb0532 +"geojson-vt@npm:^4.0.3": + version: 4.0.3 + resolution: "geojson-vt@npm:4.0.3" + checksum: 10c0/e53d8c1177adbac0d684328de14c45d95a74f60332e610a29a48e3bbf91d88fec7dbbbcf3fe5825bd275c73ee2a5dd7f5d46faa3086478a255479c493e321a1d languageName: node linkType: hard @@ -7589,20 +7134,23 @@ __metadata: linkType: hard "get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.3.0": - version: 1.3.0 - resolution: "get-intrinsic@npm:1.3.0" + version: 1.3.1 + resolution: "get-intrinsic@npm:1.3.1" dependencies: + async-function: "npm:^1.0.0" + async-generator-function: "npm:^1.0.0" call-bind-apply-helpers: "npm:^1.0.2" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" function-bind: "npm:^1.1.2" + generator-function: "npm:^2.0.0" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" math-intrinsics: "npm:^1.1.0" - checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a + checksum: 10c0/9f4ab0cf7efe0fd2c8185f52e6f637e708f3a112610c88869f8f041bb9ecc2ce44bf285dfdbdc6f4f7c277a5b88d8e94a432374d97cca22f3de7fc63795deb5d languageName: node linkType: hard @@ -7620,7 +7168,7 @@ __metadata: languageName: node linkType: hard -"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": +"get-proto@npm:^1.0.1": version: 1.0.1 resolution: "get-proto@npm:1.0.1" dependencies: @@ -7662,15 +7210,6 @@ __metadata: languageName: node linkType: hard -"get-tsconfig@npm:^4.7.5": - version: 4.13.6 - resolution: "get-tsconfig@npm:4.13.6" - dependencies: - resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/bab6937302f542f97217cbe7cbbdfa7e85a56a377bc7a73e69224c1f0b7c9ae8365918e55752ae8648265903f506c1705f63c0de1d4bab1ec2830fef3e539a1a - languageName: node - linkType: hard - "getpass@npm:^0.1.1": version: 0.1.7 resolution: "getpass@npm:0.1.7" @@ -7698,7 +7237,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.0.0, glob@npm:^10.5.0": +"glob@npm:^10.0.0, glob@npm:^10.4.1, glob@npm:^10.5.0": version: 10.5.0 resolution: "glob@npm:10.5.0" dependencies: @@ -7714,23 +7253,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.4.1": - version: 10.4.5 - resolution: "glob@npm:10.4.5" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^3.1.2" - minimatch: "npm:^9.0.4" - minipass: "npm:^7.1.2" - package-json-from-dist: "npm:^1.0.0" - path-scurry: "npm:^1.11.1" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e - languageName: node - linkType: hard - -"glob@npm:^13.0.0, glob@npm:^13.0.3, glob@npm:^13.0.6": +"glob@npm:^13.0.3, glob@npm:^13.0.6": version: 13.0.6 resolution: "glob@npm:13.0.6" dependencies: @@ -7741,7 +7264,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6, glob@npm:^7.1.7": +"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: @@ -7796,13 +7319,6 @@ __metadata: languageName: node linkType: hard -"globals@npm:^11.1.0": - version: 11.12.0 - resolution: "globals@npm:11.12.0" - checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 - languageName: node - linkType: hard - "globals@npm:^13.19.0, globals@npm:^13.24.0": version: 13.24.0 resolution: "globals@npm:13.24.0" @@ -7834,11 +7350,11 @@ __metadata: linkType: hard "goober@npm:^2.1.16": - version: 2.1.18 - resolution: "goober@npm:2.1.18" + version: 2.1.19 + resolution: "goober@npm:2.1.19" peerDependencies: csstype: ^3.0.10 - checksum: 10c0/de9bf7b6f57417900afac81a479b85d8c0bcb0322ba8b174f9287d10e7891ba7e33db5fe2b0cdd75281c69130e76eb0c694345acf45ea57e4e4a2db8e4c4f021 + checksum: 10c0/f6a01f2e8abfef571ac539f96e650dcde964e7c0bef6c9055a8c8e110624ccd7b51ab90706a806ca570a56141ea689d355fb1cec3ee9209499c249638883990d languageName: node linkType: hard @@ -7882,13 +7398,6 @@ __metadata: languageName: node linkType: hard -"gud@npm:^1.0.0": - version: 1.0.0 - resolution: "gud@npm:1.0.0" - checksum: 10c0/a4db6edc18e2c4e3a22dc9e639e40a4e5650d53dae9cf384a96d5380dfa17ddda376cf6b7797a5c30d140d2532e5a69d167bdb70c2c151dd673253bac6b027f3 - languageName: node - linkType: hard - "har-schema@npm:^2.0.0": version: 2.0.0 resolution: "har-schema@npm:2.0.0" @@ -7978,12 +7487,12 @@ __metadata: languageName: node linkType: hard -"hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" +"hasown@npm:^2.0.2, hasown@npm:^2.0.3, hasown@npm:^2.0.4": + version: 2.0.4 + resolution: "hasown@npm:2.0.4" dependencies: function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + checksum: 10c0/2d8de939e270b70618f8cebb69746620db10617dbb495bc66ddad326955ea24d3ca4af133aff3eb7c1853e0218f867bc2b050ec26fe02e3aea58f880ffc5e506 languageName: node linkType: hard @@ -8059,26 +7568,13 @@ __metadata: languageName: node linkType: hard -"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1": +"http-cache-semantics@npm:^4.0.0": version: 4.2.0 resolution: "http-cache-semantics@npm:4.2.0" checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37 languageName: node linkType: hard -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: "npm:2.0.0" - inherits: "npm:2.0.4" - setprototypeof: "npm:1.2.0" - statuses: "npm:2.0.1" - toidentifier: "npm:1.0.1" - checksum: 10c0/fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 - languageName: node - linkType: hard - "http-errors@npm:^2.0.0, http-errors@npm:^2.0.1, http-errors@npm:~2.0.1": version: 2.0.1 resolution: "http-errors@npm:2.0.1" @@ -8092,7 +7588,7 @@ __metadata: languageName: node linkType: hard -"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.2": +"http-proxy-agent@npm:^7.0.2": version: 7.0.2 resolution: "http-proxy-agent@npm:7.0.2" dependencies: @@ -8123,7 +7619,7 @@ __metadata: languageName: node linkType: hard -"https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.6": +"https-proxy-agent@npm:^7.0.6": version: 7.0.6 resolution: "https-proxy-agent@npm:7.0.6" dependencies: @@ -8149,12 +7645,12 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.7.0, iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": - version: 0.7.2 - resolution: "iconv-lite@npm:0.7.2" +"iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": + version: 0.7.3 + resolution: "iconv-lite@npm:0.7.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722 + checksum: 10c0/be2fd2414f7e94be3a63063fa0ad5919c16bc7b6e00c77eea0765ced6db405739f38dd51016583058fba25cc1d0106ba30b83fbb7a7e32f824d4db76f23d8d33 languageName: node linkType: hard @@ -8173,9 +7669,9 @@ __metadata: linkType: hard "immer@npm:^11.0.0": - version: 11.1.4 - resolution: "immer@npm:11.1.4" - checksum: 10c0/77beca6b0a4e361b30414189d63c64beb7df40ac1d8cbf524308fcbabe755e9aa49db3c6e95a6e412911416fec621f2c8470be5ec79feedc6abd6e4f7f18a9ce + version: 11.1.15 + resolution: "immer@npm:11.1.15" + checksum: 10c0/5215eaec9641ad786ae8940a489514c26ce3726f8c49f0191a754902800f3ddd102b0653e894cabe7049d93e77b86d67d19953e778ffebba56848739a31b3b79 languageName: node linkType: hard @@ -8232,7 +7728,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": +"inherits@npm:2, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 @@ -8271,14 +7767,7 @@ __metadata: languageName: node linkType: hard -"ip-address@npm:10.1.0": - version: 10.1.0 - resolution: "ip-address@npm:10.1.0" - checksum: 10c0/0103516cfa93f6433b3bd7333fa876eb21263912329bfa47010af5e16934eeeff86f3d2ae700a3744a137839ddfad62b900c7a445607884a49b5d1e32a3d7566 - languageName: node - linkType: hard - -"ip-address@npm:^10.0.1": +"ip-address@npm:^10.2.0": version: 10.2.0 resolution: "ip-address@npm:10.2.0" checksum: 10c0/5a00aada6e922c9c69dfc800ed5d0fa3348675ebdeed0e1575f503f27ca385b5f534363c9af7ad1daf64c1f1409388cdd3cc2e9b9b0fe1c924a431378d55075a @@ -8375,12 +7864,12 @@ __metadata: languageName: node linkType: hard -"is-core-module@npm:^2.16.0": - version: 2.16.1 - resolution: "is-core-module@npm:2.16.1" +"is-core-module@npm:^2.16.1": + version: 2.16.2 + resolution: "is-core-module@npm:2.16.2" dependencies: - hasown: "npm:^2.0.2" - checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd + hasown: "npm:^2.0.3" + checksum: 10c0/14b4258390283709c15476d023ec173e27458d5d014ccdb8ed39d576e551c3fa45498b7c9fe178f1529c4cb2648ddd58852a6a62107a019f6e349529f277518a languageName: node linkType: hard @@ -8434,14 +7923,15 @@ __metadata: linkType: hard "is-generator-function@npm:^1.0.7": - version: 1.1.0 - resolution: "is-generator-function@npm:1.1.0" + version: 1.1.2 + resolution: "is-generator-function@npm:1.1.2" dependencies: - call-bound: "npm:^1.0.3" - get-proto: "npm:^1.0.0" + call-bound: "npm:^1.0.4" + generator-function: "npm:^2.0.0" + get-proto: "npm:^1.0.1" has-tostringtag: "npm:^1.0.2" safe-regex-test: "npm:^1.1.0" - checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a + checksum: 10c0/83da102e89c3e3b71d67b51d47c9f9bc862bceb58f87201727e27f7fa19d1d90b0ab223644ecaee6fc6e3d2d622bb25c966fbdaf87c59158b01ce7c0fe2fa372 languageName: node linkType: hard @@ -8569,13 +8059,20 @@ __metadata: languageName: node linkType: hard -"is-stream@npm:^2.0.0, is-stream@npm:^2.0.1": +"is-stream@npm:^2.0.0": version: 2.0.1 resolution: "is-stream@npm:2.0.1" checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 languageName: node linkType: hard +"is-stream@npm:^4.0.0": + version: 4.0.1 + resolution: "is-stream@npm:4.0.1" + checksum: 10c0/2706c7f19b851327ba374687bc4a3940805e14ca496dc672b9629e744d143b1ad9c6f1b162dece81c7bfbc0f83b32b61ccc19ad2e05aad2dd7af347408f60c7f + languageName: node + linkType: hard + "is-string@npm:^1.0.7, is-string@npm:^1.1.1": version: 1.1.1 resolution: "is-string@npm:1.1.1" @@ -8806,7 +8303,7 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3": +"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3, istanbul-reports@npm:^3.1.7": version: 3.2.0 resolution: "istanbul-reports@npm:3.2.0" dependencies: @@ -8816,16 +8313,6 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.1.7": - version: 3.1.7 - resolution: "istanbul-reports@npm:3.1.7" - dependencies: - html-escaper: "npm:^2.0.0" - istanbul-lib-report: "npm:^3.0.0" - checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 - languageName: node - linkType: hard - "jackspeak@npm:^3.1.2": version: 3.4.3 resolution: "jackspeak@npm:3.4.3" @@ -8839,58 +8326,58 @@ __metadata: languageName: node linkType: hard -"jest-changed-files@npm:30.3.0": - version: 30.3.0 - resolution: "jest-changed-files@npm:30.3.0" +"jest-changed-files@npm:30.4.1": + version: 30.4.1 + resolution: "jest-changed-files@npm:30.4.1" dependencies: execa: "npm:^5.1.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - checksum: 10c0/5a2f9790f8ab7f5804ebbf0fcdd908c40286d602d76abbecc6bea72e7f3c60b77dc8a3d3f5acdddd11653b2574f471a5c126ceda0734bc6a7d607cf145843525 + checksum: 10c0/324bbec3920a7d9ceb1d11872b9f1befe73d152a7ef289243f663bf3b22afe124c2c656ec316e44393f30a83b74a1738b56307a066906fa49b800686fd4d0f04 languageName: node linkType: hard -"jest-circus@npm:30.3.0, jest-circus@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-circus@npm:30.3.0" +"jest-circus@npm:30.4.2, jest-circus@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-circus@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" co: "npm:^4.6.0" dedent: "npm:^1.6.0" is-generator-fn: "npm:^2.1.0" - jest-each: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-each: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" pure-rand: "npm:^7.0.0" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/a3a0eb973699b400fb6de4207a7fbc5b33f51523e5e94f954d0e6e60418ea95099883614495fce54d805a321cb65e883592048b73203a59b8f4e53d1bb975a07 + checksum: 10c0/5d99f1336eb249057063a007fabad4ced802501fbaad7ddeea8db9553fa54fbd44d26e71e8bf61a0979d42b3b93a3d920e6f00afa26cdbb70d1e7d0969515d10 languageName: node linkType: hard -"jest-cli@npm:30.3.0": - version: 30.3.0 - resolution: "jest-cli@npm:30.3.0" +"jest-cli@npm:30.4.2": + version: 30.4.2 + resolution: "jest-cli@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" exit-x: "npm:^0.2.2" import-local: "npm:^3.2.0" - jest-config: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-config: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" yargs: "npm:^17.7.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -8899,35 +8386,35 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/764d77551e0fb6d666212e89d01be6f7bb1a2b3adb918bba7c5c37593a11b01cf2af645506c2b6438335cfc79bfcf41bfd4680958d8ca751851752a7c66269d3 + checksum: 10c0/a036a1bf06ce7d5fed644a518c4a4ccf60c5fe5f3d96d143973048e6690c4a28a4f97fa3275d90ca236430a1b2a7c10544e7e190a4f2edfdf0a4e6daf1f6a384 languageName: node linkType: hard -"jest-config@npm:30.3.0": - version: 30.3.0 - resolution: "jest-config@npm:30.3.0" +"jest-config@npm:30.4.2": + version: 30.4.2 + resolution: "jest-config@npm:30.4.2" dependencies: "@babel/core": "npm:^7.27.4" "@jest/get-type": "npm:30.1.0" - "@jest/pattern": "npm:30.0.1" - "@jest/test-sequencer": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - babel-jest: "npm:30.3.0" + "@jest/pattern": "npm:30.4.0" + "@jest/test-sequencer": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + babel-jest: "npm:30.4.1" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" deepmerge: "npm:^4.3.1" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-circus: "npm:30.3.0" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-circus: "npm:30.4.2" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-runner: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" parse-json: "npm:^5.2.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" strip-json-comments: "npm:^3.1.1" peerDependencies: @@ -8941,78 +8428,78 @@ __metadata: optional: true ts-node: optional: true - checksum: 10c0/157607e5ac5e83924df97d992fbd40a1540af07c5a7be296fae49455b3729687847304f3b4a9112e7da17593b76cec3453cd55c1ecd4334f7318f2489d7d10a1 + checksum: 10c0/18300b1dc54a4bfb5d1db6c10aeb01b6c64736224e3f60d119da9504d49cbab5a76d789f38c44af7d168418463356db6843ad7e44f249c63ce7f409758eba0c6 languageName: node linkType: hard -"jest-diff@npm:30.3.0": - version: 30.3.0 - resolution: "jest-diff@npm:30.3.0" +"jest-diff@npm:30.4.1": + version: 30.4.1 + resolution: "jest-diff@npm:30.4.1" dependencies: - "@jest/diff-sequences": "npm:30.3.0" + "@jest/diff-sequences": "npm:30.4.0" "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - pretty-format: "npm:30.3.0" - checksum: 10c0/573a2a1a155b95fbde547d8ee33a5375179a8d03d4586025478dac16d695e4614aef075c3afa57e0f3a96cea8f638fa68a55c1e625f6e86b4f5b9e5850311ffb + pretty-format: "npm:30.4.1" + checksum: 10c0/787e11f0ea27e94815479d6c5415e4173da1e74bede34c1515b8515fc9d1fe053e2ad25a3c31f9998a7292c186a0e4d395ed82e0e149d57d7708ee6759b442e9 languageName: node linkType: hard -"jest-docblock@npm:30.2.0": - version: 30.2.0 - resolution: "jest-docblock@npm:30.2.0" +"jest-docblock@npm:30.4.0": + version: 30.4.0 + resolution: "jest-docblock@npm:30.4.0" dependencies: detect-newline: "npm:^3.1.0" - checksum: 10c0/2578366604eef1b36d59ffe1fc52a710995571535d437f83d94ff94756a83f78e699c1ba004c38a34c01859d669fd6c64e865c23c5a7d5bf4837cfca4bef3dda + checksum: 10c0/1fe1c971207e1b905e4f23d98e508a03ae631337e9ffa347ff2f6df81a1d75ced7ed3e52a809fad75fb8a8cd55b6bda4483bc124e5e1d7529eeb4ef76b29e913 languageName: node linkType: hard -"jest-each@npm:30.3.0": - version: 30.3.0 - resolution: "jest-each@npm:30.3.0" +"jest-each@npm:30.4.1": + version: 30.4.1 + resolution: "jest-each@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/d23d2b43b3ea42beaf99648e2cf1c74b8a13c3e45c7c882979171471c225f7d666cb4a0d5f1ff9031b4504866fa3badc7266ffd885d3d8035420c559a31501e1 + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/41bc1cec23901cb0c7d8f547a70574fffca8cc16a1660ed97645bf3b61f4e6151aaa58bb14ce55a3cd9f5a63a2cc782a39366caf3304a2159d1e3cc5ae79a9e4 languageName: node linkType: hard -"jest-environment-node@npm:30.3.0, jest-environment-node@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-environment-node@npm:30.3.0" +"jest-environment-node@npm:30.4.1, jest-environment-node@npm:^30.0.4": + version: 30.4.1 + resolution: "jest-environment-node@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - checksum: 10c0/2a4be80861e569fa11456d89ff2aaedd71726ae02ade8f2cc6fbc86ba8749e24c37864676c4718fc08a40f6e6d2b2b51bc48d715b09b1e93e15e42e4a10f7b5b + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + checksum: 10c0/d8d6bb22bfd280f077b5856558d9d7112c48fd3bae6eda9b76694f1c8e1be783a725686a137437d180c9d49e6b37386c8e342e0b8e5bfcb6526dee9c10cc31ec languageName: node linkType: hard -"jest-haste-map@npm:30.3.0": - version: 30.3.0 - resolution: "jest-haste-map@npm:30.3.0" +"jest-haste-map@npm:30.4.1": + version: 30.4.1 + resolution: "jest-haste-map@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" anymatch: "npm:^3.1.3" fb-watchman: "npm:^2.0.2" fsevents: "npm:^2.3.3" graceful-fs: "npm:^4.2.11" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" picomatch: "npm:^4.0.3" walker: "npm:^1.0.8" dependenciesMeta: fsevents: optional: true - checksum: 10c0/b9ef350082b15d4c119d6188f781024d859d6cfb17ae25d15c90c3a373234e16109afbeffdcf1af4baf6a85eb0cbbab00439c981ad43037c0f05d89ff98bd1af + checksum: 10c0/1350c24952bbf31c86cb1ed4e2e5edd4766a93e2be8816c4648c05463d06cfae89f3c73732f9274fdb626fdfdfe6605ed6f259b6c21257df536a6379d4b9a5e7 languageName: node linkType: hard @@ -9048,53 +8535,54 @@ __metadata: languageName: node linkType: hard -"jest-leak-detector@npm:30.3.0": - version: 30.3.0 - resolution: "jest-leak-detector@npm:30.3.0" +"jest-leak-detector@npm:30.4.1": + version: 30.4.1 + resolution: "jest-leak-detector@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/a648c082b74e6c7d0c2e890002094ba97b108398fa3d0316958fc74321aa7b0824507a685d261a463856f219a724b86a6073bac86d351cf0675ecf962c1ee0ca + pretty-format: "npm:30.4.1" + checksum: 10c0/57256ac08f12186e3ed1687126b8d75a12de9c4ffa959ff41322e9ba5f93e3ed8af91dc36bc4d59f77cef6d4008bcf5a3e646cdd950743898576aec8dbae6778 languageName: node linkType: hard -"jest-matcher-utils@npm:30.3.0": - version: 30.3.0 - resolution: "jest-matcher-utils@npm:30.3.0" +"jest-matcher-utils@npm:30.4.1": + version: 30.4.1 + resolution: "jest-matcher-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - jest-diff: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/4c5f4b6435964110e64c4b5b42e3553fffe303ecdd68021147a7bcc72914aec3a899867c50db22b250c72aded53e3f7a9f64d83c9dca2e65ce27f36d23c6ca78 + jest-diff: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/ddbb0c7075def27ba30160883c327cb3fd13f561f5789d00a1edca1b48b0651f8ea23a1c51bcfcb6413a68c47d658bcf47a34701b8a39ce135dd28d87a3117af languageName: node linkType: hard -"jest-message-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-message-util@npm:30.3.0" +"jest-message-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-message-util@npm:30.4.1" dependencies: "@babel/code-frame": "npm:^7.27.1" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/stack-utils": "npm:^2.0.3" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" + jest-util: "npm:30.4.1" picomatch: "npm:^4.0.3" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/6ce611caef76394872b23a111286b48e56f42655d14a5fbd0629d9b7437ed892e85ad96b15864bc22185c24ef670afb6665c57b9729458a36d50ffe8310f0926 + checksum: 10c0/ae7427544e042bc1c14abf3c0dbe8b83d0dbec22a9a5efefaca5b8ccb6b9bf391abe732e6f2117ca995c6889bfe1be35c78cec75e5ea0a50e28cffe1ba6f9fdf languageName: node linkType: hard -"jest-mock@npm:30.3.0": - version: 30.3.0 - resolution: "jest-mock@npm:30.3.0" +"jest-mock@npm:30.4.1": + version: 30.4.1 + resolution: "jest-mock@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-util: "npm:30.3.0" - checksum: 10c0/9d95d550c6c998a85887c48ff5ee26de4bca18be91462ea8a8135d6023d591132465756f74981ca39b60f8708dfe38213a55bd4b619798a7b9438ca10d718099 + jest-util: "npm:30.4.1" + checksum: 10c0/5185a41255285c1634c5d85dda037afaaadfc12793b3293c9e253a30bb67449f8df968447f830abb9cf7a52e63694e6734680130e8085ce119056280890bf6fc languageName: node linkType: hard @@ -9128,96 +8616,96 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:30.0.1, jest-regex-util@npm:^30.0.0": - version: 30.0.1 - resolution: "jest-regex-util@npm:30.0.1" - checksum: 10c0/f30c70524ebde2d1012afe5ffa5691d5d00f7d5ba9e43d588f6460ac6fe96f9e620f2f9b36a02d0d3e7e77bc8efb8b3450ae3b80ac53c8be5099e01bf54f6728 +"jest-regex-util@npm:30.4.0, jest-regex-util@npm:^30.0.0": + version: 30.4.0 + resolution: "jest-regex-util@npm:30.4.0" + checksum: 10c0/fe7426f67b54d38bed8e9d6e6a099d63d72f41f5bf65b922d9d03fedcb55c614b45657207632f6ee22d0a59d8d11327891f258d23f68a58912fcdb0f7db48435 languageName: node linkType: hard -"jest-resolve-dependencies@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve-dependencies@npm:30.3.0" +"jest-resolve-dependencies@npm:30.4.2": + version: 30.4.2 + resolution: "jest-resolve-dependencies@npm:30.4.2" dependencies: - jest-regex-util: "npm:30.0.1" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/25dde0c8c050bc3437332f37ab87484f597596b80ece77a93e4da2b466b42e45cc5ad748270c1477587536de15eea1ffe83a32638e824b120830c3a87c9a5b71 + jest-regex-util: "npm:30.4.0" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/4101afabd2a4ef4e6c82bf82ea145286c1238373f7611938e8d47ddcf5aaa6e10af365436a934b7af194451e351774829cb021ac73f857b4873dcccc7aabb616 languageName: node linkType: hard -"jest-resolve@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve@npm:30.3.0" +"jest-resolve@npm:30.4.1": + version: 30.4.1 + resolution: "jest-resolve@npm:30.4.1" dependencies: chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" jest-pnp-resolver: "npm:^1.2.3" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" slash: "npm:^3.0.0" unrs-resolver: "npm:^1.7.11" - checksum: 10c0/540f59f160c232c1b922b111a93f24ef5202d75e00f2e994de976badf6e88879893b474320ff363a6b97259a7a208b6a4f5eeabede787eea9b7912a12ac64b1b + checksum: 10c0/0a99ef4f4fd7b3678d58a5e1cf8f0b5ec1997cdba21f5d66a8b26353d57a226f8e6a5fffc450c8836e90ab0e20d5e7935d0dea939d9a9b6a08781b9a7413184c languageName: node linkType: hard -"jest-runner@npm:30.3.0, jest-runner@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-runner@npm:30.3.0" +"jest-runner@npm:30.4.2, jest-runner@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-runner@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/environment": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/environment": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" exit-x: "npm:^0.2.2" graceful-fs: "npm:^4.2.11" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-leak-detector: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-resolve: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-haste-map: "npm:30.4.1" + jest-leak-detector: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-resolve: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + jest-worker: "npm:30.4.1" p-limit: "npm:^3.1.0" source-map-support: "npm:0.5.13" - checksum: 10c0/6fb205f48541658f0b23b6c9a6730f0133f07c994a22ef506ebfcded5bbb444b655ac828074157e6579e664609a46f6a5bf3d366b694c6c8b523b5207a70499c + checksum: 10c0/339e630fb1a7db52e208ed9f12f722122733fe9a450d9bd83c0fccc10fbc5142a8808f624c41ab1e25833af02f9c3eca85561554b75a5b3ad75b4a226f72c5cf languageName: node linkType: hard -"jest-runtime@npm:30.3.0": - version: 30.3.0 - resolution: "jest-runtime@npm:30.3.0" +"jest-runtime@npm:30.4.2": + version: 30.4.2 + resolution: "jest-runtime@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/globals": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/globals": "npm:30.4.1" "@jest/source-map": "npm:30.0.1" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" cjs-module-lexer: "npm:^2.1.0" collect-v8-coverage: "npm:^1.0.2" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" strip-bom: "npm:^4.0.0" - checksum: 10c0/79c486157a926d5be5c66356ad26cc3792cca1afb1490e255a550f52784b6c92eea42f1cb3b2c7565650ea777cf17ffc3f8e305d6b97888e7d273f6d7f282686 + checksum: 10c0/9fce55b0c78fbe47dc2c10a944e9513833fd43c14f292460ef5cdd91e375088bf35549336e66f69fc9d29bf4f410894e9a7eef0bf12a6f39d99174a5300c2c53 languageName: node linkType: hard @@ -9230,60 +8718,60 @@ __metadata: languageName: node linkType: hard -"jest-snapshot@npm:30.3.0": - version: 30.3.0 - resolution: "jest-snapshot@npm:30.3.0" +"jest-snapshot@npm:30.4.1": + version: 30.4.1 + resolution: "jest-snapshot@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" "@babel/generator": "npm:^7.27.5" "@babel/plugin-syntax-jsx": "npm:^7.27.1" "@babel/plugin-syntax-typescript": "npm:^7.27.1" "@babel/types": "npm:^7.27.3" - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - "@jest/snapshot-utils": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/snapshot-utils": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" babel-preset-current-node-syntax: "npm:^1.2.0" chalk: "npm:^4.1.2" - expect: "npm:30.3.0" + expect: "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-diff: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-diff: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" semver: "npm:^7.7.2" synckit: "npm:^0.11.8" - checksum: 10c0/c1dd295d9d4962f2504c965575212fc62a358a849c66ab96b2f6e608ebdf6a6029ca505bb0693664a54a534e581883665d404a59976a5b46b1a1f88b537e96c5 + checksum: 10c0/cebd70277b6f0d2606f22815480146cf1e37295ed69a1d16e260a99a2ab48db167857e2fb9a938923d22ac13203c83a5e31d7f066b58d87c6d42db58c914ff13 languageName: node linkType: hard -"jest-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-util@npm:30.3.0" +"jest-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-util@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" graceful-fs: "npm:^4.2.11" picomatch: "npm:^4.0.3" - checksum: 10c0/eea6f39e52a8cb2b1a28bb315a90dc6a8e450fffed73bb5ef4489d02d86f7d91be600d83f1dcba22956b8ac5fefa8f1b250e636c8402d3e8b50a5eec8b5963b2 + checksum: 10c0/3efe1f25e5a172d04c6af8612d82867ab603b7c1bd8cb89073ff834679b44eba178793cf3af162cf5e25be13aa736ebd23a7826683acc85bddc5873f305b1f6e languageName: node linkType: hard -"jest-validate@npm:30.3.0": - version: 30.3.0 - resolution: "jest-validate@npm:30.3.0" +"jest-validate@npm:30.4.1": + version: 30.4.1 + resolution: "jest-validate@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" camelcase: "npm:^6.3.0" chalk: "npm:^4.1.2" leven: "npm:^3.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/645629e9ae0926252dee26b0ad71b9f0392daa896328393479c63b1b13d2a70df4dac8b5053227c64e0120e930db1242897898c40706f135f20f73ef77fcf4f5 + pretty-format: "npm:30.4.1" + checksum: 10c0/23e6677ee6d06476f368c8b6d442b4207e5fbe062e74c1da3eae9ed30a18605f4e8a14809fa9cc7f22a2d8446e8de91a512f59c278720db2ad61c77dc25ffefc languageName: node linkType: hard @@ -9304,43 +8792,43 @@ __metadata: languageName: node linkType: hard -"jest-watcher@npm:30.3.0, jest-watcher@npm:^30.0.0": - version: 30.3.0 - resolution: "jest-watcher@npm:30.3.0" +"jest-watcher@npm:30.4.1, jest-watcher@npm:^30.0.0": + version: 30.4.1 + resolution: "jest-watcher@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" string-length: "npm:^4.0.2" - checksum: 10c0/2631be5cc122fbf14cb0bb7566cdea6d6c432b984d8ef3c6385254bb6c378342e0754cbd2dfe094d80762d44bd1c7015de2ec2100eb6f192906619d8b229e1a5 + checksum: 10c0/a56e1714b7b0f9c620c5cee95a84a48b780093594cd188e365a24768f208714895a0deb784ee48e4eec7f1828bc00435ab3c39208d490c33be3786937e997c97 languageName: node linkType: hard -"jest-worker@npm:30.3.0": - version: 30.3.0 - resolution: "jest-worker@npm:30.3.0" +"jest-worker@npm:30.4.1": + version: 30.4.1 + resolution: "jest-worker@npm:30.4.1" dependencies: "@types/node": "npm:*" "@ungap/structured-clone": "npm:^1.3.0" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.1.1" - checksum: 10c0/25dfb1bc43d389e1daf8baad0ef7964249f001a7da7d92c61e398840424ca13fb1fb6242f6e021f0cbb37952f90371fb8be1ef0183b5d04ef161fdb8f09ee78e + checksum: 10c0/3eb7ec7e928b82491e66ae6709e3a1eef3edad2bc351514a5d52037b997151989de6ce2912d6a5a3806ae3ae3bf6a1c36b1ad7bbc567d0790503fdb74576f140 languageName: node linkType: hard "jest@npm:^30.0.4": - version: 30.3.0 - resolution: "jest@npm:30.3.0" + version: 30.4.2 + resolution: "jest@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/types": "npm:30.4.1" import-local: "npm:^3.2.0" - jest-cli: "npm:30.3.0" + jest-cli: "npm:30.4.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -9348,26 +8836,26 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/1f940424b741d1541c3d71e311f77c3cfaf31cff9ab2d53180333f00a31f157790a8d3d413b72b8dd2bb191aa75769fa741d9bc9085df779cd59689559a65815 + checksum: 10c0/26a76eaabfc043abd8ee702b97f61ff968dde03412efdb4a69c22c99a5e4bf47788a3e45f75134aec1377a686a9d59d1e3bae85a816e409013475a80de1458ec languageName: node linkType: hard "joi@npm:^17.11.0": - version: 17.13.3 - resolution: "joi@npm:17.13.3" + version: 17.13.4 + resolution: "joi@npm:17.13.4" dependencies: "@hapi/hoek": "npm:^9.3.0" "@hapi/topo": "npm:^5.1.0" "@sideway/address": "npm:^4.1.5" "@sideway/formula": "npm:^3.0.1" "@sideway/pinpoint": "npm:^2.0.0" - checksum: 10c0/9262aef1da3f1bec5b03caf50c46368899fe03b8ff26cbe3d53af4584dd1049079fc97230bbf1500b6149db7cc765b9ee45f0deb24bb6fc3fa06229d7148c17f + checksum: 10c0/5addfef638e90eb6a45a72e3884128d8d9a80c487cb8bfcb949be179b875ad1095af347fa1bd05c4ebec2b2ccbc3f3db5f34501c8672ecd16100de2b77087122 languageName: node linkType: hard -"joi@npm:^18.1.2": - version: 18.1.2 - resolution: "joi@npm:18.1.2" +"joi@npm:^18.2.1": + version: 18.2.3 + resolution: "joi@npm:18.2.3" dependencies: "@hapi/address": "npm:^5.1.1" "@hapi/formula": "npm:^3.0.2" @@ -9376,14 +8864,21 @@ __metadata: "@hapi/tlds": "npm:^1.1.1" "@hapi/topo": "npm:^6.0.2" "@standard-schema/spec": "npm:^1.1.0" - checksum: 10c0/67d6fcbd81c017adf31ae6e0e6cd9d82ba25d6835d2981970ec0ea3198f2e8223aded756cdb8d5ed14fff3d6da2e2684a0767a770bcc544ce00fdcf9748e104a + checksum: 10c0/ccf2cba791968330208d05ab2e4459d1f9532a31fd5323795734184dfa628a9373bca4252fc0b636a36656c5b7be4a28e986715737a8a779b8103a28d9988cd2 languageName: node linkType: hard "jose@npm:^6.1.3": - version: 6.2.3 - resolution: "jose@npm:6.2.3" - checksum: 10c0/aa91bccba22cc84d86308f833749bcb0b00441e35c24e0ac79abeac5f76dc62d47bdef9c1da6a0c609f5da6478595f52b252085888b89dbdb163861e40ea4188 + version: 6.2.4 + resolution: "jose@npm:6.2.4" + checksum: 10c0/aaba866d71a8cd5bfd7c2c228367318df99f36318d7c6f1e7bca835c3bdd74ea3fe38783277f7bf7c9703ae24338bb3642a6ccdef6aa54c006d29a9711e6f782 + languageName: node + linkType: hard + +"js-tokens@npm:^10.0.0": + version: 10.0.0 + resolution: "js-tokens@npm:10.0.0" + checksum: 10c0/a93498747812ba3e0c8626f95f75ab29319f2a13613a0de9e610700405760931624433a0de59eb7c27ff8836e526768fb20783861b86ef89be96676f2c996b64 languageName: node linkType: hard @@ -9414,13 +8909,13 @@ __metadata: linkType: hard "js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" + version: 4.3.0 + resolution: "js-yaml@npm:4.3.0" dependencies: argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + checksum: 10c0/058b30473d6915ca5b4feb11e2f7d4d97242f98d00a798ed48dd90b46b7c640398afe9128c5db22c5300f8c6528fe2a174b9a93f351a70ebc28c6203938d8bff languageName: node linkType: hard @@ -9432,9 +8927,9 @@ __metadata: linkType: hard "jsdoc-type-pratt-parser@npm:^4.0.0": - version: 4.1.0 - resolution: "jsdoc-type-pratt-parser@npm:4.1.0" - checksum: 10c0/7700372d2e733a32f7ea0a1df9cec6752321a5345c11a91b2ab478a031a426e934f16d5c1f15c8566c7b2c10af9f27892a29c2c789039f595470e929a4aa60ea + version: 4.8.0 + resolution: "jsdoc-type-pratt-parser@npm:4.8.0" + checksum: 10c0/c2b77751d35e3931db9da96720b544b215830722b748b58ee8ce51ec72092006a4a03c5a59c86a4552d0094975c8d3bcc21a7241a0e47860e127d3fba5b55f33 languageName: node linkType: hard @@ -9588,7 +9083,7 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:6.2.1": +"jsonfile@npm:6.2.1, jsonfile@npm:^6.0.1": version: 6.2.1 resolution: "jsonfile@npm:6.2.1" dependencies: @@ -9613,19 +9108,6 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" - dependencies: - graceful-fs: "npm:^4.1.6" - universalify: "npm:^2.0.0" - dependenciesMeta: - graceful-fs: - optional: true - checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 - languageName: node - linkType: hard - "jsonify@npm:^0.0.1": version: 0.0.1 resolution: "jsonify@npm:0.0.1" @@ -9633,7 +9115,7 @@ __metadata: languageName: node linkType: hard -"jspdf@npm:^4.0.0": +"jspdf@npm:^4.2.1": version: 4.2.1 resolution: "jspdf@npm:4.2.1" dependencies: @@ -9754,99 +9236,99 @@ __metadata: languageName: node linkType: hard -"lightningcss-android-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-android-arm64@npm:1.32.0" +"lightningcss-android-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-android-arm64@npm:1.33.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-arm64@npm:1.32.0" +"lightningcss-darwin-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-arm64@npm:1.33.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-x64@npm:1.32.0" +"lightningcss-darwin-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-x64@npm:1.33.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lightningcss-freebsd-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-freebsd-x64@npm:1.32.0" +"lightningcss-freebsd-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-freebsd-x64@npm:1.33.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lightningcss-linux-arm-gnueabihf@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm-gnueabihf@npm:1.32.0" +"lightningcss-linux-arm-gnueabihf@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.33.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"lightningcss-linux-arm64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-gnu@npm:1.32.0" +"lightningcss-linux-arm64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-arm64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-musl@npm:1.32.0" +"lightningcss-linux-arm64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"lightningcss-linux-x64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-gnu@npm:1.32.0" +"lightningcss-linux-x64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-x64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-musl@npm:1.32.0" +"lightningcss-linux-x64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-musl@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"lightningcss-win32-arm64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-arm64-msvc@npm:1.32.0" +"lightningcss-win32-arm64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.33.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lightningcss-win32-x64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-x64-msvc@npm:1.32.0" +"lightningcss-win32-x64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.33.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "lightningcss@npm:^1.32.0": - version: 1.32.0 - resolution: "lightningcss@npm:1.32.0" + version: 1.33.0 + resolution: "lightningcss@npm:1.33.0" dependencies: detect-libc: "npm:^2.0.3" - lightningcss-android-arm64: "npm:1.32.0" - lightningcss-darwin-arm64: "npm:1.32.0" - lightningcss-darwin-x64: "npm:1.32.0" - lightningcss-freebsd-x64: "npm:1.32.0" - lightningcss-linux-arm-gnueabihf: "npm:1.32.0" - lightningcss-linux-arm64-gnu: "npm:1.32.0" - lightningcss-linux-arm64-musl: "npm:1.32.0" - lightningcss-linux-x64-gnu: "npm:1.32.0" - lightningcss-linux-x64-musl: "npm:1.32.0" - lightningcss-win32-arm64-msvc: "npm:1.32.0" - lightningcss-win32-x64-msvc: "npm:1.32.0" + lightningcss-android-arm64: "npm:1.33.0" + lightningcss-darwin-arm64: "npm:1.33.0" + lightningcss-darwin-x64: "npm:1.33.0" + lightningcss-freebsd-x64: "npm:1.33.0" + lightningcss-linux-arm-gnueabihf: "npm:1.33.0" + lightningcss-linux-arm64-gnu: "npm:1.33.0" + lightningcss-linux-arm64-musl: "npm:1.33.0" + lightningcss-linux-x64-gnu: "npm:1.33.0" + lightningcss-linux-x64-musl: "npm:1.33.0" + lightningcss-win32-arm64-msvc: "npm:1.33.0" + lightningcss-win32-x64-msvc: "npm:1.33.0" dependenciesMeta: lightningcss-android-arm64: optional: true @@ -9870,7 +9352,7 @@ __metadata: optional: true lightningcss-win32-x64-msvc: optional: true - checksum: 10c0/70945bd55097af46fc9fab7f5ed09cd5869d85940a2acab7ee06d0117004a1d68155708a2d462531cea2fc3c67aefc9333a7068c80b0b78dd404c16838809e03 + checksum: 10c0/ce1f8279fbae636dbf37fa6e7385d5f98ed881d72af3362f24afbd4685e19c1fcdfecf17e5dd77f2ebee3d0c23ade276230d85842d07292229a2cffba8ff20a3 languageName: node linkType: hard @@ -9881,7 +9363,7 @@ __metadata: languageName: node linkType: hard -"linkify-it@npm:^5.0.1": +"linkify-it@npm:^5.0.2": version: 5.0.2 resolution: "linkify-it@npm:5.0.2" dependencies: @@ -9986,7 +9468,7 @@ __metadata: languageName: node linkType: hard -"lodash@npm:^4, lodash@npm:^4.17.15, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": +"lodash@npm:^4, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": version: 4.18.1 resolution: "lodash@npm:4.18.1" checksum: 10c0/757228fc68805c59789e82185135cf85f05d0b2d3d54631d680ca79ec21944ec8314d4533639a14b8bcfbd97a517e78960933041a5af17ecb693ec6eecb99a27 @@ -10007,7 +9489,7 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: @@ -10018,14 +9500,7 @@ __metadata: languageName: node linkType: hard -"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2": - version: 3.1.3 - resolution: "loupe@npm:3.1.3" - checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541 - languageName: node - linkType: hard - -"loupe@npm:^3.1.4": +"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2, loupe@npm:^3.1.4": version: 3.2.1 resolution: "loupe@npm:3.2.1" checksum: 10c0/910c872cba291309664c2d094368d31a68907b6f5913e989d301b5c25f30e97d76d77f23ab3bf3b46d0f601ff0b6af8810c10c31b91d2c6b2f132809ca2cc705 @@ -10054,16 +9529,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.0.0": - version: 11.1.0 - resolution: "lru-cache@npm:11.1.0" - checksum: 10c0/85c312f7113f65fae6a62de7985348649937eb34fb3d212811acbf6704dc322a421788aca253b62838f1f07049a84cc513d88f494e373d3756514ad263670a64 - languageName: node - linkType: hard - -"lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": - version: 11.3.5 - resolution: "lru-cache@npm:11.3.5" - checksum: 10c0/5b54ef7b88afb4bd25b7a778f1b2b1cde32d9770913e530da34ab203cf0442413bcaa6e372800cbab9562557a4480e4d8bf32e3a368bb5a91b12218eca085c66 + version: 11.5.2 + resolution: "lru-cache@npm:11.5.2" + checksum: 10c0/ece1ad731f5b655e85d67047d04bfc13823dc77aa61c5454924a9869ba600a0104e39cc33d726021feef812bc347ca34a5608a5eb1972a5dd0870b7ecd42c3f2 languageName: node linkType: hard @@ -10101,7 +9569,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.0": +"magic-string@npm:^0.30.0, magic-string@npm:^0.30.17": version: 0.30.21 resolution: "magic-string@npm:0.30.21" dependencies: @@ -10110,15 +9578,6 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.17": - version: 0.30.17 - resolution: "magic-string@npm:0.30.17" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 - languageName: node - linkType: hard - "magicast@npm:^0.3.5": version: 0.3.5 resolution: "magicast@npm:0.3.5" @@ -10155,26 +9614,6 @@ __metadata: languageName: node linkType: hard -"make-fetch-happen@npm:^15.0.0": - version: 15.0.5 - resolution: "make-fetch-happen@npm:15.0.5" - dependencies: - "@gar/promise-retry": "npm:^1.0.0" - "@npmcli/agent": "npm:^4.0.0" - "@npmcli/redact": "npm:^4.0.0" - cacache: "npm:^20.0.1" - http-cache-semantics: "npm:^4.1.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^5.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^1.0.0" - proc-log: "npm:^6.0.0" - ssri: "npm:^13.0.0" - checksum: 10c0/527580eb5e5476e6ad07a4e3bd017d13e935f4be815674b442081ae5a721c13d3af5715006619e6be79a85723067e047f83a0c9e699f41d8cec43609a8de4f7b - languageName: node - linkType: hard - "makeerror@npm:1.0.12": version: 1.0.12 resolution: "makeerror@npm:1.0.12" @@ -10195,10 +9634,9 @@ __metadata: version: 0.0.0-use.local resolution: "mapguide-react-layout@workspace:." dependencies: - "@blueprintjs/core": "npm:^3.54.0" "@modelcontextprotocol/sdk": "npm:1.29.0" "@playwright/test": "npm:1.59.1" - "@reduxjs/toolkit": "npm:^2.11.2" + "@reduxjs/toolkit": "npm:^2.12.0" "@storybook/addon-actions": "npm:^8.6.18" "@storybook/addon-docs": "npm:^8.6.18" "@storybook/addon-knobs": "npm:^8.0.1" @@ -10226,29 +9664,29 @@ __metadata: "@vitest/coverage-v8": "npm:3.2.4" "@welldone-software/why-did-you-render": "npm:^7.0.1" barrelsby: "npm:2.8.1" - bestzip: "npm:2.2.3" - colorbrewer: "npm:^1.6.1" + bestzip: "npm:3.0.1" + colorbrewer: "npm:^1.7.0" concurrently: "npm:9.2.1" copyfiles: "npm:2.4.1" coveralls: "npm:3.1.1" cross-env: "npm:10.1.0" docsify-cli: "npm:4.4.4" - dompurify: "npm:^3.4.0" - geojson-vt: "npm:^4.0.2" + dompurify: "npm:^3.4.10" + geojson-vt: "npm:^4.0.3" jest-image-snapshot: "npm:6.5.2" jsdom: "npm:^26.1.0" jsonfile: "npm:6.2.1" - jspdf: "npm:^4.0.0" + jspdf: "npm:^4.2.1" lodash.debounce: "npm:^4.0.8" lodash.xor: "npm:^4.5.0" lodash.xorby: "npm:^4.7.0" ol: "npm:^10.9.0" papaparse: "npm:^5.5.3" patch-package: "npm:^8.0.0" - proj4: "npm:2.20.8" + proj4: "npm:2.20.9" raf: "npm:^3.4.1" react: "npm:^17.0.2" - react-colorful: "npm:^5.6.1" + react-colorful: "npm:^5.7.0" react-dom: "npm:^17.0.2" react-hot-toast: "npm:2.6.0" react-redux: "npm:^8.1.3" @@ -10268,33 +9706,25 @@ __metadata: typedoc-plugin-merge-modules: "npm:7.0.0" typescript: "npm:5.9.3" typescript-json-schema: "npm:^0.67.1" - vite: "npm:^8.0.14" + vite: "npm:^8.0.16" vitest: "npm:3.2.6" - wait-on: "npm:9.0.5" - peerDependencies: - "@blueprintjs/core": ^3.54.0 - "@blueprintjs/icons": ^3.33.0 - peerDependenciesMeta: - "@blueprintjs/core": - optional: true - "@blueprintjs/icons": - optional: true + wait-on: "npm:9.0.10" languageName: unknown linkType: soft "markdown-it@npm:^14.1.1": - version: 14.2.0 - resolution: "markdown-it@npm:14.2.0" + version: 14.3.0 + resolution: "markdown-it@npm:14.3.0" dependencies: argparse: "npm:^2.0.1" - entities: "npm:^4.4.0" - linkify-it: "npm:^5.0.1" + entities: "npm:^4.5.0" + linkify-it: "npm:^5.0.2" mdurl: "npm:^2.0.0" punycode.js: "npm:^2.3.1" uc.micro: "npm:^2.1.0" bin: markdown-it: bin/markdown-it.mjs - checksum: 10c0/1d3a50061d2fe4efbcf317aac853dbee6892ed6f5a217570eead723f2ef2dd1c9baaeef5a687cd283480c45c2d20724a73e84a9ed72843cf7b3b719067af40ef + checksum: 10c0/b2dea908968109d6e9088ac972254bca842157d85d2e6838d0eb263cd8106e7e6a72663b138366cc98f57441d9f3f2ebfb842bf7b2f9e1c13187ebe70e0af8f9 languageName: node linkType: hard @@ -10403,7 +9833,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.12, mime-types@npm:~2.1.19": +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35, mime-types@npm:~2.1.19": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -10453,7 +9883,7 @@ __metadata: languageName: node linkType: hard -"min-indent@npm:^1.0.0, min-indent@npm:^1.0.1": +"min-indent@npm:^1.0.0": version: 1.0.1 resolution: "min-indent@npm:1.0.1" checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c @@ -10479,29 +9909,20 @@ __metadata: linkType: hard "minimatch@npm:^3.0.3, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" + version: 3.1.5 + resolution: "minimatch@npm:3.1.5" dependencies: brace-expansion: "npm:^1.1.7" - checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 - languageName: node - linkType: hard - -"minimatch@npm:^5.1.0": - version: 5.1.6 - resolution: "minimatch@npm:5.1.6" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3 + checksum: 10c0/2ecbdc0d33f07bddb0315a8b5afbcb761307a8778b48f0b312418ccbced99f104a2d17d8aca7573433c70e8ccd1c56823a441897a45e384ea76ef401a26ace70 languageName: node linkType: hard "minimatch@npm:^9.0.4": - version: 9.0.5 - resolution: "minimatch@npm:9.0.5" + version: 9.0.9 + resolution: "minimatch@npm:9.0.9" dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + brace-expansion: "npm:^2.0.2" + checksum: 10c0/0b6a58530dbb00361745aa6c8cffaba4c90f551afe7c734830bd95fd88ebf469dd7355a027824ea1d09e37181cfeb0a797fb17df60c15ac174303ac110eb7e86 languageName: node linkType: hard @@ -10512,81 +9933,14 @@ __metadata: languageName: node linkType: hard -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e - languageName: node - linkType: hard - -"minipass-fetch@npm:^5.0.0": - version: 5.0.2 - resolution: "minipass-fetch@npm:5.0.2" - dependencies: - iconv-lite: "npm:^0.7.2" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^2.0.0" - minizlib: "npm:^3.0.1" - dependenciesMeta: - iconv-lite: - optional: true - checksum: 10c0/ce4ab9f21cfabaead2097d95dd33f485af8072fbc6b19611bce694965393453a1639d641c2bcf1c48f2ea7d41ea7fab8278373f1d0bee4e63b0a5b2cdd0ef649 - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.7 - resolution: "minipass-flush@npm:1.0.7" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/960915c02aa0991662c37c404517dd93708d17f96533b2ca8c1e776d158715d8107c5ced425ffc61674c167d93607f07f48a83c139ce1057f8781e5dfb4b90c2 - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 - languageName: node - linkType: hard - -"minipass-sized@npm:^2.0.0": - version: 2.0.0 - resolution: "minipass-sized@npm:2.0.0" - dependencies: - minipass: "npm:^7.1.2" - checksum: 10c0/f9201696a6f6d68610d04c9c83e3d2e5cb9c026aae1c8cbf7e17f386105cb79c1bb088dbc21bf0b1eb4f3fb5df384fd1e7aa3bf1f33868c416ae8c8a92679db8 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.1.2": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 - languageName: node - linkType: hard - -"minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.3": +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": version: 7.1.3 resolution: "minipass@npm:7.1.3" checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb languageName: node linkType: hard -"minizlib@npm:^3.0.1, minizlib@npm:^3.1.0": +"minizlib@npm:^3.1.0": version: 3.1.0 resolution: "minizlib@npm:3.1.0" dependencies: @@ -10629,25 +9983,16 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.11": - version: 3.3.11 - resolution: "nanoid@npm:3.3.11" +"nanoid@npm:^3.3.16": + version: 3.3.16 + resolution: "nanoid@npm:3.3.16" bin: nanoid: bin/nanoid.cjs - checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b + checksum: 10c0/bbf2dcffe22d2b62d16de2711752070b539c0f644c7916f823ad6521986b2078cbe524f2d6240f58c46e9141ea0c7b87a029e100c0f7f175228cacaf30e41bba languageName: node linkType: hard -"nanoid@npm:^3.3.12": - version: 3.3.12 - resolution: "nanoid@npm:3.3.12" - bin: - nanoid: bin/nanoid.cjs - checksum: 10c0/ba142b7b39e11e80c16dd74b0365d407880c87c1cf7e1480956981ae940ee36060fa5b6f092cd1e315184dd19244c657bd017d03327bd3c62247d691c5e8edfb - languageName: node - linkType: hard - -"napi-postinstall@npm:^0.3.0": +"napi-postinstall@npm:^0.3.4": version: 0.3.4 resolution: "napi-postinstall@npm:0.3.4" bin: @@ -10692,22 +10037,22 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 12.2.0 - resolution: "node-gyp@npm:12.2.0" + version: 13.0.1 + resolution: "node-gyp@npm:13.0.1" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^15.0.0" - nopt: "npm:^9.0.0" - proc-log: "npm:^6.0.0" + nopt: "npm:^10.0.0" + proc-log: "npm:^7.0.0" semver: "npm:^7.3.5" tar: "npm:^7.5.4" tinyglobby: "npm:^0.2.12" - which: "npm:^6.0.0" + undici: "npm:^8.4.1" + which: "npm:^7.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/3ed046746a5a7d90950cd8b0547332b06598443f31fe213ef4332a7174c7b7d259e1704835feda79b87d3f02e59d7791842aac60642ede4396ab25fdf0f8f759 + checksum: 10c0/424077bc9e9bbe953a8e86db473ba818cbc6a121714008c977fd589e21e5f0c811fbf22faac730dc7182450b5e52df301811d01ae3373898658d999b7710f4e6 languageName: node linkType: hard @@ -10727,10 +10072,10 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.19": - version: 2.0.19 - resolution: "node-releases@npm:2.0.19" - checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa +"node-releases@npm:^2.0.51": + version: 2.0.51 + resolution: "node-releases@npm:2.0.51" + checksum: 10c0/6cf3fe1f9eabe02ce6de67e9db77b73edc9f5625003791e1f8f239f8e2a851450a5aeb1eff2cc43cfb26312e19b26bfe07626bf428479e6a76f56553fc6148da languageName: node linkType: hard @@ -10744,14 +10089,14 @@ __metadata: languageName: node linkType: hard -"nopt@npm:^9.0.0": - version: 9.0.0 - resolution: "nopt@npm:9.0.0" +"nopt@npm:^10.0.0": + version: 10.0.1 + resolution: "nopt@npm:10.0.1" dependencies: - abbrev: "npm:^4.0.0" + abbrev: "npm:^5.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/1822eb6f9b020ef6f7a7516d7b64a8036e09666ea55ac40416c36e4b2b343122c3cff0e2f085675f53de1d2db99a2a89a60ccea1d120bcd6a5347bf6ceb4a7fd + checksum: 10c0/980d89257f9587f3e1f77877ddbf905d6aa3b738ec33e49a4fa1a059a0dd82eb28063982b150654a7ae9de386f2ead60e56172db7d37cf56de545f7392a2a26a languageName: node linkType: hard @@ -10781,13 +10126,6 @@ __metadata: languageName: node linkType: hard -"normalize.css@npm:^8.0.1": - version: 8.0.1 - resolution: "normalize.css@npm:8.0.1" - checksum: 10c0/4ddf56d1af5ca755fa5e692e718316d8758ecb792aa96e1ad206824b5810a043763d681d6f7697d46573515f5e9690038b4c91a95c1997567128815545fb8cd7 - languageName: node - linkType: hard - "npm-run-path@npm:^4.0.1": version: 4.0.1 resolution: "npm-run-path@npm:4.0.1" @@ -10807,9 +10145,9 @@ __metadata: linkType: hard "nwsapi@npm:^2.2.16": - version: 2.2.20 - resolution: "nwsapi@npm:2.2.20" - checksum: 10c0/07f4dafa3186aef7c007863e90acd4342a34ba9d44b22f14f644fdb311f6086887e21c2fc15efaa826c2bc39ab2bc841364a1a630e7c87e0cb723ba59d729297 + version: 2.2.24 + resolution: "nwsapi@npm:2.2.24" + checksum: 10c0/9bc04ee9c7698f1b5506778d36f7382962f71667205d441d6a50f6180ee92328e770b76be78b907817ee103241b29984d3a17ae387e4723aebe0aeaed7a7c3a1 languageName: node linkType: hard @@ -10864,7 +10202,7 @@ __metadata: languageName: node linkType: hard -"object-inspect@npm:^1.13.3": +"object-inspect@npm:^1.13.3, object-inspect@npm:^1.13.4": version: 1.13.4 resolution: "object-inspect@npm:1.13.4" checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692 @@ -10916,7 +10254,7 @@ __metadata: languageName: node linkType: hard -"on-finished@npm:2.4.1, on-finished@npm:^2.4.1": +"on-finished@npm:^2.4.1, on-finished@npm:~2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" dependencies: @@ -11033,13 +10371,6 @@ __metadata: languageName: node linkType: hard -"os-tmpdir@npm:~1.0.2": - version: 1.0.2 - resolution: "os-tmpdir@npm:1.0.2" - checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 - languageName: node - linkType: hard - "p-cancelable@npm:^1.0.0": version: 1.1.0 resolution: "p-cancelable@npm:1.1.0" @@ -11126,13 +10457,6 @@ __metadata: languageName: node linkType: hard -"p-map@npm:^7.0.2": - version: 7.0.4 - resolution: "p-map@npm:7.0.4" - checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd - languageName: node - linkType: hard - "p-timeout@npm:^3.1.0": version: 3.2.0 resolution: "p-timeout@npm:3.2.0" @@ -11188,16 +10512,16 @@ __metadata: linkType: hard "pako@npm:^2.0.4, pako@npm:^2.1.0": - version: 2.1.0 - resolution: "pako@npm:2.1.0" - checksum: 10c0/8e8646581410654b50eb22a5dfd71159cae98145bd5086c9a7a816ec0370b5f72b4648d08674624b3870a521e6a3daffd6c2f7bc00fdefc7063c9d8232ff5116 + version: 2.2.0 + resolution: "pako@npm:2.2.0" + checksum: 10c0/e5d31de1940fdd13cc4014296b0026112483d0834bce4856ca29c8af8438d030c6416986a0f6df7d5372cae18d6dd6c57f48b24a49d6c207c0a4cc66af15c07d languageName: node linkType: hard "papaparse@npm:^5.5.3": - version: 5.5.3 - resolution: "papaparse@npm:5.5.3" - checksum: 10c0/623aae6a35703308fd5a39d616fb3837231ebc70697346355ea508154d3f24df75b6554b736afc1924192205518a5db14e75f5e1cf35d154326050a37cdd9447 + version: 5.5.4 + resolution: "papaparse@npm:5.5.4" + checksum: 10c0/8942ae45dcc171b720fd67953f825a544fdeeeadb85cf28a239d016fd6cff0c59650e667b3158a9a0153c6e1d7674c199603bcf360d854ce7edce822eb7f7bb6 languageName: node linkType: hard @@ -11270,27 +10594,26 @@ __metadata: linkType: hard "patch-package@npm:^8.0.0": - version: 8.0.0 - resolution: "patch-package@npm:8.0.0" + version: 8.0.1 + resolution: "patch-package@npm:8.0.1" dependencies: "@yarnpkg/lockfile": "npm:^1.1.0" chalk: "npm:^4.1.2" ci-info: "npm:^3.7.0" cross-spawn: "npm:^7.0.3" find-yarn-workspace-root: "npm:^2.0.0" - fs-extra: "npm:^9.0.0" + fs-extra: "npm:^10.0.0" json-stable-stringify: "npm:^1.0.2" klaw-sync: "npm:^6.0.0" minimist: "npm:^1.2.6" open: "npm:^7.4.2" - rimraf: "npm:^2.6.3" semver: "npm:^7.5.3" slash: "npm:^2.0.0" - tmp: "npm:^0.0.33" + tmp: "npm:^0.2.4" yaml: "npm:^2.2.2" bin: patch-package: index.js - checksum: 10c0/690eab0537e953a3fd7d32bb23f0e82f97cd448f8244c3227ed55933611a126f9476397325c06ad2c11d881a19b427a02bd1881bee78d89f1731373fc4fe0fee + checksum: 10c0/6dd7cdd8b814902f1a66bc9082bd5a5a484956563538a694ff1de2e7f4cc14a13480739f5f04e0d1747395d6f1b651eb1ddbc39687ce5ff8a3927f212cffd2ac languageName: node linkType: hard @@ -11378,9 +10701,9 @@ __metadata: linkType: hard "pathval@npm:^2.0.0": - version: 2.0.0 - resolution: "pathval@npm:2.0.0" - checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5 + version: 2.0.1 + resolution: "pathval@npm:2.0.1" + checksum: 10c0/460f4709479fbf2c45903a65655fc8f0a5f6d808f989173aeef5fdea4ff4f303dc13f7870303999add60ec49d4c14733895c0a869392e9866f1091fa64fd7581 languageName: node linkType: hard @@ -11416,10 +10739,10 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4": - version: 4.0.4 - resolution: "picomatch@npm:4.0.4" - checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0 +"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4, picomatch@npm:^4.0.5": + version: 4.0.5 + resolution: "picomatch@npm:4.0.5" + checksum: 10c0/947bc6b6e1ff1e6c5aaf95b107a0839d12802f4f7b867663f67d47accba939ca1cb582cf99dfc30438efa1c4648ac5990967e783e8929c36b03e8440704ef1bd languageName: node linkType: hard @@ -11474,16 +10797,25 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.59.1, playwright-core@npm:>=1.2.0": +"playwright-core@npm:1.59.1": version: 1.59.1 resolution: "playwright-core@npm:1.59.1" bin: playwright-core: cli.js - checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + languageName: node + linkType: hard + +"playwright-core@npm:1.61.1, playwright-core@npm:>=1.2.0": + version: 1.61.1 + resolution: "playwright-core@npm:1.61.1" + bin: + playwright-core: cli.js + checksum: 10c0/c28896ba82a602182e240ed4f9c467fb0dd9cb57d510f8aba9f25183fe1cde3a0105725a29baffa4157fe885bbb11e228032a2aad0424111584fde45303f07bd languageName: node linkType: hard -"playwright@npm:1.59.1, playwright@npm:^1.14.0": +"playwright@npm:1.59.1": version: 1.59.1 resolution: "playwright@npm:1.59.1" dependencies: @@ -11498,6 +10830,21 @@ __metadata: languageName: node linkType: hard +"playwright@npm:^1.14.0": + version: 1.61.1 + resolution: "playwright@npm:1.61.1" + dependencies: + fsevents: "npm:2.3.2" + playwright-core: "npm:1.61.1" + dependenciesMeta: + fsevents: + optional: true + bin: + playwright: cli.js + checksum: 10c0/cea1bc4d2a64ec3ef683891606774029da7b8a8036ed98332565cec2f8e89549ca1fab9a89fbfba4e08e27e0d7e7d148031e965af66d5ff97bb3c34058cfcad0 + languageName: node + linkType: hard + "pluralize@npm:^8.0.0": version: 8.0.0 resolution: "pluralize@npm:8.0.0" @@ -11528,13 +10875,6 @@ __metadata: languageName: node linkType: hard -"popper.js@npm:^1.14.4, popper.js@npm:^1.16.1": - version: 1.16.1 - resolution: "popper.js@npm:1.16.1" - checksum: 10c0/1c1a826f757edb5b8c2049dfd7a9febf6ae1e9d0e51342fc715b49a0c1020fced250d26484619883651e097c5764bbcacd2f31496e3646027f079dd83e072681 - languageName: node - linkType: hard - "possible-typed-array-names@npm:^1.0.0": version: 1.1.0 resolution: "possible-typed-array-names@npm:1.1.0" @@ -11542,25 +10882,14 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.5.15": - version: 8.5.15 - resolution: "postcss@npm:8.5.15" +"postcss@npm:^8.5.17, postcss@npm:^8.5.6": + version: 8.5.22 + resolution: "postcss@npm:8.5.22" dependencies: - nanoid: "npm:^3.3.12" + nanoid: "npm:^3.3.16" picocolors: "npm:^1.1.1" source-map-js: "npm:^1.2.1" - checksum: 10c0/7f2e63ae22fbe43aace1bf652bd99da4e90737c64194d49e51ddc9cd0f9e51ff2861a7d734379b494deffa03a880a5c65eec70bc29ee9ebaa7136dde3eee8f31 - languageName: node - linkType: hard - -"postcss@npm:^8.5.6": - version: 8.5.12 - resolution: "postcss@npm:8.5.12" - dependencies: - nanoid: "npm:^3.3.11" - picocolors: "npm:^1.1.1" - source-map-js: "npm:^1.2.1" - checksum: 10c0/5baebaf574c567bc1b3d61197f38af4ce5920b8f611c887fb6bc3dcc14af00253c169dbf19897bc889cce0b0d9818ab5eb4ea0caedf02b0bab10da8a43ce8c12 + checksum: 10c0/9e143ee457988049d5f187116fd37f2750ae9d8d71cc99eae690b776e549e134b34086cbaa2f0360ecd1729b15d918227bd0fc3a2ffbe341f7212d0827080793 languageName: node linkType: hard @@ -11585,32 +10914,33 @@ __metadata: languageName: node linkType: hard -"prettier-linter-helpers@npm:^1.0.0": - version: 1.0.0 - resolution: "prettier-linter-helpers@npm:1.0.0" +"prettier-linter-helpers@npm:^1.0.1": + version: 1.0.1 + resolution: "prettier-linter-helpers@npm:1.0.1" dependencies: fast-diff: "npm:^1.1.2" - checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab + checksum: 10c0/91cea965681bc5f62c9d26bd3ca6358b81557261d4802e96ec1cf0acbd99d4b61632d53320cd2c3ec7d7f7805a81345644108a41ef46ddc9688e783a9ac792d1 languageName: node linkType: hard "prettier@npm:^3.0.3": - version: 3.5.3 - resolution: "prettier@npm:3.5.3" + version: 3.9.6 + resolution: "prettier@npm:3.9.6" bin: prettier: bin/prettier.cjs - checksum: 10c0/3880cb90b9dc0635819ab52ff571518c35bd7f15a6e80a2054c05dbc8a3aa6e74f135519e91197de63705bcb38388ded7e7230e2178432a1468005406238b877 + checksum: 10c0/9f7ddae234035868f3daab3dc34e6de7e54622185afb017378029f0c09a9c023248ccf6f34def0b17a0538e18c47aa1b3188bab72965d1bf735919baa0747e99 languageName: node linkType: hard -"pretty-format@npm:30.3.0": - version: 30.3.0 - resolution: "pretty-format@npm:30.3.0" +"pretty-format@npm:30.4.1": + version: 30.4.1 + resolution: "pretty-format@npm:30.4.1" dependencies: - "@jest/schemas": "npm:30.0.5" + "@jest/schemas": "npm:30.4.1" ansi-styles: "npm:^5.2.0" - react-is: "npm:^18.3.1" - checksum: 10c0/719b27d70cd8b01013485054c5d094e1fe85e093b09ee73553e3b19302da3cf54fbd6a7ea9577d6471aeff8d372200e56979ffc4c831e2133520bd18060895fb + react-is-18: "npm:react-is@^18.3.1" + react-is-19: "npm:react-is@^19.2.5" + checksum: 10c0/c7e6633740cd2f6d382f188c00c8b4b3f2bee3cda16db6753471c6bb4b94f76531358d3a7793062a0fb00d72ebfb934e8ae1d4f5ced6bb34c8e7f60996f90076 languageName: node linkType: hard @@ -11632,10 +10962,10 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^6.0.0": - version: 6.1.0 - resolution: "proc-log@npm:6.1.0" - checksum: 10c0/4f178d4062733ead9d71a9b1ab24ebcecdfe2250916a5b1555f04fe2eda972a0ec76fbaa8df1ad9c02707add6749219d118a4fc46dc56bdfe4dde4b47d80bb82 +"proc-log@npm:^7.0.0": + version: 7.0.0 + resolution: "proc-log@npm:7.0.0" + checksum: 10c0/b89c2d862604f35fec795477b0c7e376feab3ba0d4f4d291c4e959567442697cf451ac557d0623c1cc38af45a78128b983410f397a10c5d3a67f76c33de4754b languageName: node linkType: hard @@ -11662,13 +10992,18 @@ __metadata: languageName: node linkType: hard -"proj4@npm:2.20.8": - version: 2.20.8 - resolution: "proj4@npm:2.20.8" +"proj4@npm:2.20.9": + version: 2.20.9 + resolution: "proj4@npm:2.20.9" dependencies: mgrs: "npm:1.0.0" wkt-parser: "npm:^1.5.5" - checksum: 10c0/a4488c5229d25260697ca925d06fc251e772d033e7d081f97ab8b01a37854378d4a48903c667c39aa9305febff59ad09dddc019be8866977cdd2767d3a774239 + peerDependencies: + geotiff: "*" + peerDependenciesMeta: + geotiff: + optional: true + checksum: 10c0/9917dc75627a3198b0226741a04e29ecd084f3613ba4a9359815fddab4f579d3135cf68d3ba914659470c45a5ca9c3d52b6f68a43365d6b9484d8603761ecdf9 languageName: node linkType: hard @@ -11682,7 +11017,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": +"prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -11727,12 +11062,12 @@ __metadata: linkType: hard "pump@npm:^3.0.0": - version: 3.0.2 - resolution: "pump@npm:3.0.2" + version: 3.0.4 + resolution: "pump@npm:3.0.4" dependencies: end-of-stream: "npm:^1.1.0" once: "npm:^1.3.1" - checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f + checksum: 10c0/2780e66b5471c19e3e3e1063b84f3f6a3a08367f24c5ed552f98cd5901e6ada27c7ad6495d4244f553fd03b01884a4561933064f053f47c8994d84fd352768ea languageName: node linkType: hard @@ -11766,28 +11101,20 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.11.1": - version: 6.15.0 - resolution: "qs@npm:6.15.0" - dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/ff341078a78a991d8a48b4524d52949211447b4b1ad907f489cac0770cbc346a28e47304455c0320e5fb000f8762d64b03331e3b71865f663bf351bcba8cdb4b - languageName: node - linkType: hard - -"qs@npm:^6.14.0, qs@npm:^6.14.1": - version: 6.15.1 - resolution: "qs@npm:6.15.1" +"qs@npm:^6.11.1, qs@npm:^6.14.0, qs@npm:^6.15.2": + version: 6.15.3 + resolution: "qs@npm:6.15.3" dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/19ee504f0ebff72598503e38cd6d9bd7b52a8ab62ae18b1e6bee3d4db58469bd65871ef1893a881bafb0f80ef2f9ab586e1f255cf25cc8d816c0f5a704721d97 + es-define-property: "npm:^1.0.1" + side-channel: "npm:^1.1.1" + checksum: 10c0/8f3f6e45ece255347d57696628401cde29e9ec649fff698b53bd3150dea7cefdf33036e1bc1826b9f110bfa7cb0ec4ab9f5297eca628ce216c55af82c304e08e languageName: node linkType: hard "qs@npm:~6.5.2": - version: 6.5.3 - resolution: "qs@npm:6.5.3" - checksum: 10c0/6631d4f2fa9d315e480662646745a4aa3a708817fbffe2cbdacec8ab9be130f92740c66191770fe9b704bc5fa9c1cc1f6596f55ad132fef7bd3ad1582f199eb0 + version: 6.5.5 + resolution: "qs@npm:6.5.5" + checksum: 10c0/6a5728b92378776d194c19d2bcf8e8847fa96ecfa6eb64f64e7ac73a394043cacaf257be014fa1a86201077a1e0c5ef5760ee0e0d6b6a4fe9f5ae8afcf5b9254 languageName: node linkType: hard @@ -11828,14 +11155,21 @@ __metadata: languageName: node linkType: hard -"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": +"range-parser@npm:^1.2.1": + version: 1.3.0 + resolution: "range-parser@npm:1.3.0" + checksum: 10c0/295494bb6685f9ab50f41a5f4fa5ce445aeeb9673b491bf178460fcc3a812dcf0d164cf1c83074f13a71a87d91ead5e097afd53e0630bc49a5101ed60f2a7529 + languageName: node + linkType: hard + +"range-parser@npm:~1.2.1": version: 1.2.1 resolution: "range-parser@npm:1.2.1" checksum: 10c0/96c032ac2475c8027b7a4e9fe22dc0dfe0f6d90b85e496e0f016fbdb99d6d066de0112e680805075bd989905e2123b3b3d002765149294dce0c1f7f01fcc2ea0 languageName: node linkType: hard -"raw-body@npm:^3.0.0, raw-body@npm:^3.0.1": +"raw-body@npm:^3.0.0, raw-body@npm:^3.0.2": version: 3.0.2 resolution: "raw-body@npm:3.0.2" dependencies: @@ -11870,7 +11204,7 @@ __metadata: languageName: node linkType: hard -"re-resizable@npm:6.11.2": +"re-resizable@npm:^6.11.2": version: 6.11.2 resolution: "re-resizable@npm:6.11.2" peerDependencies: @@ -11880,22 +11214,22 @@ __metadata: languageName: node linkType: hard -"react-colorful@npm:^5.6.1": - version: 5.6.1 - resolution: "react-colorful@npm:5.6.1" +"react-colorful@npm:^5.6.1, react-colorful@npm:^5.7.0": + version: 5.8.0 + resolution: "react-colorful@npm:5.8.0" peerDependencies: react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/48eb73cf71e10841c2a61b6b06ab81da9fffa9876134c239bfdebcf348ce2a47e56b146338e35dfb03512c85966bfc9a53844fc56bc50154e71f8daee59ff6f0 + checksum: 10c0/852ee03ad7751d748e2232ad3bd089de6620de6a06582ee26177377802104b259bf5630d205e875dba4406d601d0e00ddd0912bb0d763da2a053b51c7c57b3a4 languageName: node linkType: hard "react-docgen-typescript@npm:^2.2.2": - version: 2.2.2 - resolution: "react-docgen-typescript@npm:2.2.2" + version: 2.4.0 + resolution: "react-docgen-typescript@npm:2.4.0" peerDependencies: typescript: ">= 4.3.x" - checksum: 10c0/d31a061a21b5d4b67d4af7bc742541fd9e16254bd32861cd29c52565bc2175f40421a3550d52b6a6b0d0478e7cc408558eb0060a0bdd2957b02cfceeb0ee1e88 + checksum: 10c0/18e3e1c80d28abcdd72e62261d2f70b0904d9b088f9c2ebe485ffee5e46f5735208bc174a20ed2772112b3ca6432b5f3d5f0ac345872fe76e541f84543e49e50 languageName: node linkType: hard @@ -11918,13 +11252,13 @@ __metadata: linkType: hard "react-dom@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react-dom@npm:19.2.5" + version: 19.2.8 + resolution: "react-dom@npm:19.2.8" dependencies: scheduler: "npm:^0.27.0" peerDependencies: - react: ^19.2.5 - checksum: 10c0/8067606e9f58e4c2e8cb5f09570217dbc71c4843ebcaa20ae2085912d3e3a351f17d8f7c1713313cdda7f272840c8c34ff6c860fcb840862071bceea218e0c63 + react: ^19.2.8 + checksum: 10c0/41ba2247b76f687fcfe5bbc99f514d6b851d8c8041c2f5ded36ed05bd7fdc5208cacbac9de51e3e6633e77f96f44cec9f0d4a5a55184dba4e00738f224439134 languageName: node linkType: hard @@ -11941,16 +11275,16 @@ __metadata: languageName: node linkType: hard -"react-draggable@npm:4.4.6": - version: 4.4.6 - resolution: "react-draggable@npm:4.4.6" +"react-draggable@npm:^4.5.0": + version: 4.7.0 + resolution: "react-draggable@npm:4.7.0" dependencies: - clsx: "npm:^1.1.1" + clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" peerDependencies: react: ">= 16.3.0" react-dom: ">= 16.3.0" - checksum: 10c0/1e8cf47414a8554caa68447e5f27749bc40e1eabb4806e2dadcb39ab081d263f517d6aaec5231677e6b425603037c7e3386d1549898f9ffcc98a86cabafb2b9a + checksum: 10c0/4bfd46025b6009585a644d17721cafcd7976c058c250086c06c1a952724230c83caa548c54f9b5849c3a148144e3ed6610a1745b2afc6db685c85c56a0b4f775 languageName: node linkType: hard @@ -11967,13 +11301,20 @@ __metadata: languageName: node linkType: hard -"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0, react-is@npm:^18.3.1": +"react-is-18@npm:react-is@^18.3.1, react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 languageName: node linkType: hard +"react-is-19@npm:react-is@^19.2.5": + version: 19.2.8 + resolution: "react-is@npm:19.2.8" + checksum: 10c0/ed5322c84efe035c8fc814b1614ff5ca7fb8c2872a7c045197daf99f9b1bd68f32a2c79ffcbcfcff2fc5d93924ff9f9447400898f5b1534e6302bb0736a257f0 + languageName: node + linkType: hard + "react-is@npm:^16.13.1, react-is@npm:^16.7.0": version: 16.13.1 resolution: "react-is@npm:16.13.1" @@ -11995,23 +11336,6 @@ __metadata: languageName: node linkType: hard -"react-popper@npm:^1.3.7": - version: 1.3.11 - resolution: "react-popper@npm:1.3.11" - dependencies: - "@babel/runtime": "npm:^7.1.2" - "@hypnosphi/create-react-context": "npm:^0.3.1" - deep-equal: "npm:^1.1.1" - popper.js: "npm:^1.14.4" - prop-types: "npm:^15.6.1" - typed-styles: "npm:^0.0.7" - warning: "npm:^4.0.2" - peerDependencies: - react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/d5dd1d0d4b5a3407134681b42a079fce525c94bce892ad177515d54a8cf64203eecbc30231476367e916aaff91221f5b6abd5afc207a86c698f35b7254178488 - languageName: node - linkType: hard - "react-redux@npm:^8.1.3": version: 8.1.3 resolution: "react-redux@npm:8.1.3" @@ -12045,22 +11369,22 @@ __metadata: linkType: hard "react-rnd@npm:^10.5.2": - version: 10.5.2 - resolution: "react-rnd@npm:10.5.2" + version: 10.5.3 + resolution: "react-rnd@npm:10.5.3" dependencies: - re-resizable: "npm:6.11.2" - react-draggable: "npm:4.4.6" + re-resizable: "npm:^6.11.2" + react-draggable: "npm:^4.5.0" tslib: "npm:2.6.2" peerDependencies: react: ">=16.3.0" react-dom: ">=16.3.0" - checksum: 10c0/27215052246fcc0f74b1d9ead0445fdabb98e666272a8af33f4d735bcf13fb34240c064b1b59601c87c4387ddfeb44568a182f6138a3c04ce2596272b50ff2b5 + checksum: 10c0/9f65397150adc472ee96c0f257fa0f8301afb010d4e6ed97df793347ce7cd7c84bac980b7977cfc70314b9da3bd9a96c1ca5171b3c5e03fe2392832550307cb7 languageName: node linkType: hard "react-select@npm:^5.7.0": - version: 5.10.1 - resolution: "react-select@npm:5.10.1" + version: 5.10.2 + resolution: "react-select@npm:5.10.2" dependencies: "@babel/runtime": "npm:^7.12.0" "@emotion/cache": "npm:^11.4.0" @@ -12074,7 +11398,7 @@ __metadata: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - checksum: 10c0/0d10a249b96150bd648f2575d59c848b8fac7f4d368a97ae84e4aaba5bbc1035deba4cdc82e49a43904b79ec50494505809618b0e98022b2d51e7629551912ed + checksum: 10c0/2027ef57b0a375d1accdad60550329dc0911b31d429ec6eb9ae391ae9baf9f26991b0ff8615eb99de319a55ce6e9382107783e615cb2116522ed0275b214b7f7 languageName: node linkType: hard @@ -12114,21 +11438,6 @@ __metadata: languageName: node linkType: hard -"react-transition-group@npm:^2.9.0": - version: 2.9.0 - resolution: "react-transition-group@npm:2.9.0" - dependencies: - dom-helpers: "npm:^3.4.0" - loose-envify: "npm:^1.4.0" - prop-types: "npm:^15.6.2" - react-lifecycles-compat: "npm:^3.0.4" - peerDependencies: - react: ">=15.0.0" - react-dom: ">=15.0.0" - checksum: 10c0/df40608e9defb6873290b9f2165921f17139b8edbb2019e2de38f77477f9cbd8fdb739b20e1e04cb16a513137c80e85cf5f0fff96049a94b740d389313394476 - languageName: node - linkType: hard - "react-transition-group@npm:^4.3.0": version: 4.4.5 resolution: "react-transition-group@npm:4.4.5" @@ -12145,9 +11454,9 @@ __metadata: linkType: hard "react@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react@npm:19.2.5" - checksum: 10c0/4b5f231dbef92886f602533c9ce3bde04d99f0e71dfb5d794c43e02726efaad0421c08688f75fc98a6d6e1dc017372e1af7abbfecdc86a79968f461675931a7a + version: 19.2.8 + resolution: "react@npm:19.2.8" + checksum: 10c0/5f86bdb56426652fd6d989d30a6f2e603c057272c47c9ca3a3fbe190a3a39ee9ccce937d63cfc039717abed1b8891d6a499134bc35311acc07eafdacd86537cd languageName: node linkType: hard @@ -12235,12 +11544,12 @@ __metadata: languageName: node linkType: hard -"readdir-glob@npm:^1.1.2": - version: 1.1.3 - resolution: "readdir-glob@npm:1.1.3" +"readdir-glob@npm:^3.0.0": + version: 3.0.0 + resolution: "readdir-glob@npm:3.0.0" dependencies: - minimatch: "npm:^5.1.0" - checksum: 10c0/a37e0716726650845d761f1041387acd93aa91b28dd5381950733f994b6c349ddc1e21e266ec7cc1f9b92e205a7a972232f9b89d5424d07361c2c3753d5dbace + minimatch: "npm:^10.2.2" + checksum: 10c0/9a358c8347b4db2a1f72168da67f7ef8d9ccd51f7fdaa127eed8170a1025e97942705f827b0b45e6fdc0e40f04d0859ba75c3d471ee1fcc9e2cfb9fc81606989 languageName: node linkType: hard @@ -12254,15 +11563,15 @@ __metadata: linkType: hard "recast@npm:^0.23.5": - version: 0.23.11 - resolution: "recast@npm:0.23.11" + version: 0.23.12 + resolution: "recast@npm:0.23.12" dependencies: ast-types: "npm:^0.16.1" esprima: "npm:~4.0.0" source-map: "npm:~0.6.1" tiny-invariant: "npm:^1.3.3" tslib: "npm:^2.0.1" - checksum: 10c0/45b520a8f0868a5a24ecde495be9de3c48e69a54295d82a7331106554b75cfba75d16c909959d056e9ceed47a1be5e061e2db8b9ecbcd6ba44c2f3ef9a47bd18 + checksum: 10c0/6abedaca3ce696b1f3d4e0a9c458319d5e24a8dc2666e91ae9729882f523c144558f4d415b40d398eed6a3956500656299df44ca8c4dba8e35a75bb454a067fc languageName: node linkType: hard @@ -12417,9 +11726,9 @@ __metadata: linkType: hard "reselect@npm:^5.1.0": - version: 5.1.1 - resolution: "reselect@npm:5.1.1" - checksum: 10c0/219c30da122980f61853db3aebd173524a2accd4b3baec770e3d51941426c87648a125ca08d8c57daa6b8b086f2fdd2703cb035dd6231db98cdbe1176a71f489 + version: 5.2.0 + resolution: "reselect@npm:5.2.0" + checksum: 10c0/d0a8497e404b25a769fe792eacae88b9b576c30870450cd243d76ec9427d91a59c4a2cc00d824d283448b444c4c698a8f961d771c8ae39c759313afb31950e2e languageName: node linkType: hard @@ -12463,13 +11772,6 @@ __metadata: languageName: node linkType: hard -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab - languageName: node - linkType: hard - "resolve-protobuf-schema@npm:^2.1.0": version: 2.1.0 resolution: "resolve-protobuf-schema@npm:2.1.0" @@ -12480,28 +11782,30 @@ __metadata: linkType: hard "resolve@npm:^1.10.0, resolve@npm:^1.19.0, resolve@npm:^1.22.1, resolve@npm:^1.22.8, resolve@npm:^1.3.2": - version: 1.22.10 - resolution: "resolve@npm:1.22.10" + version: 1.22.12 + resolution: "resolve@npm:1.22.12" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 + checksum: 10c0/b16dc9b537c02e8c3388f7d3dcff9741d3071625f9a97ac1c885f2b0ca51e78df22328fb6d6ef214dd9101fb7cfc19aa2836fe3410402a94f3f7b8639c7149bf languageName: node linkType: hard "resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.3.2#optional!builtin": - version: 1.22.10 - resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" + version: 1.22.12 + resolution: "resolve@patch:resolve@npm%3A1.22.12#optional!builtin::version=1.22.12&hash=c3c19d" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 + checksum: 10c0/fc6519984ae1f894d877c0060ba8b1f5ba3bc0e85a02f74e141929c118c23d74d9735619a9cc2965397387e514884245c65d72a40731dcb6cfc84c7bcdc8321e languageName: node linkType: hard @@ -12540,17 +11844,6 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:^2.6.3": - version: 2.7.1 - resolution: "rimraf@npm:2.7.1" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: ./bin.js - checksum: 10c0/4eef73d406c6940927479a3a9dee551e14a54faf54b31ef861250ac815172bade86cc6f7d64a4dc5e98b65e4b18a2e1c9ff3b68d296be0c748413f092bb0dd40 - languageName: node - linkType: hard - "rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": version: 3.0.2 resolution: "rimraf@npm:3.0.2" @@ -12562,26 +11855,26 @@ __metadata: languageName: node linkType: hard -"rolldown@npm:~1.1.2": - version: 1.1.2 - resolution: "rolldown@npm:1.1.2" - dependencies: - "@oxc-project/types": "npm:=0.137.0" - "@rolldown/binding-android-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-x64": "npm:1.1.2" - "@rolldown/binding-freebsd-x64": "npm:1.1.2" - "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.2" - "@rolldown/binding-linux-arm64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-arm64-musl": "npm:1.1.2" - "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-s390x-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-musl": "npm:1.1.2" - "@rolldown/binding-openharmony-arm64": "npm:1.1.2" - "@rolldown/binding-wasm32-wasi": "npm:1.1.2" - "@rolldown/binding-win32-arm64-msvc": "npm:1.1.2" - "@rolldown/binding-win32-x64-msvc": "npm:1.1.2" +"rolldown@npm:~1.1.5": + version: 1.1.5 + resolution: "rolldown@npm:1.1.5" + dependencies: + "@oxc-project/types": "npm:=0.139.0" + "@rolldown/binding-android-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-x64": "npm:1.1.5" + "@rolldown/binding-freebsd-x64": "npm:1.1.5" + "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.5" + "@rolldown/binding-linux-arm64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-arm64-musl": "npm:1.1.5" + "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-s390x-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-musl": "npm:1.1.5" + "@rolldown/binding-openharmony-arm64": "npm:1.1.5" + "@rolldown/binding-wasm32-wasi": "npm:1.1.5" + "@rolldown/binding-win32-arm64-msvc": "npm:1.1.5" + "@rolldown/binding-win32-x64-msvc": "npm:1.1.5" "@rolldown/pluginutils": "npm:^1.0.0" dependenciesMeta: "@rolldown/binding-android-arm64": @@ -12616,7 +11909,7 @@ __metadata: optional: true bin: rolldown: ./bin/cli.mjs - checksum: 10c0/e35b83849aa341dcb5403d58654161ce2a0fb7c334ee17c186e497be0e43eb7a5a80ecfd4eee505847fcf8b0a3255ccd32438b2f548663afcce9b7b13820825f + checksum: 10c0/93072aa9d95882f9fa5cd57fe7db6a48efd6f85a25a32137425052ecca02df653651eed0c33a865c33511681bd6a40691d5c88900b8e95ce1334f4f75ba826ff languageName: node linkType: hard @@ -12643,35 +11936,35 @@ __metadata: linkType: hard "rollup@npm:^4.43.0": - version: 4.59.0 - resolution: "rollup@npm:4.59.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.59.0" - "@rollup/rollup-android-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-x64": "npm:4.59.0" - "@rollup/rollup-freebsd-arm64": "npm:4.59.0" - "@rollup/rollup-freebsd-x64": "npm:4.59.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.59.0" - "@rollup/rollup-linux-loong64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-loong64-musl": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-musl": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-musl": "npm:4.59.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-musl": "npm:4.59.0" - "@rollup/rollup-openbsd-x64": "npm:4.59.0" - "@rollup/rollup-openharmony-arm64": "npm:4.59.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.59.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.59.0" - "@rollup/rollup-win32-x64-gnu": "npm:4.59.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.59.0" - "@types/estree": "npm:1.0.8" + version: 4.62.2 + resolution: "rollup@npm:4.62.2" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.62.2" + "@rollup/rollup-android-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-x64": "npm:4.62.2" + "@rollup/rollup-freebsd-arm64": "npm:4.62.2" + "@rollup/rollup-freebsd-x64": "npm:4.62.2" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-arm64-musl": "npm:4.62.2" + "@rollup/rollup-linux-loong64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-loong64-musl": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-musl": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-musl": "npm:4.62.2" + "@rollup/rollup-linux-s390x-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-musl": "npm:4.62.2" + "@rollup/rollup-openbsd-x64": "npm:4.62.2" + "@rollup/rollup-openharmony-arm64": "npm:4.62.2" + "@rollup/rollup-win32-arm64-msvc": "npm:4.62.2" + "@rollup/rollup-win32-ia32-msvc": "npm:4.62.2" + "@rollup/rollup-win32-x64-gnu": "npm:4.62.2" + "@rollup/rollup-win32-x64-msvc": "npm:4.62.2" + "@types/estree": "npm:1.0.9" fsevents: "npm:~2.3.2" dependenciesMeta: "@rollup/rollup-android-arm-eabi": @@ -12728,7 +12021,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/f38742da34cfee5e899302615fa157aa77cb6a2a1495e5e3ce4cc9c540d3262e235bbe60caa31562bbfe492b01fdb3e7a8c43c39d842d3293bcf843123b766fc + checksum: 10c0/83ff5f4a1fea3fa05db2ef56beceee8c33d4a72b818e19c562f1e85c41076fe5b12aadc44048bb73e60b83336df82154b017fa6bf0186f3141643e6f215fbdcb languageName: node linkType: hard @@ -12802,7 +12095,7 @@ __metadata: languageName: node linkType: hard -"safe-stable-stringify@npm:^2.2.0": +"safe-stable-stringify@npm:^2.5.0": version: 2.5.0 resolution: "safe-stable-stringify@npm:2.5.0" checksum: 10c0/baea14971858cadd65df23894a40588ed791769db21bafb7fd7608397dbdce9c5aac60748abae9995e0fc37e15f2061980501e012cd48859740796bea2987f49 @@ -12869,42 +12162,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2": - version: 7.7.2 - resolution: "semver@npm:7.7.2" - bin: - semver: bin/semver.js - checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea - languageName: node - linkType: hard - -"semver@npm:^7.7.2": - version: 7.7.4 - resolution: "semver@npm:7.7.4" +"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2, semver@npm:^7.7.2": + version: 7.8.5 + resolution: "semver@npm:7.8.5" bin: semver: bin/semver.js - checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 - languageName: node - linkType: hard - -"send@npm:0.19.0": - version: 0.19.0 - resolution: "send@npm:0.19.0" - dependencies: - debug: "npm:2.6.9" - depd: "npm:2.0.0" - destroy: "npm:1.2.0" - encodeurl: "npm:~1.0.2" - escape-html: "npm:~1.0.3" - etag: "npm:~1.8.1" - fresh: "npm:0.5.2" - http-errors: "npm:2.0.0" - mime: "npm:1.6.0" - ms: "npm:2.1.3" - on-finished: "npm:2.4.1" - range-parser: "npm:~1.2.1" - statuses: "npm:2.0.1" - checksum: 10c0/ea3f8a67a8f0be3d6bf9080f0baed6d2c51d11d4f7b4470de96a5029c598a7011c497511ccc28968b70ef05508675cebff27da9151dd2ceadd60be4e6cf845e3 + checksum: 10c0/b1f3127a5be8125a94f37188b361c212466c292c6910adce3ec106cff5dc211ccaedc4739c11bb70fda59d6fc1f040a9bca289f4e093451521a2372e5231fe0c languageName: node linkType: hard @@ -12927,15 +12190,36 @@ __metadata: languageName: node linkType: hard +"send@npm:~0.19.1": + version: 0.19.2 + resolution: "send@npm:0.19.2" + dependencies: + debug: "npm:2.6.9" + depd: "npm:2.0.0" + destroy: "npm:1.2.0" + encodeurl: "npm:~2.0.0" + escape-html: "npm:~1.0.3" + etag: "npm:~1.8.1" + fresh: "npm:~0.5.2" + http-errors: "npm:~2.0.1" + mime: "npm:1.6.0" + ms: "npm:2.1.3" + on-finished: "npm:~2.4.1" + range-parser: "npm:~1.2.1" + statuses: "npm:~2.0.2" + checksum: 10c0/20c2389fe0fdf3fc499938cac598bc32272287e993c4960717381a10de8550028feadfb9076f959a3a3ebdea42e1f690e116f0d16468fa56b9fd41866d3dc267 + languageName: node + linkType: hard + "serve-static@npm:^1.12.1": - version: 1.16.2 - resolution: "serve-static@npm:1.16.2" + version: 1.16.3 + resolution: "serve-static@npm:1.16.3" dependencies: encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" parseurl: "npm:~1.3.3" - send: "npm:0.19.0" - checksum: 10c0/528fff6f5e12d0c5a391229ad893910709bc51b5705962b09404a1d813857578149b8815f35d3ee5752f44cd378d0f31669d4b1d7e2d11f41e08283d5134bd1f + send: "npm:~0.19.1" + checksum: 10c0/36320397a073c71bedf58af48a4a100fe6d93f07459af4d6f08b9a7217c04ce2a4939e0effd842dc7bece93ffcd59eb52f58c4fff2a8e002dc29ae6b219cd42b languageName: node linkType: hard @@ -12984,7 +12268,7 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.2.0, setprototypeof@npm:~1.2.0": +"setprototypeof@npm:~1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" checksum: 10c0/68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc @@ -13014,13 +12298,13 @@ __metadata: languageName: node linkType: hard -"side-channel-list@npm:^1.0.0": - version: 1.0.0 - resolution: "side-channel-list@npm:1.0.0" +"side-channel-list@npm:^1.0.1": + version: 1.0.1 + resolution: "side-channel-list@npm:1.0.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d + object-inspect: "npm:^1.13.4" + checksum: 10c0/d346c787fd2f9f1c2fdea14f00e8250118db0e7596d85a6cb9faa75f105d31a73a8f7a341c93d7df2a2429098c3d37a77bd3be9e88c37094b8c01807bc77c7a2 languageName: node linkType: hard @@ -13049,16 +12333,16 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0": - version: 1.1.0 - resolution: "side-channel@npm:1.1.0" +"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0, side-channel@npm:^1.1.1": + version: 1.1.1 + resolution: "side-channel@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - side-channel-list: "npm:^1.0.0" + object-inspect: "npm:^1.13.4" + side-channel-list: "npm:^1.0.1" side-channel-map: "npm:^1.0.1" side-channel-weakmap: "npm:^1.0.2" - checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 + checksum: 10c0/dc0ab81d67f61bda9247d053ce93f41c3fd8ad2bdcb9cf9d8d2f8540d488f26d87a5e99ebfc07eea49ec025867b2452b705442d974b1478f0395e69f6bfb3270 languageName: node linkType: hard @@ -13122,34 +12406,6 @@ __metadata: languageName: node linkType: hard -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.3": - version: 8.0.5 - resolution: "socks-proxy-agent@npm:8.0.5" - dependencies: - agent-base: "npm:^7.1.2" - debug: "npm:^4.3.4" - socks: "npm:^2.8.3" - checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 - languageName: node - linkType: hard - -"socks@npm:^2.8.3": - version: 2.8.7 - resolution: "socks@npm:2.8.7" - dependencies: - ip-address: "npm:^10.0.1" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/2805a43a1c4bcf9ebf6e018268d87b32b32b06fbbc1f9282573583acc155860dc361500f89c73bfbb157caa1b4ac78059eac0ef15d1811eb0ca75e0bdadbc9d2 - languageName: node - linkType: hard - "source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" @@ -13242,9 +12498,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.21 - resolution: "spdx-license-ids@npm:3.0.21" - checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 + version: 3.0.23 + resolution: "spdx-license-ids@npm:3.0.23" + checksum: 10c0/8495620f6f2a237749cce922ea2d593a66f7885c301b1a0f5542183e7041182f27f616a8f13345cefdea0c9b3e0899328e0aa8cec100cf4f3fac4bb3bd975515 languageName: node linkType: hard @@ -13283,15 +12539,6 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^13.0.0": - version: 13.0.1 - resolution: "ssri@npm:13.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/cf6408a18676c57ff2ed06b8a20dc64bb3e748e5c7e095332e6aecaa2b8422b1e94a739a8453bf65156a8a47afe23757ba4ab52d3ea3b62322dc40875763e17a - languageName: node - linkType: hard - "stack-utils@npm:^2.0.6": version: 2.0.6 resolution: "stack-utils@npm:2.0.6" @@ -13315,13 +12562,6 @@ __metadata: languageName: node linkType: hard -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 - languageName: node - linkType: hard - "statuses@npm:^2.0.1, statuses@npm:^2.0.2, statuses@npm:~2.0.2": version: 2.0.2 resolution: "statuses@npm:2.0.2" @@ -13337,9 +12577,9 @@ __metadata: linkType: hard "std-env@npm:^3.9.0": - version: 3.9.0 - resolution: "std-env@npm:3.9.0" - checksum: 10c0/4a6f9218aef3f41046c3c7ecf1f98df00b30a07f4f35c6d47b28329bc2531eef820828951c7d7b39a1c5eb19ad8a46e3ddfc7deb28f0a2f3ceebee11bab7ba50 + version: 3.10.0 + resolution: "std-env@npm:3.10.0" + checksum: 10c0/1814927a45004d36dde6707eaf17552a546769bc79a6421be2c16ce77d238158dfe5de30910b78ec30d95135cc1c59ea73ee22d2ca170f8b9753f84da34c427f languageName: node linkType: hard @@ -13379,13 +12619,13 @@ __metadata: linkType: hard "streamx@npm:^2.12.5, streamx@npm:^2.15.0, streamx@npm:^2.25.0": - version: 2.25.0 - resolution: "streamx@npm:2.25.0" + version: 2.28.0 + resolution: "streamx@npm:2.28.0" dependencies: events-universal: "npm:^1.0.0" fast-fifo: "npm:^1.3.2" text-decoder: "npm:^1.1.0" - checksum: 10c0/1ecc4b722050e9088b99cde59d035e846ac97cedc3ef14a00b196d9c0b6f47d9fd18df454a19f56f0f586ab4f23fb7229069b9e8eaf22072a21bd9c909d4e0ea + checksum: 10c0/1cd5647c4dbdaadf4623b48183bab1d71bdc251e24c8f3baddf9fb9fa75096a7d446aba2c58a4f71964eeb5753f514b59e97bfdf94a60ce2c1b33594410b0342 languageName: node linkType: hard @@ -13484,16 +12724,7 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.1.0": +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": version: 7.2.0 resolution: "strip-ansi@npm:7.2.0" dependencies: @@ -13533,11 +12764,9 @@ __metadata: linkType: hard "strip-indent@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-indent@npm:4.0.0" - dependencies: - min-indent: "npm:^1.0.1" - checksum: 10c0/6b1fb4e22056867f5c9e7a6f3f45922d9a2436cac758607d58aeaac0d3b16ec40b1c43317de7900f1b8dd7a4107352fa47fb960f2c23566538c51e8585c8870e + version: 4.1.1 + resolution: "strip-indent@npm:4.1.1" + checksum: 10c0/5b23dd5934be0ef6b6fe1b802887f83e56ad9dcd9f6c3896a637da2c6c3a6da3fdf3e51354a98e6cccb6f1c41863e7b9b9deaa348639dfd35f71f3549edb4dff languageName: node linkType: hard @@ -13626,46 +12855,37 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.11.0": - version: 0.11.6 - resolution: "synckit@npm:0.11.6" +"synckit@npm:^0.11.13, synckit@npm:^0.11.8": + version: 0.11.13 + resolution: "synckit@npm:0.11.13" dependencies: - "@pkgr/core": "npm:^0.2.4" - checksum: 10c0/51c0e41c025b90cc68a7b304fbfe873cc77b3ddc99e92ab33fbd42f4fbd1ee65fc7d9affd8eedcac43644658399244aa521e19fb18d7b4e66898d0e2c0cc8d9b - languageName: node - linkType: hard - -"synckit@npm:^0.11.8": - version: 0.11.12 - resolution: "synckit@npm:0.11.12" - dependencies: - "@pkgr/core": "npm:^0.2.9" - checksum: 10c0/cc4d446806688ae0d728ae7bb3f53176d065cf9536647fb85bdd721dcefbd7bf94874df6799ff61580f2b03a392659219b778a9254ad499f9a1f56c34787c235 + "@pkgr/core": "npm:^0.3.6" + checksum: 10c0/5a6c19f4f79045aaa7994106401bff6dbe7cca23a6d0a0723ff14eb8b1bebeb4a71729118f6914905598e304ea2fa13509885e11ba07d92e7cb68a06740cb328 languageName: node linkType: hard "tar-stream@npm:^3.0.0": - version: 3.1.8 - resolution: "tar-stream@npm:3.1.8" + version: 3.2.0 + resolution: "tar-stream@npm:3.2.0" dependencies: b4a: "npm:^1.6.4" bare-fs: "npm:^4.5.5" fast-fifo: "npm:^1.2.0" streamx: "npm:^2.15.0" - checksum: 10c0/c4bf369de2302fcf30218d091167a5372ee79b69a1b5bb493ddb7714193ca805719558966334bab1f2775c8142826865f24e25459ff1c5f0a096bc3a3d5c5ce2 + checksum: 10c0/8a06c915f93c9b0906e79867e36a9cfe197da4d41b72e89ec0de99577ae755505d14815c1346b70c2410aa09d3145c3e3af2ff5802b6af84990cdd6c60dbb997 languageName: node linkType: hard "tar@npm:^7.5.4": - version: 7.5.20 - resolution: "tar@npm:7.5.20" + version: 7.5.21 + resolution: "tar@npm:7.5.21" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" minizlib: "npm:^3.1.0" yallist: "npm:^5.0.0" - checksum: 10c0/4df4335c6d958b76adf1eaced55889dec3ca1c51f450658a074af80694bb0d9c154a8e93fdf4da617372d1575b121295379993961bbe4cd4b0867c0e5689846a + checksum: 10c0/bce0e51692356078e6f6a909d5c93f5b4c099c097ffea19b1b1bf10385539a429baba26bca59aabbace68c4519d16f2f1c07afe7eaab55876a449a032480fabc languageName: node linkType: hard @@ -13697,13 +12917,13 @@ __metadata: linkType: hard "test-exclude@npm:^7.0.1": - version: 7.0.1 - resolution: "test-exclude@npm:7.0.1" + version: 7.0.2 + resolution: "test-exclude@npm:7.0.2" dependencies: "@istanbuljs/schema": "npm:^0.1.2" glob: "npm:^10.4.1" - minimatch: "npm:^9.0.4" - checksum: 10c0/6d67b9af4336a2e12b26a68c83308c7863534c65f27ed4ff7068a56f5a58f7ac703e8fc80f698a19bb154fd8f705cdf7ec347d9512b2c522c737269507e7b263 + minimatch: "npm:^10.2.2" + checksum: 10c0/b79b855af9168c6a362146015ccf40f5e3a25e307304ba9bea930818507f6319d230380d5d7b5baa659c981ccc11f1bd21b6f012f85606353dec07e02dee67c9 languageName: node linkType: hard @@ -13770,27 +12990,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12": - version: 0.2.16 - resolution: "tinyglobby@npm:0.2.16" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.4" - checksum: 10c0/f2e09fd93dd95c41e522113b686ff6f7c13020962f8698a864a257f3d7737599afc47722b7ab726e12f8a813f779906187911ff8ee6701ede65072671a7e934b - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": - version: 0.2.15 - resolution: "tinyglobby@npm:0.2.15" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.3" - checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.17": +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15, tinyglobby@npm:^0.2.17": version: 0.2.17 resolution: "tinyglobby@npm:0.2.17" dependencies: @@ -13853,12 +13053,10 @@ __metadata: languageName: node linkType: hard -"tmp@npm:^0.0.33": - version: 0.0.33 - resolution: "tmp@npm:0.0.33" - dependencies: - os-tmpdir: "npm:~1.0.2" - checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 +"tmp@npm:^0.2.4": + version: 0.2.7 + resolution: "tmp@npm:0.2.7" + checksum: 10c0/59eb55584f2f07210d3231b6a1f6b5c2b9794d8a7b509c8ee867ed2acad6d2245ee2448b7937b676ffbff3155a70077edde8a69f9d7cf0f90c86a62e8910c357 languageName: node linkType: hard @@ -13892,7 +13090,7 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.1, toidentifier@npm:~1.0.1": +"toidentifier@npm:~1.0.1": version: 1.0.1 resolution: "toidentifier@npm:1.0.1" checksum: 10c0/93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 @@ -13960,13 +13158,13 @@ __metadata: linkType: hard "ts-dedent@npm:^2.0.0": - version: 2.2.0 - resolution: "ts-dedent@npm:2.2.0" - checksum: 10c0/175adea838468cc2ff7d5e97f970dcb798bbcb623f29c6088cb21aa2880d207c5784be81ab1741f56b9ac37840cbaba0c0d79f7f8b67ffe61c02634cafa5c303 + version: 2.3.0 + resolution: "ts-dedent@npm:2.3.0" + checksum: 10c0/bfc3331e0740191c0134fb526e7f01e16657e50955c9395de14703c6ef17119c91651fa044cf558dc9c1dbb0fe1b2a74e303aeebcbd5e3b31acd14f72f545a54 languageName: node linkType: hard -"ts-node@npm:^10.9.1": +"ts-node@npm:^10.9.2": version: 10.9.2 resolution: "ts-node@npm:10.9.2" dependencies: @@ -14036,20 +13234,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:~2.3.1": - version: 2.3.1 - resolution: "tslib@npm:2.3.1" - checksum: 10c0/4efd888895bdb3b987086b2b7793ad1013566f882b0eb7a328384e5ecc0d71cafb16bbeab3196200cbf7f01a73ccc25acc2f131d4ea6ee959be7436a8a306482 - languageName: node - linkType: hard - -"tslib@npm:~2.5.0": - version: 2.5.3 - resolution: "tslib@npm:2.5.3" - checksum: 10c0/4cb1817d34fae5b27d146e6c4a468d4155097d95c1335d0bc9690f11f33e63844806bf4ed6d97c30c72b8d85261b66cbbe16d871d9c594ac05701ec83e62a607 - languageName: node - linkType: hard - "tslint@npm:6.1.3": version: 6.1.3 resolution: "tslint@npm:6.1.3" @@ -14087,18 +13271,17 @@ __metadata: linkType: hard "tsx@npm:^4.21.0": - version: 4.21.0 - resolution: "tsx@npm:4.21.0" + version: 4.23.1 + resolution: "tsx@npm:4.23.1" dependencies: - esbuild: "npm:~0.27.0" + esbuild: "npm:~0.28.0" fsevents: "npm:~2.3.3" - get-tsconfig: "npm:^4.7.5" dependenciesMeta: fsevents: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/f5072923cd8459a1f9a26df87823a2ab5754641739d69df2a20b415f61814322b751fa6be85db7c6ec73cf68ba8fac2fd1cfc76bdb0aa86ded984d84d5d2126b + checksum: 10c0/2f7393c09ffd161701342c87141c6158945967c0fdb6476f157a72e53554cbc983b8e516b441beafde27c9840d8ffd619802acce6b6be5e9e197d693e111a55d languageName: node linkType: hard @@ -14169,21 +13352,14 @@ __metadata: languageName: node linkType: hard -"type-is@npm:^2.0.1": - version: 2.0.1 - resolution: "type-is@npm:2.0.1" +"type-is@npm:^2.0.1, type-is@npm:^2.1.0": + version: 2.1.0 + resolution: "type-is@npm:2.1.0" dependencies: - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" media-typer: "npm:^1.1.0" mime-types: "npm:^3.0.0" - checksum: 10c0/7f7ec0a060b16880bdad36824ab37c26019454b67d73e8a465ed5a3587440fbe158bc765f0da68344498235c877e7dbbb1600beccc94628ed05599d667951b99 - languageName: node - linkType: hard - -"typed-styles@npm:^0.0.7": - version: 0.0.7 - resolution: "typed-styles@npm:0.0.7" - checksum: 10c0/ec159f0e538364750cf9b8f19136375df64ad364fda355e6f7a7216ebffc67f18b436722c5c6853c89f70e6507eb69e5061ceb9334fa1f54902c0f6be1b985fe + checksum: 10c0/a6018f8f509de48f2c7429305e3a920e73b374fa93127dd0877ae1c2df65a5d33907caac8afb0c37a9b9fc7c49f29e3f55d668963dc845d966930b667c07f50e languageName: node linkType: hard @@ -14234,25 +13410,25 @@ __metadata: linkType: hard "typescript-json-schema@npm:^0.67.1": - version: 0.67.1 - resolution: "typescript-json-schema@npm:0.67.1" + version: 0.67.4 + resolution: "typescript-json-schema@npm:0.67.4" dependencies: - "@types/json-schema": "npm:^7.0.9" - "@types/node": "npm:^18.11.9" - glob: "npm:^7.1.7" + "@types/json-schema": "npm:^7.0.15" + "@types/node": "npm:^24.10.2" + glob: "npm:^13.0.6" path-equal: "npm:^1.2.5" - safe-stable-stringify: "npm:^2.2.0" - ts-node: "npm:^10.9.1" - typescript: "npm:~5.5.0" - vm2: "npm:^3.10.0" - yargs: "npm:^17.1.1" + safe-stable-stringify: "npm:^2.5.0" + ts-node: "npm:^10.9.2" + typescript: "npm:~5.9.3" + vm2: "npm:^3.11.3" + yargs: "npm:^18.0.0" bin: typescript-json-schema: bin/typescript-json-schema - checksum: 10c0/f7d9695f56ebeab64515947f20cd53899a9df1f737063b60c2a187b5ddc618d57a23aca3e5cb778a270e024308d378d98f86834888665b9198eee50509fed81c + checksum: 10c0/9a5a17ca1a2b186615398cbe088e811b68dd2188c5ce83bb4572f45329892d3ee08f3a9c5b993bdc04c276829d4c516ad5e45e142d482d0366c51e665b2176d8 languageName: node linkType: hard -"typescript@npm:5.9.3": +"typescript@npm:5.9.3, typescript@npm:~5.9.3": version: 5.9.3 resolution: "typescript@npm:5.9.3" bin: @@ -14262,17 +13438,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:~5.5.0": - version: 5.5.4 - resolution: "typescript@npm:5.5.4" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c - languageName: node - linkType: hard - -"typescript@patch:typescript@npm%3A5.9.3#optional!builtin": +"typescript@patch:typescript@npm%3A5.9.3#optional!builtin, typescript@patch:typescript@npm%3A~5.9.3#optional!builtin": version: 5.9.3 resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" bin: @@ -14282,16 +13448,6 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A~5.5.0#optional!builtin": - version: 5.5.4 - resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=379a07" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/73409d7b9196a5a1217b3aaad929bf76294d3ce7d6e9766dd880ece296ee91cf7d7db6b16c6c6c630ee5096eccde726c0ef17c7dfa52b01a243e57ae1f09ef07 - languageName: node - linkType: hard - "uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": version: 2.1.0 resolution: "uc.micro@npm:2.1.0" @@ -14299,17 +13455,24 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 +"undici-types@npm:~7.18.0": + version: 7.18.2 + resolution: "undici-types@npm:7.18.2" + checksum: 10c0/85a79189113a238959d7a647368e4f7c5559c3a404ebdb8fc4488145ce9426fcd82252a844a302798dfc0e37e6fb178ff481ed03bc4caf634c5757d9ef43521d languageName: node linkType: hard -"undici-types@npm:~6.21.0": - version: 6.21.0 - resolution: "undici-types@npm:6.21.0" - checksum: 10c0/c01ed51829b10aa72fc3ce64b747f8e74ae9b60eafa19a7b46ef624403508a54c526ffab06a14a26b3120d055e1104d7abe7c9017e83ced038ea5cf52f8d5e04 +"undici-types@npm:~8.3.0": + version: 8.3.0 + resolution: "undici-types@npm:8.3.0" + checksum: 10c0/c8aa7e2fbebfce519654dafadc0ece59be888d2ccaf180fb4495da875e7b536d2456345c384069c7e6f3e9c9ab7435f074957da306f142343eee86ff8048855a + languageName: node + linkType: hard + +"undici@npm:^8.4.1": + version: 8.8.0 + resolution: "undici@npm:8.8.0" + checksum: 10c0/6ee51e6b814b67e212b19349c38657be988d878ca669ccf2ad33f0ebbb0d83e851aa57554b6ce3c6668a9a4df3010fb6a6af7bd28692ade911083ef376a3a75d languageName: node linkType: hard @@ -14354,29 +13517,32 @@ __metadata: linkType: hard "unrs-resolver@npm:^1.7.11": - version: 1.11.1 - resolution: "unrs-resolver@npm:1.11.1" - dependencies: - "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1" - "@unrs/resolver-binding-android-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-x64": "npm:1.11.1" - "@unrs/resolver-binding-freebsd-x64": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1" - napi-postinstall: "npm:^0.3.0" + version: 1.12.2 + resolution: "unrs-resolver@npm:1.12.2" + dependencies: + "@unrs/resolver-binding-android-arm-eabi": "npm:1.12.2" + "@unrs/resolver-binding-android-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-x64": "npm:1.12.2" + "@unrs/resolver-binding-freebsd-x64": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-musl": "npm:1.12.2" + "@unrs/resolver-binding-openharmony-arm64": "npm:1.12.2" + "@unrs/resolver-binding-wasm32-wasi": "npm:1.12.2" + "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-x64-msvc": "npm:1.12.2" + napi-postinstall: "npm:^0.3.4" dependenciesMeta: "@unrs/resolver-binding-android-arm-eabi": optional: true @@ -14396,6 +13562,10 @@ __metadata: optional: true "@unrs/resolver-binding-linux-arm64-musl": optional: true + "@unrs/resolver-binding-linux-loong64-gnu": + optional: true + "@unrs/resolver-binding-linux-loong64-musl": + optional: true "@unrs/resolver-binding-linux-ppc64-gnu": optional: true "@unrs/resolver-binding-linux-riscv64-gnu": @@ -14408,6 +13578,8 @@ __metadata: optional: true "@unrs/resolver-binding-linux-x64-musl": optional: true + "@unrs/resolver-binding-openharmony-arm64": + optional: true "@unrs/resolver-binding-wasm32-wasi": optional: true "@unrs/resolver-binding-win32-arm64-msvc": @@ -14416,7 +13588,7 @@ __metadata: optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true - checksum: 10c0/c91b112c71a33d6b24e5c708dab43ab80911f2df8ee65b87cd7a18fb5af446708e98c4b415ca262026ad8df326debcc7ca6a801b2935504d87fd6f0b9d70dce1 + checksum: 10c0/ddc27f6d920eabdafeac0077ebff9fd799c895cea025751dc17b360bf9be7c93c471fafebf65f205eec476f90d7daa36aef889d47362b2dd4705d68852bcfea4 languageName: node linkType: hard @@ -14434,9 +13606,9 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.3": - version: 1.1.3 - resolution: "update-browserslist-db@npm:1.1.3" +"update-browserslist-db@npm:^1.2.3": + version: 1.2.3 + resolution: "update-browserslist-db@npm:1.2.3" dependencies: escalade: "npm:^3.2.0" picocolors: "npm:^1.1.1" @@ -14444,7 +13616,7 @@ __metadata: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 10c0/682e8ecbf9de474a626f6462aa85927936cdd256fe584c6df2508b0df9f7362c44c957e9970df55dfe44d3623807d26316ea2c7d26b80bb76a16c56c37233c32 + checksum: 10c0/13a00355ea822388f68af57410ce3255941d5fb9b7c49342c4709a07c9f230bbef7f7499ae0ca7e0de532e79a82cc0c4edbd125f1a323a1845bf914efddf8bec languageName: node linkType: hard @@ -14633,10 +13805,10 @@ __metadata: linkType: hard "vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": - version: 7.3.5 - resolution: "vite@npm:7.3.5" + version: 7.3.6 + resolution: "vite@npm:7.3.6" dependencies: - esbuild: "npm:^0.27.0" + esbuild: "npm:^0.27.0 || ^0.28.0" fdir: "npm:^6.5.0" fsevents: "npm:~2.3.3" picomatch: "npm:^4.0.3" @@ -14683,19 +13855,19 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/4ad700649ed2ebd1e726d32f3f6e41eecbec4e29bcb5977805f3d43a5659280518aa431b0fc61adc1879df4fe1978d7cfc7dbbe54cdf014022385052967721e8 + checksum: 10c0/c6d359f84ad362f5c97ff7988b77c90add04162c60cdf6059375a7d9e3217848c53a8cb6b6c48517bef84b6bba4c9bc85319a889b5236acb7d5a2bc8cb7b9a8d languageName: node linkType: hard -"vite@npm:^8.0.14": - version: 8.1.0 - resolution: "vite@npm:8.1.0" +"vite@npm:^8.0.16": + version: 8.1.5 + resolution: "vite@npm:8.1.5" dependencies: fsevents: "npm:~2.3.3" lightningcss: "npm:^1.32.0" - picomatch: "npm:^4.0.4" - postcss: "npm:^8.5.15" - rolldown: "npm:~1.1.2" + picomatch: "npm:^4.0.5" + postcss: "npm:^8.5.17" + rolldown: "npm:~1.1.5" tinyglobby: "npm:^0.2.17" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 @@ -14740,7 +13912,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/d7e2da70169a7d93c68f5d0e246bdf2fb35d8835170663a28f01191d73e16b80322b5f229973ce754de80136be843481b0afa616bb8530b51e7454e4887c4b45 + checksum: 10c0/3231e24dd4394d0bc8b4f0f5d6d6a2eda8737e5053042892b4163564456a03d67f953c4c7498621f9517eebc30a492ea136c728a767a122eb84bf6d7cf60e1e6 languageName: node linkType: hard @@ -14800,7 +13972,7 @@ __metadata: languageName: node linkType: hard -"vm2@npm:^3.10.0": +"vm2@npm:^3.11.3": version: 3.11.5 resolution: "vm2@npm:3.11.5" dependencies: @@ -14821,18 +13993,18 @@ __metadata: languageName: node linkType: hard -"wait-on@npm:9.0.5": - version: 9.0.5 - resolution: "wait-on@npm:9.0.5" +"wait-on@npm:9.0.10": + version: 9.0.10 + resolution: "wait-on@npm:9.0.10" dependencies: - axios: "npm:^1.15.0" - joi: "npm:^18.1.2" + axios: "npm:^1.16.0" + joi: "npm:^18.2.1" lodash: "npm:^4.18.1" minimist: "npm:^1.2.8" rxjs: "npm:^7.8.2" bin: wait-on: bin/wait-on - checksum: 10c0/79823ebda9bb08ae341abb49d298d001039071ac103f6557da69371ae92a6b35ea8faca0b1c349f08c7b6db0ea527705bea9044a6a41e5a0e4470ee9d95fdcd1 + checksum: 10c0/f5a1e940fe8efa6ad4b52efabad46925bfddea191d895a7f87e1c364975e7b095b0849f2f37549aea6a9dabacbf3c8ab14e818ba1182e370f060b7f6c8da0cf2 languageName: node linkType: hard @@ -14873,15 +14045,6 @@ __metadata: languageName: node linkType: hard -"warning@npm:^4.0.2, warning@npm:^4.0.3": - version: 4.0.3 - resolution: "warning@npm:4.0.3" - dependencies: - loose-envify: "npm:^1.0.0" - checksum: 10c0/aebab445129f3e104c271f1637fa38e55eb25f968593e3825bd2f7a12bd58dc3738bb70dc8ec85826621d80b4acfed5a29ebc9da17397c6125864d72301b937e - languageName: node - linkType: hard - "web-worker@npm:^1.5.0": version: 1.5.0 resolution: "web-worker@npm:1.5.0" @@ -14979,17 +14142,17 @@ __metadata: linkType: hard "which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.2": - version: 1.1.19 - resolution: "which-typed-array@npm:1.1.19" + version: 1.1.22 + resolution: "which-typed-array@npm:1.1.22" dependencies: available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.8" + call-bind: "npm:^1.0.9" call-bound: "npm:^1.0.4" for-each: "npm:^0.3.5" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" - checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f + checksum: 10c0/e59db184a4e78b461fac3b05fafc1e7badbbedafbf04a967ee1de73717f1f9723a79699e7b5de71d449541cb5da8353efc01a4f8a72a152479850e54fa196c40 languageName: node linkType: hard @@ -15015,7 +14178,7 @@ __metadata: languageName: node linkType: hard -"which@npm:^6.0.0, which@npm:^6.0.1": +"which@npm:^6.0.1": version: 6.0.1 resolution: "which@npm:6.0.1" dependencies: @@ -15026,6 +14189,17 @@ __metadata: languageName: node linkType: hard +"which@npm:^7.0.0": + version: 7.0.0 + resolution: "which@npm:7.0.0" + dependencies: + isexe: "npm:^4.0.0" + bin: + node-which: bin/which.js + checksum: 10c0/ca0b54f198f78bbc4b7c02e34bda8d335cb352e0adb4cbca1c37b1a957af3a879a82c4c27ca6525bc942f548d8b64f816ef6528360af9f3de55ffb9b979b620d + languageName: node + linkType: hard + "why-is-node-running@npm:^2.3.0": version: 2.3.0 resolution: "why-is-node-running@npm:2.3.0" @@ -15150,8 +14324,8 @@ __metadata: linkType: hard "ws@npm:^8.18.0, ws@npm:^8.2.3": - version: 8.18.2 - resolution: "ws@npm:8.18.2" + version: 8.21.1 + resolution: "ws@npm:8.21.1" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -15160,7 +14334,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 10c0/4b50f67931b8c6943c893f59c524f0e4905bbd183016cfb0f2b8653aa7f28dad4e456b9d99d285bbb67cca4fedd9ce90dfdfaa82b898a11414ebd66ee99141e4 + checksum: 10c0/c4c6f1d95f6d465262de2037c57c715725d67e078dd49420ede4e19115668aba159cb64d85c5e89c06eb2826be599e62e5095860ad6cc54ff42e8bd7684e1db8 languageName: node linkType: hard @@ -15237,13 +14411,6 @@ __metadata: languageName: node linkType: hard -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a - languageName: node - linkType: hard - "yallist@npm:^5.0.0": version: 5.0.0 resolution: "yallist@npm:5.0.0" @@ -15252,27 +14419,18 @@ __metadata: linkType: hard "yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f - languageName: node - linkType: hard - -"yaml@npm:^2.2.2": - version: 2.8.0 - resolution: "yaml@npm:2.8.0" - bin: - yaml: bin.mjs - checksum: 10c0/f6f7310cf7264a8107e72c1376f4de37389945d2fb4656f8060eca83f01d2d703f9d1b925dd8f39852a57034fafefde6225409ddd9f22aebfda16c6141b71858 + version: 1.10.3 + resolution: "yaml@npm:1.10.3" + checksum: 10c0/c309ff85a0a569a981d71ab9cf0fef68672a16b9cdf40639d1c3b30034f6cd16ee428602bd6d64ecf006f8c8bee499023cac236538f79898aa99fb5db529a2ed languageName: node linkType: hard -"yaml@npm:^2.8.3": - version: 2.8.3 - resolution: "yaml@npm:2.8.3" +"yaml@npm:^2.2.2, yaml@npm:^2.8.3": + version: 2.9.0 + resolution: "yaml@npm:2.9.0" bin: yaml: bin.mjs - checksum: 10c0/ddff0e11c1b467728d7eb4633db61c5f5de3d8e9373cf84d08fb0cdee03e1f58f02b9f1c51a4a8a865751695addbd465a77f73f1079be91fe5493b29c305fd77 + checksum: 10c0/f340718df45e97a9551b9bf9dac61c80050bc464513b710debfb5067c380c8472e3b67809cffacb4ab5ffb5e66ef9310816c88b05f371cec60abfedd8c88e0a2 languageName: node linkType: hard @@ -15318,7 +14476,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:17.7.2, yargs@npm:^17.1.1, yargs@npm:^17.4.1, yargs@npm:^17.7.2": +"yargs@npm:17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: @@ -15353,8 +14511,8 @@ __metadata: linkType: hard "yargs@npm:^16.1.0, yargs@npm:^16.2.0": - version: 16.2.0 - resolution: "yargs@npm:16.2.0" + version: 16.2.2 + resolution: "yargs@npm:16.2.2" dependencies: cliui: "npm:^7.0.2" escalade: "npm:^3.1.1" @@ -15363,7 +14521,22 @@ __metadata: string-width: "npm:^4.2.0" y18n: "npm:^5.0.5" yargs-parser: "npm:^20.2.2" - checksum: 10c0/b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 + checksum: 10c0/1ca2152581ee7c9c9fb4174767ff7294b1c272d2d0a1f6eb13c39ce177fded85eb9c96711e00cd7913c0a9b88b6e763713ee11cae81b9b62fd97bdd0b03d5549 + languageName: node + linkType: hard + +"yargs@npm:^17.4.1, yargs@npm:^17.7.2": + version: 17.7.3 + resolution: "yargs@npm:17.7.3" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/7a28572f7e785a57886e34fdbddb9b28756dec552e1453d5f6e7cdd00ad8721a4e8c4321d33683f5e61cacb36ad43258adbb48396b71ec4ed14abee0fc0d0c1f languageName: node linkType: hard @@ -15396,23 +14569,23 @@ __metadata: linkType: hard "zarrita@npm:^0.7.1": - version: 0.7.1 - resolution: "zarrita@npm:0.7.1" + version: 0.7.3 + resolution: "zarrita@npm:0.7.3" dependencies: "@zarrita/storage": "npm:^0.2.0" numcodecs: "npm:^0.3.2" - checksum: 10c0/f82f5710ff7a5594e02f50a3519a3a03eaba5395c0c546cdf9066a72c43442443191708835749917bd603e61062cf555fba3f0960ba3fc1c703aa76ed4ff7b9b + checksum: 10c0/97ad16f900a190f14872582d03c75da26a77ae925aa57dcc5dcdb04216ecd25383c46e78947d503bb9e0857e69d9c4018c2489b3d8d8f312e69eec924d2393de languageName: node linkType: hard -"zip-stream@npm:^6.0.1": - version: 6.0.1 - resolution: "zip-stream@npm:6.0.1" +"zip-stream@npm:^7.0.2": + version: 7.0.5 + resolution: "zip-stream@npm:7.0.5" dependencies: - archiver-utils: "npm:^5.0.0" - compress-commons: "npm:^6.0.2" + compress-commons: "npm:^7.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/50f2fb30327fb9d09879abf7ae2493705313adf403e794b030151aaae00009162419d60d0519e807673ec04d442e140c8879ca14314df0a0192de3b233e8f28b + checksum: 10c0/e1669e17031c3c7243cb9014eacfaa66f4cd2e0d613a57dbee9caf7122ae869f8b2ea2e5891b5d9eee2897060c01db048b9b2a544ba83e227f6c162905282e48 languageName: node linkType: hard @@ -15426,9 +14599,9 @@ __metadata: linkType: hard "zod@npm:^3.25 || ^4.0": - version: 4.3.6 - resolution: "zod@npm:4.3.6" - checksum: 10c0/860d25a81ab41d33aa25f8d0d07b091a04acb426e605f396227a796e9e800c44723ed96d0f53a512b57be3d1520f45bf69c0cb3b378a232a00787a2609625307 + version: 4.4.3 + resolution: "zod@npm:4.4.3" + checksum: 10c0/7ea31b558e88f9faf44f31dd185e2e1cbf51fed3081787fb96cc2534749b50c0acfc6da7f0922a7353ed092dd358c7d50c28ea96c94d04af64191bd33152eca3 languageName: node linkType: hard
{children}
This story (and all sibling stories) showcases the map viewer component and other components that depend or interact with map viewer state @@ -87,12 +87,12 @@ export const MapViewer = () => { export const TaskPane = () => ; export const MouseCoordinates = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + Mouse Coordinates - + Move the mouse around the map and its geographic coordinates should be shown below @@ -103,12 +103,12 @@ export const MouseCoordinates = () => { }; export const ViewSize = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + View Size - + Zoom in or out of the map. The physical map size should be shown below @@ -118,13 +118,12 @@ export const ViewSize = () => { }; export const ScaleDisplay = () => { - const { Card } = useElementContext(); - return - <> + const { Card, Heading } = useElementContext(); + return <> - + Scale Display - + Zoom in or out of the map. The map scale should be shown below diff --git a/src/stories/mapguide.stories.tsx b/src/stories/mapguide.stories.tsx index ff6bbe7d..2cc094ef 100644 --- a/src/stories/mapguide.stories.tsx +++ b/src/stories/mapguide.stories.tsx @@ -40,12 +40,12 @@ export const LegendWithBaseLayerSwitcher = { }; export const SelectedFeatureCount = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + Selected Feature Count - + Click the test select button to simulate a map selection request. The selection count should display below diff --git a/src/styles/index.css b/src/styles/index.css index 760ba49b..a7d75e5f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -2,11 +2,6 @@ @import "../../stdassets/sprites/icons.css"; @import "./splitter-layout.css"; -/* HACK: Clear out any trace of the font icon as HTMLSelect should be using the SVG counterpart */ -.bp3-select:after { - content: ""; -} - .legend-label-highlight-text { background-color: yellow; } @@ -19,6 +14,10 @@ background-color: white; } +.map-viewer-component:focus { + outline: none; +} + .map-viewer-component .ol-overlaycontainer, .map-viewer-component .ol-overlaycontainer-stopevent { z-index: 20; @@ -520,10 +519,6 @@ div.InfoText { word-wrap: break-word; } -.bp3-dark { - background-color: #30404d; -} - .colorpicker { position: relative; width: 100%; diff --git a/stdassets/bp-icons.js b/stdassets/bp-icons.js deleted file mode 100644 index ce4d1f82..00000000 --- a/stdassets/bp-icons.js +++ /dev/null @@ -1,121 +0,0 @@ -/** - * bp-icons.js - * - * A verbatim subset of the Blueprint.js SVG icon set that we actually use - * - * All usages of the BP icon set will be replaced with this via - * bundler aliasing in the build config - * - * When adding icons, copy the relevant icon path definitions from - * node_modules/@blueprintjs/icons/src/generated/iconSvgPaths.ts - */ - -//TODO/FIXME: This module is not used directly by sources, so changes to -//this file may not trigger a rebuild. If making changes, you may -//have to restart the current build process. - -export const IconSvgPaths16 = { - "arrow-left": ["M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z"], - "arrow-right": ["M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"], - "arrows-horizontal": ["M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z"], - "caret-up": ["M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z"], - "chevron-down": ["M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z"], - "chevron-right": ["M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "cog": ["M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"], - "comment": ["M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z"], - "comparison": ["M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z"], - "delete": ["M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z"], - "disable": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z"], - "double-caret-vertical": ["M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"], - "edit": ["M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z"], - "error": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z"], - "folder-close": ["M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z"], - "hand": ["M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z"], - "home": ["M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z"], - "issue": ["M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z"], - "layer": ["M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z"], - "layers": ["M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z"], - "map": ["M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z"], - "media": ["M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z"], - "menu-closed": ["M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z"], - "minus": ["M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z"], - "new-layer": ["M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z"], - "path-search": ["M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z"], - "play": ["M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z"], - "plus": ["M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z"], - "properties": ["M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"], - "search": ["M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"], - "select": ["M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z"], - "small-cross": ["M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "stop": ["M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z"], - "th": ["M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z"], - "tick": ["M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z"], - "trash": ["M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z"], - "upload": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z"], - "warning-sign": ["M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z"], - "zoom-to-fit": ["M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z"] -} - -export const IconSvgPaths20 = { - "arrow-left": ["M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z"], - "arrow-right": ["M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "arrows-horizontal": ["M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z"], - "caret-up": ["M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z"], - "chevron-down": ["M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z"], - "chevron-right": ["M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "cog": ["M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "comment": ["M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"], - "comparison": ["M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z"], - "delete": ["M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"], - "disable": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z"], - "double-caret-vertical": ["M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z"], - "edit": ["M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z"], - "error": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z"], - "folder-close": ["M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z"], - "hand": ["M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z"], - "home": ["M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z"], - "issue": ["M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z"], - "layer": ["M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z"], - "layers": ["M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z", -"M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", -"M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z"], - "map": ["M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z"], - "media": ["M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z"], - "menu-closed": ["M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "minus": ["M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z"], - "new-layer": ["M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z"], - "path-search": ["M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "play": ["M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z"], - "plus": ["M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z"], - "properties": ["M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "select": ["M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z"], - "search": ["M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"], - "small-cross": ["M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "stop": ["M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z"], - "th": ["M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z"], - "tick": ["M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z"], - "trash": ["M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z"], - "upload": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z"], - "warning-sign": ["M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z"], - "zoom-to-fit": ["M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z"] -} \ No newline at end of file diff --git a/test/components/map-load-indicator.spec.tsx b/test/components/map-load-indicator.spec.tsx index f208ca96..9576724a 100644 --- a/test/components/map-load-indicator.spec.tsx +++ b/test/components/map-load-indicator.spec.tsx @@ -16,7 +16,7 @@ describe("MapLoadIndicator", () => { const { container } = render(); const div = container.firstChild as HTMLDivElement; expect(div).toBeInTheDocument(); - expect(div.style.width).toBe("50.0%"); + expect(div.style.width).toBe("50%"); expect(div.style.background).toBe("rgb(255, 0, 0)"); // #ff0000 in rgb expect(div.style.visibility).toBe("visible"); expect(div.style.position).toBe("absolute"); @@ -61,7 +61,7 @@ describe("MapLoadIndicator", () => { const props = { ...baseProps, loaded: 0, loading: 10 }; const { container } = render(); const div = container.firstChild as HTMLDivElement; - expect(div.style.width).toBe("0.0%"); + expect(div.style.width).toBe("0%"); expect(div.style.visibility).toBe("visible"); }); }); \ No newline at end of file diff --git a/test/containers/add-manage-layers.spec.tsx b/test/containers/add-manage-layers.spec.tsx index 32a0570c..cb85b2b6 100644 --- a/test/containers/add-manage-layers.spec.tsx +++ b/test/containers/add-manage-layers.spec.tsx @@ -31,8 +31,8 @@ import { AddManageLayersContainer } from "../../src/containers/add-manage-layers import { tr } from "../../src/api/i18n"; // --------------------------------------------------------------------------- -// Mock element-context so that Blueprint components are replaced with simple -// HTML elements that work in jsdom without any Blueprint CSS / portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without any external CSS / portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ diff --git a/test/containers/measure.spec.tsx b/test/containers/measure.spec.tsx index 95cef2c7..233d35e6 100644 --- a/test/containers/measure.spec.tsx +++ b/test/containers/measure.spec.tsx @@ -75,6 +75,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ Callout: ({ children }: React.PropsWithChildren<{}>) => {children}, Button: ({ children, onClick, disabled }: any) => {children}, HtmlTable: ({ children }: React.PropsWithChildren<{}>) => {children}, + FormGroup: ({ children }: React.PropsWithChildren<{}>) => {children}, }), })); diff --git a/test/containers/selection-panel.spec.tsx b/test/containers/selection-panel.spec.tsx index ed7f002b..2c03cae7 100644 --- a/test/containers/selection-panel.spec.tsx +++ b/test/containers/selection-panel.spec.tsx @@ -31,8 +31,8 @@ import { tr } from "../../src/api/i18n"; import { createSelectionSet, createClientSelectionSet } from "../../test-data"; // --------------------------------------------------------------------------- -// Mock element-context so Blueprint components are replaced with simple HTML -// elements that work in jsdom without Blueprint CSS/portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without external CSS/portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ @@ -71,7 +71,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ })); // --------------------------------------------------------------------------- -// Mock the SelectionPanel component to avoid deep OL / Blueprint dependencies. +// Mock the SelectionPanel component to avoid deep OL dependencies. // Renders a sentinel element so tests can verify it is rendered vs. not, and // exposes a "Show Feature" button so tests can trigger onShowSelectedFeature. // --------------------------------------------------------------------------- diff --git a/viewer/css/limegold.css b/viewer/css/limegold.css index 86471a54..4c6091aa 100644 --- a/viewer/css/limegold.css +++ b/viewer/css/limegold.css @@ -40,13 +40,10 @@ .limegold-status-bar { background: #FFFEBE; } -.bp3-tab[aria-selected="true"], .bp3-tab:not([aria-disabled="true"]):hover { +.mrl-tab--active, .mrl-tab:hover:not(.mrl-tab--active) { color: black; } -.bp3-tab-indicator-wrapper .bp3-tab-indicator { - background-color: black; -} -.limegold-sidebar-tabs > .bp3-tab-list { +.limegold-sidebar-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f48000+0,fabb00+100 */ background: #f48000; /* Old browsers */ diff --git a/viewer/css/turquoise-yellow.css b/viewer/css/turquoise-yellow.css index 5baa31b9..74893293 100644 --- a/viewer/css/turquoise-yellow.css +++ b/viewer/css/turquoise-yellow.css @@ -67,7 +67,7 @@ .turquoise-yellow-splitter > .layout-splitter { background-color: #578bad; } -.turquoise-yellow-sb-tabs > .bp3-tab-list { +.turquoise-yellow-sb-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#faea98+0,fefcea+100 */ background: #faea98; /* Old browsers */ @@ -76,6 +76,6 @@ background: linear-gradient(to bottom, #faea98 0%,#fefcea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faea98', endColorstr='#fefcea',GradientType=0 ); /* IE6-9 */ } -.turquoise-yellow-sb-tabs > .bp3-tab-list > .bp3-tab { +.turquoise-yellow-sb-tabs > .mrl-tab-list > .mrl-tab { color: #11449E; } \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index b9dc7d31..f6649fb3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -14,8 +14,7 @@ const getBuildMetadata = () => ({ __VERSION__: JSON.stringify(process.env.APPVEYOR_BUILD_VERSION || ""), __COMMITHASH__: JSON.stringify(process.env.APPVEYOR_REPO_COMMIT || ""), __BRANCH__: JSON.stringify(process.env.APPVEYOR_REPO_BRANCH || "master"), - "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development"), - "process.env.BLUEPRINT_NAMESPACE": JSON.stringify("bp3") + "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development") }); const getAssetFileName = (assetInfo: IAssetFileInfo, isDebugBuild: boolean) => { @@ -256,12 +255,6 @@ const config = async ({ mode }: { mode: string }) => { __DEV__: JSON.stringify(!isProduction) }, resolve: { - alias: [ - { - find: /.*\/generated\/iconSvgPaths.*/, - replacement: path.resolve(__dirname, "stdassets/bp-icons.js") - } - ] }, build: { target: "es2015", diff --git a/yarn.lock b/yarn.lock index 6671b300..81391bef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,9 +6,9 @@ __metadata: cacheKey: 10c0 "@adobe/css-tools@npm:^4.4.0": - version: 4.4.3 - resolution: "@adobe/css-tools@npm:4.4.3" - checksum: 10c0/6d16c4d4b6752d73becf6e58611f893c7ed96e04017ff7084310901ccdbe0295171b722b158f6a2b0aa77182ef3446ffd62b39488fa5a7adab1f0dfe5ffafbae + version: 4.5.0 + resolution: "@adobe/css-tools@npm:4.5.0" + checksum: 10c0/fc969e1117098eb4cccdb73beb2508daa0e52760af1183d6288bafea59204943490ab3ede28593032ffb8929c0cee270b2a53254fe61139ab00604ea8fc33cea languageName: node linkType: hard @@ -22,7 +22,7 @@ __metadata: languageName: node linkType: hard -"@asamuzakjp/css-color@npm:^3.1.2": +"@asamuzakjp/css-color@npm:^3.2.0": version: 3.2.0 resolution: "@asamuzakjp/css-color@npm:3.2.0" dependencies: @@ -44,29 +44,7 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/code-frame@npm:7.27.1" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.27.1" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00 - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.28.6": - version: 7.29.0 - resolution: "@babel/code-frame@npm:7.29.0" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.28.5" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.29.7": +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.29.7": version: 7.29.7 resolution: "@babel/code-frame@npm:7.29.7" dependencies: @@ -107,33 +85,7 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5": - version: 7.29.1 - resolution: "@babel/generator@npm:7.29.1" - dependencies: - "@babel/parser": "npm:^7.29.0" - "@babel/types": "npm:^7.29.0" - "@jridgewell/gen-mapping": "npm:^0.3.12" - "@jridgewell/trace-mapping": "npm:^0.3.28" - jsesc: "npm:^3.0.2" - checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/generator@npm:7.27.1" - dependencies: - "@babel/parser": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" - jsesc: "npm:^3.0.2" - checksum: 10c0/c4156434b21818f558ebd93ce45f027c53ee570ce55a84fd2d9ba45a79ad204c17e0bff753c886fb6c07df3385445a9e34dc7ccb070d0ac7e80bb91c8b57f423 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.29.7": +"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5, @babel/generator@npm:^7.29.7": version: 7.29.7 resolution: "@babel/generator@npm:7.29.7" dependencies: @@ -166,17 +118,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.16.7": - version: 7.27.1 - resolution: "@babel/helper-module-imports@npm:7.27.1" - dependencies: - "@babel/traverse": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8 - languageName: node - linkType: hard - -"@babel/helper-module-imports@npm:^7.29.7": +"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-module-imports@npm:7.29.7" dependencies: @@ -199,17 +141,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.8.0": - version: 7.28.6 - resolution: "@babel/helper-plugin-utils@npm:7.28.6" - checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-string-parser@npm:7.27.1" - checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.29.7, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.29.7 + resolution: "@babel/helper-plugin-utils@npm:7.29.7" + checksum: 10c0/380477a06133274a2759f9355929cb60a95e8b8fee624a1ae1fa349e1d1645b89daca456f72833f6d1062bffa12ee4271c5bf0cc5a61c0166cdc24c7591e2408 languageName: node linkType: hard @@ -220,21 +155,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-validator-identifier@npm:7.27.1" - checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/helper-validator-identifier@npm:7.28.5" - checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.29.7": +"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-validator-identifier@npm:7.29.7" checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b @@ -270,29 +191,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/parser@npm:7.27.2" - dependencies: - "@babel/types": "npm:^7.27.1" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": - version: 7.29.2 - resolution: "@babel/parser@npm:7.29.2" - dependencies: - "@babel/types": "npm:^7.29.0" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/e5a4e69e3ac7acdde995f37cf299a68458cfe7009dff66bd0962fd04920bef287201169006af365af479c08ff216bfefbb595e331f87f6ae7283858aebbc3317 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.29.7": +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.29.7": version: 7.29.7 resolution: "@babel/parser@npm:7.29.7" dependencies: @@ -348,13 +247,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-import-attributes@npm:^7.24.7": - version: 7.28.6 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/1be160e2c426faa74e5be2e30e39e8d0d8c543063bd5d06cd804f8751b8fbcb82ce824ca7f9ce4b09c003693f6c06a11ce503b7e34d85e1a259631e4c3f72ad2 + checksum: 10c0/b9a47e869d8c06676297069895ae34e2bd244ec4c3bdf15002f1e69aed32eef0361044af22a43f271b8de5e23a40534fe6a74a63e7ab98e3d60a74b322444b49 languageName: node linkType: hard @@ -381,13 +280,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-jsx@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-jsx@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b98fc3cd75e4ca3d5ca1162f610c286e14ede1486e0d297c13a5eb0ac85680ac9656d17d348bddd9160a54d797a08cea5eaac02b9330ddebb7b26732b7b99fb5 + checksum: 10c0/1736000de183538ba8eef34520105508860e48b0c763254ba9158af5e814ed8bbceeedbb4281fbda33de787ae5b3870e92f60c6ae7131e7d322e451d57387896 languageName: node linkType: hard @@ -480,67 +379,24 @@ __metadata: linkType: hard "@babel/plugin-syntax-typescript@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-typescript@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-typescript@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b0c392a35624883ac480277401ac7d92d8646b66e33639f5d350de7a6723924265985ae11ab9ebd551740ded261c443eaa9a87ea19def9763ca1e0d78c97dea8 + checksum: 10c0/c49883b0327e8683b770dc823205af5c697da216e590dcf5bf53f3f031e7e381de450b164f8f99853f0837a3de5cb793298e2be6697a0f6e452bb9dd34b5165e languageName: node linkType: hard -"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8": - version: 7.27.1 - resolution: "@babel/runtime@npm:7.27.1" - checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": - version: 7.27.3 - resolution: "@babel/runtime@npm:7.27.3" - checksum: 10c0/b860fe374a36fddbeeb238e52e59443abcacc046eebda1bf278bffbc67b5c8f713b939e09c126b086ca5f97cba1987ea17fd1737568bc50fedb1f6ef1cf46f69 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.1": - version: 7.29.2 - resolution: "@babel/runtime@npm:7.29.2" - checksum: 10c0/30b80a0140d16467792e1bbeb06f655b0dab70407da38dfac7fedae9c859f9ae9d846ef14ad77bd3814c064295fe9b1bc551f1541ea14646ae9f22b71a8bc17a - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.28.6": +"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.28.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": version: 7.29.7 resolution: "@babel/runtime@npm:7.29.7" checksum: 10c0/ca11572f7146b21e0bde6a9ed4bb6a89eafbee5f0944c7eb54d0d8a2dac962c33638a1d611e14faa71dfbb92b4b5f9236232208568a6b7d5c6f3f39ddb91771e languageName: node linkType: hard -"@babel/template@npm:^7.22.5": - version: 7.28.6 - resolution: "@babel/template@npm:7.28.6" - dependencies: - "@babel/code-frame": "npm:^7.28.6" - "@babel/parser": "npm:^7.28.6" - "@babel/types": "npm:^7.28.6" - checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5 - languageName: node - linkType: hard - -"@babel/template@npm:^7.27.1": - version: 7.27.2 - resolution: "@babel/template@npm:7.27.2" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.2" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81 - languageName: node - linkType: hard - -"@babel/template@npm:^7.29.7": +"@babel/template@npm:^7.22.5, @babel/template@npm:^7.29.7": version: 7.29.7 resolution: "@babel/template@npm:7.29.7" dependencies: @@ -551,22 +407,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/traverse@npm:7.27.1" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: 10c0/d912110037b03b1d70a2436cfd51316d930366a5f54252da2bced1ba38642f644f848240a951e5caf12f1ef6c40d3d96baa92ea6e84800f2e891c15e97b25d50 - languageName: node - linkType: hard - -"@babel/traverse@npm:^7.29.7": +"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.29.7": version: 7.29.7 resolution: "@babel/traverse@npm:7.29.7" dependencies: @@ -581,27 +422,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/types@npm:7.27.1" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10c0/ed736f14db2fdf0d36c539c8e06b6bb5e8f9649a12b5c0e1c516fed827f27ef35085abe08bf4d1302a4e20c9a254e762eed453bce659786d4a6e01ba26a91377 - languageName: node - linkType: hard - -"@babel/types@npm:^7.22.5, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": - version: 7.29.0 - resolution: "@babel/types@npm:7.29.0" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.28.5" - checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f - languageName: node - linkType: hard - -"@babel/types@npm:^7.29.7": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.29.7": version: 7.29.7 resolution: "@babel/types@npm:7.29.7" dependencies: @@ -625,51 +446,6 @@ __metadata: languageName: node linkType: hard -"@blueprintjs/colors@npm:^4.0.0-alpha.3": - version: 4.2.1 - resolution: "@blueprintjs/colors@npm:4.2.1" - dependencies: - tslib: "npm:~2.5.0" - checksum: 10c0/3a95ebfb1dc3c7c299845ac473ffa0f58e5212e5ba5cad072196aadbadfc27393cf16efda7aba2df1ba29703c05851cf5f84896f4172d484230fe68861621f97 - languageName: node - linkType: hard - -"@blueprintjs/core@npm:^3.54.0": - version: 3.54.0 - resolution: "@blueprintjs/core@npm:3.54.0" - dependencies: - "@blueprintjs/colors": "npm:^4.0.0-alpha.3" - "@blueprintjs/icons": "npm:^3.33.0" - "@juggle/resize-observer": "npm:^3.3.1" - "@types/dom4": "npm:^2.0.1" - classnames: "npm:^2.2" - dom4: "npm:^2.1.5" - normalize.css: "npm:^8.0.1" - popper.js: "npm:^1.16.1" - react-lifecycles-compat: "npm:^3.0.4" - react-popper: "npm:^1.3.7" - react-transition-group: "npm:^2.9.0" - tslib: "npm:~2.3.1" - peerDependencies: - react: ^15.3.0 || 16 || 17 - react-dom: ^15.3.0 || 16 || 17 - bin: - upgrade-blueprint-2.0.0-rename: scripts/upgrade-blueprint-2.0.0-rename.sh - upgrade-blueprint-3.0.0-rename: scripts/upgrade-blueprint-3.0.0-rename.sh - checksum: 10c0/2d32339085f237edbfe105c56a464a9fd408d3fcc9a113b32fac4cbe3673e109a1a15968ce3c1a9feb406a3264e680967591f7def374f5a218e991a12373abe9 - languageName: node - linkType: hard - -"@blueprintjs/icons@npm:^3.33.0": - version: 3.33.0 - resolution: "@blueprintjs/icons@npm:3.33.0" - dependencies: - classnames: "npm:^2.2" - tslib: "npm:~2.3.1" - checksum: 10c0/030bdc77791b2d5287c8f046cb416d419d1204953ed84526c0a220b39bcc5acbaa04b2af9f8dbdcbb8189dab72b3c8b8c2df8bbc50af57ec510d0e705c0b01b9 - languageName: node - linkType: hard - "@cspotcode/source-map-support@npm:^0.8.0": version: 0.8.1 resolution: "@cspotcode/source-map-support@npm:0.8.1" @@ -679,49 +455,59 @@ __metadata: languageName: node linkType: hard -"@csstools/color-helpers@npm:^5.0.2": - version: 5.0.2 - resolution: "@csstools/color-helpers@npm:5.0.2" - checksum: 10c0/bebaddb28b9eb58b0449edd5d0c0318fa88f3cb079602ee27e88c9118070d666dcc4e09a5aa936aba2fde6ba419922ade07b7b506af97dd7051abd08dfb2959b +"@csstools/color-helpers@npm:^5.1.0": + version: 5.1.0 + resolution: "@csstools/color-helpers@npm:5.1.0" + checksum: 10c0/b7f99d2e455cf1c9b41a67a5327d5d02888cd5c8802a68b1887dffef537d9d4bc66b3c10c1e62b40bbed638b6c1d60b85a232f904ed7b39809c4029cb36567db languageName: node linkType: hard -"@csstools/css-calc@npm:^2.1.3": - version: 2.1.3 - resolution: "@csstools/css-calc@npm:2.1.3" +"@csstools/css-calc@npm:^2.1.3, @csstools/css-calc@npm:^2.1.4": + version: 2.1.4 + resolution: "@csstools/css-calc@npm:2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/85f5b4f96d60f395d5f0108056b0ddee037b22d6deba448d74324b50f1c554de284f84715ebfac7b2888b78e09d20d02a7cd213ee7bdaa71011ea9b4eee3a251 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/42ce5793e55ec4d772083808a11e9fb2dfe36db3ec168713069a276b4c3882205b3507c4680224c28a5d35fe0bc2d308c77f8f2c39c7c09aad8747708eb8ddd8 languageName: node linkType: hard "@csstools/css-color-parser@npm:^3.0.9": - version: 3.0.9 - resolution: "@csstools/css-color-parser@npm:3.0.9" + version: 3.1.0 + resolution: "@csstools/css-color-parser@npm:3.1.0" dependencies: - "@csstools/color-helpers": "npm:^5.0.2" - "@csstools/css-calc": "npm:^2.1.3" + "@csstools/color-helpers": "npm:^5.1.0" + "@csstools/css-calc": "npm:^2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/acc026a6bd6d8c4c641fa5f9b4d77cd5dfa54c57c3278ae52329d96b5837723428dcb93c34db4062bbea2f45a98451119df06eaf39fd196aaf6368c59d799f20 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/0e0c670ad54ec8ec4d9b07568b80defd83b9482191f5e8ca84ab546b7be6db5d7cc2ba7ac9fae54488b129a4be235d6183d3aab4416fec5e89351f73af4222c5 languageName: node linkType: hard "@csstools/css-parser-algorithms@npm:^3.0.4": - version: 3.0.4 - resolution: "@csstools/css-parser-algorithms@npm:3.0.4" + version: 3.0.5 + resolution: "@csstools/css-parser-algorithms@npm:3.0.5" peerDependencies: - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/d411f07765e14eede17bccc6bd4f90ff303694df09aabfede3fd104b2dfacfd4fe3697cd25ddad14684c850328f3f9420ebfa9f78380892492974db24ae47dbd + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/d9a1c888bd43849ae3437ca39251d5c95d2c8fd6b5ccdb7c45491dfd2c1cbdc3075645e80901d120e4d2c1993db9a5b2d83793b779dbbabcfb132adb142eb7f7 languageName: node linkType: hard "@csstools/css-tokenizer@npm:^3.0.3": - version: 3.0.3 - resolution: "@csstools/css-tokenizer@npm:3.0.3" - checksum: 10c0/c31bf410e1244b942e71798e37c54639d040cb59e0121b21712b40015fced2b0fb1ffe588434c5f8923c9cd0017cfc1c1c8f3921abc94c96edf471aac2eba5e5 + version: 3.0.4 + resolution: "@csstools/css-tokenizer@npm:3.0.4" + checksum: 10c0/3b589f8e9942075a642213b389bab75a2d50d05d203727fcdac6827648a5572674caff07907eff3f9a2389d86a4ee47308fafe4f8588f4a77b7167c588d2559f + languageName: node + linkType: hard + +"@emnapi/core@npm:1.10.0": + version: 1.10.0 + resolution: "@emnapi/core@npm:1.10.0" + dependencies: + "@emnapi/wasi-threads": "npm:1.2.1" + tslib: "npm:^2.4.0" + checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb languageName: node linkType: hard @@ -735,13 +521,12 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.4.3": +"@emnapi/runtime@npm:1.10.0": version: 1.10.0 - resolution: "@emnapi/core@npm:1.10.0" + resolution: "@emnapi/runtime@npm:1.10.0" dependencies: - "@emnapi/wasi-threads": "npm:1.2.1" tslib: "npm:^2.4.0" - checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb + checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 languageName: node linkType: hard @@ -754,15 +539,6 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.3": - version: 1.10.0 - resolution: "@emnapi/runtime@npm:1.10.0" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 - languageName: node - linkType: hard - "@emnapi/wasi-threads@npm:1.2.1": version: 1.2.1 resolution: "@emnapi/wasi-threads@npm:1.2.1" @@ -905,378 +681,385 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/aix-ppc64@npm:0.25.4" +"@esbuild/aix-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/aix-ppc64@npm:0.25.12" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/aix-ppc64@npm:0.27.7" +"@esbuild/aix-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/aix-ppc64@npm:0.28.1" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm64@npm:0.25.4" +"@esbuild/android-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm64@npm:0.25.12" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm64@npm:0.27.7" +"@esbuild/android-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm64@npm:0.28.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm@npm:0.25.4" +"@esbuild/android-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm@npm:0.25.12" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm@npm:0.27.7" +"@esbuild/android-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm@npm:0.28.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-x64@npm:0.25.4" +"@esbuild/android-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-x64@npm:0.25.12" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-x64@npm:0.27.7" +"@esbuild/android-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-x64@npm:0.28.1" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-arm64@npm:0.25.4" +"@esbuild/darwin-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-arm64@npm:0.25.12" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-arm64@npm:0.27.7" +"@esbuild/darwin-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-arm64@npm:0.28.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-x64@npm:0.25.4" +"@esbuild/darwin-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-x64@npm:0.25.12" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-x64@npm:0.27.7" +"@esbuild/darwin-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-x64@npm:0.28.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-arm64@npm:0.25.4" +"@esbuild/freebsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-arm64@npm:0.25.12" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-arm64@npm:0.27.7" +"@esbuild/freebsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-arm64@npm:0.28.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-x64@npm:0.25.4" +"@esbuild/freebsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-x64@npm:0.25.12" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-x64@npm:0.27.7" +"@esbuild/freebsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-x64@npm:0.28.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm64@npm:0.25.4" +"@esbuild/linux-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm64@npm:0.25.12" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm64@npm:0.27.7" +"@esbuild/linux-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm64@npm:0.28.1" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm@npm:0.25.4" +"@esbuild/linux-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm@npm:0.25.12" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm@npm:0.27.7" +"@esbuild/linux-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm@npm:0.28.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ia32@npm:0.25.4" +"@esbuild/linux-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ia32@npm:0.25.12" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ia32@npm:0.27.7" +"@esbuild/linux-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ia32@npm:0.28.1" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-loong64@npm:0.25.4" +"@esbuild/linux-loong64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-loong64@npm:0.25.12" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-loong64@npm:0.27.7" +"@esbuild/linux-loong64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-loong64@npm:0.28.1" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-mips64el@npm:0.25.4" +"@esbuild/linux-mips64el@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-mips64el@npm:0.25.12" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-mips64el@npm:0.27.7" +"@esbuild/linux-mips64el@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-mips64el@npm:0.28.1" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ppc64@npm:0.25.4" +"@esbuild/linux-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ppc64@npm:0.25.12" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ppc64@npm:0.27.7" +"@esbuild/linux-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ppc64@npm:0.28.1" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-riscv64@npm:0.25.4" +"@esbuild/linux-riscv64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-riscv64@npm:0.25.12" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-riscv64@npm:0.27.7" +"@esbuild/linux-riscv64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-riscv64@npm:0.28.1" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-s390x@npm:0.25.4" +"@esbuild/linux-s390x@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-s390x@npm:0.25.12" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-s390x@npm:0.27.7" +"@esbuild/linux-s390x@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-s390x@npm:0.28.1" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-x64@npm:0.25.4" +"@esbuild/linux-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-x64@npm:0.25.12" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-x64@npm:0.27.7" +"@esbuild/linux-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-x64@npm:0.28.1" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-arm64@npm:0.25.4" +"@esbuild/netbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-arm64@npm:0.25.12" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-arm64@npm:0.27.7" +"@esbuild/netbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-arm64@npm:0.28.1" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-x64@npm:0.25.4" +"@esbuild/netbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-x64@npm:0.25.12" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-x64@npm:0.27.7" +"@esbuild/netbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-x64@npm:0.28.1" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-arm64@npm:0.25.4" +"@esbuild/openbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-arm64@npm:0.25.12" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-arm64@npm:0.27.7" +"@esbuild/openbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-arm64@npm:0.28.1" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-x64@npm:0.25.4" +"@esbuild/openbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-x64@npm:0.25.12" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-x64@npm:0.27.7" +"@esbuild/openbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-x64@npm:0.28.1" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openharmony-arm64@npm:0.27.7" +"@esbuild/openharmony-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openharmony-arm64@npm:0.25.12" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/sunos-x64@npm:0.25.4" +"@esbuild/openharmony-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openharmony-arm64@npm:0.28.1" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/sunos-x64@npm:0.25.12" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/sunos-x64@npm:0.27.7" +"@esbuild/sunos-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/sunos-x64@npm:0.28.1" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-arm64@npm:0.25.4" +"@esbuild/win32-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-arm64@npm:0.25.12" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-arm64@npm:0.27.7" +"@esbuild/win32-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-arm64@npm:0.28.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-ia32@npm:0.25.4" +"@esbuild/win32-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-ia32@npm:0.25.12" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-ia32@npm:0.27.7" +"@esbuild/win32-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-ia32@npm:0.28.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-x64@npm:0.25.4" +"@esbuild/win32-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-x64@npm:0.25.12" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-x64@npm:0.27.7" +"@esbuild/win32-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-x64@npm:0.28.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.7.0 - resolution: "@eslint-community/eslint-utils@npm:4.7.0" + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/c0f4f2bd73b7b7a9de74b716a664873d08ab71ab439e51befe77d61915af41a81ecec93b408778b3a7856185244c34c2c8ee28912072ec14def84ba2dec70adf + checksum: 10c0/dc4ab5e3e364ef27e33666b11f4b86e1a6c1d7cbf16f0c6ff87b1619b3562335e9201a3d6ce806221887ff780ec9d828962a290bb910759fd40a674686503f02 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.12.1 - resolution: "@eslint-community/regexpp@npm:4.12.1" - checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 + version: 4.12.2 + resolution: "@eslint-community/regexpp@npm:4.12.2" + checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d languageName: node linkType: hard @@ -1321,36 +1104,29 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.7.0": - version: 1.7.0 - resolution: "@floating-ui/core@npm:1.7.0" +"@floating-ui/core@npm:^1.8.0": + version: 1.8.0 + resolution: "@floating-ui/core@npm:1.8.0" dependencies: - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/f7e66a650ad8c73765edb39a7530d81fa990c08c172f03b6129030234d32bccd4401c29ded9c8a4e4135e9beac349c5608d94962fa08c2a2ae2dab7a6530550c + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/cece958f6fab0f8cd7740cd57988c4f8bc5356dca39dd4c093433d44c91952c3a02c7a54d93d7ed6c078b6544d531a29f66621d2839c8bfbb4467dca6aed7df0 languageName: node linkType: hard "@floating-ui/dom@npm:^1.0.1": - version: 1.7.0 - resolution: "@floating-ui/dom@npm:1.7.0" + version: 1.8.0 + resolution: "@floating-ui/dom@npm:1.8.0" dependencies: - "@floating-ui/core": "npm:^1.7.0" - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/49a7f0fbef82ba2c2f0bde7bb4812b276ae431b59e6a81427283a55cfb36c0af9cc459cbeb0bb1a5cc3efca1a332f584e123e7b1a8f0a9c94a21989b09b8c060 + "@floating-ui/core": "npm:^1.8.0" + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/c32b2de7a596b69cfffa909c7028825e14f6319be1b45da529f8943c89fe16b75a49c214e800c87ded3f172353d3b99163d50072f11410488e756961b7b629cc languageName: node linkType: hard -"@floating-ui/utils@npm:^0.2.9": - version: 0.2.9 - resolution: "@floating-ui/utils@npm:0.2.9" - checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f - languageName: node - linkType: hard - -"@gar/promise-retry@npm:^1.0.0": - version: 1.0.3 - resolution: "@gar/promise-retry@npm:1.0.3" - checksum: 10c0/885b02c8b0d75b2d215da25f3b639158c4fbe8fefe0d79163304534b9a6d0710db4b7699f7cd3cc1a730792bff04cbe19f4850a62d3e105a663eaeec88f38332 +"@floating-ui/utils@npm:^0.2.12": + version: 0.2.12 + resolution: "@floating-ui/utils@npm:0.2.12" + checksum: 10c0/bb910b90d56991a62011afaf5f8e0c4b7fb6dab69403f4dd17fbd6eb25560b28d533dff9791f270b4f459852e9006a1077b5d73cbedb5e34d9424afc6a828314 languageName: node linkType: hard @@ -1405,9 +1181,9 @@ __metadata: linkType: hard "@hapi/tlds@npm:^1.1.1": - version: 1.1.6 - resolution: "@hapi/tlds@npm:1.1.6" - checksum: 10c0/75b2918dd10e8ba6418aadf53e6951c5fcf5b0d150cd497f257faa03492084dd9792e1cda1e41be959edf1c74602577de3d2593a44388b4caf3ad2a0c0a3da40 + version: 1.1.7 + resolution: "@hapi/tlds@npm:1.1.7" + checksum: 10c0/8429f08c83cd7d324f9b5a577442f78b2d721beba037f8a2a7f652707750800985e0f81302c4b98e9bc784717374005eb3758fb5af6dfb828c62fbb9a4f83a87 languageName: node linkType: hard @@ -1463,19 +1239,6 @@ __metadata: languageName: node linkType: hard -"@hypnosphi/create-react-context@npm:^0.3.1": - version: 0.3.1 - resolution: "@hypnosphi/create-react-context@npm:0.3.1" - dependencies: - gud: "npm:^1.0.0" - warning: "npm:^4.0.3" - peerDependencies: - prop-types: ^15.0.0 - react: ">=0.14.0" - checksum: 10c0/e8072221f9f9c2c47c3ebc5bc6079f9a71938e181d2b4aa3e1d3922707bc097336d5260dad088cf47c1d6e1ff34839fa21f2505a95bddda0d7548c5a955b5691 - languageName: node - linkType: hard - "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" @@ -1512,132 +1275,126 @@ __metadata: languageName: node linkType: hard -"@istanbuljs/schema@npm:^0.1.2": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.3": +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": version: 0.1.6 resolution: "@istanbuljs/schema@npm:0.1.6" checksum: 10c0/bb0d370bf3dd454d2f37f1bccb8921e2da99adacef2da56ef47850e25d7a4de69cf639ead8c189755aef38921369024b4afea3535a5c2ac9082b3e1171bcbc3a languageName: node linkType: hard -"@jest/console@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/console@npm:30.3.0" +"@jest/console@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/console@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/5458f26b0591b847b719a707cbd1d6b2b99960784a1480a28d19200a807b6092f066c1bd1810df8c6adebf934a64de7b6022dc35082cd7c8f09f35940da104d9 + checksum: 10c0/f782722ef5754ab864b996000cf1f0545f7be9db6ba8f89cb2381dfab9910a52c59a830e5ea069a76840023e40806493d9900d8eb7e9821d23a11a498f32739e languageName: node linkType: hard -"@jest/core@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/core@npm:30.3.0" +"@jest/core@npm:30.4.2": + version: 30.4.2 + resolution: "@jest/core@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/pattern": "npm:30.0.1" - "@jest/reporters": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/pattern": "npm:30.4.0" + "@jest/reporters": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" exit-x: "npm:^0.2.2" + fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-changed-files: "npm:30.3.0" - jest-config: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-resolve-dependencies: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-changed-files: "npm:30.4.1" + jest-config: "npm:30.4.2" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-resolve-dependencies: "npm:30.4.2" + jest-runner: "npm:30.4.2" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/1735f2263cca10c6cae4e1dbde9c3ccb36e2cbd1cc10bac6fc45e187b06c4e33a6a029f9a6444a3cd43a2a44ffaec3b686d94f70965cebf2b885b198c8615322 + checksum: 10c0/4237ec79d5403b82ba89e3be6e4318d9f37c3a11281bd76cfbdd4ff08d8c89850555607c4d494dab3526e01a90db3539e549017883967dd392b5084f1be0d5b2 languageName: node linkType: hard "@jest/create-cache-key-function@npm:^30.0.0": - version: 30.3.0 - resolution: "@jest/create-cache-key-function@npm:30.3.0" + version: 30.4.1 + resolution: "@jest/create-cache-key-function@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - checksum: 10c0/b1906d3b2230b6820877de065686c211bcbbe984cc40e09531b71b553e931505f837a453fdda481bee8686b8d572c95027d262af96789cbcbb6d58cbe0787fcc + "@jest/types": "npm:30.4.1" + checksum: 10c0/2cdf2479e020e022626da6543a95d2fbf7edccac7550c0e88dad13737b7fb5c97e172a0d62a9817c1ceca0fb5c24e220c28c6054a384d0101397ad3aa99174b2 languageName: node linkType: hard -"@jest/diff-sequences@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/diff-sequences@npm:30.3.0" - checksum: 10c0/8922c16a869b839b6c05f677023b3e5a9aa1610ad78a9c5ec8bd6654e35e8136ea1c7b60ad561910e2ad964bfdb0b09b0254ff8dcfacd4562095766f60c63d76 +"@jest/diff-sequences@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/diff-sequences@npm:30.4.0" + checksum: 10c0/b4358b1b885098b905cb777f58788ddd45f90c4ebc3ce2c04fb1d4c9516f35ac2d9daef8263cd21c537bd7a52ab320f03e4ba9521677959ae20e3d405356b420 languageName: node linkType: hard -"@jest/environment@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/environment@npm:30.3.0" +"@jest/environment@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/environment@npm:30.4.1" dependencies: - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - checksum: 10c0/4068ccc2e4761e52909239c21e71f73b57ad087bd120b75d3232c68d911686d68fd0fb20e19725517a624b0aa9d45431b00503bd1d5ab2f4958e1a18d265d8d5 + jest-mock: "npm:30.4.1" + checksum: 10c0/704987ff8650c91a8ed13796ce47e9c55da3c12a01902d9e384330cead18eb4d34ce665a8d9962dddf2736fac006f92efc1039b8da424adf8fdc16f8d81aff6c languageName: node linkType: hard -"@jest/expect-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect-utils@npm:30.3.0" +"@jest/expect-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - checksum: 10c0/4bb60fb434cb8ed325735bd39171b61621e110502ecc502089805d203ecb17b9fc5a400aeffb83b41fabcc819628a9c38c955f90a716d6aaff193d10926fc854 + checksum: 10c0/6dea9e11ebcc7be68fea5950ae5a1b7ff9fd1490101ee8af0aede336b9934ab24a28bcafe2f1171dac0f95982406386c609ca2659b9132e1a9d419e8d69b9cd4 languageName: node linkType: hard -"@jest/expect@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect@npm:30.3.0" +"@jest/expect@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect@npm:30.4.1" dependencies: - expect: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/1e052975fdf2b977a63dc9f3db1de56be9dce8e5cd660d9c72cc25093324b990b3e93318cd0c1ff9df7cb30ec7eef71331bc7e19d39700eb3f4498e17ee4c9e0 + expect: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/2133183e735982879408036237b115abc2e57fa52bb7324be0a1f2ab6941a57da93b2e6f498dc110b7d007dd20463013fbcc5b24377cf65e6a8518d3b2ff76bd languageName: node linkType: hard -"@jest/fake-timers@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/fake-timers@npm:30.3.0" +"@jest/fake-timers@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/fake-timers@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - "@sinonjs/fake-timers": "npm:^15.0.0" + "@jest/types": "npm:30.4.1" + "@sinonjs/fake-timers": "npm:^15.4.0" "@types/node": "npm:*" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/114855ca14d6b34c886855445852a5b960bc3df0ef97c4b971b375747fe0206b3111ec60efc6e658565677022f0d790acd7e232e478f3390ea854d04dea0c4d8 + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/4a10e4eb64bb5ea2531cdcc79f3058731f5c14faf2a74f498fcb37f6690c3c0f9b12a9856736d26e34631eb38db12e12812da71de27b9d332df44dda9f460fbe languageName: node linkType: hard @@ -1648,37 +1405,37 @@ __metadata: languageName: node linkType: hard -"@jest/globals@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/globals@npm:30.3.0" +"@jest/globals@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/globals@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - jest-mock: "npm:30.3.0" - checksum: 10c0/013554dcbf75867e715801e98a5c6eefbea67cb388efd019be9e0d83979d7354874c4b33bbabc95de698215f5b891e921c26a284841504f9825fd789432b1cd0 + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + jest-mock: "npm:30.4.1" + checksum: 10c0/7961eefdc9e69ba7754d11a1bae4bc2960f33e03d9c1d6c73f27895b8cf92a9118a234330f31dc8efe16e835fe70ef9cc6c26f60121f6b6e9fac71c8b1bcd709 languageName: node linkType: hard -"@jest/pattern@npm:30.0.1": - version: 30.0.1 - resolution: "@jest/pattern@npm:30.0.1" +"@jest/pattern@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/pattern@npm:30.4.0" dependencies: "@types/node": "npm:*" - jest-regex-util: "npm:30.0.1" - checksum: 10c0/32c5a7bfb6c591f004dac0ed36d645002ed168971e4c89bd915d1577031672870032594767557b855c5bc330aa1e39a2f54bf150d2ee88a7a0886e9cb65318bc + jest-regex-util: "npm:30.4.0" + checksum: 10c0/05bc0799f84f3750bbbff0f9a546979efd0dbcee86c1be98b9e2811a68885809ec7b5cca39b8dda1497cb7cf17b7be936019fba8dfbcd9c53b181e03e67f4f82 languageName: node linkType: hard -"@jest/reporters@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/reporters@npm:30.3.0" +"@jest/reporters@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/reporters@npm:30.4.1" dependencies: "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" "@types/node": "npm:*" chalk: "npm:^4.1.2" @@ -1691,9 +1448,9 @@ __metadata: istanbul-lib-report: "npm:^3.0.0" istanbul-lib-source-maps: "npm:^5.0.0" istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" slash: "npm:^3.0.0" string-length: "npm:^4.0.2" v8-to-istanbul: "npm:^9.0.1" @@ -1702,28 +1459,28 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/e1b6fb13df94435d4b8e6f4d4bd1c27dfc572ca7393b0a95d14c98013abe3c962aa28e2c56864f3ddd0894834d21c9a67485d11e6c31532aaaeea66ca6a2a026 + checksum: 10c0/cf5220462c6242fa564bbeb6d5988ebfd814e0351f3bddae07323b55c68c7ebd4aa4c23e717231ab4b2d63c4fc7fa4615b9dad8584be534bd44622981242dceb languageName: node linkType: hard -"@jest/schemas@npm:30.0.5": - version: 30.0.5 - resolution: "@jest/schemas@npm:30.0.5" +"@jest/schemas@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/schemas@npm:30.4.1" dependencies: "@sinclair/typebox": "npm:^0.34.0" - checksum: 10c0/449dcd7ec5c6505e9ac3169d1143937e67044ae3e66a729ce4baf31812dfd30535f2b3b2934393c97cfdf5984ff581120e6b38f62b8560c8b5b7cc07f4175f65 + checksum: 10c0/96f388ebfc1974457fcbde2ad36c40a0b549cba3f624fe8d9d6e5903a152dc75e4043f4ac9ac7668622f2ecb0f9a4dcb9a38edf3bc0d52b82045b2bb2b69b72a languageName: node linkType: hard -"@jest/snapshot-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/snapshot-utils@npm:30.3.0" +"@jest/snapshot-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/snapshot-utils@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" natural-compare: "npm:^1.4.0" - checksum: 10c0/ba4fea05a418b257d128d8f9eb7672a9004952563a45ad577bed80e5b2ea2ec6e6d3a24535781cc6530d9904d8fda7b27d15952d079ccdbe88f87a5e71112df0 + checksum: 10c0/81da9079719eece02b89c45cb97162b5b7d794981652c8d8fe2846843ac81ce219ea4bc21bde7cf76c9032006435f82bd9aee8d6139d90b77078ddad4865af02 languageName: node linkType: hard @@ -1738,64 +1495,64 @@ __metadata: languageName: node linkType: hard -"@jest/test-result@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-result@npm:30.3.0" +"@jest/test-result@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-result@npm:30.4.1" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" collect-v8-coverage: "npm:^1.0.2" - checksum: 10c0/67bcd405d0a1ac85b55afabf26e0ee0f184f9cfe0e659a44e0e4a4456c1c7fed9d2288f0116b017eaddfa49ded8c44426b8694c44f9a8a2af35be9202b8a9165 + checksum: 10c0/920fa3fe3cc8b5e11bfe36066d733030f1245865d7cac4862e3783a96f9c0a087fd8073c8cb56e4c87c6fcc97b46e6f828ecd3b10dd8e208f5e1b983fcc5cdb8 languageName: node linkType: hard -"@jest/test-sequencer@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-sequencer@npm:30.3.0" +"@jest/test-sequencer@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-sequencer@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/698be35e7145e79ea9d66071d4ec255f6cef4b5972b5142d299f3edbcbc0428cadf8ddecc6d21e938c98ed72b73b15a6d5f81e7b8b370aaa130d2f6b26fd017c + checksum: 10c0/531b19ffb2358b3b22a56b306359acf66db2073978dd6df8a9522b5b4034ad7540a9cb84bdfebbcb2872686d6d2ab8cabea04ad23ef9d4488cbafd03f7511501 languageName: node linkType: hard -"@jest/transform@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/transform@npm:30.3.0" +"@jest/transform@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/transform@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" babel-plugin-istanbul: "npm:^7.0.1" chalk: "npm:^4.1.2" convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" pirates: "npm:^4.0.7" slash: "npm:^3.0.0" write-file-atomic: "npm:^5.0.1" - checksum: 10c0/5ad0b5361910680b5160e3dc347c0beb75b4edc35a165ef4fc55837d01365179c276dd6f9cc80f7db94048c641b0c188757e1c98c6d4e9b55577956efbc00574 + checksum: 10c0/194f463f179f6ab3ccd6f4f0f03a117e3c01a7ce098ebf562250aca4c900ed3a9ec08b694227788eabd7cb4e0597f1d0788077c7550ddc679f68a0ad21cc87e0 languageName: node linkType: hard -"@jest/types@npm:30.3.0, @jest/types@npm:^30.0.1": - version: 30.3.0 - resolution: "@jest/types@npm:30.3.0" +"@jest/types@npm:30.4.1, @jest/types@npm:^30.0.1": + version: 30.4.1 + resolution: "@jest/types@npm:30.4.1" dependencies: - "@jest/pattern": "npm:30.0.1" - "@jest/schemas": "npm:30.0.5" + "@jest/pattern": "npm:30.4.0" + "@jest/schemas": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" "@types/istanbul-reports": "npm:^3.0.4" "@types/node": "npm:*" "@types/yargs": "npm:^17.0.33" chalk: "npm:^4.1.2" - checksum: 10c0/c3e3f4de0b77a7ced345f47d3687b1094c1b6c1521529a7ca66a76f9a80194f79179a1dbc32d6761a5b67914a8f78be1e65d1408107efcb1f252c4a63b5ddd92 + checksum: 10c0/4c79f6dbdb1c7eaab5da255fc696c7cae744759d4020e42da8aa63b37fe55ce594be73075fe1ee5407dd59d7e47975be9f674bfc81e91bae2c89c62d27ba55a1 languageName: node linkType: hard @@ -1816,7 +1573,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.12": +"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5": version: 0.3.13 resolution: "@jridgewell/gen-mapping@npm:0.3.13" dependencies: @@ -1826,17 +1583,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.5": - version: 0.3.8 - resolution: "@jridgewell/gen-mapping@npm:0.3.8" - dependencies: - "@jridgewell/set-array": "npm:^1.2.1" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.24" - checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a - languageName: node - linkType: hard - "@jridgewell/remapping@npm:^2.3.5": version: 2.3.5 resolution: "@jridgewell/remapping@npm:2.3.5" @@ -1854,21 +1600,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/set-array@npm:^1.2.1": - version: 1.2.1 - resolution: "@jridgewell/set-array@npm:1.2.1" - checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": - version: 1.5.0 - resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" - checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.5.5": +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5": version: 1.5.5 resolution: "@jridgewell/sourcemap-codec@npm:1.5.5" checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0 @@ -1885,7 +1617,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.28": +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.28, @jridgewell/trace-mapping@npm:^0.3.31": version: 0.3.31 resolution: "@jridgewell/trace-mapping@npm:0.3.31" dependencies: @@ -1895,23 +1627,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": - version: 0.3.25 - resolution: "@jridgewell/trace-mapping@npm:0.3.25" - dependencies: - "@jridgewell/resolve-uri": "npm:^3.1.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.14" - checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 - languageName: node - linkType: hard - -"@juggle/resize-observer@npm:^3.3.1": - version: 3.4.0 - resolution: "@juggle/resize-observer@npm:3.4.0" - checksum: 10c0/12930242357298c6f2ad5d4ec7cf631dfb344ca7c8c830ab7f64e6ac11eb1aae486901d8d880fd08fb1b257800c160a0da3aee1e7ed9adac0ccbb9b7c5d93347 - languageName: node - linkType: hard - "@mdx-js/react@npm:^3.0.0": version: 3.1.1 resolution: "@mdx-js/react@npm:3.1.1" @@ -1957,26 +1672,15 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^0.2.11": - version: 0.2.12 - resolution: "@napi-rs/wasm-runtime@npm:0.2.12" - dependencies: - "@emnapi/core": "npm:^1.4.3" - "@emnapi/runtime": "npm:^1.4.3" - "@tybys/wasm-util": "npm:^0.10.0" - checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d - languageName: node - linkType: hard - -"@napi-rs/wasm-runtime@npm:^1.1.5": - version: 1.1.5 - resolution: "@napi-rs/wasm-runtime@npm:1.1.5" +"@napi-rs/wasm-runtime@npm:^1.1.4, @napi-rs/wasm-runtime@npm:^1.1.6": + version: 1.1.6 + resolution: "@napi-rs/wasm-runtime@npm:1.1.6" dependencies: - "@tybys/wasm-util": "npm:^0.10.2" + "@tybys/wasm-util": "npm:^0.10.3" peerDependencies: "@emnapi/core": ^1.7.1 "@emnapi/runtime": ^1.7.1 - checksum: 10c0/727f2b6ae0e68bbe5d39aeb68aa6f183314e9f03dc50bb55a962849535b2db53ecc3fbf1554d8656a54488a608df5a2634670595cf5874dc4af2ee59f817c65d + checksum: 10c0/344518bf3ef65051dda4c00969f293aa4a21ab7dc7822b3f48519b17cd5eaa3f0bc34898d115d50ba59b1817a0cb905d46f7a7223c8249239cd14c28db388e10 languageName: node linkType: hard @@ -2007,39 +1711,10 @@ __metadata: languageName: node linkType: hard -"@npmcli/agent@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/agent@npm:4.0.0" - dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^11.2.1" - socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^5.0.0": - version: 5.0.0 - resolution: "@npmcli/fs@npm:5.0.0" - dependencies: - semver: "npm:^7.3.5" - checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b - languageName: node - linkType: hard - -"@npmcli/redact@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/redact@npm:4.0.0" - checksum: 10c0/a1e9ba9c70a6b40e175bda2c3dd8cfdaf096e6b7f7a132c855c083c8dfe545c3237cd56702e2e6627a580b1d63373599d49a1192c4078a85bf47bbde824df31c - languageName: node - linkType: hard - -"@oxc-project/types@npm:=0.137.0": - version: 0.137.0 - resolution: "@oxc-project/types@npm:0.137.0" - checksum: 10c0/5a6a50174e5ac79aebf38a120fe57be7a84c8bb0c77117f30de15183aa5ab0161e78364d2d3725397090e362e5c5f6eda754b53057b0b63983e3ee604f888aca +"@oxc-project/types@npm:=0.139.0": + version: 0.139.0 + resolution: "@oxc-project/types@npm:0.139.0" + checksum: 10c0/ad57d1bee4b972ecf6784183da12ac6865edfff326bd83712fb75262b901868bc2b72d6fb502465a5f0dbaaded2910003f73365caf3821901dad565cc0b7fdf2 languageName: node linkType: hard @@ -2057,17 +1732,10 @@ __metadata: languageName: node linkType: hard -"@pkgr/core@npm:^0.2.4": - version: 0.2.4 - resolution: "@pkgr/core@npm:0.2.4" - checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1 - languageName: node - linkType: hard - -"@pkgr/core@npm:^0.2.9": - version: 0.2.9 - resolution: "@pkgr/core@npm:0.2.9" - checksum: 10c0/ac8e4e8138b1a7a4ac6282873aef7389c352f1f8b577b4850778f5182e4a39a5241facbe48361fec817f56d02b51691b383010843fb08b34a8e8ea3614688fd5 +"@pkgr/core@npm:^0.3.6": + version: 0.3.6 + resolution: "@pkgr/core@npm:0.3.6" + checksum: 10c0/153f0f4563f505faeba13c733efa0e05e467ce1c6b941055a5fd3b4560da60fbf1dff4b11da0075f034ddda11f2842b90395f60895dde5825875b616edccc11c languageName: node linkType: hard @@ -2082,9 +1750,9 @@ __metadata: languageName: node linkType: hard -"@reduxjs/toolkit@npm:^2.11.2": - version: 2.11.2 - resolution: "@reduxjs/toolkit@npm:2.11.2" +"@reduxjs/toolkit@npm:^2.12.0": + version: 2.12.0 + resolution: "@reduxjs/toolkit@npm:2.12.0" dependencies: "@standard-schema/spec": "npm:^1.0.0" "@standard-schema/utils": "npm:^0.3.0" @@ -2100,120 +1768,120 @@ __metadata: optional: true react-redux: optional: true - checksum: 10c0/4d388b96dc4b12a577af23607c252b3647c1b3b5136dbb0212e1dbbef9bb309e93d3ba6a95795ee165e87e4286453025cd67a98b5b3bb6d244b93ea487dd1ac0 + checksum: 10c0/2b85e31294a7139994fd78b08eb3ce706ce3b03b5081c13403b93ba4883a152d637171e4d9d969766238851f8915b1daa9f36b5a0a458aff0ff7600ee38795c9 languageName: node linkType: hard -"@rolldown/binding-android-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-android-arm64@npm:1.1.2" +"@rolldown/binding-android-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-android-arm64@npm:1.1.5" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-arm64@npm:1.1.2" +"@rolldown/binding-darwin-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-arm64@npm:1.1.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-x64@npm:1.1.2" +"@rolldown/binding-darwin-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-x64@npm:1.1.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-freebsd-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-freebsd-x64@npm:1.1.2" +"@rolldown/binding-freebsd-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-freebsd-x64@npm:1.1.5" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2" +"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@rolldown/binding-linux-arm64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.2" +"@rolldown/binding-linux-arm64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-arm64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.2" +"@rolldown/binding-linux-arm64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-linux-ppc64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.2" +"@rolldown/binding-linux-ppc64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.5" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-s390x-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.2" +"@rolldown/binding-linux-s390x-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.5" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.2" +"@rolldown/binding-linux-x64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.2" +"@rolldown/binding-linux-x64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-openharmony-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.2" +"@rolldown/binding-openharmony-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.5" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-wasm32-wasi@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.2" +"@rolldown/binding-wasm32-wasi@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.5" dependencies: "@emnapi/core": "npm:1.11.1" "@emnapi/runtime": "npm:1.11.1" - "@napi-rs/wasm-runtime": "npm:^1.1.5" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@rolldown/binding-win32-arm64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.2" +"@rolldown/binding-win32-arm64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-win32-x64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.2" +"@rolldown/binding-win32-x64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rolldown/pluginutils@npm:^1.0.0": +"@rolldown/pluginutils@npm:^1.0.0, @rolldown/pluginutils@npm:^1.0.1": version: 1.0.1 resolution: "@rolldown/pluginutils@npm:1.0.1" checksum: 10c0/99d9b06d90196823e4d8c841f258db7a16e5dbba5824a2962b05d907b79f1ba929d56f22dd744fd530936e568c865ee56a719dc31e57e13bc0a8eb4764a8d8dd @@ -2221,8 +1889,8 @@ __metadata: linkType: hard "@rollup/pluginutils@npm:^5.0.2": - version: 5.3.0 - resolution: "@rollup/pluginutils@npm:5.3.0" + version: 5.4.0 + resolution: "@rollup/pluginutils@npm:5.4.0" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" @@ -2232,181 +1900,181 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/001834bf62d7cf5bac424d2617c113f7f7d3b2bf3c1778cbcccb72cdc957b68989f8e7747c782c2b911f1dde8257f56f8ac1e779e29e74e638e3f1e2cac2bcd0 + checksum: 10c0/ccc2cbd3a05df642df60ab05ffb81b2e564bd945e2a118bb8a474ea75b941033c8f44273133d4865643cca1492d0c80b14de1281f74779a64285a80fc3a194d8 languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.59.0" +"@rollup/rollup-android-arm-eabi@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.62.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm64@npm:4.59.0" +"@rollup/rollup-android-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm64@npm:4.62.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.59.0" +"@rollup/rollup-darwin-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-arm64@npm:4.62.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.59.0" +"@rollup/rollup-darwin-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-x64@npm:4.62.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.59.0" +"@rollup/rollup-freebsd-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.62.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-x64@npm:4.59.0" +"@rollup/rollup-freebsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-x64@npm:4.62.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.59.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.59.0" +"@rollup/rollup-linux-arm64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loong64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.59.0" +"@rollup/rollup-linux-loong64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-loong64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-musl@npm:4.59.0" +"@rollup/rollup-linux-loong64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.59.0" +"@rollup/rollup-linux-ppc64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.59.0" +"@rollup/rollup-linux-ppc64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.59.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.59.0" +"@rollup/rollup-linux-riscv64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.59.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.62.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.59.0" +"@rollup/rollup-linux-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.59.0" +"@rollup/rollup-linux-x64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-openbsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openbsd-x64@npm:4.59.0" +"@rollup/rollup-openbsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openbsd-x64@npm:4.62.2" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-openharmony-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openharmony-arm64@npm:4.59.0" +"@rollup/rollup-openharmony-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.62.2" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.59.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.62.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.59.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.62.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-gnu@npm:4.59.0" +"@rollup/rollup-win32-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.59.0" +"@rollup/rollup-win32-x64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -2480,9 +2148,9 @@ __metadata: linkType: hard "@sinclair/typebox@npm:^0.34.0": - version: 0.34.49 - resolution: "@sinclair/typebox@npm:0.34.49" - checksum: 10c0/16b7d87f039a49b68c10bb4cdcae2ce5242b2472228851fd6483731616aba4ef977690aa517b230a8d20da8185bb416eb34e326f30568b3963c1cf26b05d1ad8 + version: 0.34.52 + resolution: "@sinclair/typebox@npm:0.34.52" + checksum: 10c0/03e9be17ffb536ddd6dc35b6131c88eb113b2ce6cbec4fa60b1d5219de99e59b2649fc40ad70a85db561104395faa3406608971dc7b0abef529b80fb001dc821 languageName: node linkType: hard @@ -2502,12 +2170,12 @@ __metadata: languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^15.0.0": - version: 15.3.2 - resolution: "@sinonjs/fake-timers@npm:15.3.2" +"@sinonjs/fake-timers@npm:^15.4.0": + version: 15.4.0 + resolution: "@sinonjs/fake-timers@npm:15.4.0" dependencies: "@sinonjs/commons": "npm:^3.0.1" - checksum: 10c0/fea39af47e70acf7f6b431b857dc5b50886e1a19d48189bc7f9cf90806a9fdfd4931c04343558724772d429c47fb53df640fc8c8d6ddf6ad66164bd7cbd3220a + checksum: 10c0/de4522afe0699fa8d3ae9d1715cbaa4b47e518c707bb7988a9ec6c7c67557d9f6df451f6be0338598b984a86f65aab9fab38dd9ce75a3c0ffb801a9500d5b10d languageName: node linkType: hard @@ -2869,108 +2537,108 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-arm64@npm:1.15.32" +"@swc/core-darwin-arm64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-arm64@npm:1.15.46" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-x64@npm:1.15.32" +"@swc/core-darwin-x64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-x64@npm:1.15.46" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.32" +"@swc/core-linux-arm-gnueabihf@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.46" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-gnu@npm:1.15.32" +"@swc/core-linux-arm64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-gnu@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-musl@npm:1.15.32" +"@swc/core-linux-arm64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-musl@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-ppc64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.32" +"@swc/core-linux-ppc64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.46" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-s390x-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-s390x-gnu@npm:1.15.32" +"@swc/core-linux-s390x-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-s390x-gnu@npm:1.15.46" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-gnu@npm:1.15.32" +"@swc/core-linux-x64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-gnu@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-musl@npm:1.15.32" +"@swc/core-linux-x64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-musl@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-arm64-msvc@npm:1.15.32" +"@swc/core-win32-arm64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-arm64-msvc@npm:1.15.46" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-ia32-msvc@npm:1.15.32" +"@swc/core-win32-ia32-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-ia32-msvc@npm:1.15.46" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-x64-msvc@npm:1.15.32" +"@swc/core-win32-x64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-x64-msvc@npm:1.15.46" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.5.22": - version: 1.15.32 - resolution: "@swc/core@npm:1.15.32" - dependencies: - "@swc/core-darwin-arm64": "npm:1.15.32" - "@swc/core-darwin-x64": "npm:1.15.32" - "@swc/core-linux-arm-gnueabihf": "npm:1.15.32" - "@swc/core-linux-arm64-gnu": "npm:1.15.32" - "@swc/core-linux-arm64-musl": "npm:1.15.32" - "@swc/core-linux-ppc64-gnu": "npm:1.15.32" - "@swc/core-linux-s390x-gnu": "npm:1.15.32" - "@swc/core-linux-x64-gnu": "npm:1.15.32" - "@swc/core-linux-x64-musl": "npm:1.15.32" - "@swc/core-win32-arm64-msvc": "npm:1.15.32" - "@swc/core-win32-ia32-msvc": "npm:1.15.32" - "@swc/core-win32-x64-msvc": "npm:1.15.32" + version: 1.15.46 + resolution: "@swc/core@npm:1.15.46" + dependencies: + "@swc/core-darwin-arm64": "npm:1.15.46" + "@swc/core-darwin-x64": "npm:1.15.46" + "@swc/core-linux-arm-gnueabihf": "npm:1.15.46" + "@swc/core-linux-arm64-gnu": "npm:1.15.46" + "@swc/core-linux-arm64-musl": "npm:1.15.46" + "@swc/core-linux-ppc64-gnu": "npm:1.15.46" + "@swc/core-linux-s390x-gnu": "npm:1.15.46" + "@swc/core-linux-x64-gnu": "npm:1.15.46" + "@swc/core-linux-x64-musl": "npm:1.15.46" + "@swc/core-win32-arm64-msvc": "npm:1.15.46" + "@swc/core-win32-ia32-msvc": "npm:1.15.46" + "@swc/core-win32-x64-msvc": "npm:1.15.46" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.26" + "@swc/types": "npm:^0.1.27" peerDependencies: "@swc/helpers": ">=0.5.17" dependenciesMeta: @@ -3001,7 +2669,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/114e2d08a588de6dc0b01106368461d471464ec1bd0d046f4007cd2af9f52c0ddbf473a6dc251aa7f71828b74fe8488221718019187bb91a5f503a45b91b5fb1 + checksum: 10c0/70cab177b55c69ba6fea493267a4f31fd28c5a078893810d26ed3a84238dc8e23b875697b9f6494efc34c76b8280f6935345a3d89ed2b4848a9efcc17e1f802f languageName: node linkType: hard @@ -3025,12 +2693,12 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.26": - version: 0.1.26 - resolution: "@swc/types@npm:0.1.26" +"@swc/types@npm:^0.1.27": + version: 0.1.27 + resolution: "@swc/types@npm:0.1.27" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10c0/8449341e8bbff81c14e9918c25421143cf605dff20f70f048847e1f7cede396f8dd73903cbef331a809b4a8e15d0db374a5f6809003e7b440f93df1dd4934d28 + checksum: 10c0/25f1bfa0ac34e9ac60aa7de91778f70906cd77a7abb3eb68c5da8d38d5202286b293300d4bb2792b3bb8840a7f5d5c4627c4ec34d2fae6533bfb3e14a70fd8fb languageName: node linkType: hard @@ -3091,17 +2759,16 @@ __metadata: linkType: hard "@testing-library/jest-dom@npm:^6.6.3": - version: 6.6.3 - resolution: "@testing-library/jest-dom@npm:6.6.3" + version: 6.9.1 + resolution: "@testing-library/jest-dom@npm:6.9.1" dependencies: "@adobe/css-tools": "npm:^4.4.0" aria-query: "npm:^5.0.0" - chalk: "npm:^3.0.0" css.escape: "npm:^1.5.1" dom-accessibility-api: "npm:^0.6.3" - lodash: "npm:^4.17.21" + picocolors: "npm:^1.1.1" redent: "npm:^3.0.0" - checksum: 10c0/5566b6c0b7b0709bc244aec3aa3dc9e5f4663e8fb2b99d8cd456fc07279e59db6076cbf798f9d3099a98fca7ef4cd50e4e1f4c4dec5a60a8fad8d24a638a5bf6 + checksum: 10c0/4291ebd2f0f38d14cefac142c56c337941775a5807e2a3d6f1a14c2fbd6be76a18e498ed189e95bedc97d9e8cf1738049bc76c85b5bc5e23fae7c9e10f7b3a12 languageName: node linkType: hard @@ -3129,9 +2796,9 @@ __metadata: linkType: hard "@tsconfig/node10@npm:^1.0.7": - version: 1.0.11 - resolution: "@tsconfig/node10@npm:1.0.11" - checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c + version: 1.0.12 + resolution: "@tsconfig/node10@npm:1.0.12" + checksum: 10c0/7bbbd7408cfaced86387a9b1b71cebc91c6fd701a120369735734da8eab1a4773fc079abd9f40c9e0b049e12586c8ac0e13f0da596bfd455b9b4c3faa813ebc5 languageName: node linkType: hard @@ -3156,16 +2823,7 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.10.0": - version: 0.10.1 - resolution: "@tybys/wasm-util@npm:0.10.1" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 - languageName: node - linkType: hard - -"@tybys/wasm-util@npm:^0.10.2": +"@tybys/wasm-util@npm:^0.10.3": version: 0.10.3 resolution: "@tybys/wasm-util@npm:0.10.3" dependencies: @@ -3214,20 +2872,21 @@ __metadata: linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.18.0": - version: 7.20.7 - resolution: "@types/babel__traverse@npm:7.20.7" + version: 7.28.0 + resolution: "@types/babel__traverse@npm:7.28.0" dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 10c0/5386f0af44f8746b063b87418f06129a814e16bb2686965a575e9d7376b360b088b89177778d8c426012abc43dd1a2d8ec3218bfc382280c898682746ce2ffbd + "@babel/types": "npm:^7.28.2" + checksum: 10c0/b52d7d4e8fc6a9018fe7361c4062c1c190f5778cf2466817cb9ed19d69fbbb54f9a85ffedeb748ed8062d2cf7d4cc088ee739848f47c57740de1c48cbf0d0994 languageName: node linkType: hard "@types/chai@npm:^5.2.2": - version: 5.2.2 - resolution: "@types/chai@npm:5.2.2" + version: 5.2.3 + resolution: "@types/chai@npm:5.2.3" dependencies: "@types/deep-eql": "npm:*" - checksum: 10c0/49282bf0e8246800ebb36f17256f97bd3a8c4fb31f92ad3c0eaa7623518d7e87f1eaad4ad206960fcaf7175854bdff4cb167e4fe96811e0081b4ada83dd533ec + assertion-error: "npm:^2.0.1" + checksum: 10c0/e0ef1de3b6f8045a5e473e867c8565788c444271409d155588504840ad1a53611011f85072188c2833941189400228c1745d78323dac13fcede9c2b28bacfb2f languageName: node linkType: hard @@ -3245,13 +2904,6 @@ __metadata: languageName: node linkType: hard -"@types/dom4@npm:^2.0.1": - version: 2.0.4 - resolution: "@types/dom4@npm:2.0.4" - checksum: 10c0/8314feb34415c021979b91fa2f0fb8caad152141a542642697170dcd06fbbeaf72a315d0ed69f2f9ce06548f062eccaddf93b8ae2f3cd675217345a112e2a007 - languageName: node - linkType: hard - "@types/dompurify@npm:^3.2.0": version: 3.2.0 resolution: "@types/dompurify@npm:3.2.0" @@ -3261,17 +2913,10 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:1.0.8": - version: 1.0.8 - resolution: "@types/estree@npm:1.0.8" - checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 - languageName: node - linkType: hard - -"@types/estree@npm:^1.0.0": - version: 1.0.7 - resolution: "@types/estree@npm:1.0.7" - checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c +"@types/estree@npm:1.0.9, @types/estree@npm:^1.0.0": + version: 1.0.9 + resolution: "@types/estree@npm:1.0.9" + checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387 languageName: node linkType: hard @@ -3283,11 +2928,11 @@ __metadata: linkType: hard "@types/hast@npm:^3.0.4": - version: 3.0.4 - resolution: "@types/hast@npm:3.0.4" + version: 3.0.5 + resolution: "@types/hast@npm:3.0.5" dependencies: "@types/unist": "npm:*" - checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7 + checksum: 10c0/f3af8594a6903a507ed191eda944af18099198d6708c29102ae17118c3e20779f6929e91ed37e033541fd28d58055d8a5910a4366dbdf976cf81b13a464741fb languageName: node linkType: hard @@ -3327,7 +2972,7 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db @@ -3371,34 +3016,34 @@ __metadata: linkType: hard "@types/lodash@npm:*": - version: 4.17.17 - resolution: "@types/lodash@npm:4.17.17" - checksum: 10c0/8e75df02a15f04d4322c5a503e4efd0e7a92470570ce80f17e9f11ce2b1f1a7c994009c9bcff39f07e0f9ffd8ccaff09b3598997c404b801abd5a7eee5a639dc + version: 4.17.24 + resolution: "@types/lodash@npm:4.17.24" + checksum: 10c0/b72f60d4daacdad1fa643edb3faba204c02a01eb1ac00a83ff73496a6d236fc55e459c06106e8ced42277dba932d087d8fc090f8de4ef590d3f91e6d6f7ce85a languageName: node linkType: hard "@types/mdx@npm:^2.0.0": - version: 2.0.13 - resolution: "@types/mdx@npm:2.0.13" - checksum: 10c0/5edf1099505ac568da55f9ae8a93e7e314e8cbc13d3445d0be61b75941226b005e1390d9b95caecf5dcb00c9d1bab2f1f60f6ff9876dc091a48b547495007720 + version: 2.0.14 + resolution: "@types/mdx@npm:2.0.14" + checksum: 10c0/f1e3873c1e36e2685fb99222bf81a23c55a8e2edf49d0c45cabf2c875b0ae814cd6050cce5770ff1c6881ac747d2ad33731e1de32139b04cf181d8d7e1943ff4 languageName: node linkType: hard "@types/node@npm:*": - version: 22.15.21 - resolution: "@types/node@npm:22.15.21" + version: 26.1.1 + resolution: "@types/node@npm:26.1.1" dependencies: - undici-types: "npm:~6.21.0" - checksum: 10c0/f092bbccda2131c2b2c8f720338080aa0ef1d928f5f1062c03954a4f7dafa7ee3ed29bc3e51bd4e2584473b3d943c637a2b39ad7174898970818270187cf10c1 + undici-types: "npm:~8.3.0" + checksum: 10c0/25ac5093195736dd074d5027adbba85617bc951d5a41506ebd3b9073048acb7233613f3822d5f9b9447f9c0841c91f6387c46283916767e3ef79f23917452c46 languageName: node linkType: hard -"@types/node@npm:^18.11.9": - version: 18.19.103 - resolution: "@types/node@npm:18.19.103" +"@types/node@npm:^24.10.2": + version: 24.13.3 + resolution: "@types/node@npm:24.13.3" dependencies: - undici-types: "npm:~5.26.4" - checksum: 10c0/a119321c90787fca6d0ae929e55a964602123690b4674bb0ef2dc2fb78b25cc7ae4804aa6d4014d1055fd245ba8286c66080765304740978047cc706f19ed934 + undici-types: "npm:~7.18.0" + checksum: 10c0/a5bc08f49b9581dcdca90e02cd77197a3c799840807664942e5cd5161a553d4d2ae8064f7e3294410d748d7d098b5c1848be7fa50c06f29c4193ab16be4e59eb languageName: node linkType: hard @@ -3424,9 +3069,9 @@ __metadata: linkType: hard "@types/prop-types@npm:*": - version: 15.7.14 - resolution: "@types/prop-types@npm:15.7.14" - checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1 + version: 15.7.15 + resolution: "@types/prop-types@npm:15.7.15" + checksum: 10c0/b59aad1ad19bf1733cf524fd4e618196c6c7690f48ee70a327eb450a42aab8e8a063fbe59ca0a5701aebe2d92d582292c0fb845ea57474f6a15f6994b0e260b2 languageName: node linkType: hard @@ -3497,9 +3142,9 @@ __metadata: linkType: hard "@types/semver@npm:^7.5.0": - version: 7.7.0 - resolution: "@types/semver@npm:7.7.0" - checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee + version: 7.7.1 + resolution: "@types/semver@npm:7.7.1" + checksum: 10c0/c938aef3bf79a73f0f3f6037c16e2e759ff40c54122ddf0b2583703393d8d3127130823facb880e694caa324eb6845628186aac1997ee8b31dc2d18fafe26268 languageName: node linkType: hard @@ -3554,16 +3199,7 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^17.0.10": - version: 17.0.33 - resolution: "@types/yargs@npm:17.0.33" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b - languageName: node - linkType: hard - -"@types/yargs@npm:^17.0.33": +"@types/yargs@npm:^17.0.10, @types/yargs@npm:^17.0.33": version: 17.0.35 resolution: "@types/yargs@npm:17.0.35" dependencies: @@ -3696,152 +3332,175 @@ __metadata: linkType: hard "@ungap/structured-clone@npm:^1.2.0, @ungap/structured-clone@npm:^1.3.0": - version: 1.3.0 - resolution: "@ungap/structured-clone@npm:1.3.0" - checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a + version: 1.3.3 + resolution: "@ungap/structured-clone@npm:1.3.3" + checksum: 10c0/b199e280ee06e9c447e0ccd38df60a65c2b2c13d3c77af50b1e6d77230aee1ea7da309d7b80c5a4850c8e22e4eee9e4b2813c6a33f8c360560d7f2e99a9f6e8f languageName: node linkType: hard -"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1" +"@unrs/resolver-binding-android-arm-eabi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.12.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-android-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1" +"@unrs/resolver-binding-android-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm64@npm:1.12.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1" +"@unrs/resolver-binding-darwin-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.12.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1" +"@unrs/resolver-binding-darwin-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-x64@npm:1.12.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-freebsd-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1" +"@unrs/resolver-binding-freebsd-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.12.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=musl + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1" +"@unrs/resolver-binding-openharmony-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-openharmony-arm64@npm:1.12.2" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@unrs/resolver-binding-wasm32-wasi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.12.2" dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.11" + "@emnapi/core": "npm:1.10.0" + "@emnapi/runtime": "npm:1.10.0" + "@napi-rs/wasm-runtime": "npm:^1.1.4" conditions: cpu=wasm32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@vitejs/plugin-react@npm:^6.0.2": - version: 6.0.2 - resolution: "@vitejs/plugin-react@npm:6.0.2" + version: 6.0.4 + resolution: "@vitejs/plugin-react@npm:6.0.4" dependencies: - "@rolldown/pluginutils": "npm:^1.0.0" + "@rolldown/pluginutils": "npm:^1.0.1" peerDependencies: "@rolldown/plugin-babel": ^0.1.7 || ^0.2.0 babel-plugin-react-compiler: ^1.0.0 @@ -3851,7 +3510,7 @@ __metadata: optional: true babel-plugin-react-compiler: optional: true - checksum: 10c0/6e2d90974e05f2a9aefafad1d137b75c3b3b4bf3f2affdbfe77c6b11b24832cff22dd8852430c6341e2fb5b00a4513fb00db306a6abdbec6f0f5841e93bbcfba + checksum: 10c0/38446b54f51760b97d81abfa2fb9130bdc7a545183c97b26cfc7a5982fbcbeef431f482a3d44ef8225ca3e8c37e852a0843f8f84d0834391cab49b36a172dbf8 languageName: node linkType: hard @@ -3944,7 +3603,7 @@ __metadata: languageName: node linkType: hard -"@vitest/pretty-format@npm:3.2.6, @vitest/pretty-format@npm:^3.2.6": +"@vitest/pretty-format@npm:3.2.6": version: 3.2.6 resolution: "@vitest/pretty-format@npm:3.2.6" dependencies: @@ -3953,6 +3612,15 @@ __metadata: languageName: node linkType: hard +"@vitest/pretty-format@npm:^3.2.6": + version: 3.2.7 + resolution: "@vitest/pretty-format@npm:3.2.7" + dependencies: + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/f556dd5f9e5240c7ab054d795622292c1b23f6aad3332d1e250f33d801783efbb7883387640b76d22cc91b81f30cb735b40371ec3e4f5293e735495f45d624df + languageName: node + linkType: hard + "@vitest/runner@npm:3.2.6": version: 3.2.6 resolution: "@vitest/runner@npm:3.2.6" @@ -4055,10 +3723,10 @@ __metadata: languageName: node linkType: hard -"abbrev@npm:^4.0.0": - version: 4.0.0 - resolution: "abbrev@npm:4.0.0" - checksum: 10c0/b4cc16935235e80702fc90192e349e32f8ef0ed151ef506aa78c81a7c455ec18375c4125414b99f84b2e055199d66383e787675f0bcd87da7a4dbd59f9eac1d5 +"abbrev@npm:^5.0.0": + version: 5.0.0 + resolution: "abbrev@npm:5.0.0" + checksum: 10c0/8e88f5c798ea4562d28c5a3e9ad69e3879890bc5d695d8f2dffb8609be4c890aacc8f80ef4553fdd2c6a62d70c2ce8bc57b38074e383beb7487bdafa9ed42ea5 languageName: node linkType: hard @@ -4091,29 +3759,20 @@ __metadata: linkType: hard "acorn-walk@npm:^8.1.1, acorn-walk@npm:^8.3.4": - version: 8.3.4 - resolution: "acorn-walk@npm:8.3.4" + version: 8.3.5 + resolution: "acorn-walk@npm:8.3.5" dependencies: acorn: "npm:^8.11.0" - checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62 - languageName: node - linkType: hard - -"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": - version: 8.14.1 - resolution: "acorn@npm:8.14.1" - bin: - acorn: bin/acorn - checksum: 10c0/dbd36c1ed1d2fa3550140000371fcf721578095b18777b85a79df231ca093b08edc6858d75d6e48c73e431c174dcf9214edbd7e6fa5911b93bd8abfa54e47123 + checksum: 10c0/e31bf5b5423ed1349437029d66d708b9fbd1b77a644b031501e2c753b028d13b56348210ed901d5b1d0d86eb3381c0a0fc0d0998511a9d546d1194936266a332 languageName: node linkType: hard -"acorn@npm:^8.15.0": - version: 8.15.0 - resolution: "acorn@npm:8.15.0" +"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": + version: 8.17.0 + resolution: "acorn@npm:8.17.0" bin: acorn: bin/acorn - checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec + checksum: 10c0/5dcefea5f8f023b6cc24cbe71fb5a8112b601d36c4fa07d14e4e6ffc2ee47383332c46b36c766d9437725aa6660156eae50efa0c838719823b50d7c327c4ed42 languageName: node linkType: hard @@ -4127,9 +3786,9 @@ __metadata: linkType: hard "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": - version: 7.1.3 - resolution: "agent-base@npm:7.1.3" - checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 + version: 7.1.4 + resolution: "agent-base@npm:7.1.4" + checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe languageName: node linkType: hard @@ -4158,30 +3817,18 @@ __metadata: linkType: hard "ajv@npm:^6.12.3, ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" + version: 6.15.0 + resolution: "ajv@npm:6.15.0" dependencies: fast-deep-equal: "npm:^3.1.1" fast-json-stable-stringify: "npm:^2.0.0" json-schema-traverse: "npm:^0.4.1" uri-js: "npm:^4.2.2" - checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 - languageName: node - linkType: hard - -"ajv@npm:^8.0.0": - version: 8.17.1 - resolution: "ajv@npm:8.17.1" - dependencies: - fast-deep-equal: "npm:^3.1.3" - fast-uri: "npm:^3.0.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35 + checksum: 10c0/67966499dd272ecde1c2e467084411132891523d057487587879d39ac04207f4351b7b2324c83198013967fbfa632c1612adc960114a30770fbe07a0773b32c2 languageName: node linkType: hard -"ajv@npm:^8.17.1": +"ajv@npm:^8.0.0, ajv@npm:^8.17.1": version: 8.20.0 resolution: "ajv@npm:8.20.0" dependencies: @@ -4241,13 +3888,6 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^6.0.1": - version: 6.1.0 - resolution: "ansi-regex@npm:6.1.0" - checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc - languageName: node - linkType: hard - "ansi-regex@npm:^6.2.2": version: 6.2.2 resolution: "ansi-regex@npm:6.2.2" @@ -4287,14 +3927,7 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"ansi-styles@npm:^6.2.1": +"ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": version: 6.2.3 resolution: "ansi-styles@npm:6.2.3" checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868 @@ -4320,33 +3953,20 @@ __metadata: languageName: node linkType: hard -"archiver-utils@npm:^5.0.0, archiver-utils@npm:^5.0.2": - version: 5.0.2 - resolution: "archiver-utils@npm:5.0.2" - dependencies: - glob: "npm:^10.0.0" - graceful-fs: "npm:^4.2.0" - is-stream: "npm:^2.0.1" - lazystream: "npm:^1.0.0" - lodash: "npm:^4.17.15" - normalize-path: "npm:^3.0.0" - readable-stream: "npm:^4.0.0" - checksum: 10c0/3782c5fa9922186aa1a8e41ed0c2867569faa5f15c8e5e6418ea4c1b730b476e21bd68270b3ea457daf459ae23aaea070b2b9f90cf90a59def8dc79b9e4ef538 - languageName: node - linkType: hard - -"archiver@npm:^7.0.1": - version: 7.0.1 - resolution: "archiver@npm:7.0.1" +"archiver@npm:^8.0.0": + version: 8.0.0 + resolution: "archiver@npm:8.0.0" dependencies: - archiver-utils: "npm:^5.0.2" async: "npm:^3.2.4" buffer-crc32: "npm:^1.0.0" + is-stream: "npm:^4.0.0" + lazystream: "npm:^1.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - readdir-glob: "npm:^1.1.2" + readdir-glob: "npm:^3.0.0" tar-stream: "npm:^3.0.0" - zip-stream: "npm:^6.0.1" - checksum: 10c0/02afd87ca16f6184f752db8e26884e6eff911c476812a0e7f7b26c4beb09f06119807f388a8e26ed2558aa8ba9db28646ebd147a4f99e46813b8b43158e1438e + zip-stream: "npm:^7.0.2" + checksum: 10c0/bcb12f3c8c0baac15ab0b3e92d2b6a249a09c59ffded8b259bdf5ff7ea547a75a93d79e614f99d8ba9d5f4a8ee43bbcedcd07117b1faef3369249fd8070efec8 languageName: node linkType: hard @@ -4455,13 +4075,27 @@ __metadata: linkType: hard "ast-v8-to-istanbul@npm:^0.3.3": - version: 0.3.3 - resolution: "ast-v8-to-istanbul@npm:0.3.3" + version: 0.3.12 + resolution: "ast-v8-to-istanbul@npm:0.3.12" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.25" + "@jridgewell/trace-mapping": "npm:^0.3.31" estree-walker: "npm:^3.0.3" - js-tokens: "npm:^9.0.1" - checksum: 10c0/ffc39bc3ab4b8c1f7aea945960ce6b1e518bab3da7c800277eab2da07d397eeae4a2cb8a5a5f817225646c8ea495c1e4434fbe082c84bae8042abddef53f50b2 + js-tokens: "npm:^10.0.0" + checksum: 10c0/bad6ba222b1073c165c8d65dbf366193d4a90536dabe37f93a3df162269b1c9473975756e4c048f708c235efccc26f8e5321c547b7e9563b64b21b2e0f27cbc9 + languageName: node + linkType: hard + +"async-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-function@npm:1.0.0" + checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73 + languageName: node + linkType: hard + +"async-generator-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-generator-function@npm:1.0.0" + checksum: 10c0/2c50ef856c543ad500d8d8777d347e3c1ba623b93e99c9263ecc5f965c1b12d2a140e2ab6e43c3d0b85366110696f28114649411cbcd10b452a92a2318394186 languageName: node linkType: hard @@ -4479,13 +4113,6 @@ __metadata: languageName: node linkType: hard -"at-least-node@npm:^1.0.0": - version: 1.0.0 - resolution: "at-least-node@npm:1.0.0" - checksum: 10c0/4c058baf6df1bc5a1697cf182e2029c58cd99975288a13f9e70068ef5d6f4e1f1fd7c4d2c3c4912eae44797d1725be9700995736deca441b39f3e66d8dee97ef - languageName: node - linkType: hard - "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" @@ -4509,7 +4136,7 @@ __metadata: languageName: node linkType: hard -"axios@npm:^1.15.0, axios@npm:^1.6.1": +"axios@npm:^1.16.0, axios@npm:^1.6.1": version: 1.18.1 resolution: "axios@npm:1.18.1" dependencies: @@ -4521,32 +4148,32 @@ __metadata: languageName: node linkType: hard -"b4a@npm:^1.6.4": - version: 1.8.0 - resolution: "b4a@npm:1.8.0" +"b4a@npm:^1.6.4, b4a@npm:^1.8.1": + version: 1.8.1 + resolution: "b4a@npm:1.8.1" peerDependencies: react-native-b4a: "*" peerDependenciesMeta: react-native-b4a: optional: true - checksum: 10c0/27eab5c50ea1f1314f36256f160d2e6d6950f55f02ee4942732ecafd8bcc4b3a2ed209fab532b288770d41df2befa97a2745175c06471875b716eb87abf31519 + checksum: 10c0/344d8c94b244ec7a9cb516ea43a98216312454cb72478e4b7628a679ee343be237564c53bbe73995ab10ea9bc923b420236081b180b3cf78fd0c945bfc886798 languageName: node linkType: hard -"babel-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-jest@npm:30.3.0" +"babel-jest@npm:30.4.1": + version: 30.4.1 + resolution: "babel-jest@npm:30.4.1" dependencies: - "@jest/transform": "npm:30.3.0" + "@jest/transform": "npm:30.4.1" "@types/babel__core": "npm:^7.20.5" babel-plugin-istanbul: "npm:^7.0.1" - babel-preset-jest: "npm:30.3.0" + babel-preset-jest: "npm:30.4.0" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-0 - checksum: 10c0/5e41e124a404ddb78aa37a20336d7c883feab5ad9c4f4c72ae26db71be2fcca345874b9a7fef97d9c5f64f144a264b247ebde8acfe493578320f314ca581bac3 + checksum: 10c0/339b449011f31dc9eb18d9c49f0bb84e8de284e1107e64159a2f4a432bbd532d6a729774a56b7fbe76f5ddd716a0b4b7ad737265feab23b4d0225489b79a6f72 languageName: node linkType: hard @@ -4563,12 +4190,12 @@ __metadata: languageName: node linkType: hard -"babel-plugin-jest-hoist@npm:30.3.0": - version: 30.3.0 - resolution: "babel-plugin-jest-hoist@npm:30.3.0" +"babel-plugin-jest-hoist@npm:30.4.0": + version: 30.4.0 + resolution: "babel-plugin-jest-hoist@npm:30.4.0" dependencies: "@types/babel__core": "npm:^7.20.5" - checksum: 10c0/5e15900a6487356131e084970f4a9ebe24b702d74930f786e897d4fab90b0987054f66661a3570ea692f429dcd158c2214c97ecf08f7356cbc60029d7b277c74 + checksum: 10c0/1738ed536bb5ff536b4d406b8db7dbbd76cf10f80bb20d902e6efdda79898f045b9a991124d7104d8c398d0bd995d511d57694952645fba0f6250595a45277b0 languageName: node linkType: hard @@ -4608,15 +4235,15 @@ __metadata: languageName: node linkType: hard -"babel-preset-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-preset-jest@npm:30.3.0" +"babel-preset-jest@npm:30.4.0": + version: 30.4.0 + resolution: "babel-preset-jest@npm:30.4.0" dependencies: - babel-plugin-jest-hoist: "npm:30.3.0" + babel-plugin-jest-hoist: "npm:30.4.0" babel-preset-current-node-syntax: "npm:^1.2.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-beta.1 - checksum: 10c0/a6839a1527d254bf04e82c0cf61a6a2aa283123a74f0a552e6fce462cb990abebab75a13ec3e9c58b09a865d4d2dfbac710c2d3975ae3ce6f2707cb314915c66 + checksum: 10c0/ca2623aa4d8bf82b1fd01e5724a87cea7f80ff089341cf12415e9ce4b10f74838ecc6c8a48921f421f90bcd44f7929c0ad300146082e2f400253adb97ab5eb3a languageName: node linkType: hard @@ -4635,20 +4262,20 @@ __metadata: linkType: hard "bare-events@npm:^2.5.4, bare-events@npm:^2.7.0": - version: 2.8.2 - resolution: "bare-events@npm:2.8.2" + version: 2.9.1 + resolution: "bare-events@npm:2.9.1" peerDependencies: bare-abort-controller: "*" peerDependenciesMeta: bare-abort-controller: optional: true - checksum: 10c0/53fef240cf2cdcca62f78b6eead90ddb5a59b0929f414b13a63764c2b4f9de98ea8a578d033b04d64bb7b86dfbc402e937984e69950855cc3754c7b63da7db21 + checksum: 10c0/576fba522bdd2167f35e86791e6c881fdaaf542aa5fca0acfaf8fac7a2c0789340f1cafa0b63e216808efb5cc710887c0cf683f1783293bf98a215d8555ecc36 languageName: node linkType: hard "bare-fs@npm:^4.5.5": - version: 4.6.0 - resolution: "bare-fs@npm:4.6.0" + version: 4.7.4 + resolution: "bare-fs@npm:4.7.4" dependencies: bare-events: "npm:^2.5.4" bare-path: "npm:^3.0.0" @@ -4660,30 +4287,22 @@ __metadata: peerDependenciesMeta: bare-buffer: optional: true - checksum: 10c0/fe7fce0c2b8f269ec1ff55d034b39201e4cd3100d9808950a267158603e1a85b37bda54c83237b3828ec6989094bef025ac4f44177d72a3d2ce26d69daff81d5 - languageName: node - linkType: hard - -"bare-os@npm:^3.0.1": - version: 3.8.7 - resolution: "bare-os@npm:3.8.7" - checksum: 10c0/6541b223a196a58b52e1103ef1f04d35018c1b56b6c250410fc54680767624273691ece741eb88502c95b058ab90b632972348a9231410df05c5df61a62c9c08 + checksum: 10c0/c189f8075c7f19142383cda7cb95e85c9a057366e6232f00ce8ad901471291bd2c716d5e480c203c38383c757e64c0388fa5184cfa767dc63c4808e566e16d89 languageName: node linkType: hard "bare-path@npm:^3.0.0": - version: 3.0.0 - resolution: "bare-path@npm:3.0.0" - dependencies: - bare-os: "npm:^3.0.1" - checksum: 10c0/56a3ca82a9f808f4976cb1188640ac206546ce0ddff582afafc7bd2a6a5b31c3bd16422653aec656eeada2830cfbaa433c6cbf6d6b4d9eba033d5e06d60d9a68 + version: 3.1.1 + resolution: "bare-path@npm:3.1.1" + checksum: 10c0/833f0fe2df164e518878b9c71646228d7841c2e35bd3fc428e432b512317ce7fdbd2a127649366f34db3312778d12a83f2fff5485004bbbdcdd15975fce73f4c languageName: node linkType: hard "bare-stream@npm:^2.6.4": - version: 2.12.0 - resolution: "bare-stream@npm:2.12.0" + version: 2.13.3 + resolution: "bare-stream@npm:2.13.3" dependencies: + b4a: "npm:^1.8.1" streamx: "npm:^2.25.0" teex: "npm:^1.0.1" peerDependencies: @@ -4697,16 +4316,16 @@ __metadata: optional: true bare-events: optional: true - checksum: 10c0/b2f306e2f23f8a53572c8df90ad71dda0d1565a7de70fef14c95259fe93421de20dfb9420b382698468cfbac4010fc260ba5bd75cca3965ebe47695d1679ad82 + checksum: 10c0/1867ca2e89042a7a9c53e8415a0be6e958bdc7231bc0858a793ec35614419eb6e57ad7a27db2de3dc75a799f7432494e27029b3805eee53693629ff64cae16c9 languageName: node linkType: hard "bare-url@npm:^2.2.2": - version: 2.4.0 - resolution: "bare-url@npm:2.4.0" + version: 2.4.6 + resolution: "bare-url@npm:2.4.6" dependencies: bare-path: "npm:^3.0.0" - checksum: 10c0/b349bf4d3826d6e9fea40aae0b8aaba6e7e83af89feac93ad0b87721c11e0dd84eb651549275242c5ae07a3a21d24620b76bf59c434db65e9605a6e3180f8af2 + checksum: 10c0/fa93bb9fc643133ca0b38c1431bb2041a7179fd1f5f39d08f303feba018ece752bb823133cfe7849b078c01f907ff31429d915a0ae4c47e03de7d8c42f671354 languageName: node linkType: hard @@ -4737,6 +4356,15 @@ __metadata: languageName: node linkType: hard +"baseline-browser-mapping@npm:^2.10.44": + version: 2.11.0 + resolution: "baseline-browser-mapping@npm:2.11.0" + bin: + baseline-browser-mapping: dist/cli.cjs + checksum: 10c0/03176d4d1c85a156971ae328241e9216288d59f46a5195acc95c41f1477b2e791185d0f68128788c311fd0fb0b93b321170d65c1ef7d9bcab096677c844365de + languageName: node + linkType: hard + "bcrypt-pbkdf@npm:^1.0.0": version: 1.0.2 resolution: "bcrypt-pbkdf@npm:1.0.2" @@ -4746,17 +4374,17 @@ __metadata: languageName: node linkType: hard -"bestzip@npm:2.2.3": - version: 2.2.3 - resolution: "bestzip@npm:2.2.3" +"bestzip@npm:3.0.1": + version: 3.0.1 + resolution: "bestzip@npm:3.0.1" dependencies: - archiver: "npm:^7.0.1" + archiver: "npm:^8.0.0" glob: "npm:^13.0.6" which: "npm:^6.0.1" yargs: "npm:^16.2.0" bin: bestzip: bin/cli.js - checksum: 10c0/fda17035db4cf364a2a7d0685db16013fe90559b9943e1268842b895207177a1f22b5cfdd07d51c3b239fd277ac11ad5d6596b23a83af4a7e1c32f2475743343 + checksum: 10c0/9979d6dc41e18267a3af8aa5df78dd39ada7684b34b5c151e465554473ce509f1aa6045b6aa53cb56a9a2266ee322f74c718ce99a3c52dbb15616475e7afc73a languageName: node linkType: hard @@ -4777,19 +4405,19 @@ __metadata: linkType: hard "body-parser@npm:^2.2.1": - version: 2.2.2 - resolution: "body-parser@npm:2.2.2" + version: 2.3.0 + resolution: "body-parser@npm:2.3.0" dependencies: bytes: "npm:^3.1.2" - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" debug: "npm:^4.4.3" - http-errors: "npm:^2.0.0" - iconv-lite: "npm:^0.7.0" + http-errors: "npm:^2.0.1" + iconv-lite: "npm:^0.7.2" on-finished: "npm:^2.4.1" - qs: "npm:^6.14.1" - raw-body: "npm:^3.0.1" - type-is: "npm:^2.0.1" - checksum: 10c0/95a830a003b38654b75166ca765358aa92ee3d561bf0e41d6ccdde0e1a0c9783cab6b90b20eb635d23172c010b59d3563a137a738e74da4ba714463510d05137 + qs: "npm:^6.15.2" + raw-body: "npm:^3.0.2" + type-is: "npm:^2.1.0" + checksum: 10c0/2a8fbbdc471b588338555a3e1a597d1eb0ad0c21cf20fdc3bac5d3f8d9c3a4b19b4163575ab852a43a5dfc0df7770ced5284f979e561f1a24c2f851ce89e695a languageName: node linkType: hard @@ -4819,21 +4447,21 @@ __metadata: languageName: node linkType: hard -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" +"brace-expansion@npm:^2.0.1, brace-expansion@npm:^2.0.2": + version: 2.1.2 + resolution: "brace-expansion@npm:2.1.2" dependencies: balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + checksum: 10c0/5442ecab84045d21826268bc56c81a6ef4215327ee1f5ee153f67928e93f7a915d130ecec9966623143277fa3cce036ebb50020024bcc4d78853cdd6af9a19f8 languageName: node linkType: hard "brace-expansion@npm:^5.0.5": - version: 5.0.5 - resolution: "brace-expansion@npm:5.0.5" + version: 5.0.7 + resolution: "brace-expansion@npm:5.0.7" dependencies: balanced-match: "npm:^4.0.2" - checksum: 10c0/4d238e14ed4f5cc9c07285550a41cef23121ca08ba99fa9eb5b55b580dcb6bf868b8210aa10526bdc9f8dc97f33ca2a7259039c4cc131a93042beddb424c48e3 + checksum: 10c0/4769109c3c082de178e449a371bcad50d51ab468f644bce2dd9188efe0cf0a080ed102105d7fc8577382cedc45bad7e6443a91bf3d8102264ee8cf927dbaf205 languageName: node linkType: hard @@ -4854,16 +4482,17 @@ __metadata: linkType: hard "browserslist@npm:^4.24.0": - version: 4.24.5 - resolution: "browserslist@npm:4.24.5" - dependencies: - caniuse-lite: "npm:^1.0.30001716" - electron-to-chromium: "npm:^1.5.149" - node-releases: "npm:^2.0.19" - update-browserslist-db: "npm:^1.1.3" + version: 4.28.7 + resolution: "browserslist@npm:4.28.7" + dependencies: + baseline-browser-mapping: "npm:^2.10.44" + caniuse-lite: "npm:^1.0.30001806" + electron-to-chromium: "npm:^1.5.393" + node-releases: "npm:^2.0.51" + update-browserslist-db: "npm:^1.2.3" bin: browserslist: cli.js - checksum: 10c0/f4c1ce1a7d8fdfab5e5b88bb6e93d09e8a883c393f86801537a252da0362dbdcde4dbd97b318246c5d84c6607b2f6b47af732c1b000d6a8a881ee024bad29204 + checksum: 10c0/dc41922a9ff0d81e5492498bdab2d932e3a3222f4277814ba38ee64f4e51f26e5244a7cce0777b4cac3ceff6eb196f5cadbb2a832620973a7f9c39611f6bc78e languageName: node linkType: hard @@ -4937,24 +4566,6 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^20.0.1": - version: 20.0.4 - resolution: "cacache@npm:20.0.4" - dependencies: - "@npmcli/fs": "npm:^5.0.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^13.0.0" - lru-cache: "npm:^11.1.0" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^7.0.2" - ssri: "npm:^13.0.0" - checksum: 10c0/539bf4020e44ba9ca5afc2ec435623ed7e0dd80c020097677e6b4a0545df5cc9d20b473212d01209c8b4aea43c0d095af0bb6da97bcb991642ea6fac0d7c462b - languageName: node - linkType: hard - "cacheable-request@npm:^6.0.0": version: 6.1.0 resolution: "cacheable-request@npm:6.1.0" @@ -4982,7 +4593,7 @@ __metadata: languageName: node linkType: hard -"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": version: 1.0.2 resolution: "call-bind-apply-helpers@npm:1.0.2" dependencies: @@ -4992,15 +4603,15 @@ __metadata: languageName: node linkType: hard -"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8": - version: 1.0.8 - resolution: "call-bind@npm:1.0.8" +"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8, call-bind@npm:^1.0.9": + version: 1.0.9 + resolution: "call-bind@npm:1.0.9" dependencies: - call-bind-apply-helpers: "npm:^1.0.0" - es-define-property: "npm:^1.0.0" - get-intrinsic: "npm:^1.2.4" + call-bind-apply-helpers: "npm:^1.0.2" + es-define-property: "npm:^1.0.1" + get-intrinsic: "npm:^1.3.0" set-function-length: "npm:^1.2.2" - checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 + checksum: 10c0/a6621f6da1444481919ce3b4983dff725691e0754d3507ae483ce56e54985f2da7d6f1df512c56dbf28660745cf1ca52553f1fc9aef5557f3ce353ef14fab714 languageName: node linkType: hard @@ -5035,10 +4646,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001716": - version: 1.0.30001718 - resolution: "caniuse-lite@npm:1.0.30001718" - checksum: 10c0/67f9ad09bc16443e28d14f265d6e468480cd8dc1900d0d8b982222de80c699c4f2306599c3da8a3fa7139f110d4b30d49dbac78f215470f479abb6ffe141d5d3 +"caniuse-lite@npm:^1.0.30001806": + version: 1.0.30001806 + resolution: "caniuse-lite@npm:1.0.30001806" + checksum: 10c0/9442c8afff0968e9b2ce0104a7340c1ce4a5c09f469ccb9eef10d25712ea0afe542486e5318c697c70dd502f988cfc04eaa1c9438c92ac3bcf4d708a2a17bee1 languageName: node linkType: hard @@ -5065,20 +4676,7 @@ __metadata: languageName: node linkType: hard -"chai@npm:^5.1.1": - version: 5.2.0 - resolution: "chai@npm:5.2.0" - dependencies: - assertion-error: "npm:^2.0.1" - check-error: "npm:^2.1.1" - deep-eql: "npm:^5.0.1" - loupe: "npm:^3.1.0" - pathval: "npm:^2.0.0" - checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d - languageName: node - linkType: hard - -"chai@npm:^5.2.0": +"chai@npm:^5.1.1, chai@npm:^5.2.0": version: 5.3.3 resolution: "chai@npm:5.3.3" dependencies: @@ -5150,9 +4748,9 @@ __metadata: linkType: hard "check-error@npm:^2.1.1": - version: 2.1.1 - resolution: "check-error@npm:2.1.1" - checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e + version: 2.1.3 + resolution: "check-error@npm:2.1.3" + checksum: 10c0/878e99038fb6476316b74668cd6a498c7e66df3efe48158fa40db80a06ba4258742ac3ee2229c4a2a98c5e73f5dff84eb3e50ceb6b65bbd8f831eafc8338607d languageName: node linkType: hard @@ -5210,13 +4808,6 @@ __metadata: languageName: node linkType: hard -"classnames@npm:^2.2": - version: 2.5.1 - resolution: "classnames@npm:2.5.1" - checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 - languageName: node - linkType: hard - "clean-regexp@npm:^1.0.0": version: 1.0.0 resolution: "clean-regexp@npm:1.0.0" @@ -5293,10 +4884,10 @@ __metadata: languageName: node linkType: hard -"clsx@npm:^1.1.1": - version: 1.2.1 - resolution: "clsx@npm:1.2.1" - checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 +"clsx@npm:^2.1.1": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839 languageName: node linkType: hard @@ -5346,10 +4937,10 @@ __metadata: languageName: node linkType: hard -"colorbrewer@npm:^1.6.1": - version: 1.6.1 - resolution: "colorbrewer@npm:1.6.1" - checksum: 10c0/27b8bb83f1343fa763541b16820c34a22b68b6200835dc43b5f8cc6b1270ad66c03c377a30b5819fa04c08d0930ea4e478b4779f5abcefd8f337c691e3c19189 +"colorbrewer@npm:^1.7.0": + version: 1.7.0 + resolution: "colorbrewer@npm:1.7.0" + checksum: 10c0/0671f1d626734d5edfac72b590aa98f118c4eb0f13292f2e37ca267d1746e1bd5bc07d8f4c79c7591b33a411f2aadf64384b2afa95c104cb89b5e43b74fa3a24 languageName: node linkType: hard @@ -5369,6 +4960,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^14.0.0": + version: 14.0.3 + resolution: "commander@npm:14.0.3" + checksum: 10c0/755652564bbf56ff2ff083313912b326450d3f8d8c85f4b71416539c9a05c3c67dbd206821ca72635bf6b160e2afdefcb458e86b317827d5cb333b69ce7f1a24 + languageName: node + linkType: hard + "commander@npm:^2.12.1": version: 2.20.3 resolution: "commander@npm:2.20.3" @@ -5390,16 +4988,16 @@ __metadata: languageName: node linkType: hard -"compress-commons@npm:^6.0.2": - version: 6.0.2 - resolution: "compress-commons@npm:6.0.2" +"compress-commons@npm:^7.0.0": + version: 7.0.1 + resolution: "compress-commons@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" - crc32-stream: "npm:^6.0.0" - is-stream: "npm:^2.0.1" + crc32-stream: "npm:^7.0.1" + is-stream: "npm:^4.0.0" normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/2347031b7c92c8ed5011b07b93ec53b298fa2cd1800897532ac4d4d1aeae06567883f481b6e35f13b65fc31b190c751df6635434d525562f0203fde76f1f0814 + checksum: 10c0/9837b9971c7e536f14b113178e944741a0cb76051db2c84ff23da2b6321f2f6da8ed922d713bb643987d4cd39eeaa537c73d9d7843f9eb74f8fe47afe93d0733 languageName: node linkType: hard @@ -5481,6 +5079,13 @@ __metadata: languageName: node linkType: hard +"content-type@npm:^2.0.0": + version: 2.0.0 + resolution: "content-type@npm:2.0.0" + checksum: 10c0/491539fff707d7594b0ca4fabcc084bef2a31ffa754ff0a4f80c4377e3963cff0394317f9271c24087596c97fa675bc123d61fa34ffe65b4904e7d3d3098de72 + languageName: node + linkType: hard + "convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.7.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" @@ -5536,14 +5141,7 @@ __metadata: languageName: node linkType: hard -"core-js@npm:^3.29.0": - version: 3.42.0 - resolution: "core-js@npm:3.42.0" - checksum: 10c0/2913d3d5452d54ad92f058d66046782d608c05e037bcc523aab79c04454fe640998f94e6011292969d66dfa472f398b085ce843dcb362056532a5799c627184e - languageName: node - linkType: hard - -"core-js@npm:^3.6.0, core-js@npm:^3.8.3": +"core-js@npm:^3.29.0, core-js@npm:^3.6.0, core-js@npm:^3.8.3": version: 3.49.0 resolution: "core-js@npm:3.49.0" checksum: 10c0/2e42edb47eda38fd5368380131623c8aa5d4a6b42164125b17744bdc08fa5ebbbdd06b4b4aa6ca3663470a560b0f2fba48e18f142dfe264b0039df85bc625694 @@ -5623,13 +5221,13 @@ __metadata: languageName: node linkType: hard -"crc32-stream@npm:^6.0.0": - version: 6.0.0 - resolution: "crc32-stream@npm:6.0.0" +"crc32-stream@npm:^7.0.1": + version: 7.0.1 + resolution: "crc32-stream@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/bf9c84571ede2d119c2b4f3a9ef5eeb9ff94b588493c0d3862259af86d3679dcce1c8569dd2b0a6eff2f35f5e2081cc1263b846d2538d4054da78cf34f262a3d + checksum: 10c0/0d8d217ca4f328bba859a6bef8593028d24841bef2fe4dc44ae892c7cace4301ce6d5676b568642ddb0a709ee3f0f7af1d1ada4c9c399bc5a4ff9b93d5d1071d languageName: node linkType: hard @@ -5688,23 +5286,16 @@ __metadata: linkType: hard "cssstyle@npm:^4.2.1": - version: 4.3.1 - resolution: "cssstyle@npm:4.3.1" + version: 4.6.0 + resolution: "cssstyle@npm:4.6.0" dependencies: - "@asamuzakjp/css-color": "npm:^3.1.2" + "@asamuzakjp/css-color": "npm:^3.2.0" rrweb-cssom: "npm:^0.8.0" - checksum: 10c0/89d73252d5f9930cf67f5c576de8030a9d960aae4c8bdd42d60464b2f67c8d809601fb7e620b43d4c84e03472016da77528df9a21a21393387ed256610ca0ab4 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 + checksum: 10c0/71add1b0ffafa1bedbef6855db6189b9523d3320e015a0bf3fbd504760efb9a81e1f1a225228d5fa892ee58e56d06994ca372e7f4e461cda7c4c9985fe075f65 languageName: node linkType: hard -"csstype@npm:^3.1.3, csstype@npm:^3.2.2": +"csstype@npm:^3.0.2, csstype@npm:^3.1.3, csstype@npm:^3.2.2": version: 3.2.3 resolution: "csstype@npm:3.2.3" checksum: 10c0/cd29c51e70fa822f1cecd8641a1445bed7063697469d35633b516e60fe8c1bde04b08f6c5b6022136bb669b64c63d4173af54864510fbb4ee23281801841a3ce @@ -5749,19 +5340,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.1": - version: 4.4.1 - resolution: "debug@npm:4.4.1" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 - languageName: node - linkType: hard - -"debug@npm:^4.4.0, debug@npm:^4.4.3": +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.0, debug@npm:^4.4.1, debug@npm:^4.4.3": version: 4.4.3 resolution: "debug@npm:4.4.3" dependencies: @@ -5781,9 +5360,9 @@ __metadata: linkType: hard "decimal.js@npm:^10.5.0": - version: 10.5.0 - resolution: "decimal.js@npm:10.5.0" - checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 + version: 10.6.0 + resolution: "decimal.js@npm:10.6.0" + checksum: 10c0/07d69fbcc54167a340d2d97de95f546f9ff1f69d2b45a02fd7a5292412df3cd9eb7e23065e532a318f5474a2e1bccf8392fdf0443ef467f97f3bf8cb0477e5aa languageName: node linkType: hard @@ -5815,20 +5394,6 @@ __metadata: languageName: node linkType: hard -"deep-equal@npm:^1.1.1": - version: 1.1.2 - resolution: "deep-equal@npm:1.1.2" - dependencies: - is-arguments: "npm:^1.1.1" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - regexp.prototype.flags: "npm:^1.5.1" - checksum: 10c0/cd85d822d18e9b3e1532d0f6ba412d229aa9d22881d70da161674428ae96e47925191296f7cda29306bac252889007da40ed8449363bd1c96c708acb82068a00 - languageName: node - linkType: hard - "deep-equal@npm:^2.0.5": version: 2.2.3 resolution: "deep-equal@npm:2.2.3" @@ -5988,9 +5553,9 @@ __metadata: linkType: hard "diff@npm:^4.0.1": - version: 4.0.2 - resolution: "diff@npm:4.0.2" - checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + version: 4.0.4 + resolution: "diff@npm:4.0.4" + checksum: 10c0/855fb70b093d1d9643ddc12ea76dca90dc9d9cdd7f82c08ee8b9325c0dc5748faf3c82e2047ced5dcaa8b26e58f7903900be2628d0380a222c02d79d8de385df languageName: node linkType: hard @@ -6089,15 +5654,6 @@ __metadata: languageName: node linkType: hard -"dom-helpers@npm:^3.4.0": - version: 3.4.0 - resolution: "dom-helpers@npm:3.4.0" - dependencies: - "@babel/runtime": "npm:^7.1.2" - checksum: 10c0/1d2d3e4eadac2c4f4c8c7470a737ab32b7ec28237c4d094ea967ec3184168fd12452196fcc424a5d7860b6176117301aeaecba39467bf1a6e8492a8e5c9639d1 - languageName: node - linkType: hard - "dom-helpers@npm:^5.0.1": version: 5.2.1 resolution: "dom-helpers@npm:5.2.1" @@ -6125,13 +5681,6 @@ __metadata: languageName: node linkType: hard -"dom4@npm:^2.1.5": - version: 2.1.6 - resolution: "dom4@npm:2.1.6" - checksum: 10c0/1ed3d869c5a3f1aa9c3c17615324ef367449c8b951b737297ae202357447d79d462855c93b79e57d2d0adcd2f68f0b3374904a2f9051da7290260a0f7b560d7f - languageName: node - linkType: hard - "domelementtype@npm:1, domelementtype@npm:^1.3.1": version: 1.3.1 resolution: "domelementtype@npm:1.3.1" @@ -6155,7 +5704,7 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.0": +"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.10": version: 3.4.12 resolution: "dompurify@npm:3.4.12" dependencies: @@ -6205,9 +5754,9 @@ __metadata: linkType: hard "earcut@npm:^3.0.0": - version: 3.0.1 - resolution: "earcut@npm:3.0.1" - checksum: 10c0/cc1d3ed87a08db1a601b3b836bfb2fe22c8f923dfcfcd7419c64a5d4c270ac6d966d8d1e673cc699f8d69dc32bce84fd6d87136c49431fa35057bd7141627769 + version: 3.2.3 + resolution: "earcut@npm:3.2.3" + checksum: 10c0/38660ec1ce55eecbbbf11d5a0072934c9f33851527bf5e40923c6656c3a0c6b00bb449ae8f4b28f89a0b249fe18568e630a8ea9ee39ce2707a50a89531a2f995 languageName: node linkType: hard @@ -6235,10 +5784,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.149": - version: 1.5.155 - resolution: "electron-to-chromium@npm:1.5.155" - checksum: 10c0/aee32a0b03282e488352370f6a910de37788b814031020a0e244943450e844e8a41f741d6e5ec70d553dfa4382ef80088034ddc400b48f45de95de331b9ec178 +"electron-to-chromium@npm:^1.5.393": + version: 1.5.395 + resolution: "electron-to-chromium@npm:1.5.395" + checksum: 10c0/f1e6f10ab7499ef528afcdcfdd8b900c10388e3fcc19333a0de2f0824404740e5450c675469d32c106cc2bfc08db2de88b925523a0d15540bcd8f65355e2ed7b languageName: node linkType: hard @@ -6285,11 +5834,11 @@ __metadata: linkType: hard "end-of-stream@npm:^1.1.0": - version: 1.4.4 - resolution: "end-of-stream@npm:1.4.4" + version: 1.4.5 + resolution: "end-of-stream@npm:1.4.5" dependencies: once: "npm:^1.4.0" - checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 + checksum: 10c0/b0701c92a10b89afb1cb45bf54a5292c6f008d744eb4382fa559d54775ff31617d1d7bc3ef617575f552e24fad2c7c1a1835948c66b3f3a4be0a6c1f35c883d8 languageName: node linkType: hard @@ -6317,7 +5866,7 @@ __metadata: languageName: node linkType: hard -"entities@npm:^4.4.0": +"entities@npm:^4.5.0": version: 4.5.0 resolution: "entities@npm:4.5.0" checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 @@ -6325,9 +5874,9 @@ __metadata: linkType: hard "entities@npm:^6.0.0": - version: 6.0.0 - resolution: "entities@npm:6.0.0" - checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e + version: 6.0.1 + resolution: "entities@npm:6.0.1" + checksum: 10c0/ed836ddac5acb34341094eb495185d527bd70e8632b6c0d59548cbfa23defdbae70b96f9a405c82904efa421230b5b3fd2283752447d737beffd3f3e6ee74414 languageName: node linkType: hard @@ -6346,11 +5895,11 @@ __metadata: linkType: hard "error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" + version: 1.3.4 + resolution: "error-ex@npm:1.3.4" dependencies: is-arrayish: "npm:^0.2.1" - checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + checksum: 10c0/b9e34ff4778b8f3b31a8377e1c654456f4c41aeaa3d10a1138c3b7635d8b7b2e03eb2475d46d8ae055c1f180a1063e100bffabf64ea7e7388b37735df5328664 languageName: node linkType: hard @@ -6393,11 +5942,11 @@ __metadata: linkType: hard "es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": - version: 1.1.1 - resolution: "es-object-atoms@npm:1.1.1" + version: 1.1.2 + resolution: "es-object-atoms@npm:1.1.2" dependencies: es-errors: "npm:^1.3.0" - checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c + checksum: 10c0/1772861f094f739d6f41b579cfb9a18579daffeb434552a370a5fbef50a32d22227e27b63fdbb757b7ddd429d1b42fe52ccae7966d9302a2ec221b6f1b41bbc4 languageName: node linkType: hard @@ -6432,34 +5981,35 @@ __metadata: linkType: hard "esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0": - version: 0.25.4 - resolution: "esbuild@npm:0.25.4" - dependencies: - "@esbuild/aix-ppc64": "npm:0.25.4" - "@esbuild/android-arm": "npm:0.25.4" - "@esbuild/android-arm64": "npm:0.25.4" - "@esbuild/android-x64": "npm:0.25.4" - "@esbuild/darwin-arm64": "npm:0.25.4" - "@esbuild/darwin-x64": "npm:0.25.4" - "@esbuild/freebsd-arm64": "npm:0.25.4" - "@esbuild/freebsd-x64": "npm:0.25.4" - "@esbuild/linux-arm": "npm:0.25.4" - "@esbuild/linux-arm64": "npm:0.25.4" - "@esbuild/linux-ia32": "npm:0.25.4" - "@esbuild/linux-loong64": "npm:0.25.4" - "@esbuild/linux-mips64el": "npm:0.25.4" - "@esbuild/linux-ppc64": "npm:0.25.4" - "@esbuild/linux-riscv64": "npm:0.25.4" - "@esbuild/linux-s390x": "npm:0.25.4" - "@esbuild/linux-x64": "npm:0.25.4" - "@esbuild/netbsd-arm64": "npm:0.25.4" - "@esbuild/netbsd-x64": "npm:0.25.4" - "@esbuild/openbsd-arm64": "npm:0.25.4" - "@esbuild/openbsd-x64": "npm:0.25.4" - "@esbuild/sunos-x64": "npm:0.25.4" - "@esbuild/win32-arm64": "npm:0.25.4" - "@esbuild/win32-ia32": "npm:0.25.4" - "@esbuild/win32-x64": "npm:0.25.4" + version: 0.25.12 + resolution: "esbuild@npm:0.25.12" + dependencies: + "@esbuild/aix-ppc64": "npm:0.25.12" + "@esbuild/android-arm": "npm:0.25.12" + "@esbuild/android-arm64": "npm:0.25.12" + "@esbuild/android-x64": "npm:0.25.12" + "@esbuild/darwin-arm64": "npm:0.25.12" + "@esbuild/darwin-x64": "npm:0.25.12" + "@esbuild/freebsd-arm64": "npm:0.25.12" + "@esbuild/freebsd-x64": "npm:0.25.12" + "@esbuild/linux-arm": "npm:0.25.12" + "@esbuild/linux-arm64": "npm:0.25.12" + "@esbuild/linux-ia32": "npm:0.25.12" + "@esbuild/linux-loong64": "npm:0.25.12" + "@esbuild/linux-mips64el": "npm:0.25.12" + "@esbuild/linux-ppc64": "npm:0.25.12" + "@esbuild/linux-riscv64": "npm:0.25.12" + "@esbuild/linux-s390x": "npm:0.25.12" + "@esbuild/linux-x64": "npm:0.25.12" + "@esbuild/netbsd-arm64": "npm:0.25.12" + "@esbuild/netbsd-x64": "npm:0.25.12" + "@esbuild/openbsd-arm64": "npm:0.25.12" + "@esbuild/openbsd-x64": "npm:0.25.12" + "@esbuild/openharmony-arm64": "npm:0.25.12" + "@esbuild/sunos-x64": "npm:0.25.12" + "@esbuild/win32-arm64": "npm:0.25.12" + "@esbuild/win32-ia32": "npm:0.25.12" + "@esbuild/win32-x64": "npm:0.25.12" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6503,6 +6053,8 @@ __metadata: optional: true "@esbuild/openbsd-x64": optional: true + "@esbuild/openharmony-arm64": + optional: true "@esbuild/sunos-x64": optional: true "@esbuild/win32-arm64": @@ -6513,40 +6065,40 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/db9f51248f0560bc46ab219461d338047617f6caf373c95f643b204760bdfa10c95b48cfde948949f7e509599ae4ab61c3f112092a3534936c6abfb800c565b0 - languageName: node - linkType: hard - -"esbuild@npm:^0.27.0, esbuild@npm:~0.27.0": - version: 0.27.7 - resolution: "esbuild@npm:0.27.7" - dependencies: - "@esbuild/aix-ppc64": "npm:0.27.7" - "@esbuild/android-arm": "npm:0.27.7" - "@esbuild/android-arm64": "npm:0.27.7" - "@esbuild/android-x64": "npm:0.27.7" - "@esbuild/darwin-arm64": "npm:0.27.7" - "@esbuild/darwin-x64": "npm:0.27.7" - "@esbuild/freebsd-arm64": "npm:0.27.7" - "@esbuild/freebsd-x64": "npm:0.27.7" - "@esbuild/linux-arm": "npm:0.27.7" - "@esbuild/linux-arm64": "npm:0.27.7" - "@esbuild/linux-ia32": "npm:0.27.7" - "@esbuild/linux-loong64": "npm:0.27.7" - "@esbuild/linux-mips64el": "npm:0.27.7" - "@esbuild/linux-ppc64": "npm:0.27.7" - "@esbuild/linux-riscv64": "npm:0.27.7" - "@esbuild/linux-s390x": "npm:0.27.7" - "@esbuild/linux-x64": "npm:0.27.7" - "@esbuild/netbsd-arm64": "npm:0.27.7" - "@esbuild/netbsd-x64": "npm:0.27.7" - "@esbuild/openbsd-arm64": "npm:0.27.7" - "@esbuild/openbsd-x64": "npm:0.27.7" - "@esbuild/openharmony-arm64": "npm:0.27.7" - "@esbuild/sunos-x64": "npm:0.27.7" - "@esbuild/win32-arm64": "npm:0.27.7" - "@esbuild/win32-ia32": "npm:0.27.7" - "@esbuild/win32-x64": "npm:0.27.7" + checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b + languageName: node + linkType: hard + +"esbuild@npm:^0.27.0 || ^0.28.0, esbuild@npm:~0.28.0": + version: 0.28.1 + resolution: "esbuild@npm:0.28.1" + dependencies: + "@esbuild/aix-ppc64": "npm:0.28.1" + "@esbuild/android-arm": "npm:0.28.1" + "@esbuild/android-arm64": "npm:0.28.1" + "@esbuild/android-x64": "npm:0.28.1" + "@esbuild/darwin-arm64": "npm:0.28.1" + "@esbuild/darwin-x64": "npm:0.28.1" + "@esbuild/freebsd-arm64": "npm:0.28.1" + "@esbuild/freebsd-x64": "npm:0.28.1" + "@esbuild/linux-arm": "npm:0.28.1" + "@esbuild/linux-arm64": "npm:0.28.1" + "@esbuild/linux-ia32": "npm:0.28.1" + "@esbuild/linux-loong64": "npm:0.28.1" + "@esbuild/linux-mips64el": "npm:0.28.1" + "@esbuild/linux-ppc64": "npm:0.28.1" + "@esbuild/linux-riscv64": "npm:0.28.1" + "@esbuild/linux-s390x": "npm:0.28.1" + "@esbuild/linux-x64": "npm:0.28.1" + "@esbuild/netbsd-arm64": "npm:0.28.1" + "@esbuild/netbsd-x64": "npm:0.28.1" + "@esbuild/openbsd-arm64": "npm:0.28.1" + "@esbuild/openbsd-x64": "npm:0.28.1" + "@esbuild/openharmony-arm64": "npm:0.28.1" + "@esbuild/sunos-x64": "npm:0.28.1" + "@esbuild/win32-arm64": "npm:0.28.1" + "@esbuild/win32-ia32": "npm:0.28.1" + "@esbuild/win32-x64": "npm:0.28.1" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6602,7 +6154,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/ccd51f0555708bc9ff4ec9dc3ac92d3daacd45ecaac949ca8645984c5c323bf8cefe98c2df307418685e0b4ce37f9a3bdbfe8e3651fe632a0059a436195a17d4 + checksum: 10c0/29cd456a79ce35ac2c7e05fe871330416b2c395c045d849653f843e51378d6e0d6e774d6dcd01b35f4e83238a29bf8decd04fcd34b3780c589a250b21e5f92bb languageName: node linkType: hard @@ -6649,23 +6201,23 @@ __metadata: linkType: hard "eslint-config-prettier@npm:^9.0.0": - version: 9.1.0 - resolution: "eslint-config-prettier@npm:9.1.0" + version: 9.1.2 + resolution: "eslint-config-prettier@npm:9.1.2" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d + checksum: 10c0/d2e9dc913b1677764a4732433d83d258f40820458c65d0274cb9e3eaf6559b39f2136446f310c05abed065a4b3c2e901807ccf583dff76c6227eaebf4132c39a languageName: node linkType: hard "eslint-formatter-codeframe@npm:^7.32.1": - version: 7.32.1 - resolution: "eslint-formatter-codeframe@npm:7.32.1" + version: 7.32.2 + resolution: "eslint-formatter-codeframe@npm:7.32.2" dependencies: "@babel/code-frame": "npm:7.12.11" chalk: "npm:^4.0.0" - checksum: 10c0/dcde3de808e3c039919e184d0f3752d786f312ac350db65a64bfed38e43c1fc6129127c7fda29938f81a690b79481d83706a351299268ab7983ed619bf9437b9 + checksum: 10c0/faf4bad2cfe24e2083be647ba5127b4c80628db90fcfdbd0b5300c498686f9e733efcef924f4be3df06f3dda13515f85e9103be631e0ec6d5940691022021a20 languageName: node linkType: hard @@ -6683,11 +6235,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.0.1": - version: 5.4.0 - resolution: "eslint-plugin-prettier@npm:5.4.0" + version: 5.5.6 + resolution: "eslint-plugin-prettier@npm:5.5.6" dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.11.0" + prettier-linter-helpers: "npm:^1.0.1" + synckit: "npm:^0.11.13" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -6698,7 +6250,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10c0/50718d16266dfbe6909697f9d7c9188d2664f5be50fa1de4decc0c8236565570823fdf5973f89cd51254af5551b6160650e092716002a62aaa0f0b2c18e8fc3e + checksum: 10c0/af37126c947ff3e87ff1ea76408db8cb1c7da966ebdaba68c6dd5924da7eb1b43b1abc4796d753a97b1bc26ea94c5497093e6ab9f8588fffe558d5a554e19bbf languageName: node linkType: hard @@ -6831,11 +6383,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2, esquery@npm:^1.5.0": - version: 1.6.0 - resolution: "esquery@npm:1.6.0" + version: 1.7.0 + resolution: "esquery@npm:1.7.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 + checksum: 10c0/77d5173db450b66f3bc685d11af4c90cffeedb340f34a39af96d43509a335ce39c894fd79233df32d38f5e4e219fa0f7076f6ec90bae8320170ba082c0db4793 languageName: node linkType: hard @@ -6909,9 +6461,9 @@ __metadata: linkType: hard "eventsource-parser@npm:^3.0.0, eventsource-parser@npm:^3.0.1": - version: 3.0.8 - resolution: "eventsource-parser@npm:3.0.8" - checksum: 10c0/3a73eee85311f33b12fa558381a477c1bdcf8c024a429a9d48f87b043e328c26d24ed280fd7ca92e2fdd4c8c37f749b758420c1533778aaca2beabf895024efa + version: 3.1.0 + resolution: "eventsource-parser@npm:3.1.0" + checksum: 10c0/5ab4c6c9a2a042be0b387b6d03810eb580bac4ce90e299ede56458125a97ffe3af8145b2740089fc898a96cfa5aae792ee79f2a06257fba2776b0e7bce037071 languageName: node linkType: hard @@ -6972,23 +6524,23 @@ __metadata: linkType: hard "expect-type@npm:^1.2.1": - version: 1.3.0 - resolution: "expect-type@npm:1.3.0" - checksum: 10c0/8412b3fe4f392c420ab41dae220b09700e4e47c639a29ba7ba2e83cc6cffd2b4926f7ac9e47d7e277e8f4f02acda76fd6931cb81fd2b382fa9477ef9ada953fd + version: 1.4.0 + resolution: "expect-type@npm:1.4.0" + checksum: 10c0/d40d76b8570695d36587beb3cc28494da2ca3ec8f04e67f5622ed2d372d850e401a9adef19c6835e1a8173903f157c79540b34c7b3fbd7cd8ce726cc903c57b7 languageName: node linkType: hard -"expect@npm:30.3.0": - version: 30.3.0 - resolution: "expect@npm:30.3.0" +"expect@npm:30.4.1": + version: 30.4.1 + resolution: "expect@npm:30.4.1" dependencies: - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/a07a157a0c8b3f1e29bfe5ccbf03a3add2c69fe60d1af8a0980053bb6403d721d5f5e4616f1ea5833b747913f8c880c79ce4d98c23a71a2f0c27cf7273892576 + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/ad04fbdffac5a2bae186478938a60f737e3aac823db9a80c87f3f390f9f458bddcc454dc3a3997d715706747c6aff928923e6a71db3a221adb89a51cc1582e72 languageName: node linkType: hard @@ -7000,13 +6552,14 @@ __metadata: linkType: hard "express-rate-limit@npm:^8.2.1": - version: 8.4.1 - resolution: "express-rate-limit@npm:8.4.1" + version: 8.6.0 + resolution: "express-rate-limit@npm:8.6.0" dependencies: - ip-address: "npm:10.1.0" + debug: "npm:^4.4.3" + ip-address: "npm:^10.2.0" peerDependencies: express: ">= 4.11" - checksum: 10c0/ead87bcf7b9b4094d2a597b6a77569eed34c7d2ff3a449eeef25e1cd4a96dc3de17b8da93e8cf82f757ef441974846138b4bc371621fbc72346f8cc4a07a712b + checksum: 10c0/cce72e87963d90797ddced59de71046b90ca3ca088ab8e73587b50e812aaefa0b79f5a779743034f3ada01fd27d5c7f82063992a02981c7bc9ac74f8b01bb41a languageName: node linkType: hard @@ -7134,11 +6687,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.19.1 - resolution: "fastq@npm:1.19.1" + version: 1.20.1 + resolution: "fastq@npm:1.20.1" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630 + checksum: 10c0/e5dd725884decb1f11e5c822221d76136f239d0236f176fab80b7b8f9e7619ae57e6b4e5b73defc21e6b9ef99437ee7b545cff8e6c2c337819633712fa9d352e languageName: node linkType: hard @@ -7163,14 +6716,7 @@ __metadata: languageName: node linkType: hard -"fflate@npm:^0.8.0": - version: 0.8.2 - resolution: "fflate@npm:0.8.2" - checksum: 10c0/03448d630c0a583abea594835a9fdb2aaf7d67787055a761515bf4ed862913cfd693b4c4ffd5c3f3b355a70cf1e19033e9ae5aedcca103188aaff91b8bd6e293 - languageName: node - linkType: hard - -"fflate@npm:^0.8.1": +"fflate@npm:^0.8.0, fflate@npm:^0.8.1": version: 0.8.3 resolution: "fflate@npm:0.8.3" checksum: 10c0/eab181ca37f5348ae76d4b6f840e0026e30220e33153289ac942222d8b9638237d486507dbcc09878d724095bd354993a2ee48bbee99c8f2c6440d4448719aa7 @@ -7178,11 +6724,13 @@ __metadata: linkType: hard "figlet@npm:^1.1.1": - version: 1.8.1 - resolution: "figlet@npm:1.8.1" + version: 1.11.3 + resolution: "figlet@npm:1.11.3" + dependencies: + commander: "npm:^14.0.0" bin: figlet: bin/index.js - checksum: 10c0/20a9023ee316b2cbbeb9ba94c9adfdb9fc1bd150efec0ddd3492c23a03e3311ac77fb1a65cfa14e3bf4eca250ddcf98ca380871222cb9909bd50071b3602e8da + checksum: 10c0/9aaff7e7e5cdfe15df50b3a6204f74096c1afd2bc18e22e6f4bf6468b827313c100ab43e58bb23bcc66523c7fd9c87ad19ff6d3d58807b619a32a9c9bef3bd23 languageName: node linkType: hard @@ -7395,15 +6943,15 @@ __metadata: linkType: hard "form-data@npm:^4.0.5": - version: 4.0.5 - resolution: "form-data@npm:4.0.5" + version: 4.0.6 + resolution: "form-data@npm:4.0.6" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" es-set-tostringtag: "npm:^2.1.0" - hasown: "npm:^2.0.2" - mime-types: "npm:^2.1.12" - checksum: 10c0/dd6b767ee0bbd6d84039db12a0fa5a2028160ffbfaba1800695713b46ae974a5f6e08b3356c3195137f8530dcd9dfcb5d5ae1eeff53d0db1e5aad863b619ce3b + hasown: "npm:^2.0.4" + mime-types: "npm:^2.1.35" + checksum: 10c0/43947a77bf0ff45c6ceed789778982d47a3f3e720a74b71721174ebf3310a5f1a8be1d6b38a3ee3688e8a18a2c4273073ec0844cd37efda3eaf46d41c9c318ff languageName: node linkType: hard @@ -7425,13 +6973,6 @@ __metadata: languageName: node linkType: hard -"fresh@npm:0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a - languageName: node - linkType: hard - "fresh@npm:^2.0.0": version: 2.0.0 resolution: "fresh@npm:2.0.0" @@ -7439,6 +6980,13 @@ __metadata: languageName: node linkType: hard +"fresh@npm:~0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a + languageName: node + linkType: hard + "fromentries@npm:^1.2.0": version: 1.3.2 resolution: "fromentries@npm:1.3.2" @@ -7453,35 +7001,25 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^8.1.0": - version: 8.1.0 - resolution: "fs-extra@npm:8.1.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^4.0.0" - universalify: "npm:^0.1.0" - checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 - languageName: node - linkType: hard - -"fs-extra@npm:^9.0.0": - version: 9.1.0 - resolution: "fs-extra@npm:9.1.0" +"fs-extra@npm:^10.0.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" dependencies: - at-least-node: "npm:^1.0.0" graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 10c0/9b808bd884beff5cb940773018179a6b94a966381d005479f00adda6b44e5e3d4abf765135773d849cc27efe68c349e4a7b86acd7d3306d5932c14f3a4b17a92 + checksum: 10c0/5f579466e7109719d162a9249abbeffe7f426eb133ea486e020b89bc6d67a741134076bf439983f2eb79276ceaf6bd7b7c1e43c3fd67fe889863e69072fb0a5e languageName: node linkType: hard -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 languageName: node linkType: hard @@ -7544,6 +7082,13 @@ __metadata: languageName: node linkType: hard +"generator-function@npm:^2.0.0": + version: 2.0.1 + resolution: "generator-function@npm:2.0.1" + checksum: 10c0/8a9f59df0f01cfefafdb3b451b80555e5cf6d76487095db91ac461a0e682e4ff7a9dbce15f4ecec191e53586d59eece01949e05a4b4492879600bbbe8e28d6b8 + languageName: node + linkType: hard + "gensync@npm:^1.0.0-beta.2": version: 1.0.0-beta.2 resolution: "gensync@npm:1.0.0-beta.2" @@ -7551,10 +7096,10 @@ __metadata: languageName: node linkType: hard -"geojson-vt@npm:^4.0.2": - version: 4.0.2 - resolution: "geojson-vt@npm:4.0.2" - checksum: 10c0/f2ca14d868e46f6262f5d3862f8e38a2418ecf9bd7cd6938a67bf87f1e2f8fbf65345d95996711b07cdf8f05ef512be0e2c20f0a8179c6393c2fd41badcb0532 +"geojson-vt@npm:^4.0.3": + version: 4.0.3 + resolution: "geojson-vt@npm:4.0.3" + checksum: 10c0/e53d8c1177adbac0d684328de14c45d95a74f60332e610a29a48e3bbf91d88fec7dbbbcf3fe5825bd275c73ee2a5dd7f5d46faa3086478a255479c493e321a1d languageName: node linkType: hard @@ -7589,20 +7134,23 @@ __metadata: linkType: hard "get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.3.0": - version: 1.3.0 - resolution: "get-intrinsic@npm:1.3.0" + version: 1.3.1 + resolution: "get-intrinsic@npm:1.3.1" dependencies: + async-function: "npm:^1.0.0" + async-generator-function: "npm:^1.0.0" call-bind-apply-helpers: "npm:^1.0.2" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" function-bind: "npm:^1.1.2" + generator-function: "npm:^2.0.0" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" math-intrinsics: "npm:^1.1.0" - checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a + checksum: 10c0/9f4ab0cf7efe0fd2c8185f52e6f637e708f3a112610c88869f8f041bb9ecc2ce44bf285dfdbdc6f4f7c277a5b88d8e94a432374d97cca22f3de7fc63795deb5d languageName: node linkType: hard @@ -7620,7 +7168,7 @@ __metadata: languageName: node linkType: hard -"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": +"get-proto@npm:^1.0.1": version: 1.0.1 resolution: "get-proto@npm:1.0.1" dependencies: @@ -7662,15 +7210,6 @@ __metadata: languageName: node linkType: hard -"get-tsconfig@npm:^4.7.5": - version: 4.13.6 - resolution: "get-tsconfig@npm:4.13.6" - dependencies: - resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/bab6937302f542f97217cbe7cbbdfa7e85a56a377bc7a73e69224c1f0b7c9ae8365918e55752ae8648265903f506c1705f63c0de1d4bab1ec2830fef3e539a1a - languageName: node - linkType: hard - "getpass@npm:^0.1.1": version: 0.1.7 resolution: "getpass@npm:0.1.7" @@ -7698,7 +7237,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.0.0, glob@npm:^10.5.0": +"glob@npm:^10.0.0, glob@npm:^10.4.1, glob@npm:^10.5.0": version: 10.5.0 resolution: "glob@npm:10.5.0" dependencies: @@ -7714,23 +7253,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.4.1": - version: 10.4.5 - resolution: "glob@npm:10.4.5" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^3.1.2" - minimatch: "npm:^9.0.4" - minipass: "npm:^7.1.2" - package-json-from-dist: "npm:^1.0.0" - path-scurry: "npm:^1.11.1" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e - languageName: node - linkType: hard - -"glob@npm:^13.0.0, glob@npm:^13.0.3, glob@npm:^13.0.6": +"glob@npm:^13.0.3, glob@npm:^13.0.6": version: 13.0.6 resolution: "glob@npm:13.0.6" dependencies: @@ -7741,7 +7264,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6, glob@npm:^7.1.7": +"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: @@ -7796,13 +7319,6 @@ __metadata: languageName: node linkType: hard -"globals@npm:^11.1.0": - version: 11.12.0 - resolution: "globals@npm:11.12.0" - checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 - languageName: node - linkType: hard - "globals@npm:^13.19.0, globals@npm:^13.24.0": version: 13.24.0 resolution: "globals@npm:13.24.0" @@ -7834,11 +7350,11 @@ __metadata: linkType: hard "goober@npm:^2.1.16": - version: 2.1.18 - resolution: "goober@npm:2.1.18" + version: 2.1.19 + resolution: "goober@npm:2.1.19" peerDependencies: csstype: ^3.0.10 - checksum: 10c0/de9bf7b6f57417900afac81a479b85d8c0bcb0322ba8b174f9287d10e7891ba7e33db5fe2b0cdd75281c69130e76eb0c694345acf45ea57e4e4a2db8e4c4f021 + checksum: 10c0/f6a01f2e8abfef571ac539f96e650dcde964e7c0bef6c9055a8c8e110624ccd7b51ab90706a806ca570a56141ea689d355fb1cec3ee9209499c249638883990d languageName: node linkType: hard @@ -7882,13 +7398,6 @@ __metadata: languageName: node linkType: hard -"gud@npm:^1.0.0": - version: 1.0.0 - resolution: "gud@npm:1.0.0" - checksum: 10c0/a4db6edc18e2c4e3a22dc9e639e40a4e5650d53dae9cf384a96d5380dfa17ddda376cf6b7797a5c30d140d2532e5a69d167bdb70c2c151dd673253bac6b027f3 - languageName: node - linkType: hard - "har-schema@npm:^2.0.0": version: 2.0.0 resolution: "har-schema@npm:2.0.0" @@ -7978,12 +7487,12 @@ __metadata: languageName: node linkType: hard -"hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" +"hasown@npm:^2.0.2, hasown@npm:^2.0.3, hasown@npm:^2.0.4": + version: 2.0.4 + resolution: "hasown@npm:2.0.4" dependencies: function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + checksum: 10c0/2d8de939e270b70618f8cebb69746620db10617dbb495bc66ddad326955ea24d3ca4af133aff3eb7c1853e0218f867bc2b050ec26fe02e3aea58f880ffc5e506 languageName: node linkType: hard @@ -8059,26 +7568,13 @@ __metadata: languageName: node linkType: hard -"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1": +"http-cache-semantics@npm:^4.0.0": version: 4.2.0 resolution: "http-cache-semantics@npm:4.2.0" checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37 languageName: node linkType: hard -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: "npm:2.0.0" - inherits: "npm:2.0.4" - setprototypeof: "npm:1.2.0" - statuses: "npm:2.0.1" - toidentifier: "npm:1.0.1" - checksum: 10c0/fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 - languageName: node - linkType: hard - "http-errors@npm:^2.0.0, http-errors@npm:^2.0.1, http-errors@npm:~2.0.1": version: 2.0.1 resolution: "http-errors@npm:2.0.1" @@ -8092,7 +7588,7 @@ __metadata: languageName: node linkType: hard -"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.2": +"http-proxy-agent@npm:^7.0.2": version: 7.0.2 resolution: "http-proxy-agent@npm:7.0.2" dependencies: @@ -8123,7 +7619,7 @@ __metadata: languageName: node linkType: hard -"https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.6": +"https-proxy-agent@npm:^7.0.6": version: 7.0.6 resolution: "https-proxy-agent@npm:7.0.6" dependencies: @@ -8149,12 +7645,12 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.7.0, iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": - version: 0.7.2 - resolution: "iconv-lite@npm:0.7.2" +"iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": + version: 0.7.3 + resolution: "iconv-lite@npm:0.7.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722 + checksum: 10c0/be2fd2414f7e94be3a63063fa0ad5919c16bc7b6e00c77eea0765ced6db405739f38dd51016583058fba25cc1d0106ba30b83fbb7a7e32f824d4db76f23d8d33 languageName: node linkType: hard @@ -8173,9 +7669,9 @@ __metadata: linkType: hard "immer@npm:^11.0.0": - version: 11.1.4 - resolution: "immer@npm:11.1.4" - checksum: 10c0/77beca6b0a4e361b30414189d63c64beb7df40ac1d8cbf524308fcbabe755e9aa49db3c6e95a6e412911416fec621f2c8470be5ec79feedc6abd6e4f7f18a9ce + version: 11.1.15 + resolution: "immer@npm:11.1.15" + checksum: 10c0/5215eaec9641ad786ae8940a489514c26ce3726f8c49f0191a754902800f3ddd102b0653e894cabe7049d93e77b86d67d19953e778ffebba56848739a31b3b79 languageName: node linkType: hard @@ -8232,7 +7728,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": +"inherits@npm:2, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 @@ -8271,14 +7767,7 @@ __metadata: languageName: node linkType: hard -"ip-address@npm:10.1.0": - version: 10.1.0 - resolution: "ip-address@npm:10.1.0" - checksum: 10c0/0103516cfa93f6433b3bd7333fa876eb21263912329bfa47010af5e16934eeeff86f3d2ae700a3744a137839ddfad62b900c7a445607884a49b5d1e32a3d7566 - languageName: node - linkType: hard - -"ip-address@npm:^10.0.1": +"ip-address@npm:^10.2.0": version: 10.2.0 resolution: "ip-address@npm:10.2.0" checksum: 10c0/5a00aada6e922c9c69dfc800ed5d0fa3348675ebdeed0e1575f503f27ca385b5f534363c9af7ad1daf64c1f1409388cdd3cc2e9b9b0fe1c924a431378d55075a @@ -8375,12 +7864,12 @@ __metadata: languageName: node linkType: hard -"is-core-module@npm:^2.16.0": - version: 2.16.1 - resolution: "is-core-module@npm:2.16.1" +"is-core-module@npm:^2.16.1": + version: 2.16.2 + resolution: "is-core-module@npm:2.16.2" dependencies: - hasown: "npm:^2.0.2" - checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd + hasown: "npm:^2.0.3" + checksum: 10c0/14b4258390283709c15476d023ec173e27458d5d014ccdb8ed39d576e551c3fa45498b7c9fe178f1529c4cb2648ddd58852a6a62107a019f6e349529f277518a languageName: node linkType: hard @@ -8434,14 +7923,15 @@ __metadata: linkType: hard "is-generator-function@npm:^1.0.7": - version: 1.1.0 - resolution: "is-generator-function@npm:1.1.0" + version: 1.1.2 + resolution: "is-generator-function@npm:1.1.2" dependencies: - call-bound: "npm:^1.0.3" - get-proto: "npm:^1.0.0" + call-bound: "npm:^1.0.4" + generator-function: "npm:^2.0.0" + get-proto: "npm:^1.0.1" has-tostringtag: "npm:^1.0.2" safe-regex-test: "npm:^1.1.0" - checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a + checksum: 10c0/83da102e89c3e3b71d67b51d47c9f9bc862bceb58f87201727e27f7fa19d1d90b0ab223644ecaee6fc6e3d2d622bb25c966fbdaf87c59158b01ce7c0fe2fa372 languageName: node linkType: hard @@ -8569,13 +8059,20 @@ __metadata: languageName: node linkType: hard -"is-stream@npm:^2.0.0, is-stream@npm:^2.0.1": +"is-stream@npm:^2.0.0": version: 2.0.1 resolution: "is-stream@npm:2.0.1" checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 languageName: node linkType: hard +"is-stream@npm:^4.0.0": + version: 4.0.1 + resolution: "is-stream@npm:4.0.1" + checksum: 10c0/2706c7f19b851327ba374687bc4a3940805e14ca496dc672b9629e744d143b1ad9c6f1b162dece81c7bfbc0f83b32b61ccc19ad2e05aad2dd7af347408f60c7f + languageName: node + linkType: hard + "is-string@npm:^1.0.7, is-string@npm:^1.1.1": version: 1.1.1 resolution: "is-string@npm:1.1.1" @@ -8806,7 +8303,7 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3": +"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3, istanbul-reports@npm:^3.1.7": version: 3.2.0 resolution: "istanbul-reports@npm:3.2.0" dependencies: @@ -8816,16 +8313,6 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.1.7": - version: 3.1.7 - resolution: "istanbul-reports@npm:3.1.7" - dependencies: - html-escaper: "npm:^2.0.0" - istanbul-lib-report: "npm:^3.0.0" - checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 - languageName: node - linkType: hard - "jackspeak@npm:^3.1.2": version: 3.4.3 resolution: "jackspeak@npm:3.4.3" @@ -8839,58 +8326,58 @@ __metadata: languageName: node linkType: hard -"jest-changed-files@npm:30.3.0": - version: 30.3.0 - resolution: "jest-changed-files@npm:30.3.0" +"jest-changed-files@npm:30.4.1": + version: 30.4.1 + resolution: "jest-changed-files@npm:30.4.1" dependencies: execa: "npm:^5.1.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - checksum: 10c0/5a2f9790f8ab7f5804ebbf0fcdd908c40286d602d76abbecc6bea72e7f3c60b77dc8a3d3f5acdddd11653b2574f471a5c126ceda0734bc6a7d607cf145843525 + checksum: 10c0/324bbec3920a7d9ceb1d11872b9f1befe73d152a7ef289243f663bf3b22afe124c2c656ec316e44393f30a83b74a1738b56307a066906fa49b800686fd4d0f04 languageName: node linkType: hard -"jest-circus@npm:30.3.0, jest-circus@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-circus@npm:30.3.0" +"jest-circus@npm:30.4.2, jest-circus@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-circus@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" co: "npm:^4.6.0" dedent: "npm:^1.6.0" is-generator-fn: "npm:^2.1.0" - jest-each: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-each: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" pure-rand: "npm:^7.0.0" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/a3a0eb973699b400fb6de4207a7fbc5b33f51523e5e94f954d0e6e60418ea95099883614495fce54d805a321cb65e883592048b73203a59b8f4e53d1bb975a07 + checksum: 10c0/5d99f1336eb249057063a007fabad4ced802501fbaad7ddeea8db9553fa54fbd44d26e71e8bf61a0979d42b3b93a3d920e6f00afa26cdbb70d1e7d0969515d10 languageName: node linkType: hard -"jest-cli@npm:30.3.0": - version: 30.3.0 - resolution: "jest-cli@npm:30.3.0" +"jest-cli@npm:30.4.2": + version: 30.4.2 + resolution: "jest-cli@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" exit-x: "npm:^0.2.2" import-local: "npm:^3.2.0" - jest-config: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-config: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" yargs: "npm:^17.7.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -8899,35 +8386,35 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/764d77551e0fb6d666212e89d01be6f7bb1a2b3adb918bba7c5c37593a11b01cf2af645506c2b6438335cfc79bfcf41bfd4680958d8ca751851752a7c66269d3 + checksum: 10c0/a036a1bf06ce7d5fed644a518c4a4ccf60c5fe5f3d96d143973048e6690c4a28a4f97fa3275d90ca236430a1b2a7c10544e7e190a4f2edfdf0a4e6daf1f6a384 languageName: node linkType: hard -"jest-config@npm:30.3.0": - version: 30.3.0 - resolution: "jest-config@npm:30.3.0" +"jest-config@npm:30.4.2": + version: 30.4.2 + resolution: "jest-config@npm:30.4.2" dependencies: "@babel/core": "npm:^7.27.4" "@jest/get-type": "npm:30.1.0" - "@jest/pattern": "npm:30.0.1" - "@jest/test-sequencer": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - babel-jest: "npm:30.3.0" + "@jest/pattern": "npm:30.4.0" + "@jest/test-sequencer": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + babel-jest: "npm:30.4.1" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" deepmerge: "npm:^4.3.1" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-circus: "npm:30.3.0" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-circus: "npm:30.4.2" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-runner: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" parse-json: "npm:^5.2.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" strip-json-comments: "npm:^3.1.1" peerDependencies: @@ -8941,78 +8428,78 @@ __metadata: optional: true ts-node: optional: true - checksum: 10c0/157607e5ac5e83924df97d992fbd40a1540af07c5a7be296fae49455b3729687847304f3b4a9112e7da17593b76cec3453cd55c1ecd4334f7318f2489d7d10a1 + checksum: 10c0/18300b1dc54a4bfb5d1db6c10aeb01b6c64736224e3f60d119da9504d49cbab5a76d789f38c44af7d168418463356db6843ad7e44f249c63ce7f409758eba0c6 languageName: node linkType: hard -"jest-diff@npm:30.3.0": - version: 30.3.0 - resolution: "jest-diff@npm:30.3.0" +"jest-diff@npm:30.4.1": + version: 30.4.1 + resolution: "jest-diff@npm:30.4.1" dependencies: - "@jest/diff-sequences": "npm:30.3.0" + "@jest/diff-sequences": "npm:30.4.0" "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - pretty-format: "npm:30.3.0" - checksum: 10c0/573a2a1a155b95fbde547d8ee33a5375179a8d03d4586025478dac16d695e4614aef075c3afa57e0f3a96cea8f638fa68a55c1e625f6e86b4f5b9e5850311ffb + pretty-format: "npm:30.4.1" + checksum: 10c0/787e11f0ea27e94815479d6c5415e4173da1e74bede34c1515b8515fc9d1fe053e2ad25a3c31f9998a7292c186a0e4d395ed82e0e149d57d7708ee6759b442e9 languageName: node linkType: hard -"jest-docblock@npm:30.2.0": - version: 30.2.0 - resolution: "jest-docblock@npm:30.2.0" +"jest-docblock@npm:30.4.0": + version: 30.4.0 + resolution: "jest-docblock@npm:30.4.0" dependencies: detect-newline: "npm:^3.1.0" - checksum: 10c0/2578366604eef1b36d59ffe1fc52a710995571535d437f83d94ff94756a83f78e699c1ba004c38a34c01859d669fd6c64e865c23c5a7d5bf4837cfca4bef3dda + checksum: 10c0/1fe1c971207e1b905e4f23d98e508a03ae631337e9ffa347ff2f6df81a1d75ced7ed3e52a809fad75fb8a8cd55b6bda4483bc124e5e1d7529eeb4ef76b29e913 languageName: node linkType: hard -"jest-each@npm:30.3.0": - version: 30.3.0 - resolution: "jest-each@npm:30.3.0" +"jest-each@npm:30.4.1": + version: 30.4.1 + resolution: "jest-each@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/d23d2b43b3ea42beaf99648e2cf1c74b8a13c3e45c7c882979171471c225f7d666cb4a0d5f1ff9031b4504866fa3badc7266ffd885d3d8035420c559a31501e1 + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/41bc1cec23901cb0c7d8f547a70574fffca8cc16a1660ed97645bf3b61f4e6151aaa58bb14ce55a3cd9f5a63a2cc782a39366caf3304a2159d1e3cc5ae79a9e4 languageName: node linkType: hard -"jest-environment-node@npm:30.3.0, jest-environment-node@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-environment-node@npm:30.3.0" +"jest-environment-node@npm:30.4.1, jest-environment-node@npm:^30.0.4": + version: 30.4.1 + resolution: "jest-environment-node@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - checksum: 10c0/2a4be80861e569fa11456d89ff2aaedd71726ae02ade8f2cc6fbc86ba8749e24c37864676c4718fc08a40f6e6d2b2b51bc48d715b09b1e93e15e42e4a10f7b5b + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + checksum: 10c0/d8d6bb22bfd280f077b5856558d9d7112c48fd3bae6eda9b76694f1c8e1be783a725686a137437d180c9d49e6b37386c8e342e0b8e5bfcb6526dee9c10cc31ec languageName: node linkType: hard -"jest-haste-map@npm:30.3.0": - version: 30.3.0 - resolution: "jest-haste-map@npm:30.3.0" +"jest-haste-map@npm:30.4.1": + version: 30.4.1 + resolution: "jest-haste-map@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" anymatch: "npm:^3.1.3" fb-watchman: "npm:^2.0.2" fsevents: "npm:^2.3.3" graceful-fs: "npm:^4.2.11" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" picomatch: "npm:^4.0.3" walker: "npm:^1.0.8" dependenciesMeta: fsevents: optional: true - checksum: 10c0/b9ef350082b15d4c119d6188f781024d859d6cfb17ae25d15c90c3a373234e16109afbeffdcf1af4baf6a85eb0cbbab00439c981ad43037c0f05d89ff98bd1af + checksum: 10c0/1350c24952bbf31c86cb1ed4e2e5edd4766a93e2be8816c4648c05463d06cfae89f3c73732f9274fdb626fdfdfe6605ed6f259b6c21257df536a6379d4b9a5e7 languageName: node linkType: hard @@ -9048,53 +8535,54 @@ __metadata: languageName: node linkType: hard -"jest-leak-detector@npm:30.3.0": - version: 30.3.0 - resolution: "jest-leak-detector@npm:30.3.0" +"jest-leak-detector@npm:30.4.1": + version: 30.4.1 + resolution: "jest-leak-detector@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/a648c082b74e6c7d0c2e890002094ba97b108398fa3d0316958fc74321aa7b0824507a685d261a463856f219a724b86a6073bac86d351cf0675ecf962c1ee0ca + pretty-format: "npm:30.4.1" + checksum: 10c0/57256ac08f12186e3ed1687126b8d75a12de9c4ffa959ff41322e9ba5f93e3ed8af91dc36bc4d59f77cef6d4008bcf5a3e646cdd950743898576aec8dbae6778 languageName: node linkType: hard -"jest-matcher-utils@npm:30.3.0": - version: 30.3.0 - resolution: "jest-matcher-utils@npm:30.3.0" +"jest-matcher-utils@npm:30.4.1": + version: 30.4.1 + resolution: "jest-matcher-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - jest-diff: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/4c5f4b6435964110e64c4b5b42e3553fffe303ecdd68021147a7bcc72914aec3a899867c50db22b250c72aded53e3f7a9f64d83c9dca2e65ce27f36d23c6ca78 + jest-diff: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/ddbb0c7075def27ba30160883c327cb3fd13f561f5789d00a1edca1b48b0651f8ea23a1c51bcfcb6413a68c47d658bcf47a34701b8a39ce135dd28d87a3117af languageName: node linkType: hard -"jest-message-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-message-util@npm:30.3.0" +"jest-message-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-message-util@npm:30.4.1" dependencies: "@babel/code-frame": "npm:^7.27.1" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/stack-utils": "npm:^2.0.3" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" + jest-util: "npm:30.4.1" picomatch: "npm:^4.0.3" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/6ce611caef76394872b23a111286b48e56f42655d14a5fbd0629d9b7437ed892e85ad96b15864bc22185c24ef670afb6665c57b9729458a36d50ffe8310f0926 + checksum: 10c0/ae7427544e042bc1c14abf3c0dbe8b83d0dbec22a9a5efefaca5b8ccb6b9bf391abe732e6f2117ca995c6889bfe1be35c78cec75e5ea0a50e28cffe1ba6f9fdf languageName: node linkType: hard -"jest-mock@npm:30.3.0": - version: 30.3.0 - resolution: "jest-mock@npm:30.3.0" +"jest-mock@npm:30.4.1": + version: 30.4.1 + resolution: "jest-mock@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-util: "npm:30.3.0" - checksum: 10c0/9d95d550c6c998a85887c48ff5ee26de4bca18be91462ea8a8135d6023d591132465756f74981ca39b60f8708dfe38213a55bd4b619798a7b9438ca10d718099 + jest-util: "npm:30.4.1" + checksum: 10c0/5185a41255285c1634c5d85dda037afaaadfc12793b3293c9e253a30bb67449f8df968447f830abb9cf7a52e63694e6734680130e8085ce119056280890bf6fc languageName: node linkType: hard @@ -9128,96 +8616,96 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:30.0.1, jest-regex-util@npm:^30.0.0": - version: 30.0.1 - resolution: "jest-regex-util@npm:30.0.1" - checksum: 10c0/f30c70524ebde2d1012afe5ffa5691d5d00f7d5ba9e43d588f6460ac6fe96f9e620f2f9b36a02d0d3e7e77bc8efb8b3450ae3b80ac53c8be5099e01bf54f6728 +"jest-regex-util@npm:30.4.0, jest-regex-util@npm:^30.0.0": + version: 30.4.0 + resolution: "jest-regex-util@npm:30.4.0" + checksum: 10c0/fe7426f67b54d38bed8e9d6e6a099d63d72f41f5bf65b922d9d03fedcb55c614b45657207632f6ee22d0a59d8d11327891f258d23f68a58912fcdb0f7db48435 languageName: node linkType: hard -"jest-resolve-dependencies@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve-dependencies@npm:30.3.0" +"jest-resolve-dependencies@npm:30.4.2": + version: 30.4.2 + resolution: "jest-resolve-dependencies@npm:30.4.2" dependencies: - jest-regex-util: "npm:30.0.1" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/25dde0c8c050bc3437332f37ab87484f597596b80ece77a93e4da2b466b42e45cc5ad748270c1477587536de15eea1ffe83a32638e824b120830c3a87c9a5b71 + jest-regex-util: "npm:30.4.0" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/4101afabd2a4ef4e6c82bf82ea145286c1238373f7611938e8d47ddcf5aaa6e10af365436a934b7af194451e351774829cb021ac73f857b4873dcccc7aabb616 languageName: node linkType: hard -"jest-resolve@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve@npm:30.3.0" +"jest-resolve@npm:30.4.1": + version: 30.4.1 + resolution: "jest-resolve@npm:30.4.1" dependencies: chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" jest-pnp-resolver: "npm:^1.2.3" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" slash: "npm:^3.0.0" unrs-resolver: "npm:^1.7.11" - checksum: 10c0/540f59f160c232c1b922b111a93f24ef5202d75e00f2e994de976badf6e88879893b474320ff363a6b97259a7a208b6a4f5eeabede787eea9b7912a12ac64b1b + checksum: 10c0/0a99ef4f4fd7b3678d58a5e1cf8f0b5ec1997cdba21f5d66a8b26353d57a226f8e6a5fffc450c8836e90ab0e20d5e7935d0dea939d9a9b6a08781b9a7413184c languageName: node linkType: hard -"jest-runner@npm:30.3.0, jest-runner@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-runner@npm:30.3.0" +"jest-runner@npm:30.4.2, jest-runner@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-runner@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/environment": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/environment": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" exit-x: "npm:^0.2.2" graceful-fs: "npm:^4.2.11" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-leak-detector: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-resolve: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-haste-map: "npm:30.4.1" + jest-leak-detector: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-resolve: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + jest-worker: "npm:30.4.1" p-limit: "npm:^3.1.0" source-map-support: "npm:0.5.13" - checksum: 10c0/6fb205f48541658f0b23b6c9a6730f0133f07c994a22ef506ebfcded5bbb444b655ac828074157e6579e664609a46f6a5bf3d366b694c6c8b523b5207a70499c + checksum: 10c0/339e630fb1a7db52e208ed9f12f722122733fe9a450d9bd83c0fccc10fbc5142a8808f624c41ab1e25833af02f9c3eca85561554b75a5b3ad75b4a226f72c5cf languageName: node linkType: hard -"jest-runtime@npm:30.3.0": - version: 30.3.0 - resolution: "jest-runtime@npm:30.3.0" +"jest-runtime@npm:30.4.2": + version: 30.4.2 + resolution: "jest-runtime@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/globals": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/globals": "npm:30.4.1" "@jest/source-map": "npm:30.0.1" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" cjs-module-lexer: "npm:^2.1.0" collect-v8-coverage: "npm:^1.0.2" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" strip-bom: "npm:^4.0.0" - checksum: 10c0/79c486157a926d5be5c66356ad26cc3792cca1afb1490e255a550f52784b6c92eea42f1cb3b2c7565650ea777cf17ffc3f8e305d6b97888e7d273f6d7f282686 + checksum: 10c0/9fce55b0c78fbe47dc2c10a944e9513833fd43c14f292460ef5cdd91e375088bf35549336e66f69fc9d29bf4f410894e9a7eef0bf12a6f39d99174a5300c2c53 languageName: node linkType: hard @@ -9230,60 +8718,60 @@ __metadata: languageName: node linkType: hard -"jest-snapshot@npm:30.3.0": - version: 30.3.0 - resolution: "jest-snapshot@npm:30.3.0" +"jest-snapshot@npm:30.4.1": + version: 30.4.1 + resolution: "jest-snapshot@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" "@babel/generator": "npm:^7.27.5" "@babel/plugin-syntax-jsx": "npm:^7.27.1" "@babel/plugin-syntax-typescript": "npm:^7.27.1" "@babel/types": "npm:^7.27.3" - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - "@jest/snapshot-utils": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/snapshot-utils": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" babel-preset-current-node-syntax: "npm:^1.2.0" chalk: "npm:^4.1.2" - expect: "npm:30.3.0" + expect: "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-diff: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-diff: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" semver: "npm:^7.7.2" synckit: "npm:^0.11.8" - checksum: 10c0/c1dd295d9d4962f2504c965575212fc62a358a849c66ab96b2f6e608ebdf6a6029ca505bb0693664a54a534e581883665d404a59976a5b46b1a1f88b537e96c5 + checksum: 10c0/cebd70277b6f0d2606f22815480146cf1e37295ed69a1d16e260a99a2ab48db167857e2fb9a938923d22ac13203c83a5e31d7f066b58d87c6d42db58c914ff13 languageName: node linkType: hard -"jest-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-util@npm:30.3.0" +"jest-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-util@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" graceful-fs: "npm:^4.2.11" picomatch: "npm:^4.0.3" - checksum: 10c0/eea6f39e52a8cb2b1a28bb315a90dc6a8e450fffed73bb5ef4489d02d86f7d91be600d83f1dcba22956b8ac5fefa8f1b250e636c8402d3e8b50a5eec8b5963b2 + checksum: 10c0/3efe1f25e5a172d04c6af8612d82867ab603b7c1bd8cb89073ff834679b44eba178793cf3af162cf5e25be13aa736ebd23a7826683acc85bddc5873f305b1f6e languageName: node linkType: hard -"jest-validate@npm:30.3.0": - version: 30.3.0 - resolution: "jest-validate@npm:30.3.0" +"jest-validate@npm:30.4.1": + version: 30.4.1 + resolution: "jest-validate@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" camelcase: "npm:^6.3.0" chalk: "npm:^4.1.2" leven: "npm:^3.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/645629e9ae0926252dee26b0ad71b9f0392daa896328393479c63b1b13d2a70df4dac8b5053227c64e0120e930db1242897898c40706f135f20f73ef77fcf4f5 + pretty-format: "npm:30.4.1" + checksum: 10c0/23e6677ee6d06476f368c8b6d442b4207e5fbe062e74c1da3eae9ed30a18605f4e8a14809fa9cc7f22a2d8446e8de91a512f59c278720db2ad61c77dc25ffefc languageName: node linkType: hard @@ -9304,43 +8792,43 @@ __metadata: languageName: node linkType: hard -"jest-watcher@npm:30.3.0, jest-watcher@npm:^30.0.0": - version: 30.3.0 - resolution: "jest-watcher@npm:30.3.0" +"jest-watcher@npm:30.4.1, jest-watcher@npm:^30.0.0": + version: 30.4.1 + resolution: "jest-watcher@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" string-length: "npm:^4.0.2" - checksum: 10c0/2631be5cc122fbf14cb0bb7566cdea6d6c432b984d8ef3c6385254bb6c378342e0754cbd2dfe094d80762d44bd1c7015de2ec2100eb6f192906619d8b229e1a5 + checksum: 10c0/a56e1714b7b0f9c620c5cee95a84a48b780093594cd188e365a24768f208714895a0deb784ee48e4eec7f1828bc00435ab3c39208d490c33be3786937e997c97 languageName: node linkType: hard -"jest-worker@npm:30.3.0": - version: 30.3.0 - resolution: "jest-worker@npm:30.3.0" +"jest-worker@npm:30.4.1": + version: 30.4.1 + resolution: "jest-worker@npm:30.4.1" dependencies: "@types/node": "npm:*" "@ungap/structured-clone": "npm:^1.3.0" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.1.1" - checksum: 10c0/25dfb1bc43d389e1daf8baad0ef7964249f001a7da7d92c61e398840424ca13fb1fb6242f6e021f0cbb37952f90371fb8be1ef0183b5d04ef161fdb8f09ee78e + checksum: 10c0/3eb7ec7e928b82491e66ae6709e3a1eef3edad2bc351514a5d52037b997151989de6ce2912d6a5a3806ae3ae3bf6a1c36b1ad7bbc567d0790503fdb74576f140 languageName: node linkType: hard "jest@npm:^30.0.4": - version: 30.3.0 - resolution: "jest@npm:30.3.0" + version: 30.4.2 + resolution: "jest@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/types": "npm:30.4.1" import-local: "npm:^3.2.0" - jest-cli: "npm:30.3.0" + jest-cli: "npm:30.4.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -9348,26 +8836,26 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/1f940424b741d1541c3d71e311f77c3cfaf31cff9ab2d53180333f00a31f157790a8d3d413b72b8dd2bb191aa75769fa741d9bc9085df779cd59689559a65815 + checksum: 10c0/26a76eaabfc043abd8ee702b97f61ff968dde03412efdb4a69c22c99a5e4bf47788a3e45f75134aec1377a686a9d59d1e3bae85a816e409013475a80de1458ec languageName: node linkType: hard "joi@npm:^17.11.0": - version: 17.13.3 - resolution: "joi@npm:17.13.3" + version: 17.13.4 + resolution: "joi@npm:17.13.4" dependencies: "@hapi/hoek": "npm:^9.3.0" "@hapi/topo": "npm:^5.1.0" "@sideway/address": "npm:^4.1.5" "@sideway/formula": "npm:^3.0.1" "@sideway/pinpoint": "npm:^2.0.0" - checksum: 10c0/9262aef1da3f1bec5b03caf50c46368899fe03b8ff26cbe3d53af4584dd1049079fc97230bbf1500b6149db7cc765b9ee45f0deb24bb6fc3fa06229d7148c17f + checksum: 10c0/5addfef638e90eb6a45a72e3884128d8d9a80c487cb8bfcb949be179b875ad1095af347fa1bd05c4ebec2b2ccbc3f3db5f34501c8672ecd16100de2b77087122 languageName: node linkType: hard -"joi@npm:^18.1.2": - version: 18.1.2 - resolution: "joi@npm:18.1.2" +"joi@npm:^18.2.1": + version: 18.2.3 + resolution: "joi@npm:18.2.3" dependencies: "@hapi/address": "npm:^5.1.1" "@hapi/formula": "npm:^3.0.2" @@ -9376,14 +8864,21 @@ __metadata: "@hapi/tlds": "npm:^1.1.1" "@hapi/topo": "npm:^6.0.2" "@standard-schema/spec": "npm:^1.1.0" - checksum: 10c0/67d6fcbd81c017adf31ae6e0e6cd9d82ba25d6835d2981970ec0ea3198f2e8223aded756cdb8d5ed14fff3d6da2e2684a0767a770bcc544ce00fdcf9748e104a + checksum: 10c0/ccf2cba791968330208d05ab2e4459d1f9532a31fd5323795734184dfa628a9373bca4252fc0b636a36656c5b7be4a28e986715737a8a779b8103a28d9988cd2 languageName: node linkType: hard "jose@npm:^6.1.3": - version: 6.2.3 - resolution: "jose@npm:6.2.3" - checksum: 10c0/aa91bccba22cc84d86308f833749bcb0b00441e35c24e0ac79abeac5f76dc62d47bdef9c1da6a0c609f5da6478595f52b252085888b89dbdb163861e40ea4188 + version: 6.2.4 + resolution: "jose@npm:6.2.4" + checksum: 10c0/aaba866d71a8cd5bfd7c2c228367318df99f36318d7c6f1e7bca835c3bdd74ea3fe38783277f7bf7c9703ae24338bb3642a6ccdef6aa54c006d29a9711e6f782 + languageName: node + linkType: hard + +"js-tokens@npm:^10.0.0": + version: 10.0.0 + resolution: "js-tokens@npm:10.0.0" + checksum: 10c0/a93498747812ba3e0c8626f95f75ab29319f2a13613a0de9e610700405760931624433a0de59eb7c27ff8836e526768fb20783861b86ef89be96676f2c996b64 languageName: node linkType: hard @@ -9414,13 +8909,13 @@ __metadata: linkType: hard "js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" + version: 4.3.0 + resolution: "js-yaml@npm:4.3.0" dependencies: argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + checksum: 10c0/058b30473d6915ca5b4feb11e2f7d4d97242f98d00a798ed48dd90b46b7c640398afe9128c5db22c5300f8c6528fe2a174b9a93f351a70ebc28c6203938d8bff languageName: node linkType: hard @@ -9432,9 +8927,9 @@ __metadata: linkType: hard "jsdoc-type-pratt-parser@npm:^4.0.0": - version: 4.1.0 - resolution: "jsdoc-type-pratt-parser@npm:4.1.0" - checksum: 10c0/7700372d2e733a32f7ea0a1df9cec6752321a5345c11a91b2ab478a031a426e934f16d5c1f15c8566c7b2c10af9f27892a29c2c789039f595470e929a4aa60ea + version: 4.8.0 + resolution: "jsdoc-type-pratt-parser@npm:4.8.0" + checksum: 10c0/c2b77751d35e3931db9da96720b544b215830722b748b58ee8ce51ec72092006a4a03c5a59c86a4552d0094975c8d3bcc21a7241a0e47860e127d3fba5b55f33 languageName: node linkType: hard @@ -9588,7 +9083,7 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:6.2.1": +"jsonfile@npm:6.2.1, jsonfile@npm:^6.0.1": version: 6.2.1 resolution: "jsonfile@npm:6.2.1" dependencies: @@ -9613,19 +9108,6 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" - dependencies: - graceful-fs: "npm:^4.1.6" - universalify: "npm:^2.0.0" - dependenciesMeta: - graceful-fs: - optional: true - checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 - languageName: node - linkType: hard - "jsonify@npm:^0.0.1": version: 0.0.1 resolution: "jsonify@npm:0.0.1" @@ -9633,7 +9115,7 @@ __metadata: languageName: node linkType: hard -"jspdf@npm:^4.0.0": +"jspdf@npm:^4.2.1": version: 4.2.1 resolution: "jspdf@npm:4.2.1" dependencies: @@ -9754,99 +9236,99 @@ __metadata: languageName: node linkType: hard -"lightningcss-android-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-android-arm64@npm:1.32.0" +"lightningcss-android-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-android-arm64@npm:1.33.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-arm64@npm:1.32.0" +"lightningcss-darwin-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-arm64@npm:1.33.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-x64@npm:1.32.0" +"lightningcss-darwin-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-x64@npm:1.33.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lightningcss-freebsd-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-freebsd-x64@npm:1.32.0" +"lightningcss-freebsd-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-freebsd-x64@npm:1.33.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lightningcss-linux-arm-gnueabihf@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm-gnueabihf@npm:1.32.0" +"lightningcss-linux-arm-gnueabihf@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.33.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"lightningcss-linux-arm64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-gnu@npm:1.32.0" +"lightningcss-linux-arm64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-arm64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-musl@npm:1.32.0" +"lightningcss-linux-arm64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"lightningcss-linux-x64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-gnu@npm:1.32.0" +"lightningcss-linux-x64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-x64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-musl@npm:1.32.0" +"lightningcss-linux-x64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-musl@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"lightningcss-win32-arm64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-arm64-msvc@npm:1.32.0" +"lightningcss-win32-arm64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.33.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lightningcss-win32-x64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-x64-msvc@npm:1.32.0" +"lightningcss-win32-x64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.33.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "lightningcss@npm:^1.32.0": - version: 1.32.0 - resolution: "lightningcss@npm:1.32.0" + version: 1.33.0 + resolution: "lightningcss@npm:1.33.0" dependencies: detect-libc: "npm:^2.0.3" - lightningcss-android-arm64: "npm:1.32.0" - lightningcss-darwin-arm64: "npm:1.32.0" - lightningcss-darwin-x64: "npm:1.32.0" - lightningcss-freebsd-x64: "npm:1.32.0" - lightningcss-linux-arm-gnueabihf: "npm:1.32.0" - lightningcss-linux-arm64-gnu: "npm:1.32.0" - lightningcss-linux-arm64-musl: "npm:1.32.0" - lightningcss-linux-x64-gnu: "npm:1.32.0" - lightningcss-linux-x64-musl: "npm:1.32.0" - lightningcss-win32-arm64-msvc: "npm:1.32.0" - lightningcss-win32-x64-msvc: "npm:1.32.0" + lightningcss-android-arm64: "npm:1.33.0" + lightningcss-darwin-arm64: "npm:1.33.0" + lightningcss-darwin-x64: "npm:1.33.0" + lightningcss-freebsd-x64: "npm:1.33.0" + lightningcss-linux-arm-gnueabihf: "npm:1.33.0" + lightningcss-linux-arm64-gnu: "npm:1.33.0" + lightningcss-linux-arm64-musl: "npm:1.33.0" + lightningcss-linux-x64-gnu: "npm:1.33.0" + lightningcss-linux-x64-musl: "npm:1.33.0" + lightningcss-win32-arm64-msvc: "npm:1.33.0" + lightningcss-win32-x64-msvc: "npm:1.33.0" dependenciesMeta: lightningcss-android-arm64: optional: true @@ -9870,7 +9352,7 @@ __metadata: optional: true lightningcss-win32-x64-msvc: optional: true - checksum: 10c0/70945bd55097af46fc9fab7f5ed09cd5869d85940a2acab7ee06d0117004a1d68155708a2d462531cea2fc3c67aefc9333a7068c80b0b78dd404c16838809e03 + checksum: 10c0/ce1f8279fbae636dbf37fa6e7385d5f98ed881d72af3362f24afbd4685e19c1fcdfecf17e5dd77f2ebee3d0c23ade276230d85842d07292229a2cffba8ff20a3 languageName: node linkType: hard @@ -9881,7 +9363,7 @@ __metadata: languageName: node linkType: hard -"linkify-it@npm:^5.0.1": +"linkify-it@npm:^5.0.2": version: 5.0.2 resolution: "linkify-it@npm:5.0.2" dependencies: @@ -9986,7 +9468,7 @@ __metadata: languageName: node linkType: hard -"lodash@npm:^4, lodash@npm:^4.17.15, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": +"lodash@npm:^4, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": version: 4.18.1 resolution: "lodash@npm:4.18.1" checksum: 10c0/757228fc68805c59789e82185135cf85f05d0b2d3d54631d680ca79ec21944ec8314d4533639a14b8bcfbd97a517e78960933041a5af17ecb693ec6eecb99a27 @@ -10007,7 +9489,7 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: @@ -10018,14 +9500,7 @@ __metadata: languageName: node linkType: hard -"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2": - version: 3.1.3 - resolution: "loupe@npm:3.1.3" - checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541 - languageName: node - linkType: hard - -"loupe@npm:^3.1.4": +"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2, loupe@npm:^3.1.4": version: 3.2.1 resolution: "loupe@npm:3.2.1" checksum: 10c0/910c872cba291309664c2d094368d31a68907b6f5913e989d301b5c25f30e97d76d77f23ab3bf3b46d0f601ff0b6af8810c10c31b91d2c6b2f132809ca2cc705 @@ -10054,16 +9529,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.0.0": - version: 11.1.0 - resolution: "lru-cache@npm:11.1.0" - checksum: 10c0/85c312f7113f65fae6a62de7985348649937eb34fb3d212811acbf6704dc322a421788aca253b62838f1f07049a84cc513d88f494e373d3756514ad263670a64 - languageName: node - linkType: hard - -"lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": - version: 11.3.5 - resolution: "lru-cache@npm:11.3.5" - checksum: 10c0/5b54ef7b88afb4bd25b7a778f1b2b1cde32d9770913e530da34ab203cf0442413bcaa6e372800cbab9562557a4480e4d8bf32e3a368bb5a91b12218eca085c66 + version: 11.5.2 + resolution: "lru-cache@npm:11.5.2" + checksum: 10c0/ece1ad731f5b655e85d67047d04bfc13823dc77aa61c5454924a9869ba600a0104e39cc33d726021feef812bc347ca34a5608a5eb1972a5dd0870b7ecd42c3f2 languageName: node linkType: hard @@ -10101,7 +9569,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.0": +"magic-string@npm:^0.30.0, magic-string@npm:^0.30.17": version: 0.30.21 resolution: "magic-string@npm:0.30.21" dependencies: @@ -10110,15 +9578,6 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.17": - version: 0.30.17 - resolution: "magic-string@npm:0.30.17" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 - languageName: node - linkType: hard - "magicast@npm:^0.3.5": version: 0.3.5 resolution: "magicast@npm:0.3.5" @@ -10155,26 +9614,6 @@ __metadata: languageName: node linkType: hard -"make-fetch-happen@npm:^15.0.0": - version: 15.0.5 - resolution: "make-fetch-happen@npm:15.0.5" - dependencies: - "@gar/promise-retry": "npm:^1.0.0" - "@npmcli/agent": "npm:^4.0.0" - "@npmcli/redact": "npm:^4.0.0" - cacache: "npm:^20.0.1" - http-cache-semantics: "npm:^4.1.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^5.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^1.0.0" - proc-log: "npm:^6.0.0" - ssri: "npm:^13.0.0" - checksum: 10c0/527580eb5e5476e6ad07a4e3bd017d13e935f4be815674b442081ae5a721c13d3af5715006619e6be79a85723067e047f83a0c9e699f41d8cec43609a8de4f7b - languageName: node - linkType: hard - "makeerror@npm:1.0.12": version: 1.0.12 resolution: "makeerror@npm:1.0.12" @@ -10195,10 +9634,9 @@ __metadata: version: 0.0.0-use.local resolution: "mapguide-react-layout@workspace:." dependencies: - "@blueprintjs/core": "npm:^3.54.0" "@modelcontextprotocol/sdk": "npm:1.29.0" "@playwright/test": "npm:1.59.1" - "@reduxjs/toolkit": "npm:^2.11.2" + "@reduxjs/toolkit": "npm:^2.12.0" "@storybook/addon-actions": "npm:^8.6.18" "@storybook/addon-docs": "npm:^8.6.18" "@storybook/addon-knobs": "npm:^8.0.1" @@ -10226,29 +9664,29 @@ __metadata: "@vitest/coverage-v8": "npm:3.2.4" "@welldone-software/why-did-you-render": "npm:^7.0.1" barrelsby: "npm:2.8.1" - bestzip: "npm:2.2.3" - colorbrewer: "npm:^1.6.1" + bestzip: "npm:3.0.1" + colorbrewer: "npm:^1.7.0" concurrently: "npm:9.2.1" copyfiles: "npm:2.4.1" coveralls: "npm:3.1.1" cross-env: "npm:10.1.0" docsify-cli: "npm:4.4.4" - dompurify: "npm:^3.4.0" - geojson-vt: "npm:^4.0.2" + dompurify: "npm:^3.4.10" + geojson-vt: "npm:^4.0.3" jest-image-snapshot: "npm:6.5.2" jsdom: "npm:^26.1.0" jsonfile: "npm:6.2.1" - jspdf: "npm:^4.0.0" + jspdf: "npm:^4.2.1" lodash.debounce: "npm:^4.0.8" lodash.xor: "npm:^4.5.0" lodash.xorby: "npm:^4.7.0" ol: "npm:^10.9.0" papaparse: "npm:^5.5.3" patch-package: "npm:^8.0.0" - proj4: "npm:2.20.8" + proj4: "npm:2.20.9" raf: "npm:^3.4.1" react: "npm:^17.0.2" - react-colorful: "npm:^5.6.1" + react-colorful: "npm:^5.7.0" react-dom: "npm:^17.0.2" react-hot-toast: "npm:2.6.0" react-redux: "npm:^8.1.3" @@ -10268,33 +9706,25 @@ __metadata: typedoc-plugin-merge-modules: "npm:7.0.0" typescript: "npm:5.9.3" typescript-json-schema: "npm:^0.67.1" - vite: "npm:^8.0.14" + vite: "npm:^8.0.16" vitest: "npm:3.2.6" - wait-on: "npm:9.0.5" - peerDependencies: - "@blueprintjs/core": ^3.54.0 - "@blueprintjs/icons": ^3.33.0 - peerDependenciesMeta: - "@blueprintjs/core": - optional: true - "@blueprintjs/icons": - optional: true + wait-on: "npm:9.0.10" languageName: unknown linkType: soft "markdown-it@npm:^14.1.1": - version: 14.2.0 - resolution: "markdown-it@npm:14.2.0" + version: 14.3.0 + resolution: "markdown-it@npm:14.3.0" dependencies: argparse: "npm:^2.0.1" - entities: "npm:^4.4.0" - linkify-it: "npm:^5.0.1" + entities: "npm:^4.5.0" + linkify-it: "npm:^5.0.2" mdurl: "npm:^2.0.0" punycode.js: "npm:^2.3.1" uc.micro: "npm:^2.1.0" bin: markdown-it: bin/markdown-it.mjs - checksum: 10c0/1d3a50061d2fe4efbcf317aac853dbee6892ed6f5a217570eead723f2ef2dd1c9baaeef5a687cd283480c45c2d20724a73e84a9ed72843cf7b3b719067af40ef + checksum: 10c0/b2dea908968109d6e9088ac972254bca842157d85d2e6838d0eb263cd8106e7e6a72663b138366cc98f57441d9f3f2ebfb842bf7b2f9e1c13187ebe70e0af8f9 languageName: node linkType: hard @@ -10403,7 +9833,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.12, mime-types@npm:~2.1.19": +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35, mime-types@npm:~2.1.19": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -10453,7 +9883,7 @@ __metadata: languageName: node linkType: hard -"min-indent@npm:^1.0.0, min-indent@npm:^1.0.1": +"min-indent@npm:^1.0.0": version: 1.0.1 resolution: "min-indent@npm:1.0.1" checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c @@ -10479,29 +9909,20 @@ __metadata: linkType: hard "minimatch@npm:^3.0.3, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" + version: 3.1.5 + resolution: "minimatch@npm:3.1.5" dependencies: brace-expansion: "npm:^1.1.7" - checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 - languageName: node - linkType: hard - -"minimatch@npm:^5.1.0": - version: 5.1.6 - resolution: "minimatch@npm:5.1.6" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3 + checksum: 10c0/2ecbdc0d33f07bddb0315a8b5afbcb761307a8778b48f0b312418ccbced99f104a2d17d8aca7573433c70e8ccd1c56823a441897a45e384ea76ef401a26ace70 languageName: node linkType: hard "minimatch@npm:^9.0.4": - version: 9.0.5 - resolution: "minimatch@npm:9.0.5" + version: 9.0.9 + resolution: "minimatch@npm:9.0.9" dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + brace-expansion: "npm:^2.0.2" + checksum: 10c0/0b6a58530dbb00361745aa6c8cffaba4c90f551afe7c734830bd95fd88ebf469dd7355a027824ea1d09e37181cfeb0a797fb17df60c15ac174303ac110eb7e86 languageName: node linkType: hard @@ -10512,81 +9933,14 @@ __metadata: languageName: node linkType: hard -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e - languageName: node - linkType: hard - -"minipass-fetch@npm:^5.0.0": - version: 5.0.2 - resolution: "minipass-fetch@npm:5.0.2" - dependencies: - iconv-lite: "npm:^0.7.2" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^2.0.0" - minizlib: "npm:^3.0.1" - dependenciesMeta: - iconv-lite: - optional: true - checksum: 10c0/ce4ab9f21cfabaead2097d95dd33f485af8072fbc6b19611bce694965393453a1639d641c2bcf1c48f2ea7d41ea7fab8278373f1d0bee4e63b0a5b2cdd0ef649 - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.7 - resolution: "minipass-flush@npm:1.0.7" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/960915c02aa0991662c37c404517dd93708d17f96533b2ca8c1e776d158715d8107c5ced425ffc61674c167d93607f07f48a83c139ce1057f8781e5dfb4b90c2 - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 - languageName: node - linkType: hard - -"minipass-sized@npm:^2.0.0": - version: 2.0.0 - resolution: "minipass-sized@npm:2.0.0" - dependencies: - minipass: "npm:^7.1.2" - checksum: 10c0/f9201696a6f6d68610d04c9c83e3d2e5cb9c026aae1c8cbf7e17f386105cb79c1bb088dbc21bf0b1eb4f3fb5df384fd1e7aa3bf1f33868c416ae8c8a92679db8 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.1.2": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 - languageName: node - linkType: hard - -"minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.3": +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": version: 7.1.3 resolution: "minipass@npm:7.1.3" checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb languageName: node linkType: hard -"minizlib@npm:^3.0.1, minizlib@npm:^3.1.0": +"minizlib@npm:^3.1.0": version: 3.1.0 resolution: "minizlib@npm:3.1.0" dependencies: @@ -10629,25 +9983,16 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.11": - version: 3.3.11 - resolution: "nanoid@npm:3.3.11" +"nanoid@npm:^3.3.16": + version: 3.3.16 + resolution: "nanoid@npm:3.3.16" bin: nanoid: bin/nanoid.cjs - checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b + checksum: 10c0/bbf2dcffe22d2b62d16de2711752070b539c0f644c7916f823ad6521986b2078cbe524f2d6240f58c46e9141ea0c7b87a029e100c0f7f175228cacaf30e41bba languageName: node linkType: hard -"nanoid@npm:^3.3.12": - version: 3.3.12 - resolution: "nanoid@npm:3.3.12" - bin: - nanoid: bin/nanoid.cjs - checksum: 10c0/ba142b7b39e11e80c16dd74b0365d407880c87c1cf7e1480956981ae940ee36060fa5b6f092cd1e315184dd19244c657bd017d03327bd3c62247d691c5e8edfb - languageName: node - linkType: hard - -"napi-postinstall@npm:^0.3.0": +"napi-postinstall@npm:^0.3.4": version: 0.3.4 resolution: "napi-postinstall@npm:0.3.4" bin: @@ -10692,22 +10037,22 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 12.2.0 - resolution: "node-gyp@npm:12.2.0" + version: 13.0.1 + resolution: "node-gyp@npm:13.0.1" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^15.0.0" - nopt: "npm:^9.0.0" - proc-log: "npm:^6.0.0" + nopt: "npm:^10.0.0" + proc-log: "npm:^7.0.0" semver: "npm:^7.3.5" tar: "npm:^7.5.4" tinyglobby: "npm:^0.2.12" - which: "npm:^6.0.0" + undici: "npm:^8.4.1" + which: "npm:^7.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/3ed046746a5a7d90950cd8b0547332b06598443f31fe213ef4332a7174c7b7d259e1704835feda79b87d3f02e59d7791842aac60642ede4396ab25fdf0f8f759 + checksum: 10c0/424077bc9e9bbe953a8e86db473ba818cbc6a121714008c977fd589e21e5f0c811fbf22faac730dc7182450b5e52df301811d01ae3373898658d999b7710f4e6 languageName: node linkType: hard @@ -10727,10 +10072,10 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.19": - version: 2.0.19 - resolution: "node-releases@npm:2.0.19" - checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa +"node-releases@npm:^2.0.51": + version: 2.0.51 + resolution: "node-releases@npm:2.0.51" + checksum: 10c0/6cf3fe1f9eabe02ce6de67e9db77b73edc9f5625003791e1f8f239f8e2a851450a5aeb1eff2cc43cfb26312e19b26bfe07626bf428479e6a76f56553fc6148da languageName: node linkType: hard @@ -10744,14 +10089,14 @@ __metadata: languageName: node linkType: hard -"nopt@npm:^9.0.0": - version: 9.0.0 - resolution: "nopt@npm:9.0.0" +"nopt@npm:^10.0.0": + version: 10.0.1 + resolution: "nopt@npm:10.0.1" dependencies: - abbrev: "npm:^4.0.0" + abbrev: "npm:^5.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/1822eb6f9b020ef6f7a7516d7b64a8036e09666ea55ac40416c36e4b2b343122c3cff0e2f085675f53de1d2db99a2a89a60ccea1d120bcd6a5347bf6ceb4a7fd + checksum: 10c0/980d89257f9587f3e1f77877ddbf905d6aa3b738ec33e49a4fa1a059a0dd82eb28063982b150654a7ae9de386f2ead60e56172db7d37cf56de545f7392a2a26a languageName: node linkType: hard @@ -10781,13 +10126,6 @@ __metadata: languageName: node linkType: hard -"normalize.css@npm:^8.0.1": - version: 8.0.1 - resolution: "normalize.css@npm:8.0.1" - checksum: 10c0/4ddf56d1af5ca755fa5e692e718316d8758ecb792aa96e1ad206824b5810a043763d681d6f7697d46573515f5e9690038b4c91a95c1997567128815545fb8cd7 - languageName: node - linkType: hard - "npm-run-path@npm:^4.0.1": version: 4.0.1 resolution: "npm-run-path@npm:4.0.1" @@ -10807,9 +10145,9 @@ __metadata: linkType: hard "nwsapi@npm:^2.2.16": - version: 2.2.20 - resolution: "nwsapi@npm:2.2.20" - checksum: 10c0/07f4dafa3186aef7c007863e90acd4342a34ba9d44b22f14f644fdb311f6086887e21c2fc15efaa826c2bc39ab2bc841364a1a630e7c87e0cb723ba59d729297 + version: 2.2.24 + resolution: "nwsapi@npm:2.2.24" + checksum: 10c0/9bc04ee9c7698f1b5506778d36f7382962f71667205d441d6a50f6180ee92328e770b76be78b907817ee103241b29984d3a17ae387e4723aebe0aeaed7a7c3a1 languageName: node linkType: hard @@ -10864,7 +10202,7 @@ __metadata: languageName: node linkType: hard -"object-inspect@npm:^1.13.3": +"object-inspect@npm:^1.13.3, object-inspect@npm:^1.13.4": version: 1.13.4 resolution: "object-inspect@npm:1.13.4" checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692 @@ -10916,7 +10254,7 @@ __metadata: languageName: node linkType: hard -"on-finished@npm:2.4.1, on-finished@npm:^2.4.1": +"on-finished@npm:^2.4.1, on-finished@npm:~2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" dependencies: @@ -11033,13 +10371,6 @@ __metadata: languageName: node linkType: hard -"os-tmpdir@npm:~1.0.2": - version: 1.0.2 - resolution: "os-tmpdir@npm:1.0.2" - checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 - languageName: node - linkType: hard - "p-cancelable@npm:^1.0.0": version: 1.1.0 resolution: "p-cancelable@npm:1.1.0" @@ -11126,13 +10457,6 @@ __metadata: languageName: node linkType: hard -"p-map@npm:^7.0.2": - version: 7.0.4 - resolution: "p-map@npm:7.0.4" - checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd - languageName: node - linkType: hard - "p-timeout@npm:^3.1.0": version: 3.2.0 resolution: "p-timeout@npm:3.2.0" @@ -11188,16 +10512,16 @@ __metadata: linkType: hard "pako@npm:^2.0.4, pako@npm:^2.1.0": - version: 2.1.0 - resolution: "pako@npm:2.1.0" - checksum: 10c0/8e8646581410654b50eb22a5dfd71159cae98145bd5086c9a7a816ec0370b5f72b4648d08674624b3870a521e6a3daffd6c2f7bc00fdefc7063c9d8232ff5116 + version: 2.2.0 + resolution: "pako@npm:2.2.0" + checksum: 10c0/e5d31de1940fdd13cc4014296b0026112483d0834bce4856ca29c8af8438d030c6416986a0f6df7d5372cae18d6dd6c57f48b24a49d6c207c0a4cc66af15c07d languageName: node linkType: hard "papaparse@npm:^5.5.3": - version: 5.5.3 - resolution: "papaparse@npm:5.5.3" - checksum: 10c0/623aae6a35703308fd5a39d616fb3837231ebc70697346355ea508154d3f24df75b6554b736afc1924192205518a5db14e75f5e1cf35d154326050a37cdd9447 + version: 5.5.4 + resolution: "papaparse@npm:5.5.4" + checksum: 10c0/8942ae45dcc171b720fd67953f825a544fdeeeadb85cf28a239d016fd6cff0c59650e667b3158a9a0153c6e1d7674c199603bcf360d854ce7edce822eb7f7bb6 languageName: node linkType: hard @@ -11270,27 +10594,26 @@ __metadata: linkType: hard "patch-package@npm:^8.0.0": - version: 8.0.0 - resolution: "patch-package@npm:8.0.0" + version: 8.0.1 + resolution: "patch-package@npm:8.0.1" dependencies: "@yarnpkg/lockfile": "npm:^1.1.0" chalk: "npm:^4.1.2" ci-info: "npm:^3.7.0" cross-spawn: "npm:^7.0.3" find-yarn-workspace-root: "npm:^2.0.0" - fs-extra: "npm:^9.0.0" + fs-extra: "npm:^10.0.0" json-stable-stringify: "npm:^1.0.2" klaw-sync: "npm:^6.0.0" minimist: "npm:^1.2.6" open: "npm:^7.4.2" - rimraf: "npm:^2.6.3" semver: "npm:^7.5.3" slash: "npm:^2.0.0" - tmp: "npm:^0.0.33" + tmp: "npm:^0.2.4" yaml: "npm:^2.2.2" bin: patch-package: index.js - checksum: 10c0/690eab0537e953a3fd7d32bb23f0e82f97cd448f8244c3227ed55933611a126f9476397325c06ad2c11d881a19b427a02bd1881bee78d89f1731373fc4fe0fee + checksum: 10c0/6dd7cdd8b814902f1a66bc9082bd5a5a484956563538a694ff1de2e7f4cc14a13480739f5f04e0d1747395d6f1b651eb1ddbc39687ce5ff8a3927f212cffd2ac languageName: node linkType: hard @@ -11378,9 +10701,9 @@ __metadata: linkType: hard "pathval@npm:^2.0.0": - version: 2.0.0 - resolution: "pathval@npm:2.0.0" - checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5 + version: 2.0.1 + resolution: "pathval@npm:2.0.1" + checksum: 10c0/460f4709479fbf2c45903a65655fc8f0a5f6d808f989173aeef5fdea4ff4f303dc13f7870303999add60ec49d4c14733895c0a869392e9866f1091fa64fd7581 languageName: node linkType: hard @@ -11416,10 +10739,10 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4": - version: 4.0.4 - resolution: "picomatch@npm:4.0.4" - checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0 +"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4, picomatch@npm:^4.0.5": + version: 4.0.5 + resolution: "picomatch@npm:4.0.5" + checksum: 10c0/947bc6b6e1ff1e6c5aaf95b107a0839d12802f4f7b867663f67d47accba939ca1cb582cf99dfc30438efa1c4648ac5990967e783e8929c36b03e8440704ef1bd languageName: node linkType: hard @@ -11474,16 +10797,25 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.59.1, playwright-core@npm:>=1.2.0": +"playwright-core@npm:1.59.1": version: 1.59.1 resolution: "playwright-core@npm:1.59.1" bin: playwright-core: cli.js - checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + languageName: node + linkType: hard + +"playwright-core@npm:1.61.1, playwright-core@npm:>=1.2.0": + version: 1.61.1 + resolution: "playwright-core@npm:1.61.1" + bin: + playwright-core: cli.js + checksum: 10c0/c28896ba82a602182e240ed4f9c467fb0dd9cb57d510f8aba9f25183fe1cde3a0105725a29baffa4157fe885bbb11e228032a2aad0424111584fde45303f07bd languageName: node linkType: hard -"playwright@npm:1.59.1, playwright@npm:^1.14.0": +"playwright@npm:1.59.1": version: 1.59.1 resolution: "playwright@npm:1.59.1" dependencies: @@ -11498,6 +10830,21 @@ __metadata: languageName: node linkType: hard +"playwright@npm:^1.14.0": + version: 1.61.1 + resolution: "playwright@npm:1.61.1" + dependencies: + fsevents: "npm:2.3.2" + playwright-core: "npm:1.61.1" + dependenciesMeta: + fsevents: + optional: true + bin: + playwright: cli.js + checksum: 10c0/cea1bc4d2a64ec3ef683891606774029da7b8a8036ed98332565cec2f8e89549ca1fab9a89fbfba4e08e27e0d7e7d148031e965af66d5ff97bb3c34058cfcad0 + languageName: node + linkType: hard + "pluralize@npm:^8.0.0": version: 8.0.0 resolution: "pluralize@npm:8.0.0" @@ -11528,13 +10875,6 @@ __metadata: languageName: node linkType: hard -"popper.js@npm:^1.14.4, popper.js@npm:^1.16.1": - version: 1.16.1 - resolution: "popper.js@npm:1.16.1" - checksum: 10c0/1c1a826f757edb5b8c2049dfd7a9febf6ae1e9d0e51342fc715b49a0c1020fced250d26484619883651e097c5764bbcacd2f31496e3646027f079dd83e072681 - languageName: node - linkType: hard - "possible-typed-array-names@npm:^1.0.0": version: 1.1.0 resolution: "possible-typed-array-names@npm:1.1.0" @@ -11542,25 +10882,14 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.5.15": - version: 8.5.15 - resolution: "postcss@npm:8.5.15" +"postcss@npm:^8.5.17, postcss@npm:^8.5.6": + version: 8.5.22 + resolution: "postcss@npm:8.5.22" dependencies: - nanoid: "npm:^3.3.12" + nanoid: "npm:^3.3.16" picocolors: "npm:^1.1.1" source-map-js: "npm:^1.2.1" - checksum: 10c0/7f2e63ae22fbe43aace1bf652bd99da4e90737c64194d49e51ddc9cd0f9e51ff2861a7d734379b494deffa03a880a5c65eec70bc29ee9ebaa7136dde3eee8f31 - languageName: node - linkType: hard - -"postcss@npm:^8.5.6": - version: 8.5.12 - resolution: "postcss@npm:8.5.12" - dependencies: - nanoid: "npm:^3.3.11" - picocolors: "npm:^1.1.1" - source-map-js: "npm:^1.2.1" - checksum: 10c0/5baebaf574c567bc1b3d61197f38af4ce5920b8f611c887fb6bc3dcc14af00253c169dbf19897bc889cce0b0d9818ab5eb4ea0caedf02b0bab10da8a43ce8c12 + checksum: 10c0/9e143ee457988049d5f187116fd37f2750ae9d8d71cc99eae690b776e549e134b34086cbaa2f0360ecd1729b15d918227bd0fc3a2ffbe341f7212d0827080793 languageName: node linkType: hard @@ -11585,32 +10914,33 @@ __metadata: languageName: node linkType: hard -"prettier-linter-helpers@npm:^1.0.0": - version: 1.0.0 - resolution: "prettier-linter-helpers@npm:1.0.0" +"prettier-linter-helpers@npm:^1.0.1": + version: 1.0.1 + resolution: "prettier-linter-helpers@npm:1.0.1" dependencies: fast-diff: "npm:^1.1.2" - checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab + checksum: 10c0/91cea965681bc5f62c9d26bd3ca6358b81557261d4802e96ec1cf0acbd99d4b61632d53320cd2c3ec7d7f7805a81345644108a41ef46ddc9688e783a9ac792d1 languageName: node linkType: hard "prettier@npm:^3.0.3": - version: 3.5.3 - resolution: "prettier@npm:3.5.3" + version: 3.9.6 + resolution: "prettier@npm:3.9.6" bin: prettier: bin/prettier.cjs - checksum: 10c0/3880cb90b9dc0635819ab52ff571518c35bd7f15a6e80a2054c05dbc8a3aa6e74f135519e91197de63705bcb38388ded7e7230e2178432a1468005406238b877 + checksum: 10c0/9f7ddae234035868f3daab3dc34e6de7e54622185afb017378029f0c09a9c023248ccf6f34def0b17a0538e18c47aa1b3188bab72965d1bf735919baa0747e99 languageName: node linkType: hard -"pretty-format@npm:30.3.0": - version: 30.3.0 - resolution: "pretty-format@npm:30.3.0" +"pretty-format@npm:30.4.1": + version: 30.4.1 + resolution: "pretty-format@npm:30.4.1" dependencies: - "@jest/schemas": "npm:30.0.5" + "@jest/schemas": "npm:30.4.1" ansi-styles: "npm:^5.2.0" - react-is: "npm:^18.3.1" - checksum: 10c0/719b27d70cd8b01013485054c5d094e1fe85e093b09ee73553e3b19302da3cf54fbd6a7ea9577d6471aeff8d372200e56979ffc4c831e2133520bd18060895fb + react-is-18: "npm:react-is@^18.3.1" + react-is-19: "npm:react-is@^19.2.5" + checksum: 10c0/c7e6633740cd2f6d382f188c00c8b4b3f2bee3cda16db6753471c6bb4b94f76531358d3a7793062a0fb00d72ebfb934e8ae1d4f5ced6bb34c8e7f60996f90076 languageName: node linkType: hard @@ -11632,10 +10962,10 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^6.0.0": - version: 6.1.0 - resolution: "proc-log@npm:6.1.0" - checksum: 10c0/4f178d4062733ead9d71a9b1ab24ebcecdfe2250916a5b1555f04fe2eda972a0ec76fbaa8df1ad9c02707add6749219d118a4fc46dc56bdfe4dde4b47d80bb82 +"proc-log@npm:^7.0.0": + version: 7.0.0 + resolution: "proc-log@npm:7.0.0" + checksum: 10c0/b89c2d862604f35fec795477b0c7e376feab3ba0d4f4d291c4e959567442697cf451ac557d0623c1cc38af45a78128b983410f397a10c5d3a67f76c33de4754b languageName: node linkType: hard @@ -11662,13 +10992,18 @@ __metadata: languageName: node linkType: hard -"proj4@npm:2.20.8": - version: 2.20.8 - resolution: "proj4@npm:2.20.8" +"proj4@npm:2.20.9": + version: 2.20.9 + resolution: "proj4@npm:2.20.9" dependencies: mgrs: "npm:1.0.0" wkt-parser: "npm:^1.5.5" - checksum: 10c0/a4488c5229d25260697ca925d06fc251e772d033e7d081f97ab8b01a37854378d4a48903c667c39aa9305febff59ad09dddc019be8866977cdd2767d3a774239 + peerDependencies: + geotiff: "*" + peerDependenciesMeta: + geotiff: + optional: true + checksum: 10c0/9917dc75627a3198b0226741a04e29ecd084f3613ba4a9359815fddab4f579d3135cf68d3ba914659470c45a5ca9c3d52b6f68a43365d6b9484d8603761ecdf9 languageName: node linkType: hard @@ -11682,7 +11017,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": +"prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -11727,12 +11062,12 @@ __metadata: linkType: hard "pump@npm:^3.0.0": - version: 3.0.2 - resolution: "pump@npm:3.0.2" + version: 3.0.4 + resolution: "pump@npm:3.0.4" dependencies: end-of-stream: "npm:^1.1.0" once: "npm:^1.3.1" - checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f + checksum: 10c0/2780e66b5471c19e3e3e1063b84f3f6a3a08367f24c5ed552f98cd5901e6ada27c7ad6495d4244f553fd03b01884a4561933064f053f47c8994d84fd352768ea languageName: node linkType: hard @@ -11766,28 +11101,20 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.11.1": - version: 6.15.0 - resolution: "qs@npm:6.15.0" - dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/ff341078a78a991d8a48b4524d52949211447b4b1ad907f489cac0770cbc346a28e47304455c0320e5fb000f8762d64b03331e3b71865f663bf351bcba8cdb4b - languageName: node - linkType: hard - -"qs@npm:^6.14.0, qs@npm:^6.14.1": - version: 6.15.1 - resolution: "qs@npm:6.15.1" +"qs@npm:^6.11.1, qs@npm:^6.14.0, qs@npm:^6.15.2": + version: 6.15.3 + resolution: "qs@npm:6.15.3" dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/19ee504f0ebff72598503e38cd6d9bd7b52a8ab62ae18b1e6bee3d4db58469bd65871ef1893a881bafb0f80ef2f9ab586e1f255cf25cc8d816c0f5a704721d97 + es-define-property: "npm:^1.0.1" + side-channel: "npm:^1.1.1" + checksum: 10c0/8f3f6e45ece255347d57696628401cde29e9ec649fff698b53bd3150dea7cefdf33036e1bc1826b9f110bfa7cb0ec4ab9f5297eca628ce216c55af82c304e08e languageName: node linkType: hard "qs@npm:~6.5.2": - version: 6.5.3 - resolution: "qs@npm:6.5.3" - checksum: 10c0/6631d4f2fa9d315e480662646745a4aa3a708817fbffe2cbdacec8ab9be130f92740c66191770fe9b704bc5fa9c1cc1f6596f55ad132fef7bd3ad1582f199eb0 + version: 6.5.5 + resolution: "qs@npm:6.5.5" + checksum: 10c0/6a5728b92378776d194c19d2bcf8e8847fa96ecfa6eb64f64e7ac73a394043cacaf257be014fa1a86201077a1e0c5ef5760ee0e0d6b6a4fe9f5ae8afcf5b9254 languageName: node linkType: hard @@ -11828,14 +11155,21 @@ __metadata: languageName: node linkType: hard -"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": +"range-parser@npm:^1.2.1": + version: 1.3.0 + resolution: "range-parser@npm:1.3.0" + checksum: 10c0/295494bb6685f9ab50f41a5f4fa5ce445aeeb9673b491bf178460fcc3a812dcf0d164cf1c83074f13a71a87d91ead5e097afd53e0630bc49a5101ed60f2a7529 + languageName: node + linkType: hard + +"range-parser@npm:~1.2.1": version: 1.2.1 resolution: "range-parser@npm:1.2.1" checksum: 10c0/96c032ac2475c8027b7a4e9fe22dc0dfe0f6d90b85e496e0f016fbdb99d6d066de0112e680805075bd989905e2123b3b3d002765149294dce0c1f7f01fcc2ea0 languageName: node linkType: hard -"raw-body@npm:^3.0.0, raw-body@npm:^3.0.1": +"raw-body@npm:^3.0.0, raw-body@npm:^3.0.2": version: 3.0.2 resolution: "raw-body@npm:3.0.2" dependencies: @@ -11870,7 +11204,7 @@ __metadata: languageName: node linkType: hard -"re-resizable@npm:6.11.2": +"re-resizable@npm:^6.11.2": version: 6.11.2 resolution: "re-resizable@npm:6.11.2" peerDependencies: @@ -11880,22 +11214,22 @@ __metadata: languageName: node linkType: hard -"react-colorful@npm:^5.6.1": - version: 5.6.1 - resolution: "react-colorful@npm:5.6.1" +"react-colorful@npm:^5.6.1, react-colorful@npm:^5.7.0": + version: 5.8.0 + resolution: "react-colorful@npm:5.8.0" peerDependencies: react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/48eb73cf71e10841c2a61b6b06ab81da9fffa9876134c239bfdebcf348ce2a47e56b146338e35dfb03512c85966bfc9a53844fc56bc50154e71f8daee59ff6f0 + checksum: 10c0/852ee03ad7751d748e2232ad3bd089de6620de6a06582ee26177377802104b259bf5630d205e875dba4406d601d0e00ddd0912bb0d763da2a053b51c7c57b3a4 languageName: node linkType: hard "react-docgen-typescript@npm:^2.2.2": - version: 2.2.2 - resolution: "react-docgen-typescript@npm:2.2.2" + version: 2.4.0 + resolution: "react-docgen-typescript@npm:2.4.0" peerDependencies: typescript: ">= 4.3.x" - checksum: 10c0/d31a061a21b5d4b67d4af7bc742541fd9e16254bd32861cd29c52565bc2175f40421a3550d52b6a6b0d0478e7cc408558eb0060a0bdd2957b02cfceeb0ee1e88 + checksum: 10c0/18e3e1c80d28abcdd72e62261d2f70b0904d9b088f9c2ebe485ffee5e46f5735208bc174a20ed2772112b3ca6432b5f3d5f0ac345872fe76e541f84543e49e50 languageName: node linkType: hard @@ -11918,13 +11252,13 @@ __metadata: linkType: hard "react-dom@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react-dom@npm:19.2.5" + version: 19.2.8 + resolution: "react-dom@npm:19.2.8" dependencies: scheduler: "npm:^0.27.0" peerDependencies: - react: ^19.2.5 - checksum: 10c0/8067606e9f58e4c2e8cb5f09570217dbc71c4843ebcaa20ae2085912d3e3a351f17d8f7c1713313cdda7f272840c8c34ff6c860fcb840862071bceea218e0c63 + react: ^19.2.8 + checksum: 10c0/41ba2247b76f687fcfe5bbc99f514d6b851d8c8041c2f5ded36ed05bd7fdc5208cacbac9de51e3e6633e77f96f44cec9f0d4a5a55184dba4e00738f224439134 languageName: node linkType: hard @@ -11941,16 +11275,16 @@ __metadata: languageName: node linkType: hard -"react-draggable@npm:4.4.6": - version: 4.4.6 - resolution: "react-draggable@npm:4.4.6" +"react-draggable@npm:^4.5.0": + version: 4.7.0 + resolution: "react-draggable@npm:4.7.0" dependencies: - clsx: "npm:^1.1.1" + clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" peerDependencies: react: ">= 16.3.0" react-dom: ">= 16.3.0" - checksum: 10c0/1e8cf47414a8554caa68447e5f27749bc40e1eabb4806e2dadcb39ab081d263f517d6aaec5231677e6b425603037c7e3386d1549898f9ffcc98a86cabafb2b9a + checksum: 10c0/4bfd46025b6009585a644d17721cafcd7976c058c250086c06c1a952724230c83caa548c54f9b5849c3a148144e3ed6610a1745b2afc6db685c85c56a0b4f775 languageName: node linkType: hard @@ -11967,13 +11301,20 @@ __metadata: languageName: node linkType: hard -"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0, react-is@npm:^18.3.1": +"react-is-18@npm:react-is@^18.3.1, react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 languageName: node linkType: hard +"react-is-19@npm:react-is@^19.2.5": + version: 19.2.8 + resolution: "react-is@npm:19.2.8" + checksum: 10c0/ed5322c84efe035c8fc814b1614ff5ca7fb8c2872a7c045197daf99f9b1bd68f32a2c79ffcbcfcff2fc5d93924ff9f9447400898f5b1534e6302bb0736a257f0 + languageName: node + linkType: hard + "react-is@npm:^16.13.1, react-is@npm:^16.7.0": version: 16.13.1 resolution: "react-is@npm:16.13.1" @@ -11995,23 +11336,6 @@ __metadata: languageName: node linkType: hard -"react-popper@npm:^1.3.7": - version: 1.3.11 - resolution: "react-popper@npm:1.3.11" - dependencies: - "@babel/runtime": "npm:^7.1.2" - "@hypnosphi/create-react-context": "npm:^0.3.1" - deep-equal: "npm:^1.1.1" - popper.js: "npm:^1.14.4" - prop-types: "npm:^15.6.1" - typed-styles: "npm:^0.0.7" - warning: "npm:^4.0.2" - peerDependencies: - react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/d5dd1d0d4b5a3407134681b42a079fce525c94bce892ad177515d54a8cf64203eecbc30231476367e916aaff91221f5b6abd5afc207a86c698f35b7254178488 - languageName: node - linkType: hard - "react-redux@npm:^8.1.3": version: 8.1.3 resolution: "react-redux@npm:8.1.3" @@ -12045,22 +11369,22 @@ __metadata: linkType: hard "react-rnd@npm:^10.5.2": - version: 10.5.2 - resolution: "react-rnd@npm:10.5.2" + version: 10.5.3 + resolution: "react-rnd@npm:10.5.3" dependencies: - re-resizable: "npm:6.11.2" - react-draggable: "npm:4.4.6" + re-resizable: "npm:^6.11.2" + react-draggable: "npm:^4.5.0" tslib: "npm:2.6.2" peerDependencies: react: ">=16.3.0" react-dom: ">=16.3.0" - checksum: 10c0/27215052246fcc0f74b1d9ead0445fdabb98e666272a8af33f4d735bcf13fb34240c064b1b59601c87c4387ddfeb44568a182f6138a3c04ce2596272b50ff2b5 + checksum: 10c0/9f65397150adc472ee96c0f257fa0f8301afb010d4e6ed97df793347ce7cd7c84bac980b7977cfc70314b9da3bd9a96c1ca5171b3c5e03fe2392832550307cb7 languageName: node linkType: hard "react-select@npm:^5.7.0": - version: 5.10.1 - resolution: "react-select@npm:5.10.1" + version: 5.10.2 + resolution: "react-select@npm:5.10.2" dependencies: "@babel/runtime": "npm:^7.12.0" "@emotion/cache": "npm:^11.4.0" @@ -12074,7 +11398,7 @@ __metadata: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - checksum: 10c0/0d10a249b96150bd648f2575d59c848b8fac7f4d368a97ae84e4aaba5bbc1035deba4cdc82e49a43904b79ec50494505809618b0e98022b2d51e7629551912ed + checksum: 10c0/2027ef57b0a375d1accdad60550329dc0911b31d429ec6eb9ae391ae9baf9f26991b0ff8615eb99de319a55ce6e9382107783e615cb2116522ed0275b214b7f7 languageName: node linkType: hard @@ -12114,21 +11438,6 @@ __metadata: languageName: node linkType: hard -"react-transition-group@npm:^2.9.0": - version: 2.9.0 - resolution: "react-transition-group@npm:2.9.0" - dependencies: - dom-helpers: "npm:^3.4.0" - loose-envify: "npm:^1.4.0" - prop-types: "npm:^15.6.2" - react-lifecycles-compat: "npm:^3.0.4" - peerDependencies: - react: ">=15.0.0" - react-dom: ">=15.0.0" - checksum: 10c0/df40608e9defb6873290b9f2165921f17139b8edbb2019e2de38f77477f9cbd8fdb739b20e1e04cb16a513137c80e85cf5f0fff96049a94b740d389313394476 - languageName: node - linkType: hard - "react-transition-group@npm:^4.3.0": version: 4.4.5 resolution: "react-transition-group@npm:4.4.5" @@ -12145,9 +11454,9 @@ __metadata: linkType: hard "react@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react@npm:19.2.5" - checksum: 10c0/4b5f231dbef92886f602533c9ce3bde04d99f0e71dfb5d794c43e02726efaad0421c08688f75fc98a6d6e1dc017372e1af7abbfecdc86a79968f461675931a7a + version: 19.2.8 + resolution: "react@npm:19.2.8" + checksum: 10c0/5f86bdb56426652fd6d989d30a6f2e603c057272c47c9ca3a3fbe190a3a39ee9ccce937d63cfc039717abed1b8891d6a499134bc35311acc07eafdacd86537cd languageName: node linkType: hard @@ -12235,12 +11544,12 @@ __metadata: languageName: node linkType: hard -"readdir-glob@npm:^1.1.2": - version: 1.1.3 - resolution: "readdir-glob@npm:1.1.3" +"readdir-glob@npm:^3.0.0": + version: 3.0.0 + resolution: "readdir-glob@npm:3.0.0" dependencies: - minimatch: "npm:^5.1.0" - checksum: 10c0/a37e0716726650845d761f1041387acd93aa91b28dd5381950733f994b6c349ddc1e21e266ec7cc1f9b92e205a7a972232f9b89d5424d07361c2c3753d5dbace + minimatch: "npm:^10.2.2" + checksum: 10c0/9a358c8347b4db2a1f72168da67f7ef8d9ccd51f7fdaa127eed8170a1025e97942705f827b0b45e6fdc0e40f04d0859ba75c3d471ee1fcc9e2cfb9fc81606989 languageName: node linkType: hard @@ -12254,15 +11563,15 @@ __metadata: linkType: hard "recast@npm:^0.23.5": - version: 0.23.11 - resolution: "recast@npm:0.23.11" + version: 0.23.12 + resolution: "recast@npm:0.23.12" dependencies: ast-types: "npm:^0.16.1" esprima: "npm:~4.0.0" source-map: "npm:~0.6.1" tiny-invariant: "npm:^1.3.3" tslib: "npm:^2.0.1" - checksum: 10c0/45b520a8f0868a5a24ecde495be9de3c48e69a54295d82a7331106554b75cfba75d16c909959d056e9ceed47a1be5e061e2db8b9ecbcd6ba44c2f3ef9a47bd18 + checksum: 10c0/6abedaca3ce696b1f3d4e0a9c458319d5e24a8dc2666e91ae9729882f523c144558f4d415b40d398eed6a3956500656299df44ca8c4dba8e35a75bb454a067fc languageName: node linkType: hard @@ -12417,9 +11726,9 @@ __metadata: linkType: hard "reselect@npm:^5.1.0": - version: 5.1.1 - resolution: "reselect@npm:5.1.1" - checksum: 10c0/219c30da122980f61853db3aebd173524a2accd4b3baec770e3d51941426c87648a125ca08d8c57daa6b8b086f2fdd2703cb035dd6231db98cdbe1176a71f489 + version: 5.2.0 + resolution: "reselect@npm:5.2.0" + checksum: 10c0/d0a8497e404b25a769fe792eacae88b9b576c30870450cd243d76ec9427d91a59c4a2cc00d824d283448b444c4c698a8f961d771c8ae39c759313afb31950e2e languageName: node linkType: hard @@ -12463,13 +11772,6 @@ __metadata: languageName: node linkType: hard -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab - languageName: node - linkType: hard - "resolve-protobuf-schema@npm:^2.1.0": version: 2.1.0 resolution: "resolve-protobuf-schema@npm:2.1.0" @@ -12480,28 +11782,30 @@ __metadata: linkType: hard "resolve@npm:^1.10.0, resolve@npm:^1.19.0, resolve@npm:^1.22.1, resolve@npm:^1.22.8, resolve@npm:^1.3.2": - version: 1.22.10 - resolution: "resolve@npm:1.22.10" + version: 1.22.12 + resolution: "resolve@npm:1.22.12" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 + checksum: 10c0/b16dc9b537c02e8c3388f7d3dcff9741d3071625f9a97ac1c885f2b0ca51e78df22328fb6d6ef214dd9101fb7cfc19aa2836fe3410402a94f3f7b8639c7149bf languageName: node linkType: hard "resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.3.2#optional!builtin": - version: 1.22.10 - resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" + version: 1.22.12 + resolution: "resolve@patch:resolve@npm%3A1.22.12#optional!builtin::version=1.22.12&hash=c3c19d" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 + checksum: 10c0/fc6519984ae1f894d877c0060ba8b1f5ba3bc0e85a02f74e141929c118c23d74d9735619a9cc2965397387e514884245c65d72a40731dcb6cfc84c7bcdc8321e languageName: node linkType: hard @@ -12540,17 +11844,6 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:^2.6.3": - version: 2.7.1 - resolution: "rimraf@npm:2.7.1" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: ./bin.js - checksum: 10c0/4eef73d406c6940927479a3a9dee551e14a54faf54b31ef861250ac815172bade86cc6f7d64a4dc5e98b65e4b18a2e1c9ff3b68d296be0c748413f092bb0dd40 - languageName: node - linkType: hard - "rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": version: 3.0.2 resolution: "rimraf@npm:3.0.2" @@ -12562,26 +11855,26 @@ __metadata: languageName: node linkType: hard -"rolldown@npm:~1.1.2": - version: 1.1.2 - resolution: "rolldown@npm:1.1.2" - dependencies: - "@oxc-project/types": "npm:=0.137.0" - "@rolldown/binding-android-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-x64": "npm:1.1.2" - "@rolldown/binding-freebsd-x64": "npm:1.1.2" - "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.2" - "@rolldown/binding-linux-arm64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-arm64-musl": "npm:1.1.2" - "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-s390x-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-musl": "npm:1.1.2" - "@rolldown/binding-openharmony-arm64": "npm:1.1.2" - "@rolldown/binding-wasm32-wasi": "npm:1.1.2" - "@rolldown/binding-win32-arm64-msvc": "npm:1.1.2" - "@rolldown/binding-win32-x64-msvc": "npm:1.1.2" +"rolldown@npm:~1.1.5": + version: 1.1.5 + resolution: "rolldown@npm:1.1.5" + dependencies: + "@oxc-project/types": "npm:=0.139.0" + "@rolldown/binding-android-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-x64": "npm:1.1.5" + "@rolldown/binding-freebsd-x64": "npm:1.1.5" + "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.5" + "@rolldown/binding-linux-arm64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-arm64-musl": "npm:1.1.5" + "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-s390x-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-musl": "npm:1.1.5" + "@rolldown/binding-openharmony-arm64": "npm:1.1.5" + "@rolldown/binding-wasm32-wasi": "npm:1.1.5" + "@rolldown/binding-win32-arm64-msvc": "npm:1.1.5" + "@rolldown/binding-win32-x64-msvc": "npm:1.1.5" "@rolldown/pluginutils": "npm:^1.0.0" dependenciesMeta: "@rolldown/binding-android-arm64": @@ -12616,7 +11909,7 @@ __metadata: optional: true bin: rolldown: ./bin/cli.mjs - checksum: 10c0/e35b83849aa341dcb5403d58654161ce2a0fb7c334ee17c186e497be0e43eb7a5a80ecfd4eee505847fcf8b0a3255ccd32438b2f548663afcce9b7b13820825f + checksum: 10c0/93072aa9d95882f9fa5cd57fe7db6a48efd6f85a25a32137425052ecca02df653651eed0c33a865c33511681bd6a40691d5c88900b8e95ce1334f4f75ba826ff languageName: node linkType: hard @@ -12643,35 +11936,35 @@ __metadata: linkType: hard "rollup@npm:^4.43.0": - version: 4.59.0 - resolution: "rollup@npm:4.59.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.59.0" - "@rollup/rollup-android-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-x64": "npm:4.59.0" - "@rollup/rollup-freebsd-arm64": "npm:4.59.0" - "@rollup/rollup-freebsd-x64": "npm:4.59.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.59.0" - "@rollup/rollup-linux-loong64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-loong64-musl": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-musl": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-musl": "npm:4.59.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-musl": "npm:4.59.0" - "@rollup/rollup-openbsd-x64": "npm:4.59.0" - "@rollup/rollup-openharmony-arm64": "npm:4.59.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.59.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.59.0" - "@rollup/rollup-win32-x64-gnu": "npm:4.59.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.59.0" - "@types/estree": "npm:1.0.8" + version: 4.62.2 + resolution: "rollup@npm:4.62.2" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.62.2" + "@rollup/rollup-android-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-x64": "npm:4.62.2" + "@rollup/rollup-freebsd-arm64": "npm:4.62.2" + "@rollup/rollup-freebsd-x64": "npm:4.62.2" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-arm64-musl": "npm:4.62.2" + "@rollup/rollup-linux-loong64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-loong64-musl": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-musl": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-musl": "npm:4.62.2" + "@rollup/rollup-linux-s390x-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-musl": "npm:4.62.2" + "@rollup/rollup-openbsd-x64": "npm:4.62.2" + "@rollup/rollup-openharmony-arm64": "npm:4.62.2" + "@rollup/rollup-win32-arm64-msvc": "npm:4.62.2" + "@rollup/rollup-win32-ia32-msvc": "npm:4.62.2" + "@rollup/rollup-win32-x64-gnu": "npm:4.62.2" + "@rollup/rollup-win32-x64-msvc": "npm:4.62.2" + "@types/estree": "npm:1.0.9" fsevents: "npm:~2.3.2" dependenciesMeta: "@rollup/rollup-android-arm-eabi": @@ -12728,7 +12021,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/f38742da34cfee5e899302615fa157aa77cb6a2a1495e5e3ce4cc9c540d3262e235bbe60caa31562bbfe492b01fdb3e7a8c43c39d842d3293bcf843123b766fc + checksum: 10c0/83ff5f4a1fea3fa05db2ef56beceee8c33d4a72b818e19c562f1e85c41076fe5b12aadc44048bb73e60b83336df82154b017fa6bf0186f3141643e6f215fbdcb languageName: node linkType: hard @@ -12802,7 +12095,7 @@ __metadata: languageName: node linkType: hard -"safe-stable-stringify@npm:^2.2.0": +"safe-stable-stringify@npm:^2.5.0": version: 2.5.0 resolution: "safe-stable-stringify@npm:2.5.0" checksum: 10c0/baea14971858cadd65df23894a40588ed791769db21bafb7fd7608397dbdce9c5aac60748abae9995e0fc37e15f2061980501e012cd48859740796bea2987f49 @@ -12869,42 +12162,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2": - version: 7.7.2 - resolution: "semver@npm:7.7.2" - bin: - semver: bin/semver.js - checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea - languageName: node - linkType: hard - -"semver@npm:^7.7.2": - version: 7.7.4 - resolution: "semver@npm:7.7.4" +"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2, semver@npm:^7.7.2": + version: 7.8.5 + resolution: "semver@npm:7.8.5" bin: semver: bin/semver.js - checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 - languageName: node - linkType: hard - -"send@npm:0.19.0": - version: 0.19.0 - resolution: "send@npm:0.19.0" - dependencies: - debug: "npm:2.6.9" - depd: "npm:2.0.0" - destroy: "npm:1.2.0" - encodeurl: "npm:~1.0.2" - escape-html: "npm:~1.0.3" - etag: "npm:~1.8.1" - fresh: "npm:0.5.2" - http-errors: "npm:2.0.0" - mime: "npm:1.6.0" - ms: "npm:2.1.3" - on-finished: "npm:2.4.1" - range-parser: "npm:~1.2.1" - statuses: "npm:2.0.1" - checksum: 10c0/ea3f8a67a8f0be3d6bf9080f0baed6d2c51d11d4f7b4470de96a5029c598a7011c497511ccc28968b70ef05508675cebff27da9151dd2ceadd60be4e6cf845e3 + checksum: 10c0/b1f3127a5be8125a94f37188b361c212466c292c6910adce3ec106cff5dc211ccaedc4739c11bb70fda59d6fc1f040a9bca289f4e093451521a2372e5231fe0c languageName: node linkType: hard @@ -12927,15 +12190,36 @@ __metadata: languageName: node linkType: hard +"send@npm:~0.19.1": + version: 0.19.2 + resolution: "send@npm:0.19.2" + dependencies: + debug: "npm:2.6.9" + depd: "npm:2.0.0" + destroy: "npm:1.2.0" + encodeurl: "npm:~2.0.0" + escape-html: "npm:~1.0.3" + etag: "npm:~1.8.1" + fresh: "npm:~0.5.2" + http-errors: "npm:~2.0.1" + mime: "npm:1.6.0" + ms: "npm:2.1.3" + on-finished: "npm:~2.4.1" + range-parser: "npm:~1.2.1" + statuses: "npm:~2.0.2" + checksum: 10c0/20c2389fe0fdf3fc499938cac598bc32272287e993c4960717381a10de8550028feadfb9076f959a3a3ebdea42e1f690e116f0d16468fa56b9fd41866d3dc267 + languageName: node + linkType: hard + "serve-static@npm:^1.12.1": - version: 1.16.2 - resolution: "serve-static@npm:1.16.2" + version: 1.16.3 + resolution: "serve-static@npm:1.16.3" dependencies: encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" parseurl: "npm:~1.3.3" - send: "npm:0.19.0" - checksum: 10c0/528fff6f5e12d0c5a391229ad893910709bc51b5705962b09404a1d813857578149b8815f35d3ee5752f44cd378d0f31669d4b1d7e2d11f41e08283d5134bd1f + send: "npm:~0.19.1" + checksum: 10c0/36320397a073c71bedf58af48a4a100fe6d93f07459af4d6f08b9a7217c04ce2a4939e0effd842dc7bece93ffcd59eb52f58c4fff2a8e002dc29ae6b219cd42b languageName: node linkType: hard @@ -12984,7 +12268,7 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.2.0, setprototypeof@npm:~1.2.0": +"setprototypeof@npm:~1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" checksum: 10c0/68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc @@ -13014,13 +12298,13 @@ __metadata: languageName: node linkType: hard -"side-channel-list@npm:^1.0.0": - version: 1.0.0 - resolution: "side-channel-list@npm:1.0.0" +"side-channel-list@npm:^1.0.1": + version: 1.0.1 + resolution: "side-channel-list@npm:1.0.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d + object-inspect: "npm:^1.13.4" + checksum: 10c0/d346c787fd2f9f1c2fdea14f00e8250118db0e7596d85a6cb9faa75f105d31a73a8f7a341c93d7df2a2429098c3d37a77bd3be9e88c37094b8c01807bc77c7a2 languageName: node linkType: hard @@ -13049,16 +12333,16 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0": - version: 1.1.0 - resolution: "side-channel@npm:1.1.0" +"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0, side-channel@npm:^1.1.1": + version: 1.1.1 + resolution: "side-channel@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - side-channel-list: "npm:^1.0.0" + object-inspect: "npm:^1.13.4" + side-channel-list: "npm:^1.0.1" side-channel-map: "npm:^1.0.1" side-channel-weakmap: "npm:^1.0.2" - checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 + checksum: 10c0/dc0ab81d67f61bda9247d053ce93f41c3fd8ad2bdcb9cf9d8d2f8540d488f26d87a5e99ebfc07eea49ec025867b2452b705442d974b1478f0395e69f6bfb3270 languageName: node linkType: hard @@ -13122,34 +12406,6 @@ __metadata: languageName: node linkType: hard -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.3": - version: 8.0.5 - resolution: "socks-proxy-agent@npm:8.0.5" - dependencies: - agent-base: "npm:^7.1.2" - debug: "npm:^4.3.4" - socks: "npm:^2.8.3" - checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 - languageName: node - linkType: hard - -"socks@npm:^2.8.3": - version: 2.8.7 - resolution: "socks@npm:2.8.7" - dependencies: - ip-address: "npm:^10.0.1" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/2805a43a1c4bcf9ebf6e018268d87b32b32b06fbbc1f9282573583acc155860dc361500f89c73bfbb157caa1b4ac78059eac0ef15d1811eb0ca75e0bdadbc9d2 - languageName: node - linkType: hard - "source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" @@ -13242,9 +12498,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.21 - resolution: "spdx-license-ids@npm:3.0.21" - checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 + version: 3.0.23 + resolution: "spdx-license-ids@npm:3.0.23" + checksum: 10c0/8495620f6f2a237749cce922ea2d593a66f7885c301b1a0f5542183e7041182f27f616a8f13345cefdea0c9b3e0899328e0aa8cec100cf4f3fac4bb3bd975515 languageName: node linkType: hard @@ -13283,15 +12539,6 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^13.0.0": - version: 13.0.1 - resolution: "ssri@npm:13.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/cf6408a18676c57ff2ed06b8a20dc64bb3e748e5c7e095332e6aecaa2b8422b1e94a739a8453bf65156a8a47afe23757ba4ab52d3ea3b62322dc40875763e17a - languageName: node - linkType: hard - "stack-utils@npm:^2.0.6": version: 2.0.6 resolution: "stack-utils@npm:2.0.6" @@ -13315,13 +12562,6 @@ __metadata: languageName: node linkType: hard -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 - languageName: node - linkType: hard - "statuses@npm:^2.0.1, statuses@npm:^2.0.2, statuses@npm:~2.0.2": version: 2.0.2 resolution: "statuses@npm:2.0.2" @@ -13337,9 +12577,9 @@ __metadata: linkType: hard "std-env@npm:^3.9.0": - version: 3.9.0 - resolution: "std-env@npm:3.9.0" - checksum: 10c0/4a6f9218aef3f41046c3c7ecf1f98df00b30a07f4f35c6d47b28329bc2531eef820828951c7d7b39a1c5eb19ad8a46e3ddfc7deb28f0a2f3ceebee11bab7ba50 + version: 3.10.0 + resolution: "std-env@npm:3.10.0" + checksum: 10c0/1814927a45004d36dde6707eaf17552a546769bc79a6421be2c16ce77d238158dfe5de30910b78ec30d95135cc1c59ea73ee22d2ca170f8b9753f84da34c427f languageName: node linkType: hard @@ -13379,13 +12619,13 @@ __metadata: linkType: hard "streamx@npm:^2.12.5, streamx@npm:^2.15.0, streamx@npm:^2.25.0": - version: 2.25.0 - resolution: "streamx@npm:2.25.0" + version: 2.28.0 + resolution: "streamx@npm:2.28.0" dependencies: events-universal: "npm:^1.0.0" fast-fifo: "npm:^1.3.2" text-decoder: "npm:^1.1.0" - checksum: 10c0/1ecc4b722050e9088b99cde59d035e846ac97cedc3ef14a00b196d9c0b6f47d9fd18df454a19f56f0f586ab4f23fb7229069b9e8eaf22072a21bd9c909d4e0ea + checksum: 10c0/1cd5647c4dbdaadf4623b48183bab1d71bdc251e24c8f3baddf9fb9fa75096a7d446aba2c58a4f71964eeb5753f514b59e97bfdf94a60ce2c1b33594410b0342 languageName: node linkType: hard @@ -13484,16 +12724,7 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.1.0": +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": version: 7.2.0 resolution: "strip-ansi@npm:7.2.0" dependencies: @@ -13533,11 +12764,9 @@ __metadata: linkType: hard "strip-indent@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-indent@npm:4.0.0" - dependencies: - min-indent: "npm:^1.0.1" - checksum: 10c0/6b1fb4e22056867f5c9e7a6f3f45922d9a2436cac758607d58aeaac0d3b16ec40b1c43317de7900f1b8dd7a4107352fa47fb960f2c23566538c51e8585c8870e + version: 4.1.1 + resolution: "strip-indent@npm:4.1.1" + checksum: 10c0/5b23dd5934be0ef6b6fe1b802887f83e56ad9dcd9f6c3896a637da2c6c3a6da3fdf3e51354a98e6cccb6f1c41863e7b9b9deaa348639dfd35f71f3549edb4dff languageName: node linkType: hard @@ -13626,46 +12855,37 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.11.0": - version: 0.11.6 - resolution: "synckit@npm:0.11.6" +"synckit@npm:^0.11.13, synckit@npm:^0.11.8": + version: 0.11.13 + resolution: "synckit@npm:0.11.13" dependencies: - "@pkgr/core": "npm:^0.2.4" - checksum: 10c0/51c0e41c025b90cc68a7b304fbfe873cc77b3ddc99e92ab33fbd42f4fbd1ee65fc7d9affd8eedcac43644658399244aa521e19fb18d7b4e66898d0e2c0cc8d9b - languageName: node - linkType: hard - -"synckit@npm:^0.11.8": - version: 0.11.12 - resolution: "synckit@npm:0.11.12" - dependencies: - "@pkgr/core": "npm:^0.2.9" - checksum: 10c0/cc4d446806688ae0d728ae7bb3f53176d065cf9536647fb85bdd721dcefbd7bf94874df6799ff61580f2b03a392659219b778a9254ad499f9a1f56c34787c235 + "@pkgr/core": "npm:^0.3.6" + checksum: 10c0/5a6c19f4f79045aaa7994106401bff6dbe7cca23a6d0a0723ff14eb8b1bebeb4a71729118f6914905598e304ea2fa13509885e11ba07d92e7cb68a06740cb328 languageName: node linkType: hard "tar-stream@npm:^3.0.0": - version: 3.1.8 - resolution: "tar-stream@npm:3.1.8" + version: 3.2.0 + resolution: "tar-stream@npm:3.2.0" dependencies: b4a: "npm:^1.6.4" bare-fs: "npm:^4.5.5" fast-fifo: "npm:^1.2.0" streamx: "npm:^2.15.0" - checksum: 10c0/c4bf369de2302fcf30218d091167a5372ee79b69a1b5bb493ddb7714193ca805719558966334bab1f2775c8142826865f24e25459ff1c5f0a096bc3a3d5c5ce2 + checksum: 10c0/8a06c915f93c9b0906e79867e36a9cfe197da4d41b72e89ec0de99577ae755505d14815c1346b70c2410aa09d3145c3e3af2ff5802b6af84990cdd6c60dbb997 languageName: node linkType: hard "tar@npm:^7.5.4": - version: 7.5.20 - resolution: "tar@npm:7.5.20" + version: 7.5.21 + resolution: "tar@npm:7.5.21" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" minizlib: "npm:^3.1.0" yallist: "npm:^5.0.0" - checksum: 10c0/4df4335c6d958b76adf1eaced55889dec3ca1c51f450658a074af80694bb0d9c154a8e93fdf4da617372d1575b121295379993961bbe4cd4b0867c0e5689846a + checksum: 10c0/bce0e51692356078e6f6a909d5c93f5b4c099c097ffea19b1b1bf10385539a429baba26bca59aabbace68c4519d16f2f1c07afe7eaab55876a449a032480fabc languageName: node linkType: hard @@ -13697,13 +12917,13 @@ __metadata: linkType: hard "test-exclude@npm:^7.0.1": - version: 7.0.1 - resolution: "test-exclude@npm:7.0.1" + version: 7.0.2 + resolution: "test-exclude@npm:7.0.2" dependencies: "@istanbuljs/schema": "npm:^0.1.2" glob: "npm:^10.4.1" - minimatch: "npm:^9.0.4" - checksum: 10c0/6d67b9af4336a2e12b26a68c83308c7863534c65f27ed4ff7068a56f5a58f7ac703e8fc80f698a19bb154fd8f705cdf7ec347d9512b2c522c737269507e7b263 + minimatch: "npm:^10.2.2" + checksum: 10c0/b79b855af9168c6a362146015ccf40f5e3a25e307304ba9bea930818507f6319d230380d5d7b5baa659c981ccc11f1bd21b6f012f85606353dec07e02dee67c9 languageName: node linkType: hard @@ -13770,27 +12990,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12": - version: 0.2.16 - resolution: "tinyglobby@npm:0.2.16" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.4" - checksum: 10c0/f2e09fd93dd95c41e522113b686ff6f7c13020962f8698a864a257f3d7737599afc47722b7ab726e12f8a813f779906187911ff8ee6701ede65072671a7e934b - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": - version: 0.2.15 - resolution: "tinyglobby@npm:0.2.15" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.3" - checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.17": +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15, tinyglobby@npm:^0.2.17": version: 0.2.17 resolution: "tinyglobby@npm:0.2.17" dependencies: @@ -13853,12 +13053,10 @@ __metadata: languageName: node linkType: hard -"tmp@npm:^0.0.33": - version: 0.0.33 - resolution: "tmp@npm:0.0.33" - dependencies: - os-tmpdir: "npm:~1.0.2" - checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 +"tmp@npm:^0.2.4": + version: 0.2.7 + resolution: "tmp@npm:0.2.7" + checksum: 10c0/59eb55584f2f07210d3231b6a1f6b5c2b9794d8a7b509c8ee867ed2acad6d2245ee2448b7937b676ffbff3155a70077edde8a69f9d7cf0f90c86a62e8910c357 languageName: node linkType: hard @@ -13892,7 +13090,7 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.1, toidentifier@npm:~1.0.1": +"toidentifier@npm:~1.0.1": version: 1.0.1 resolution: "toidentifier@npm:1.0.1" checksum: 10c0/93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 @@ -13960,13 +13158,13 @@ __metadata: linkType: hard "ts-dedent@npm:^2.0.0": - version: 2.2.0 - resolution: "ts-dedent@npm:2.2.0" - checksum: 10c0/175adea838468cc2ff7d5e97f970dcb798bbcb623f29c6088cb21aa2880d207c5784be81ab1741f56b9ac37840cbaba0c0d79f7f8b67ffe61c02634cafa5c303 + version: 2.3.0 + resolution: "ts-dedent@npm:2.3.0" + checksum: 10c0/bfc3331e0740191c0134fb526e7f01e16657e50955c9395de14703c6ef17119c91651fa044cf558dc9c1dbb0fe1b2a74e303aeebcbd5e3b31acd14f72f545a54 languageName: node linkType: hard -"ts-node@npm:^10.9.1": +"ts-node@npm:^10.9.2": version: 10.9.2 resolution: "ts-node@npm:10.9.2" dependencies: @@ -14036,20 +13234,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:~2.3.1": - version: 2.3.1 - resolution: "tslib@npm:2.3.1" - checksum: 10c0/4efd888895bdb3b987086b2b7793ad1013566f882b0eb7a328384e5ecc0d71cafb16bbeab3196200cbf7f01a73ccc25acc2f131d4ea6ee959be7436a8a306482 - languageName: node - linkType: hard - -"tslib@npm:~2.5.0": - version: 2.5.3 - resolution: "tslib@npm:2.5.3" - checksum: 10c0/4cb1817d34fae5b27d146e6c4a468d4155097d95c1335d0bc9690f11f33e63844806bf4ed6d97c30c72b8d85261b66cbbe16d871d9c594ac05701ec83e62a607 - languageName: node - linkType: hard - "tslint@npm:6.1.3": version: 6.1.3 resolution: "tslint@npm:6.1.3" @@ -14087,18 +13271,17 @@ __metadata: linkType: hard "tsx@npm:^4.21.0": - version: 4.21.0 - resolution: "tsx@npm:4.21.0" + version: 4.23.1 + resolution: "tsx@npm:4.23.1" dependencies: - esbuild: "npm:~0.27.0" + esbuild: "npm:~0.28.0" fsevents: "npm:~2.3.3" - get-tsconfig: "npm:^4.7.5" dependenciesMeta: fsevents: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/f5072923cd8459a1f9a26df87823a2ab5754641739d69df2a20b415f61814322b751fa6be85db7c6ec73cf68ba8fac2fd1cfc76bdb0aa86ded984d84d5d2126b + checksum: 10c0/2f7393c09ffd161701342c87141c6158945967c0fdb6476f157a72e53554cbc983b8e516b441beafde27c9840d8ffd619802acce6b6be5e9e197d693e111a55d languageName: node linkType: hard @@ -14169,21 +13352,14 @@ __metadata: languageName: node linkType: hard -"type-is@npm:^2.0.1": - version: 2.0.1 - resolution: "type-is@npm:2.0.1" +"type-is@npm:^2.0.1, type-is@npm:^2.1.0": + version: 2.1.0 + resolution: "type-is@npm:2.1.0" dependencies: - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" media-typer: "npm:^1.1.0" mime-types: "npm:^3.0.0" - checksum: 10c0/7f7ec0a060b16880bdad36824ab37c26019454b67d73e8a465ed5a3587440fbe158bc765f0da68344498235c877e7dbbb1600beccc94628ed05599d667951b99 - languageName: node - linkType: hard - -"typed-styles@npm:^0.0.7": - version: 0.0.7 - resolution: "typed-styles@npm:0.0.7" - checksum: 10c0/ec159f0e538364750cf9b8f19136375df64ad364fda355e6f7a7216ebffc67f18b436722c5c6853c89f70e6507eb69e5061ceb9334fa1f54902c0f6be1b985fe + checksum: 10c0/a6018f8f509de48f2c7429305e3a920e73b374fa93127dd0877ae1c2df65a5d33907caac8afb0c37a9b9fc7c49f29e3f55d668963dc845d966930b667c07f50e languageName: node linkType: hard @@ -14234,25 +13410,25 @@ __metadata: linkType: hard "typescript-json-schema@npm:^0.67.1": - version: 0.67.1 - resolution: "typescript-json-schema@npm:0.67.1" + version: 0.67.4 + resolution: "typescript-json-schema@npm:0.67.4" dependencies: - "@types/json-schema": "npm:^7.0.9" - "@types/node": "npm:^18.11.9" - glob: "npm:^7.1.7" + "@types/json-schema": "npm:^7.0.15" + "@types/node": "npm:^24.10.2" + glob: "npm:^13.0.6" path-equal: "npm:^1.2.5" - safe-stable-stringify: "npm:^2.2.0" - ts-node: "npm:^10.9.1" - typescript: "npm:~5.5.0" - vm2: "npm:^3.10.0" - yargs: "npm:^17.1.1" + safe-stable-stringify: "npm:^2.5.0" + ts-node: "npm:^10.9.2" + typescript: "npm:~5.9.3" + vm2: "npm:^3.11.3" + yargs: "npm:^18.0.0" bin: typescript-json-schema: bin/typescript-json-schema - checksum: 10c0/f7d9695f56ebeab64515947f20cd53899a9df1f737063b60c2a187b5ddc618d57a23aca3e5cb778a270e024308d378d98f86834888665b9198eee50509fed81c + checksum: 10c0/9a5a17ca1a2b186615398cbe088e811b68dd2188c5ce83bb4572f45329892d3ee08f3a9c5b993bdc04c276829d4c516ad5e45e142d482d0366c51e665b2176d8 languageName: node linkType: hard -"typescript@npm:5.9.3": +"typescript@npm:5.9.3, typescript@npm:~5.9.3": version: 5.9.3 resolution: "typescript@npm:5.9.3" bin: @@ -14262,17 +13438,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:~5.5.0": - version: 5.5.4 - resolution: "typescript@npm:5.5.4" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c - languageName: node - linkType: hard - -"typescript@patch:typescript@npm%3A5.9.3#optional!builtin": +"typescript@patch:typescript@npm%3A5.9.3#optional!builtin, typescript@patch:typescript@npm%3A~5.9.3#optional!builtin": version: 5.9.3 resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" bin: @@ -14282,16 +13448,6 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A~5.5.0#optional!builtin": - version: 5.5.4 - resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=379a07" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/73409d7b9196a5a1217b3aaad929bf76294d3ce7d6e9766dd880ece296ee91cf7d7db6b16c6c6c630ee5096eccde726c0ef17c7dfa52b01a243e57ae1f09ef07 - languageName: node - linkType: hard - "uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": version: 2.1.0 resolution: "uc.micro@npm:2.1.0" @@ -14299,17 +13455,24 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 +"undici-types@npm:~7.18.0": + version: 7.18.2 + resolution: "undici-types@npm:7.18.2" + checksum: 10c0/85a79189113a238959d7a647368e4f7c5559c3a404ebdb8fc4488145ce9426fcd82252a844a302798dfc0e37e6fb178ff481ed03bc4caf634c5757d9ef43521d languageName: node linkType: hard -"undici-types@npm:~6.21.0": - version: 6.21.0 - resolution: "undici-types@npm:6.21.0" - checksum: 10c0/c01ed51829b10aa72fc3ce64b747f8e74ae9b60eafa19a7b46ef624403508a54c526ffab06a14a26b3120d055e1104d7abe7c9017e83ced038ea5cf52f8d5e04 +"undici-types@npm:~8.3.0": + version: 8.3.0 + resolution: "undici-types@npm:8.3.0" + checksum: 10c0/c8aa7e2fbebfce519654dafadc0ece59be888d2ccaf180fb4495da875e7b536d2456345c384069c7e6f3e9c9ab7435f074957da306f142343eee86ff8048855a + languageName: node + linkType: hard + +"undici@npm:^8.4.1": + version: 8.8.0 + resolution: "undici@npm:8.8.0" + checksum: 10c0/6ee51e6b814b67e212b19349c38657be988d878ca669ccf2ad33f0ebbb0d83e851aa57554b6ce3c6668a9a4df3010fb6a6af7bd28692ade911083ef376a3a75d languageName: node linkType: hard @@ -14354,29 +13517,32 @@ __metadata: linkType: hard "unrs-resolver@npm:^1.7.11": - version: 1.11.1 - resolution: "unrs-resolver@npm:1.11.1" - dependencies: - "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1" - "@unrs/resolver-binding-android-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-x64": "npm:1.11.1" - "@unrs/resolver-binding-freebsd-x64": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1" - napi-postinstall: "npm:^0.3.0" + version: 1.12.2 + resolution: "unrs-resolver@npm:1.12.2" + dependencies: + "@unrs/resolver-binding-android-arm-eabi": "npm:1.12.2" + "@unrs/resolver-binding-android-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-x64": "npm:1.12.2" + "@unrs/resolver-binding-freebsd-x64": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-musl": "npm:1.12.2" + "@unrs/resolver-binding-openharmony-arm64": "npm:1.12.2" + "@unrs/resolver-binding-wasm32-wasi": "npm:1.12.2" + "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-x64-msvc": "npm:1.12.2" + napi-postinstall: "npm:^0.3.4" dependenciesMeta: "@unrs/resolver-binding-android-arm-eabi": optional: true @@ -14396,6 +13562,10 @@ __metadata: optional: true "@unrs/resolver-binding-linux-arm64-musl": optional: true + "@unrs/resolver-binding-linux-loong64-gnu": + optional: true + "@unrs/resolver-binding-linux-loong64-musl": + optional: true "@unrs/resolver-binding-linux-ppc64-gnu": optional: true "@unrs/resolver-binding-linux-riscv64-gnu": @@ -14408,6 +13578,8 @@ __metadata: optional: true "@unrs/resolver-binding-linux-x64-musl": optional: true + "@unrs/resolver-binding-openharmony-arm64": + optional: true "@unrs/resolver-binding-wasm32-wasi": optional: true "@unrs/resolver-binding-win32-arm64-msvc": @@ -14416,7 +13588,7 @@ __metadata: optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true - checksum: 10c0/c91b112c71a33d6b24e5c708dab43ab80911f2df8ee65b87cd7a18fb5af446708e98c4b415ca262026ad8df326debcc7ca6a801b2935504d87fd6f0b9d70dce1 + checksum: 10c0/ddc27f6d920eabdafeac0077ebff9fd799c895cea025751dc17b360bf9be7c93c471fafebf65f205eec476f90d7daa36aef889d47362b2dd4705d68852bcfea4 languageName: node linkType: hard @@ -14434,9 +13606,9 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.3": - version: 1.1.3 - resolution: "update-browserslist-db@npm:1.1.3" +"update-browserslist-db@npm:^1.2.3": + version: 1.2.3 + resolution: "update-browserslist-db@npm:1.2.3" dependencies: escalade: "npm:^3.2.0" picocolors: "npm:^1.1.1" @@ -14444,7 +13616,7 @@ __metadata: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 10c0/682e8ecbf9de474a626f6462aa85927936cdd256fe584c6df2508b0df9f7362c44c957e9970df55dfe44d3623807d26316ea2c7d26b80bb76a16c56c37233c32 + checksum: 10c0/13a00355ea822388f68af57410ce3255941d5fb9b7c49342c4709a07c9f230bbef7f7499ae0ca7e0de532e79a82cc0c4edbd125f1a323a1845bf914efddf8bec languageName: node linkType: hard @@ -14633,10 +13805,10 @@ __metadata: linkType: hard "vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": - version: 7.3.5 - resolution: "vite@npm:7.3.5" + version: 7.3.6 + resolution: "vite@npm:7.3.6" dependencies: - esbuild: "npm:^0.27.0" + esbuild: "npm:^0.27.0 || ^0.28.0" fdir: "npm:^6.5.0" fsevents: "npm:~2.3.3" picomatch: "npm:^4.0.3" @@ -14683,19 +13855,19 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/4ad700649ed2ebd1e726d32f3f6e41eecbec4e29bcb5977805f3d43a5659280518aa431b0fc61adc1879df4fe1978d7cfc7dbbe54cdf014022385052967721e8 + checksum: 10c0/c6d359f84ad362f5c97ff7988b77c90add04162c60cdf6059375a7d9e3217848c53a8cb6b6c48517bef84b6bba4c9bc85319a889b5236acb7d5a2bc8cb7b9a8d languageName: node linkType: hard -"vite@npm:^8.0.14": - version: 8.1.0 - resolution: "vite@npm:8.1.0" +"vite@npm:^8.0.16": + version: 8.1.5 + resolution: "vite@npm:8.1.5" dependencies: fsevents: "npm:~2.3.3" lightningcss: "npm:^1.32.0" - picomatch: "npm:^4.0.4" - postcss: "npm:^8.5.15" - rolldown: "npm:~1.1.2" + picomatch: "npm:^4.0.5" + postcss: "npm:^8.5.17" + rolldown: "npm:~1.1.5" tinyglobby: "npm:^0.2.17" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 @@ -14740,7 +13912,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/d7e2da70169a7d93c68f5d0e246bdf2fb35d8835170663a28f01191d73e16b80322b5f229973ce754de80136be843481b0afa616bb8530b51e7454e4887c4b45 + checksum: 10c0/3231e24dd4394d0bc8b4f0f5d6d6a2eda8737e5053042892b4163564456a03d67f953c4c7498621f9517eebc30a492ea136c728a767a122eb84bf6d7cf60e1e6 languageName: node linkType: hard @@ -14800,7 +13972,7 @@ __metadata: languageName: node linkType: hard -"vm2@npm:^3.10.0": +"vm2@npm:^3.11.3": version: 3.11.5 resolution: "vm2@npm:3.11.5" dependencies: @@ -14821,18 +13993,18 @@ __metadata: languageName: node linkType: hard -"wait-on@npm:9.0.5": - version: 9.0.5 - resolution: "wait-on@npm:9.0.5" +"wait-on@npm:9.0.10": + version: 9.0.10 + resolution: "wait-on@npm:9.0.10" dependencies: - axios: "npm:^1.15.0" - joi: "npm:^18.1.2" + axios: "npm:^1.16.0" + joi: "npm:^18.2.1" lodash: "npm:^4.18.1" minimist: "npm:^1.2.8" rxjs: "npm:^7.8.2" bin: wait-on: bin/wait-on - checksum: 10c0/79823ebda9bb08ae341abb49d298d001039071ac103f6557da69371ae92a6b35ea8faca0b1c349f08c7b6db0ea527705bea9044a6a41e5a0e4470ee9d95fdcd1 + checksum: 10c0/f5a1e940fe8efa6ad4b52efabad46925bfddea191d895a7f87e1c364975e7b095b0849f2f37549aea6a9dabacbf3c8ab14e818ba1182e370f060b7f6c8da0cf2 languageName: node linkType: hard @@ -14873,15 +14045,6 @@ __metadata: languageName: node linkType: hard -"warning@npm:^4.0.2, warning@npm:^4.0.3": - version: 4.0.3 - resolution: "warning@npm:4.0.3" - dependencies: - loose-envify: "npm:^1.0.0" - checksum: 10c0/aebab445129f3e104c271f1637fa38e55eb25f968593e3825bd2f7a12bd58dc3738bb70dc8ec85826621d80b4acfed5a29ebc9da17397c6125864d72301b937e - languageName: node - linkType: hard - "web-worker@npm:^1.5.0": version: 1.5.0 resolution: "web-worker@npm:1.5.0" @@ -14979,17 +14142,17 @@ __metadata: linkType: hard "which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.2": - version: 1.1.19 - resolution: "which-typed-array@npm:1.1.19" + version: 1.1.22 + resolution: "which-typed-array@npm:1.1.22" dependencies: available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.8" + call-bind: "npm:^1.0.9" call-bound: "npm:^1.0.4" for-each: "npm:^0.3.5" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" - checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f + checksum: 10c0/e59db184a4e78b461fac3b05fafc1e7badbbedafbf04a967ee1de73717f1f9723a79699e7b5de71d449541cb5da8353efc01a4f8a72a152479850e54fa196c40 languageName: node linkType: hard @@ -15015,7 +14178,7 @@ __metadata: languageName: node linkType: hard -"which@npm:^6.0.0, which@npm:^6.0.1": +"which@npm:^6.0.1": version: 6.0.1 resolution: "which@npm:6.0.1" dependencies: @@ -15026,6 +14189,17 @@ __metadata: languageName: node linkType: hard +"which@npm:^7.0.0": + version: 7.0.0 + resolution: "which@npm:7.0.0" + dependencies: + isexe: "npm:^4.0.0" + bin: + node-which: bin/which.js + checksum: 10c0/ca0b54f198f78bbc4b7c02e34bda8d335cb352e0adb4cbca1c37b1a957af3a879a82c4c27ca6525bc942f548d8b64f816ef6528360af9f3de55ffb9b979b620d + languageName: node + linkType: hard + "why-is-node-running@npm:^2.3.0": version: 2.3.0 resolution: "why-is-node-running@npm:2.3.0" @@ -15150,8 +14324,8 @@ __metadata: linkType: hard "ws@npm:^8.18.0, ws@npm:^8.2.3": - version: 8.18.2 - resolution: "ws@npm:8.18.2" + version: 8.21.1 + resolution: "ws@npm:8.21.1" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -15160,7 +14334,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 10c0/4b50f67931b8c6943c893f59c524f0e4905bbd183016cfb0f2b8653aa7f28dad4e456b9d99d285bbb67cca4fedd9ce90dfdfaa82b898a11414ebd66ee99141e4 + checksum: 10c0/c4c6f1d95f6d465262de2037c57c715725d67e078dd49420ede4e19115668aba159cb64d85c5e89c06eb2826be599e62e5095860ad6cc54ff42e8bd7684e1db8 languageName: node linkType: hard @@ -15237,13 +14411,6 @@ __metadata: languageName: node linkType: hard -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a - languageName: node - linkType: hard - "yallist@npm:^5.0.0": version: 5.0.0 resolution: "yallist@npm:5.0.0" @@ -15252,27 +14419,18 @@ __metadata: linkType: hard "yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f - languageName: node - linkType: hard - -"yaml@npm:^2.2.2": - version: 2.8.0 - resolution: "yaml@npm:2.8.0" - bin: - yaml: bin.mjs - checksum: 10c0/f6f7310cf7264a8107e72c1376f4de37389945d2fb4656f8060eca83f01d2d703f9d1b925dd8f39852a57034fafefde6225409ddd9f22aebfda16c6141b71858 + version: 1.10.3 + resolution: "yaml@npm:1.10.3" + checksum: 10c0/c309ff85a0a569a981d71ab9cf0fef68672a16b9cdf40639d1c3b30034f6cd16ee428602bd6d64ecf006f8c8bee499023cac236538f79898aa99fb5db529a2ed languageName: node linkType: hard -"yaml@npm:^2.8.3": - version: 2.8.3 - resolution: "yaml@npm:2.8.3" +"yaml@npm:^2.2.2, yaml@npm:^2.8.3": + version: 2.9.0 + resolution: "yaml@npm:2.9.0" bin: yaml: bin.mjs - checksum: 10c0/ddff0e11c1b467728d7eb4633db61c5f5de3d8e9373cf84d08fb0cdee03e1f58f02b9f1c51a4a8a865751695addbd465a77f73f1079be91fe5493b29c305fd77 + checksum: 10c0/f340718df45e97a9551b9bf9dac61c80050bc464513b710debfb5067c380c8472e3b67809cffacb4ab5ffb5e66ef9310816c88b05f371cec60abfedd8c88e0a2 languageName: node linkType: hard @@ -15318,7 +14476,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:17.7.2, yargs@npm:^17.1.1, yargs@npm:^17.4.1, yargs@npm:^17.7.2": +"yargs@npm:17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: @@ -15353,8 +14511,8 @@ __metadata: linkType: hard "yargs@npm:^16.1.0, yargs@npm:^16.2.0": - version: 16.2.0 - resolution: "yargs@npm:16.2.0" + version: 16.2.2 + resolution: "yargs@npm:16.2.2" dependencies: cliui: "npm:^7.0.2" escalade: "npm:^3.1.1" @@ -15363,7 +14521,22 @@ __metadata: string-width: "npm:^4.2.0" y18n: "npm:^5.0.5" yargs-parser: "npm:^20.2.2" - checksum: 10c0/b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 + checksum: 10c0/1ca2152581ee7c9c9fb4174767ff7294b1c272d2d0a1f6eb13c39ce177fded85eb9c96711e00cd7913c0a9b88b6e763713ee11cae81b9b62fd97bdd0b03d5549 + languageName: node + linkType: hard + +"yargs@npm:^17.4.1, yargs@npm:^17.7.2": + version: 17.7.3 + resolution: "yargs@npm:17.7.3" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/7a28572f7e785a57886e34fdbddb9b28756dec552e1453d5f6e7cdd00ad8721a4e8c4321d33683f5e61cacb36ad43258adbb48396b71ec4ed14abee0fc0d0c1f languageName: node linkType: hard @@ -15396,23 +14569,23 @@ __metadata: linkType: hard "zarrita@npm:^0.7.1": - version: 0.7.1 - resolution: "zarrita@npm:0.7.1" + version: 0.7.3 + resolution: "zarrita@npm:0.7.3" dependencies: "@zarrita/storage": "npm:^0.2.0" numcodecs: "npm:^0.3.2" - checksum: 10c0/f82f5710ff7a5594e02f50a3519a3a03eaba5395c0c546cdf9066a72c43442443191708835749917bd603e61062cf555fba3f0960ba3fc1c703aa76ed4ff7b9b + checksum: 10c0/97ad16f900a190f14872582d03c75da26a77ae925aa57dcc5dcdb04216ecd25383c46e78947d503bb9e0857e69d9c4018c2489b3d8d8f312e69eec924d2393de languageName: node linkType: hard -"zip-stream@npm:^6.0.1": - version: 6.0.1 - resolution: "zip-stream@npm:6.0.1" +"zip-stream@npm:^7.0.2": + version: 7.0.5 + resolution: "zip-stream@npm:7.0.5" dependencies: - archiver-utils: "npm:^5.0.0" - compress-commons: "npm:^6.0.2" + compress-commons: "npm:^7.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/50f2fb30327fb9d09879abf7ae2493705313adf403e794b030151aaae00009162419d60d0519e807673ec04d442e140c8879ca14314df0a0192de3b233e8f28b + checksum: 10c0/e1669e17031c3c7243cb9014eacfaa66f4cd2e0d613a57dbee9caf7122ae869f8b2ea2e5891b5d9eee2897060c01db048b9b2a544ba83e227f6c162905282e48 languageName: node linkType: hard @@ -15426,9 +14599,9 @@ __metadata: linkType: hard "zod@npm:^3.25 || ^4.0": - version: 4.3.6 - resolution: "zod@npm:4.3.6" - checksum: 10c0/860d25a81ab41d33aa25f8d0d07b091a04acb426e605f396227a796e9e800c44723ed96d0f53a512b57be3d1520f45bf69c0cb3b378a232a00787a2609625307 + version: 4.4.3 + resolution: "zod@npm:4.4.3" + checksum: 10c0/7ea31b558e88f9faf44f31dd185e2e1cbf51fed3081787fb96cc2534749b50c0acfc6da7f0922a7353ed092dd358c7d50c28ea96c94d04af64191bd33152eca3 languageName: node linkType: hard
Move the mouse around the map and its geographic coordinates should be shown below @@ -103,12 +103,12 @@ export const MouseCoordinates = () => { }; export const ViewSize = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + View Size - + Zoom in or out of the map. The physical map size should be shown below @@ -118,13 +118,12 @@ export const ViewSize = () => { }; export const ScaleDisplay = () => { - const { Card } = useElementContext(); - return - <> + const { Card, Heading } = useElementContext(); + return <> - + Scale Display - + Zoom in or out of the map. The map scale should be shown below diff --git a/src/stories/mapguide.stories.tsx b/src/stories/mapguide.stories.tsx index ff6bbe7d..2cc094ef 100644 --- a/src/stories/mapguide.stories.tsx +++ b/src/stories/mapguide.stories.tsx @@ -40,12 +40,12 @@ export const LegendWithBaseLayerSwitcher = { }; export const SelectedFeatureCount = () => { - const { Card } = useElementContext(); + const { Card, Heading } = useElementContext(); return <> - + Selected Feature Count - + Click the test select button to simulate a map selection request. The selection count should display below diff --git a/src/styles/index.css b/src/styles/index.css index 760ba49b..a7d75e5f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -2,11 +2,6 @@ @import "../../stdassets/sprites/icons.css"; @import "./splitter-layout.css"; -/* HACK: Clear out any trace of the font icon as HTMLSelect should be using the SVG counterpart */ -.bp3-select:after { - content: ""; -} - .legend-label-highlight-text { background-color: yellow; } @@ -19,6 +14,10 @@ background-color: white; } +.map-viewer-component:focus { + outline: none; +} + .map-viewer-component .ol-overlaycontainer, .map-viewer-component .ol-overlaycontainer-stopevent { z-index: 20; @@ -520,10 +519,6 @@ div.InfoText { word-wrap: break-word; } -.bp3-dark { - background-color: #30404d; -} - .colorpicker { position: relative; width: 100%; diff --git a/stdassets/bp-icons.js b/stdassets/bp-icons.js deleted file mode 100644 index ce4d1f82..00000000 --- a/stdassets/bp-icons.js +++ /dev/null @@ -1,121 +0,0 @@ -/** - * bp-icons.js - * - * A verbatim subset of the Blueprint.js SVG icon set that we actually use - * - * All usages of the BP icon set will be replaced with this via - * bundler aliasing in the build config - * - * When adding icons, copy the relevant icon path definitions from - * node_modules/@blueprintjs/icons/src/generated/iconSvgPaths.ts - */ - -//TODO/FIXME: This module is not used directly by sources, so changes to -//this file may not trigger a rebuild. If making changes, you may -//have to restart the current build process. - -export const IconSvgPaths16 = { - "arrow-left": ["M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z"], - "arrow-right": ["M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"], - "arrows-horizontal": ["M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z"], - "caret-up": ["M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z"], - "chevron-down": ["M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z"], - "chevron-right": ["M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "cog": ["M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"], - "comment": ["M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z"], - "comparison": ["M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z"], - "delete": ["M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z"], - "disable": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z"], - "double-caret-vertical": ["M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"], - "edit": ["M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z"], - "error": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z"], - "folder-close": ["M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z"], - "hand": ["M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z"], - "home": ["M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z"], - "issue": ["M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z"], - "layer": ["M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z"], - "layers": ["M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z"], - "map": ["M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z"], - "media": ["M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z"], - "menu-closed": ["M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z"], - "minus": ["M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z"], - "new-layer": ["M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z"], - "path-search": ["M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z"], - "play": ["M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z"], - "plus": ["M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z"], - "properties": ["M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"], - "search": ["M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"], - "select": ["M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z"], - "small-cross": ["M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "stop": ["M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z"], - "th": ["M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z"], - "tick": ["M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z"], - "trash": ["M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z"], - "upload": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z"], - "warning-sign": ["M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z"], - "zoom-to-fit": ["M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z"] -} - -export const IconSvgPaths20 = { - "arrow-left": ["M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z"], - "arrow-right": ["M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "arrows-horizontal": ["M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z"], - "caret-up": ["M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z"], - "chevron-down": ["M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z"], - "chevron-right": ["M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "cog": ["M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "comment": ["M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"], - "comparison": ["M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z"], - "delete": ["M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"], - "disable": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z"], - "double-caret-vertical": ["M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z"], - "edit": ["M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z"], - "error": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z"], - "folder-close": ["M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z"], - "hand": ["M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z"], - "home": ["M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z"], - "issue": ["M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z"], - "layer": ["M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z"], - "layers": ["M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z", -"M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", -"M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z"], - "map": ["M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z"], - "media": ["M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z"], - "menu-closed": ["M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "minus": ["M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z"], - "new-layer": ["M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z"], - "path-search": ["M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "play": ["M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z"], - "plus": ["M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z"], - "properties": ["M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "select": ["M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z"], - "search": ["M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"], - "small-cross": ["M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "stop": ["M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z"], - "th": ["M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z"], - "tick": ["M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z"], - "trash": ["M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z"], - "upload": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z"], - "warning-sign": ["M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z"], - "zoom-to-fit": ["M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z"] -} \ No newline at end of file diff --git a/test/components/map-load-indicator.spec.tsx b/test/components/map-load-indicator.spec.tsx index f208ca96..9576724a 100644 --- a/test/components/map-load-indicator.spec.tsx +++ b/test/components/map-load-indicator.spec.tsx @@ -16,7 +16,7 @@ describe("MapLoadIndicator", () => { const { container } = render(); const div = container.firstChild as HTMLDivElement; expect(div).toBeInTheDocument(); - expect(div.style.width).toBe("50.0%"); + expect(div.style.width).toBe("50%"); expect(div.style.background).toBe("rgb(255, 0, 0)"); // #ff0000 in rgb expect(div.style.visibility).toBe("visible"); expect(div.style.position).toBe("absolute"); @@ -61,7 +61,7 @@ describe("MapLoadIndicator", () => { const props = { ...baseProps, loaded: 0, loading: 10 }; const { container } = render(); const div = container.firstChild as HTMLDivElement; - expect(div.style.width).toBe("0.0%"); + expect(div.style.width).toBe("0%"); expect(div.style.visibility).toBe("visible"); }); }); \ No newline at end of file diff --git a/test/containers/add-manage-layers.spec.tsx b/test/containers/add-manage-layers.spec.tsx index 32a0570c..cb85b2b6 100644 --- a/test/containers/add-manage-layers.spec.tsx +++ b/test/containers/add-manage-layers.spec.tsx @@ -31,8 +31,8 @@ import { AddManageLayersContainer } from "../../src/containers/add-manage-layers import { tr } from "../../src/api/i18n"; // --------------------------------------------------------------------------- -// Mock element-context so that Blueprint components are replaced with simple -// HTML elements that work in jsdom without any Blueprint CSS / portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without any external CSS / portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ diff --git a/test/containers/measure.spec.tsx b/test/containers/measure.spec.tsx index 95cef2c7..233d35e6 100644 --- a/test/containers/measure.spec.tsx +++ b/test/containers/measure.spec.tsx @@ -75,6 +75,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ Callout: ({ children }: React.PropsWithChildren<{}>) => {children}, Button: ({ children, onClick, disabled }: any) => {children}, HtmlTable: ({ children }: React.PropsWithChildren<{}>) => {children}, + FormGroup: ({ children }: React.PropsWithChildren<{}>) => {children}, }), })); diff --git a/test/containers/selection-panel.spec.tsx b/test/containers/selection-panel.spec.tsx index ed7f002b..2c03cae7 100644 --- a/test/containers/selection-panel.spec.tsx +++ b/test/containers/selection-panel.spec.tsx @@ -31,8 +31,8 @@ import { tr } from "../../src/api/i18n"; import { createSelectionSet, createClientSelectionSet } from "../../test-data"; // --------------------------------------------------------------------------- -// Mock element-context so Blueprint components are replaced with simple HTML -// elements that work in jsdom without Blueprint CSS/portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without external CSS/portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ @@ -71,7 +71,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ })); // --------------------------------------------------------------------------- -// Mock the SelectionPanel component to avoid deep OL / Blueprint dependencies. +// Mock the SelectionPanel component to avoid deep OL dependencies. // Renders a sentinel element so tests can verify it is rendered vs. not, and // exposes a "Show Feature" button so tests can trigger onShowSelectedFeature. // --------------------------------------------------------------------------- diff --git a/viewer/css/limegold.css b/viewer/css/limegold.css index 86471a54..4c6091aa 100644 --- a/viewer/css/limegold.css +++ b/viewer/css/limegold.css @@ -40,13 +40,10 @@ .limegold-status-bar { background: #FFFEBE; } -.bp3-tab[aria-selected="true"], .bp3-tab:not([aria-disabled="true"]):hover { +.mrl-tab--active, .mrl-tab:hover:not(.mrl-tab--active) { color: black; } -.bp3-tab-indicator-wrapper .bp3-tab-indicator { - background-color: black; -} -.limegold-sidebar-tabs > .bp3-tab-list { +.limegold-sidebar-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f48000+0,fabb00+100 */ background: #f48000; /* Old browsers */ diff --git a/viewer/css/turquoise-yellow.css b/viewer/css/turquoise-yellow.css index 5baa31b9..74893293 100644 --- a/viewer/css/turquoise-yellow.css +++ b/viewer/css/turquoise-yellow.css @@ -67,7 +67,7 @@ .turquoise-yellow-splitter > .layout-splitter { background-color: #578bad; } -.turquoise-yellow-sb-tabs > .bp3-tab-list { +.turquoise-yellow-sb-tabs > .mrl-tab-list { padding-left: 8px; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#faea98+0,fefcea+100 */ background: #faea98; /* Old browsers */ @@ -76,6 +76,6 @@ background: linear-gradient(to bottom, #faea98 0%,#fefcea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faea98', endColorstr='#fefcea',GradientType=0 ); /* IE6-9 */ } -.turquoise-yellow-sb-tabs > .bp3-tab-list > .bp3-tab { +.turquoise-yellow-sb-tabs > .mrl-tab-list > .mrl-tab { color: #11449E; } \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index b9dc7d31..f6649fb3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -14,8 +14,7 @@ const getBuildMetadata = () => ({ __VERSION__: JSON.stringify(process.env.APPVEYOR_BUILD_VERSION || ""), __COMMITHASH__: JSON.stringify(process.env.APPVEYOR_REPO_COMMIT || ""), __BRANCH__: JSON.stringify(process.env.APPVEYOR_REPO_BRANCH || "master"), - "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development"), - "process.env.BLUEPRINT_NAMESPACE": JSON.stringify("bp3") + "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development") }); const getAssetFileName = (assetInfo: IAssetFileInfo, isDebugBuild: boolean) => { @@ -256,12 +255,6 @@ const config = async ({ mode }: { mode: string }) => { __DEV__: JSON.stringify(!isProduction) }, resolve: { - alias: [ - { - find: /.*\/generated\/iconSvgPaths.*/, - replacement: path.resolve(__dirname, "stdassets/bp-icons.js") - } - ] }, build: { target: "es2015", diff --git a/yarn.lock b/yarn.lock index 6671b300..81391bef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,9 +6,9 @@ __metadata: cacheKey: 10c0 "@adobe/css-tools@npm:^4.4.0": - version: 4.4.3 - resolution: "@adobe/css-tools@npm:4.4.3" - checksum: 10c0/6d16c4d4b6752d73becf6e58611f893c7ed96e04017ff7084310901ccdbe0295171b722b158f6a2b0aa77182ef3446ffd62b39488fa5a7adab1f0dfe5ffafbae + version: 4.5.0 + resolution: "@adobe/css-tools@npm:4.5.0" + checksum: 10c0/fc969e1117098eb4cccdb73beb2508daa0e52760af1183d6288bafea59204943490ab3ede28593032ffb8929c0cee270b2a53254fe61139ab00604ea8fc33cea languageName: node linkType: hard @@ -22,7 +22,7 @@ __metadata: languageName: node linkType: hard -"@asamuzakjp/css-color@npm:^3.1.2": +"@asamuzakjp/css-color@npm:^3.2.0": version: 3.2.0 resolution: "@asamuzakjp/css-color@npm:3.2.0" dependencies: @@ -44,29 +44,7 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/code-frame@npm:7.27.1" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.27.1" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00 - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.28.6": - version: 7.29.0 - resolution: "@babel/code-frame@npm:7.29.0" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.28.5" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.1.1" - checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.29.7": +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.29.7": version: 7.29.7 resolution: "@babel/code-frame@npm:7.29.7" dependencies: @@ -107,33 +85,7 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5": - version: 7.29.1 - resolution: "@babel/generator@npm:7.29.1" - dependencies: - "@babel/parser": "npm:^7.29.0" - "@babel/types": "npm:^7.29.0" - "@jridgewell/gen-mapping": "npm:^0.3.12" - "@jridgewell/trace-mapping": "npm:^0.3.28" - jsesc: "npm:^3.0.2" - checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/generator@npm:7.27.1" - dependencies: - "@babel/parser": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" - jsesc: "npm:^3.0.2" - checksum: 10c0/c4156434b21818f558ebd93ce45f027c53ee570ce55a84fd2d9ba45a79ad204c17e0bff753c886fb6c07df3385445a9e34dc7ccb070d0ac7e80bb91c8b57f423 - languageName: node - linkType: hard - -"@babel/generator@npm:^7.29.7": +"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.27.5, @babel/generator@npm:^7.29.7": version: 7.29.7 resolution: "@babel/generator@npm:7.29.7" dependencies: @@ -166,17 +118,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.16.7": - version: 7.27.1 - resolution: "@babel/helper-module-imports@npm:7.27.1" - dependencies: - "@babel/traverse": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8 - languageName: node - linkType: hard - -"@babel/helper-module-imports@npm:^7.29.7": +"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-module-imports@npm:7.29.7" dependencies: @@ -199,17 +141,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.8.0": - version: 7.28.6 - resolution: "@babel/helper-plugin-utils@npm:7.28.6" - checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-string-parser@npm:7.27.1" - checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.29.7, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.29.7 + resolution: "@babel/helper-plugin-utils@npm:7.29.7" + checksum: 10c0/380477a06133274a2759f9355929cb60a95e8b8fee624a1ae1fa349e1d1645b89daca456f72833f6d1062bffa12ee4271c5bf0cc5a61c0166cdc24c7591e2408 languageName: node linkType: hard @@ -220,21 +155,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-validator-identifier@npm:7.27.1" - checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/helper-validator-identifier@npm:7.28.5" - checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.29.7": +"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9, @babel/helper-validator-identifier@npm:^7.29.7": version: 7.29.7 resolution: "@babel/helper-validator-identifier@npm:7.29.7" checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b @@ -270,29 +191,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/parser@npm:7.27.2" - dependencies: - "@babel/types": "npm:^7.27.1" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": - version: 7.29.2 - resolution: "@babel/parser@npm:7.29.2" - dependencies: - "@babel/types": "npm:^7.29.0" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/e5a4e69e3ac7acdde995f37cf299a68458cfe7009dff66bd0962fd04920bef287201169006af365af479c08ff216bfefbb595e331f87f6ae7283858aebbc3317 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.29.7": +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.29.7": version: 7.29.7 resolution: "@babel/parser@npm:7.29.7" dependencies: @@ -348,13 +247,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-import-attributes@npm:^7.24.7": - version: 7.28.6 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/1be160e2c426faa74e5be2e30e39e8d0d8c543063bd5d06cd804f8751b8fbcb82ce824ca7f9ce4b09c003693f6c06a11ce503b7e34d85e1a259631e4c3f72ad2 + checksum: 10c0/b9a47e869d8c06676297069895ae34e2bd244ec4c3bdf15002f1e69aed32eef0361044af22a43f271b8de5e23a40534fe6a74a63e7ab98e3d60a74b322444b49 languageName: node linkType: hard @@ -381,13 +280,13 @@ __metadata: linkType: hard "@babel/plugin-syntax-jsx@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-jsx@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b98fc3cd75e4ca3d5ca1162f610c286e14ede1486e0d297c13a5eb0ac85680ac9656d17d348bddd9160a54d797a08cea5eaac02b9330ddebb7b26732b7b99fb5 + checksum: 10c0/1736000de183538ba8eef34520105508860e48b0c763254ba9158af5e814ed8bbceeedbb4281fbda33de787ae5b3870e92f60c6ae7131e7d322e451d57387896 languageName: node linkType: hard @@ -480,67 +379,24 @@ __metadata: linkType: hard "@babel/plugin-syntax-typescript@npm:^7.27.1": - version: 7.28.6 - resolution: "@babel/plugin-syntax-typescript@npm:7.28.6" + version: 7.29.7 + resolution: "@babel/plugin-syntax-typescript@npm:7.29.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.29.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b0c392a35624883ac480277401ac7d92d8646b66e33639f5d350de7a6723924265985ae11ab9ebd551740ded261c443eaa9a87ea19def9763ca1e0d78c97dea8 + checksum: 10c0/c49883b0327e8683b770dc823205af5c697da216e590dcf5bf53f3f031e7e381de450b164f8f99853f0837a3de5cb793298e2be6697a0f6e452bb9dd34b5165e languageName: node linkType: hard -"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8": - version: 7.27.1 - resolution: "@babel/runtime@npm:7.27.1" - checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": - version: 7.27.3 - resolution: "@babel/runtime@npm:7.27.3" - checksum: 10c0/b860fe374a36fddbeeb238e52e59443abcacc046eebda1bf278bffbc67b5c8f713b939e09c126b086ca5f97cba1987ea17fd1737568bc50fedb1f6ef1cf46f69 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.1": - version: 7.29.2 - resolution: "@babel/runtime@npm:7.29.2" - checksum: 10c0/30b80a0140d16467792e1bbeb06f655b0dab70407da38dfac7fedae9c859f9ae9d846ef14ad77bd3814c064295fe9b1bc551f1541ea14646ae9f22b71a8bc17a - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.28.6": +"@babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.28.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": version: 7.29.7 resolution: "@babel/runtime@npm:7.29.7" checksum: 10c0/ca11572f7146b21e0bde6a9ed4bb6a89eafbee5f0944c7eb54d0d8a2dac962c33638a1d611e14faa71dfbb92b4b5f9236232208568a6b7d5c6f3f39ddb91771e languageName: node linkType: hard -"@babel/template@npm:^7.22.5": - version: 7.28.6 - resolution: "@babel/template@npm:7.28.6" - dependencies: - "@babel/code-frame": "npm:^7.28.6" - "@babel/parser": "npm:^7.28.6" - "@babel/types": "npm:^7.28.6" - checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5 - languageName: node - linkType: hard - -"@babel/template@npm:^7.27.1": - version: 7.27.2 - resolution: "@babel/template@npm:7.27.2" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.2" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81 - languageName: node - linkType: hard - -"@babel/template@npm:^7.29.7": +"@babel/template@npm:^7.22.5, @babel/template@npm:^7.29.7": version: 7.29.7 resolution: "@babel/template@npm:7.29.7" dependencies: @@ -551,22 +407,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/traverse@npm:7.27.1" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: 10c0/d912110037b03b1d70a2436cfd51316d930366a5f54252da2bced1ba38642f644f848240a951e5caf12f1ef6c40d3d96baa92ea6e84800f2e891c15e97b25d50 - languageName: node - linkType: hard - -"@babel/traverse@npm:^7.29.7": +"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.29.7": version: 7.29.7 resolution: "@babel/traverse@npm:7.29.7" dependencies: @@ -581,27 +422,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/types@npm:7.27.1" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10c0/ed736f14db2fdf0d36c539c8e06b6bb5e8f9649a12b5c0e1c516fed827f27ef35085abe08bf4d1302a4e20c9a254e762eed453bce659786d4a6e01ba26a91377 - languageName: node - linkType: hard - -"@babel/types@npm:^7.22.5, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": - version: 7.29.0 - resolution: "@babel/types@npm:7.29.0" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.28.5" - checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f - languageName: node - linkType: hard - -"@babel/types@npm:^7.29.7": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.25.4, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.29.7": version: 7.29.7 resolution: "@babel/types@npm:7.29.7" dependencies: @@ -625,51 +446,6 @@ __metadata: languageName: node linkType: hard -"@blueprintjs/colors@npm:^4.0.0-alpha.3": - version: 4.2.1 - resolution: "@blueprintjs/colors@npm:4.2.1" - dependencies: - tslib: "npm:~2.5.0" - checksum: 10c0/3a95ebfb1dc3c7c299845ac473ffa0f58e5212e5ba5cad072196aadbadfc27393cf16efda7aba2df1ba29703c05851cf5f84896f4172d484230fe68861621f97 - languageName: node - linkType: hard - -"@blueprintjs/core@npm:^3.54.0": - version: 3.54.0 - resolution: "@blueprintjs/core@npm:3.54.0" - dependencies: - "@blueprintjs/colors": "npm:^4.0.0-alpha.3" - "@blueprintjs/icons": "npm:^3.33.0" - "@juggle/resize-observer": "npm:^3.3.1" - "@types/dom4": "npm:^2.0.1" - classnames: "npm:^2.2" - dom4: "npm:^2.1.5" - normalize.css: "npm:^8.0.1" - popper.js: "npm:^1.16.1" - react-lifecycles-compat: "npm:^3.0.4" - react-popper: "npm:^1.3.7" - react-transition-group: "npm:^2.9.0" - tslib: "npm:~2.3.1" - peerDependencies: - react: ^15.3.0 || 16 || 17 - react-dom: ^15.3.0 || 16 || 17 - bin: - upgrade-blueprint-2.0.0-rename: scripts/upgrade-blueprint-2.0.0-rename.sh - upgrade-blueprint-3.0.0-rename: scripts/upgrade-blueprint-3.0.0-rename.sh - checksum: 10c0/2d32339085f237edbfe105c56a464a9fd408d3fcc9a113b32fac4cbe3673e109a1a15968ce3c1a9feb406a3264e680967591f7def374f5a218e991a12373abe9 - languageName: node - linkType: hard - -"@blueprintjs/icons@npm:^3.33.0": - version: 3.33.0 - resolution: "@blueprintjs/icons@npm:3.33.0" - dependencies: - classnames: "npm:^2.2" - tslib: "npm:~2.3.1" - checksum: 10c0/030bdc77791b2d5287c8f046cb416d419d1204953ed84526c0a220b39bcc5acbaa04b2af9f8dbdcbb8189dab72b3c8b8c2df8bbc50af57ec510d0e705c0b01b9 - languageName: node - linkType: hard - "@cspotcode/source-map-support@npm:^0.8.0": version: 0.8.1 resolution: "@cspotcode/source-map-support@npm:0.8.1" @@ -679,49 +455,59 @@ __metadata: languageName: node linkType: hard -"@csstools/color-helpers@npm:^5.0.2": - version: 5.0.2 - resolution: "@csstools/color-helpers@npm:5.0.2" - checksum: 10c0/bebaddb28b9eb58b0449edd5d0c0318fa88f3cb079602ee27e88c9118070d666dcc4e09a5aa936aba2fde6ba419922ade07b7b506af97dd7051abd08dfb2959b +"@csstools/color-helpers@npm:^5.1.0": + version: 5.1.0 + resolution: "@csstools/color-helpers@npm:5.1.0" + checksum: 10c0/b7f99d2e455cf1c9b41a67a5327d5d02888cd5c8802a68b1887dffef537d9d4bc66b3c10c1e62b40bbed638b6c1d60b85a232f904ed7b39809c4029cb36567db languageName: node linkType: hard -"@csstools/css-calc@npm:^2.1.3": - version: 2.1.3 - resolution: "@csstools/css-calc@npm:2.1.3" +"@csstools/css-calc@npm:^2.1.3, @csstools/css-calc@npm:^2.1.4": + version: 2.1.4 + resolution: "@csstools/css-calc@npm:2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/85f5b4f96d60f395d5f0108056b0ddee037b22d6deba448d74324b50f1c554de284f84715ebfac7b2888b78e09d20d02a7cd213ee7bdaa71011ea9b4eee3a251 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/42ce5793e55ec4d772083808a11e9fb2dfe36db3ec168713069a276b4c3882205b3507c4680224c28a5d35fe0bc2d308c77f8f2c39c7c09aad8747708eb8ddd8 languageName: node linkType: hard "@csstools/css-color-parser@npm:^3.0.9": - version: 3.0.9 - resolution: "@csstools/css-color-parser@npm:3.0.9" + version: 3.1.0 + resolution: "@csstools/css-color-parser@npm:3.1.0" dependencies: - "@csstools/color-helpers": "npm:^5.0.2" - "@csstools/css-calc": "npm:^2.1.3" + "@csstools/color-helpers": "npm:^5.1.0" + "@csstools/css-calc": "npm:^2.1.4" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.4 - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/acc026a6bd6d8c4c641fa5f9b4d77cd5dfa54c57c3278ae52329d96b5837723428dcb93c34db4062bbea2f45a98451119df06eaf39fd196aaf6368c59d799f20 + "@csstools/css-parser-algorithms": ^3.0.5 + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/0e0c670ad54ec8ec4d9b07568b80defd83b9482191f5e8ca84ab546b7be6db5d7cc2ba7ac9fae54488b129a4be235d6183d3aab4416fec5e89351f73af4222c5 languageName: node linkType: hard "@csstools/css-parser-algorithms@npm:^3.0.4": - version: 3.0.4 - resolution: "@csstools/css-parser-algorithms@npm:3.0.4" + version: 3.0.5 + resolution: "@csstools/css-parser-algorithms@npm:3.0.5" peerDependencies: - "@csstools/css-tokenizer": ^3.0.3 - checksum: 10c0/d411f07765e14eede17bccc6bd4f90ff303694df09aabfede3fd104b2dfacfd4fe3697cd25ddad14684c850328f3f9420ebfa9f78380892492974db24ae47dbd + "@csstools/css-tokenizer": ^3.0.4 + checksum: 10c0/d9a1c888bd43849ae3437ca39251d5c95d2c8fd6b5ccdb7c45491dfd2c1cbdc3075645e80901d120e4d2c1993db9a5b2d83793b779dbbabcfb132adb142eb7f7 languageName: node linkType: hard "@csstools/css-tokenizer@npm:^3.0.3": - version: 3.0.3 - resolution: "@csstools/css-tokenizer@npm:3.0.3" - checksum: 10c0/c31bf410e1244b942e71798e37c54639d040cb59e0121b21712b40015fced2b0fb1ffe588434c5f8923c9cd0017cfc1c1c8f3921abc94c96edf471aac2eba5e5 + version: 3.0.4 + resolution: "@csstools/css-tokenizer@npm:3.0.4" + checksum: 10c0/3b589f8e9942075a642213b389bab75a2d50d05d203727fcdac6827648a5572674caff07907eff3f9a2389d86a4ee47308fafe4f8588f4a77b7167c588d2559f + languageName: node + linkType: hard + +"@emnapi/core@npm:1.10.0": + version: 1.10.0 + resolution: "@emnapi/core@npm:1.10.0" + dependencies: + "@emnapi/wasi-threads": "npm:1.2.1" + tslib: "npm:^2.4.0" + checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb languageName: node linkType: hard @@ -735,13 +521,12 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.4.3": +"@emnapi/runtime@npm:1.10.0": version: 1.10.0 - resolution: "@emnapi/core@npm:1.10.0" + resolution: "@emnapi/runtime@npm:1.10.0" dependencies: - "@emnapi/wasi-threads": "npm:1.2.1" tslib: "npm:^2.4.0" - checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb + checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 languageName: node linkType: hard @@ -754,15 +539,6 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.3": - version: 1.10.0 - resolution: "@emnapi/runtime@npm:1.10.0" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093 - languageName: node - linkType: hard - "@emnapi/wasi-threads@npm:1.2.1": version: 1.2.1 resolution: "@emnapi/wasi-threads@npm:1.2.1" @@ -905,378 +681,385 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/aix-ppc64@npm:0.25.4" +"@esbuild/aix-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/aix-ppc64@npm:0.25.12" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/aix-ppc64@npm:0.27.7" +"@esbuild/aix-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/aix-ppc64@npm:0.28.1" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm64@npm:0.25.4" +"@esbuild/android-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm64@npm:0.25.12" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm64@npm:0.27.7" +"@esbuild/android-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm64@npm:0.28.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm@npm:0.25.4" +"@esbuild/android-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-arm@npm:0.25.12" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-arm@npm:0.27.7" +"@esbuild/android-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-arm@npm:0.28.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-x64@npm:0.25.4" +"@esbuild/android-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/android-x64@npm:0.25.12" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/android-x64@npm:0.27.7" +"@esbuild/android-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/android-x64@npm:0.28.1" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-arm64@npm:0.25.4" +"@esbuild/darwin-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-arm64@npm:0.25.12" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-arm64@npm:0.27.7" +"@esbuild/darwin-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-arm64@npm:0.28.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-x64@npm:0.25.4" +"@esbuild/darwin-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/darwin-x64@npm:0.25.12" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/darwin-x64@npm:0.27.7" +"@esbuild/darwin-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/darwin-x64@npm:0.28.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-arm64@npm:0.25.4" +"@esbuild/freebsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-arm64@npm:0.25.12" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-arm64@npm:0.27.7" +"@esbuild/freebsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-arm64@npm:0.28.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-x64@npm:0.25.4" +"@esbuild/freebsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/freebsd-x64@npm:0.25.12" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/freebsd-x64@npm:0.27.7" +"@esbuild/freebsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/freebsd-x64@npm:0.28.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm64@npm:0.25.4" +"@esbuild/linux-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm64@npm:0.25.12" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm64@npm:0.27.7" +"@esbuild/linux-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm64@npm:0.28.1" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm@npm:0.25.4" +"@esbuild/linux-arm@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-arm@npm:0.25.12" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-arm@npm:0.27.7" +"@esbuild/linux-arm@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-arm@npm:0.28.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ia32@npm:0.25.4" +"@esbuild/linux-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ia32@npm:0.25.12" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ia32@npm:0.27.7" +"@esbuild/linux-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ia32@npm:0.28.1" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-loong64@npm:0.25.4" +"@esbuild/linux-loong64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-loong64@npm:0.25.12" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-loong64@npm:0.27.7" +"@esbuild/linux-loong64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-loong64@npm:0.28.1" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-mips64el@npm:0.25.4" +"@esbuild/linux-mips64el@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-mips64el@npm:0.25.12" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-mips64el@npm:0.27.7" +"@esbuild/linux-mips64el@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-mips64el@npm:0.28.1" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ppc64@npm:0.25.4" +"@esbuild/linux-ppc64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-ppc64@npm:0.25.12" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-ppc64@npm:0.27.7" +"@esbuild/linux-ppc64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-ppc64@npm:0.28.1" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-riscv64@npm:0.25.4" +"@esbuild/linux-riscv64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-riscv64@npm:0.25.12" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-riscv64@npm:0.27.7" +"@esbuild/linux-riscv64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-riscv64@npm:0.28.1" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-s390x@npm:0.25.4" +"@esbuild/linux-s390x@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-s390x@npm:0.25.12" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-s390x@npm:0.27.7" +"@esbuild/linux-s390x@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-s390x@npm:0.28.1" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-x64@npm:0.25.4" +"@esbuild/linux-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/linux-x64@npm:0.25.12" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/linux-x64@npm:0.27.7" +"@esbuild/linux-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/linux-x64@npm:0.28.1" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-arm64@npm:0.25.4" +"@esbuild/netbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-arm64@npm:0.25.12" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-arm64@npm:0.27.7" +"@esbuild/netbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-arm64@npm:0.28.1" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-x64@npm:0.25.4" +"@esbuild/netbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/netbsd-x64@npm:0.25.12" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/netbsd-x64@npm:0.27.7" +"@esbuild/netbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/netbsd-x64@npm:0.28.1" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-arm64@npm:0.25.4" +"@esbuild/openbsd-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-arm64@npm:0.25.12" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-arm64@npm:0.27.7" +"@esbuild/openbsd-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-arm64@npm:0.28.1" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-x64@npm:0.25.4" +"@esbuild/openbsd-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openbsd-x64@npm:0.25.12" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openbsd-x64@npm:0.27.7" +"@esbuild/openbsd-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openbsd-x64@npm:0.28.1" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/openharmony-arm64@npm:0.27.7" +"@esbuild/openharmony-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/openharmony-arm64@npm:0.25.12" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/sunos-x64@npm:0.25.4" +"@esbuild/openharmony-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/openharmony-arm64@npm:0.28.1" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/sunos-x64@npm:0.25.12" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/sunos-x64@npm:0.27.7" +"@esbuild/sunos-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/sunos-x64@npm:0.28.1" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-arm64@npm:0.25.4" +"@esbuild/win32-arm64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-arm64@npm:0.25.12" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-arm64@npm:0.27.7" +"@esbuild/win32-arm64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-arm64@npm:0.28.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-ia32@npm:0.25.4" +"@esbuild/win32-ia32@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-ia32@npm:0.25.12" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-ia32@npm:0.27.7" +"@esbuild/win32-ia32@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-ia32@npm:0.28.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-x64@npm:0.25.4" +"@esbuild/win32-x64@npm:0.25.12": + version: 0.25.12 + resolution: "@esbuild/win32-x64@npm:0.25.12" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.7": - version: 0.27.7 - resolution: "@esbuild/win32-x64@npm:0.27.7" +"@esbuild/win32-x64@npm:0.28.1": + version: 0.28.1 + resolution: "@esbuild/win32-x64@npm:0.28.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.7.0 - resolution: "@eslint-community/eslint-utils@npm:4.7.0" + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/c0f4f2bd73b7b7a9de74b716a664873d08ab71ab439e51befe77d61915af41a81ecec93b408778b3a7856185244c34c2c8ee28912072ec14def84ba2dec70adf + checksum: 10c0/dc4ab5e3e364ef27e33666b11f4b86e1a6c1d7cbf16f0c6ff87b1619b3562335e9201a3d6ce806221887ff780ec9d828962a290bb910759fd40a674686503f02 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.12.1 - resolution: "@eslint-community/regexpp@npm:4.12.1" - checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 + version: 4.12.2 + resolution: "@eslint-community/regexpp@npm:4.12.2" + checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d languageName: node linkType: hard @@ -1321,36 +1104,29 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.7.0": - version: 1.7.0 - resolution: "@floating-ui/core@npm:1.7.0" +"@floating-ui/core@npm:^1.8.0": + version: 1.8.0 + resolution: "@floating-ui/core@npm:1.8.0" dependencies: - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/f7e66a650ad8c73765edb39a7530d81fa990c08c172f03b6129030234d32bccd4401c29ded9c8a4e4135e9beac349c5608d94962fa08c2a2ae2dab7a6530550c + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/cece958f6fab0f8cd7740cd57988c4f8bc5356dca39dd4c093433d44c91952c3a02c7a54d93d7ed6c078b6544d531a29f66621d2839c8bfbb4467dca6aed7df0 languageName: node linkType: hard "@floating-ui/dom@npm:^1.0.1": - version: 1.7.0 - resolution: "@floating-ui/dom@npm:1.7.0" + version: 1.8.0 + resolution: "@floating-ui/dom@npm:1.8.0" dependencies: - "@floating-ui/core": "npm:^1.7.0" - "@floating-ui/utils": "npm:^0.2.9" - checksum: 10c0/49a7f0fbef82ba2c2f0bde7bb4812b276ae431b59e6a81427283a55cfb36c0af9cc459cbeb0bb1a5cc3efca1a332f584e123e7b1a8f0a9c94a21989b09b8c060 + "@floating-ui/core": "npm:^1.8.0" + "@floating-ui/utils": "npm:^0.2.12" + checksum: 10c0/c32b2de7a596b69cfffa909c7028825e14f6319be1b45da529f8943c89fe16b75a49c214e800c87ded3f172353d3b99163d50072f11410488e756961b7b629cc languageName: node linkType: hard -"@floating-ui/utils@npm:^0.2.9": - version: 0.2.9 - resolution: "@floating-ui/utils@npm:0.2.9" - checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f - languageName: node - linkType: hard - -"@gar/promise-retry@npm:^1.0.0": - version: 1.0.3 - resolution: "@gar/promise-retry@npm:1.0.3" - checksum: 10c0/885b02c8b0d75b2d215da25f3b639158c4fbe8fefe0d79163304534b9a6d0710db4b7699f7cd3cc1a730792bff04cbe19f4850a62d3e105a663eaeec88f38332 +"@floating-ui/utils@npm:^0.2.12": + version: 0.2.12 + resolution: "@floating-ui/utils@npm:0.2.12" + checksum: 10c0/bb910b90d56991a62011afaf5f8e0c4b7fb6dab69403f4dd17fbd6eb25560b28d533dff9791f270b4f459852e9006a1077b5d73cbedb5e34d9424afc6a828314 languageName: node linkType: hard @@ -1405,9 +1181,9 @@ __metadata: linkType: hard "@hapi/tlds@npm:^1.1.1": - version: 1.1.6 - resolution: "@hapi/tlds@npm:1.1.6" - checksum: 10c0/75b2918dd10e8ba6418aadf53e6951c5fcf5b0d150cd497f257faa03492084dd9792e1cda1e41be959edf1c74602577de3d2593a44388b4caf3ad2a0c0a3da40 + version: 1.1.7 + resolution: "@hapi/tlds@npm:1.1.7" + checksum: 10c0/8429f08c83cd7d324f9b5a577442f78b2d721beba037f8a2a7f652707750800985e0f81302c4b98e9bc784717374005eb3758fb5af6dfb828c62fbb9a4f83a87 languageName: node linkType: hard @@ -1463,19 +1239,6 @@ __metadata: languageName: node linkType: hard -"@hypnosphi/create-react-context@npm:^0.3.1": - version: 0.3.1 - resolution: "@hypnosphi/create-react-context@npm:0.3.1" - dependencies: - gud: "npm:^1.0.0" - warning: "npm:^4.0.3" - peerDependencies: - prop-types: ^15.0.0 - react: ">=0.14.0" - checksum: 10c0/e8072221f9f9c2c47c3ebc5bc6079f9a71938e181d2b4aa3e1d3922707bc097336d5260dad088cf47c1d6e1ff34839fa21f2505a95bddda0d7548c5a955b5691 - languageName: node - linkType: hard - "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" @@ -1512,132 +1275,126 @@ __metadata: languageName: node linkType: hard -"@istanbuljs/schema@npm:^0.1.2": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.3": +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": version: 0.1.6 resolution: "@istanbuljs/schema@npm:0.1.6" checksum: 10c0/bb0d370bf3dd454d2f37f1bccb8921e2da99adacef2da56ef47850e25d7a4de69cf639ead8c189755aef38921369024b4afea3535a5c2ac9082b3e1171bcbc3a languageName: node linkType: hard -"@jest/console@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/console@npm:30.3.0" +"@jest/console@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/console@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/5458f26b0591b847b719a707cbd1d6b2b99960784a1480a28d19200a807b6092f066c1bd1810df8c6adebf934a64de7b6022dc35082cd7c8f09f35940da104d9 + checksum: 10c0/f782722ef5754ab864b996000cf1f0545f7be9db6ba8f89cb2381dfab9910a52c59a830e5ea069a76840023e40806493d9900d8eb7e9821d23a11a498f32739e languageName: node linkType: hard -"@jest/core@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/core@npm:30.3.0" +"@jest/core@npm:30.4.2": + version: 30.4.2 + resolution: "@jest/core@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/pattern": "npm:30.0.1" - "@jest/reporters": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/pattern": "npm:30.4.0" + "@jest/reporters": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" exit-x: "npm:^0.2.2" + fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-changed-files: "npm:30.3.0" - jest-config: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-resolve-dependencies: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-changed-files: "npm:30.4.1" + jest-config: "npm:30.4.2" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-resolve-dependencies: "npm:30.4.2" + jest-runner: "npm:30.4.2" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/1735f2263cca10c6cae4e1dbde9c3ccb36e2cbd1cc10bac6fc45e187b06c4e33a6a029f9a6444a3cd43a2a44ffaec3b686d94f70965cebf2b885b198c8615322 + checksum: 10c0/4237ec79d5403b82ba89e3be6e4318d9f37c3a11281bd76cfbdd4ff08d8c89850555607c4d494dab3526e01a90db3539e549017883967dd392b5084f1be0d5b2 languageName: node linkType: hard "@jest/create-cache-key-function@npm:^30.0.0": - version: 30.3.0 - resolution: "@jest/create-cache-key-function@npm:30.3.0" + version: 30.4.1 + resolution: "@jest/create-cache-key-function@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - checksum: 10c0/b1906d3b2230b6820877de065686c211bcbbe984cc40e09531b71b553e931505f837a453fdda481bee8686b8d572c95027d262af96789cbcbb6d58cbe0787fcc + "@jest/types": "npm:30.4.1" + checksum: 10c0/2cdf2479e020e022626da6543a95d2fbf7edccac7550c0e88dad13737b7fb5c97e172a0d62a9817c1ceca0fb5c24e220c28c6054a384d0101397ad3aa99174b2 languageName: node linkType: hard -"@jest/diff-sequences@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/diff-sequences@npm:30.3.0" - checksum: 10c0/8922c16a869b839b6c05f677023b3e5a9aa1610ad78a9c5ec8bd6654e35e8136ea1c7b60ad561910e2ad964bfdb0b09b0254ff8dcfacd4562095766f60c63d76 +"@jest/diff-sequences@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/diff-sequences@npm:30.4.0" + checksum: 10c0/b4358b1b885098b905cb777f58788ddd45f90c4ebc3ce2c04fb1d4c9516f35ac2d9daef8263cd21c537bd7a52ab320f03e4ba9521677959ae20e3d405356b420 languageName: node linkType: hard -"@jest/environment@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/environment@npm:30.3.0" +"@jest/environment@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/environment@npm:30.4.1" dependencies: - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - checksum: 10c0/4068ccc2e4761e52909239c21e71f73b57ad087bd120b75d3232c68d911686d68fd0fb20e19725517a624b0aa9d45431b00503bd1d5ab2f4958e1a18d265d8d5 + jest-mock: "npm:30.4.1" + checksum: 10c0/704987ff8650c91a8ed13796ce47e9c55da3c12a01902d9e384330cead18eb4d34ce665a8d9962dddf2736fac006f92efc1039b8da424adf8fdc16f8d81aff6c languageName: node linkType: hard -"@jest/expect-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect-utils@npm:30.3.0" +"@jest/expect-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - checksum: 10c0/4bb60fb434cb8ed325735bd39171b61621e110502ecc502089805d203ecb17b9fc5a400aeffb83b41fabcc819628a9c38c955f90a716d6aaff193d10926fc854 + checksum: 10c0/6dea9e11ebcc7be68fea5950ae5a1b7ff9fd1490101ee8af0aede336b9934ab24a28bcafe2f1171dac0f95982406386c609ca2659b9132e1a9d419e8d69b9cd4 languageName: node linkType: hard -"@jest/expect@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/expect@npm:30.3.0" +"@jest/expect@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/expect@npm:30.4.1" dependencies: - expect: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/1e052975fdf2b977a63dc9f3db1de56be9dce8e5cd660d9c72cc25093324b990b3e93318cd0c1ff9df7cb30ec7eef71331bc7e19d39700eb3f4498e17ee4c9e0 + expect: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/2133183e735982879408036237b115abc2e57fa52bb7324be0a1f2ab6941a57da93b2e6f498dc110b7d007dd20463013fbcc5b24377cf65e6a8518d3b2ff76bd languageName: node linkType: hard -"@jest/fake-timers@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/fake-timers@npm:30.3.0" +"@jest/fake-timers@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/fake-timers@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" - "@sinonjs/fake-timers": "npm:^15.0.0" + "@jest/types": "npm:30.4.1" + "@sinonjs/fake-timers": "npm:^15.4.0" "@types/node": "npm:*" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/114855ca14d6b34c886855445852a5b960bc3df0ef97c4b971b375747fe0206b3111ec60efc6e658565677022f0d790acd7e232e478f3390ea854d04dea0c4d8 + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/4a10e4eb64bb5ea2531cdcc79f3058731f5c14faf2a74f498fcb37f6690c3c0f9b12a9856736d26e34631eb38db12e12812da71de27b9d332df44dda9f460fbe languageName: node linkType: hard @@ -1648,37 +1405,37 @@ __metadata: languageName: node linkType: hard -"@jest/globals@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/globals@npm:30.3.0" +"@jest/globals@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/globals@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - jest-mock: "npm:30.3.0" - checksum: 10c0/013554dcbf75867e715801e98a5c6eefbea67cb388efd019be9e0d83979d7354874c4b33bbabc95de698215f5b891e921c26a284841504f9825fd789432b1cd0 + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + jest-mock: "npm:30.4.1" + checksum: 10c0/7961eefdc9e69ba7754d11a1bae4bc2960f33e03d9c1d6c73f27895b8cf92a9118a234330f31dc8efe16e835fe70ef9cc6c26f60121f6b6e9fac71c8b1bcd709 languageName: node linkType: hard -"@jest/pattern@npm:30.0.1": - version: 30.0.1 - resolution: "@jest/pattern@npm:30.0.1" +"@jest/pattern@npm:30.4.0": + version: 30.4.0 + resolution: "@jest/pattern@npm:30.4.0" dependencies: "@types/node": "npm:*" - jest-regex-util: "npm:30.0.1" - checksum: 10c0/32c5a7bfb6c591f004dac0ed36d645002ed168971e4c89bd915d1577031672870032594767557b855c5bc330aa1e39a2f54bf150d2ee88a7a0886e9cb65318bc + jest-regex-util: "npm:30.4.0" + checksum: 10c0/05bc0799f84f3750bbbff0f9a546979efd0dbcee86c1be98b9e2811a68885809ec7b5cca39b8dda1497cb7cf17b7be936019fba8dfbcd9c53b181e03e67f4f82 languageName: node linkType: hard -"@jest/reporters@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/reporters@npm:30.3.0" +"@jest/reporters@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/reporters@npm:30.4.1" dependencies: "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" "@types/node": "npm:*" chalk: "npm:^4.1.2" @@ -1691,9 +1448,9 @@ __metadata: istanbul-lib-report: "npm:^3.0.0" istanbul-lib-source-maps: "npm:^5.0.0" istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" slash: "npm:^3.0.0" string-length: "npm:^4.0.2" v8-to-istanbul: "npm:^9.0.1" @@ -1702,28 +1459,28 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 10c0/e1b6fb13df94435d4b8e6f4d4bd1c27dfc572ca7393b0a95d14c98013abe3c962aa28e2c56864f3ddd0894834d21c9a67485d11e6c31532aaaeea66ca6a2a026 + checksum: 10c0/cf5220462c6242fa564bbeb6d5988ebfd814e0351f3bddae07323b55c68c7ebd4aa4c23e717231ab4b2d63c4fc7fa4615b9dad8584be534bd44622981242dceb languageName: node linkType: hard -"@jest/schemas@npm:30.0.5": - version: 30.0.5 - resolution: "@jest/schemas@npm:30.0.5" +"@jest/schemas@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/schemas@npm:30.4.1" dependencies: "@sinclair/typebox": "npm:^0.34.0" - checksum: 10c0/449dcd7ec5c6505e9ac3169d1143937e67044ae3e66a729ce4baf31812dfd30535f2b3b2934393c97cfdf5984ff581120e6b38f62b8560c8b5b7cc07f4175f65 + checksum: 10c0/96f388ebfc1974457fcbde2ad36c40a0b549cba3f624fe8d9d6e5903a152dc75e4043f4ac9ac7668622f2ecb0f9a4dcb9a38edf3bc0d52b82045b2bb2b69b72a languageName: node linkType: hard -"@jest/snapshot-utils@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/snapshot-utils@npm:30.3.0" +"@jest/snapshot-utils@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/snapshot-utils@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" natural-compare: "npm:^1.4.0" - checksum: 10c0/ba4fea05a418b257d128d8f9eb7672a9004952563a45ad577bed80e5b2ea2ec6e6d3a24535781cc6530d9904d8fda7b27d15952d079ccdbe88f87a5e71112df0 + checksum: 10c0/81da9079719eece02b89c45cb97162b5b7d794981652c8d8fe2846843ac81ce219ea4bc21bde7cf76c9032006435f82bd9aee8d6139d90b77078ddad4865af02 languageName: node linkType: hard @@ -1738,64 +1495,64 @@ __metadata: languageName: node linkType: hard -"@jest/test-result@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-result@npm:30.3.0" +"@jest/test-result@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-result@npm:30.4.1" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" collect-v8-coverage: "npm:^1.0.2" - checksum: 10c0/67bcd405d0a1ac85b55afabf26e0ee0f184f9cfe0e659a44e0e4a4456c1c7fed9d2288f0116b017eaddfa49ded8c44426b8694c44f9a8a2af35be9202b8a9165 + checksum: 10c0/920fa3fe3cc8b5e11bfe36066d733030f1245865d7cac4862e3783a96f9c0a087fd8073c8cb56e4c87c6fcc97b46e6f828ecd3b10dd8e208f5e1b983fcc5cdb8 languageName: node linkType: hard -"@jest/test-sequencer@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/test-sequencer@npm:30.3.0" +"@jest/test-sequencer@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/test-sequencer@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" slash: "npm:^3.0.0" - checksum: 10c0/698be35e7145e79ea9d66071d4ec255f6cef4b5972b5142d299f3edbcbc0428cadf8ddecc6d21e938c98ed72b73b15a6d5f81e7b8b370aaa130d2f6b26fd017c + checksum: 10c0/531b19ffb2358b3b22a56b306359acf66db2073978dd6df8a9522b5b4034ad7540a9cb84bdfebbcb2872686d6d2ab8cabea04ad23ef9d4488cbafd03f7511501 languageName: node linkType: hard -"@jest/transform@npm:30.3.0": - version: 30.3.0 - resolution: "@jest/transform@npm:30.3.0" +"@jest/transform@npm:30.4.1": + version: 30.4.1 + resolution: "@jest/transform@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@jridgewell/trace-mapping": "npm:^0.3.25" babel-plugin-istanbul: "npm:^7.0.1" chalk: "npm:^4.1.2" convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" pirates: "npm:^4.0.7" slash: "npm:^3.0.0" write-file-atomic: "npm:^5.0.1" - checksum: 10c0/5ad0b5361910680b5160e3dc347c0beb75b4edc35a165ef4fc55837d01365179c276dd6f9cc80f7db94048c641b0c188757e1c98c6d4e9b55577956efbc00574 + checksum: 10c0/194f463f179f6ab3ccd6f4f0f03a117e3c01a7ce098ebf562250aca4c900ed3a9ec08b694227788eabd7cb4e0597f1d0788077c7550ddc679f68a0ad21cc87e0 languageName: node linkType: hard -"@jest/types@npm:30.3.0, @jest/types@npm:^30.0.1": - version: 30.3.0 - resolution: "@jest/types@npm:30.3.0" +"@jest/types@npm:30.4.1, @jest/types@npm:^30.0.1": + version: 30.4.1 + resolution: "@jest/types@npm:30.4.1" dependencies: - "@jest/pattern": "npm:30.0.1" - "@jest/schemas": "npm:30.0.5" + "@jest/pattern": "npm:30.4.0" + "@jest/schemas": "npm:30.4.1" "@types/istanbul-lib-coverage": "npm:^2.0.6" "@types/istanbul-reports": "npm:^3.0.4" "@types/node": "npm:*" "@types/yargs": "npm:^17.0.33" chalk: "npm:^4.1.2" - checksum: 10c0/c3e3f4de0b77a7ced345f47d3687b1094c1b6c1521529a7ca66a76f9a80194f79179a1dbc32d6761a5b67914a8f78be1e65d1408107efcb1f252c4a63b5ddd92 + checksum: 10c0/4c79f6dbdb1c7eaab5da255fc696c7cae744759d4020e42da8aa63b37fe55ce594be73075fe1ee5407dd59d7e47975be9f674bfc81e91bae2c89c62d27ba55a1 languageName: node linkType: hard @@ -1816,7 +1573,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.12": +"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5": version: 0.3.13 resolution: "@jridgewell/gen-mapping@npm:0.3.13" dependencies: @@ -1826,17 +1583,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.5": - version: 0.3.8 - resolution: "@jridgewell/gen-mapping@npm:0.3.8" - dependencies: - "@jridgewell/set-array": "npm:^1.2.1" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.24" - checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a - languageName: node - linkType: hard - "@jridgewell/remapping@npm:^2.3.5": version: 2.3.5 resolution: "@jridgewell/remapping@npm:2.3.5" @@ -1854,21 +1600,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/set-array@npm:^1.2.1": - version: 1.2.1 - resolution: "@jridgewell/set-array@npm:1.2.1" - checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": - version: 1.5.0 - resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" - checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.5.5": +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5": version: 1.5.5 resolution: "@jridgewell/sourcemap-codec@npm:1.5.5" checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0 @@ -1885,7 +1617,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.28": +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.28, @jridgewell/trace-mapping@npm:^0.3.31": version: 0.3.31 resolution: "@jridgewell/trace-mapping@npm:0.3.31" dependencies: @@ -1895,23 +1627,6 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": - version: 0.3.25 - resolution: "@jridgewell/trace-mapping@npm:0.3.25" - dependencies: - "@jridgewell/resolve-uri": "npm:^3.1.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.14" - checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 - languageName: node - linkType: hard - -"@juggle/resize-observer@npm:^3.3.1": - version: 3.4.0 - resolution: "@juggle/resize-observer@npm:3.4.0" - checksum: 10c0/12930242357298c6f2ad5d4ec7cf631dfb344ca7c8c830ab7f64e6ac11eb1aae486901d8d880fd08fb1b257800c160a0da3aee1e7ed9adac0ccbb9b7c5d93347 - languageName: node - linkType: hard - "@mdx-js/react@npm:^3.0.0": version: 3.1.1 resolution: "@mdx-js/react@npm:3.1.1" @@ -1957,26 +1672,15 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^0.2.11": - version: 0.2.12 - resolution: "@napi-rs/wasm-runtime@npm:0.2.12" - dependencies: - "@emnapi/core": "npm:^1.4.3" - "@emnapi/runtime": "npm:^1.4.3" - "@tybys/wasm-util": "npm:^0.10.0" - checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d - languageName: node - linkType: hard - -"@napi-rs/wasm-runtime@npm:^1.1.5": - version: 1.1.5 - resolution: "@napi-rs/wasm-runtime@npm:1.1.5" +"@napi-rs/wasm-runtime@npm:^1.1.4, @napi-rs/wasm-runtime@npm:^1.1.6": + version: 1.1.6 + resolution: "@napi-rs/wasm-runtime@npm:1.1.6" dependencies: - "@tybys/wasm-util": "npm:^0.10.2" + "@tybys/wasm-util": "npm:^0.10.3" peerDependencies: "@emnapi/core": ^1.7.1 "@emnapi/runtime": ^1.7.1 - checksum: 10c0/727f2b6ae0e68bbe5d39aeb68aa6f183314e9f03dc50bb55a962849535b2db53ecc3fbf1554d8656a54488a608df5a2634670595cf5874dc4af2ee59f817c65d + checksum: 10c0/344518bf3ef65051dda4c00969f293aa4a21ab7dc7822b3f48519b17cd5eaa3f0bc34898d115d50ba59b1817a0cb905d46f7a7223c8249239cd14c28db388e10 languageName: node linkType: hard @@ -2007,39 +1711,10 @@ __metadata: languageName: node linkType: hard -"@npmcli/agent@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/agent@npm:4.0.0" - dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^11.2.1" - socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^5.0.0": - version: 5.0.0 - resolution: "@npmcli/fs@npm:5.0.0" - dependencies: - semver: "npm:^7.3.5" - checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b - languageName: node - linkType: hard - -"@npmcli/redact@npm:^4.0.0": - version: 4.0.0 - resolution: "@npmcli/redact@npm:4.0.0" - checksum: 10c0/a1e9ba9c70a6b40e175bda2c3dd8cfdaf096e6b7f7a132c855c083c8dfe545c3237cd56702e2e6627a580b1d63373599d49a1192c4078a85bf47bbde824df31c - languageName: node - linkType: hard - -"@oxc-project/types@npm:=0.137.0": - version: 0.137.0 - resolution: "@oxc-project/types@npm:0.137.0" - checksum: 10c0/5a6a50174e5ac79aebf38a120fe57be7a84c8bb0c77117f30de15183aa5ab0161e78364d2d3725397090e362e5c5f6eda754b53057b0b63983e3ee604f888aca +"@oxc-project/types@npm:=0.139.0": + version: 0.139.0 + resolution: "@oxc-project/types@npm:0.139.0" + checksum: 10c0/ad57d1bee4b972ecf6784183da12ac6865edfff326bd83712fb75262b901868bc2b72d6fb502465a5f0dbaaded2910003f73365caf3821901dad565cc0b7fdf2 languageName: node linkType: hard @@ -2057,17 +1732,10 @@ __metadata: languageName: node linkType: hard -"@pkgr/core@npm:^0.2.4": - version: 0.2.4 - resolution: "@pkgr/core@npm:0.2.4" - checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1 - languageName: node - linkType: hard - -"@pkgr/core@npm:^0.2.9": - version: 0.2.9 - resolution: "@pkgr/core@npm:0.2.9" - checksum: 10c0/ac8e4e8138b1a7a4ac6282873aef7389c352f1f8b577b4850778f5182e4a39a5241facbe48361fec817f56d02b51691b383010843fb08b34a8e8ea3614688fd5 +"@pkgr/core@npm:^0.3.6": + version: 0.3.6 + resolution: "@pkgr/core@npm:0.3.6" + checksum: 10c0/153f0f4563f505faeba13c733efa0e05e467ce1c6b941055a5fd3b4560da60fbf1dff4b11da0075f034ddda11f2842b90395f60895dde5825875b616edccc11c languageName: node linkType: hard @@ -2082,9 +1750,9 @@ __metadata: languageName: node linkType: hard -"@reduxjs/toolkit@npm:^2.11.2": - version: 2.11.2 - resolution: "@reduxjs/toolkit@npm:2.11.2" +"@reduxjs/toolkit@npm:^2.12.0": + version: 2.12.0 + resolution: "@reduxjs/toolkit@npm:2.12.0" dependencies: "@standard-schema/spec": "npm:^1.0.0" "@standard-schema/utils": "npm:^0.3.0" @@ -2100,120 +1768,120 @@ __metadata: optional: true react-redux: optional: true - checksum: 10c0/4d388b96dc4b12a577af23607c252b3647c1b3b5136dbb0212e1dbbef9bb309e93d3ba6a95795ee165e87e4286453025cd67a98b5b3bb6d244b93ea487dd1ac0 + checksum: 10c0/2b85e31294a7139994fd78b08eb3ce706ce3b03b5081c13403b93ba4883a152d637171e4d9d969766238851f8915b1daa9f36b5a0a458aff0ff7600ee38795c9 languageName: node linkType: hard -"@rolldown/binding-android-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-android-arm64@npm:1.1.2" +"@rolldown/binding-android-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-android-arm64@npm:1.1.5" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-arm64@npm:1.1.2" +"@rolldown/binding-darwin-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-arm64@npm:1.1.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-darwin-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-darwin-x64@npm:1.1.2" +"@rolldown/binding-darwin-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-darwin-x64@npm:1.1.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-freebsd-x64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-freebsd-x64@npm:1.1.2" +"@rolldown/binding-freebsd-x64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-freebsd-x64@npm:1.1.5" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.2" +"@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.1.5" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@rolldown/binding-linux-arm64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.2" +"@rolldown/binding-linux-arm64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-arm64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.2" +"@rolldown/binding-linux-arm64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-arm64-musl@npm:1.1.5" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-linux-ppc64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.2" +"@rolldown/binding-linux-ppc64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.1.5" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-s390x-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.2" +"@rolldown/binding-linux-s390x-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.1.5" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-gnu@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.2" +"@rolldown/binding-linux-x64-gnu@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-gnu@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rolldown/binding-linux-x64-musl@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.2" +"@rolldown/binding-linux-x64-musl@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-linux-x64-musl@npm:1.1.5" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rolldown/binding-openharmony-arm64@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.2" +"@rolldown/binding-openharmony-arm64@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-openharmony-arm64@npm:1.1.5" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-wasm32-wasi@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.2" +"@rolldown/binding-wasm32-wasi@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-wasm32-wasi@npm:1.1.5" dependencies: "@emnapi/core": "npm:1.11.1" "@emnapi/runtime": "npm:1.11.1" - "@napi-rs/wasm-runtime": "npm:^1.1.5" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@rolldown/binding-win32-arm64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.2" +"@rolldown/binding-win32-arm64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.1.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rolldown/binding-win32-x64-msvc@npm:1.1.2": - version: 1.1.2 - resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.2" +"@rolldown/binding-win32-x64-msvc@npm:1.1.5": + version: 1.1.5 + resolution: "@rolldown/binding-win32-x64-msvc@npm:1.1.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rolldown/pluginutils@npm:^1.0.0": +"@rolldown/pluginutils@npm:^1.0.0, @rolldown/pluginutils@npm:^1.0.1": version: 1.0.1 resolution: "@rolldown/pluginutils@npm:1.0.1" checksum: 10c0/99d9b06d90196823e4d8c841f258db7a16e5dbba5824a2962b05d907b79f1ba929d56f22dd744fd530936e568c865ee56a719dc31e57e13bc0a8eb4764a8d8dd @@ -2221,8 +1889,8 @@ __metadata: linkType: hard "@rollup/pluginutils@npm:^5.0.2": - version: 5.3.0 - resolution: "@rollup/pluginutils@npm:5.3.0" + version: 5.4.0 + resolution: "@rollup/pluginutils@npm:5.4.0" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" @@ -2232,181 +1900,181 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/001834bf62d7cf5bac424d2617c113f7f7d3b2bf3c1778cbcccb72cdc957b68989f8e7747c782c2b911f1dde8257f56f8ac1e779e29e74e638e3f1e2cac2bcd0 + checksum: 10c0/ccc2cbd3a05df642df60ab05ffb81b2e564bd945e2a118bb8a474ea75b941033c8f44273133d4865643cca1492d0c80b14de1281f74779a64285a80fc3a194d8 languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.59.0" +"@rollup/rollup-android-arm-eabi@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.62.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-android-arm64@npm:4.59.0" +"@rollup/rollup-android-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-android-arm64@npm:4.62.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.59.0" +"@rollup/rollup-darwin-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-arm64@npm:4.62.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.59.0" +"@rollup/rollup-darwin-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-darwin-x64@npm:4.62.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.59.0" +"@rollup/rollup-freebsd-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.62.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-freebsd-x64@npm:4.59.0" +"@rollup/rollup-freebsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-freebsd-x64@npm:4.62.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.59.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.62.2" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.59.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.59.0" +"@rollup/rollup-linux-arm64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.62.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loong64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.59.0" +"@rollup/rollup-linux-loong64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-loong64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-loong64-musl@npm:4.59.0" +"@rollup/rollup-linux-loong64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.62.2" conditions: os=linux & cpu=loong64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.59.0" +"@rollup/rollup-linux-ppc64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.59.0" +"@rollup/rollup-linux-ppc64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.62.2" conditions: os=linux & cpu=ppc64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.59.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.59.0" +"@rollup/rollup-linux-riscv64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.62.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.59.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.62.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.59.0" +"@rollup/rollup-linux-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.59.0" +"@rollup/rollup-linux-x64-musl@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.62.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-openbsd-x64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openbsd-x64@npm:4.59.0" +"@rollup/rollup-openbsd-x64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openbsd-x64@npm:4.62.2" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-openharmony-arm64@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-openharmony-arm64@npm:4.59.0" +"@rollup/rollup-openharmony-arm64@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.62.2" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.59.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.62.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.59.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.62.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-gnu@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-gnu@npm:4.59.0" +"@rollup/rollup-win32-x64-gnu@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.59.0": - version: 4.59.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.59.0" +"@rollup/rollup-win32-x64-msvc@npm:4.62.2": + version: 4.62.2 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.62.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -2480,9 +2148,9 @@ __metadata: linkType: hard "@sinclair/typebox@npm:^0.34.0": - version: 0.34.49 - resolution: "@sinclair/typebox@npm:0.34.49" - checksum: 10c0/16b7d87f039a49b68c10bb4cdcae2ce5242b2472228851fd6483731616aba4ef977690aa517b230a8d20da8185bb416eb34e326f30568b3963c1cf26b05d1ad8 + version: 0.34.52 + resolution: "@sinclair/typebox@npm:0.34.52" + checksum: 10c0/03e9be17ffb536ddd6dc35b6131c88eb113b2ce6cbec4fa60b1d5219de99e59b2649fc40ad70a85db561104395faa3406608971dc7b0abef529b80fb001dc821 languageName: node linkType: hard @@ -2502,12 +2170,12 @@ __metadata: languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^15.0.0": - version: 15.3.2 - resolution: "@sinonjs/fake-timers@npm:15.3.2" +"@sinonjs/fake-timers@npm:^15.4.0": + version: 15.4.0 + resolution: "@sinonjs/fake-timers@npm:15.4.0" dependencies: "@sinonjs/commons": "npm:^3.0.1" - checksum: 10c0/fea39af47e70acf7f6b431b857dc5b50886e1a19d48189bc7f9cf90806a9fdfd4931c04343558724772d429c47fb53df640fc8c8d6ddf6ad66164bd7cbd3220a + checksum: 10c0/de4522afe0699fa8d3ae9d1715cbaa4b47e518c707bb7988a9ec6c7c67557d9f6df451f6be0338598b984a86f65aab9fab38dd9ce75a3c0ffb801a9500d5b10d languageName: node linkType: hard @@ -2869,108 +2537,108 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-arm64@npm:1.15.32" +"@swc/core-darwin-arm64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-arm64@npm:1.15.46" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-darwin-x64@npm:1.15.32" +"@swc/core-darwin-x64@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-darwin-x64@npm:1.15.46" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.32" +"@swc/core-linux-arm-gnueabihf@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.15.46" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-gnu@npm:1.15.32" +"@swc/core-linux-arm64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-gnu@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-arm64-musl@npm:1.15.32" +"@swc/core-linux-arm64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-arm64-musl@npm:1.15.46" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-ppc64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.32" +"@swc/core-linux-ppc64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-ppc64-gnu@npm:1.15.46" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-s390x-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-s390x-gnu@npm:1.15.32" +"@swc/core-linux-s390x-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-s390x-gnu@npm:1.15.46" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-gnu@npm:1.15.32" +"@swc/core-linux-x64-gnu@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-gnu@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-linux-x64-musl@npm:1.15.32" +"@swc/core-linux-x64-musl@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-linux-x64-musl@npm:1.15.46" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-arm64-msvc@npm:1.15.32" +"@swc/core-win32-arm64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-arm64-msvc@npm:1.15.46" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-ia32-msvc@npm:1.15.32" +"@swc/core-win32-ia32-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-ia32-msvc@npm:1.15.46" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.15.32": - version: 1.15.32 - resolution: "@swc/core-win32-x64-msvc@npm:1.15.32" +"@swc/core-win32-x64-msvc@npm:1.15.46": + version: 1.15.46 + resolution: "@swc/core-win32-x64-msvc@npm:1.15.46" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.5.22": - version: 1.15.32 - resolution: "@swc/core@npm:1.15.32" - dependencies: - "@swc/core-darwin-arm64": "npm:1.15.32" - "@swc/core-darwin-x64": "npm:1.15.32" - "@swc/core-linux-arm-gnueabihf": "npm:1.15.32" - "@swc/core-linux-arm64-gnu": "npm:1.15.32" - "@swc/core-linux-arm64-musl": "npm:1.15.32" - "@swc/core-linux-ppc64-gnu": "npm:1.15.32" - "@swc/core-linux-s390x-gnu": "npm:1.15.32" - "@swc/core-linux-x64-gnu": "npm:1.15.32" - "@swc/core-linux-x64-musl": "npm:1.15.32" - "@swc/core-win32-arm64-msvc": "npm:1.15.32" - "@swc/core-win32-ia32-msvc": "npm:1.15.32" - "@swc/core-win32-x64-msvc": "npm:1.15.32" + version: 1.15.46 + resolution: "@swc/core@npm:1.15.46" + dependencies: + "@swc/core-darwin-arm64": "npm:1.15.46" + "@swc/core-darwin-x64": "npm:1.15.46" + "@swc/core-linux-arm-gnueabihf": "npm:1.15.46" + "@swc/core-linux-arm64-gnu": "npm:1.15.46" + "@swc/core-linux-arm64-musl": "npm:1.15.46" + "@swc/core-linux-ppc64-gnu": "npm:1.15.46" + "@swc/core-linux-s390x-gnu": "npm:1.15.46" + "@swc/core-linux-x64-gnu": "npm:1.15.46" + "@swc/core-linux-x64-musl": "npm:1.15.46" + "@swc/core-win32-arm64-msvc": "npm:1.15.46" + "@swc/core-win32-ia32-msvc": "npm:1.15.46" + "@swc/core-win32-x64-msvc": "npm:1.15.46" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.26" + "@swc/types": "npm:^0.1.27" peerDependencies: "@swc/helpers": ">=0.5.17" dependenciesMeta: @@ -3001,7 +2669,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/114e2d08a588de6dc0b01106368461d471464ec1bd0d046f4007cd2af9f52c0ddbf473a6dc251aa7f71828b74fe8488221718019187bb91a5f503a45b91b5fb1 + checksum: 10c0/70cab177b55c69ba6fea493267a4f31fd28c5a078893810d26ed3a84238dc8e23b875697b9f6494efc34c76b8280f6935345a3d89ed2b4848a9efcc17e1f802f languageName: node linkType: hard @@ -3025,12 +2693,12 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.26": - version: 0.1.26 - resolution: "@swc/types@npm:0.1.26" +"@swc/types@npm:^0.1.27": + version: 0.1.27 + resolution: "@swc/types@npm:0.1.27" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10c0/8449341e8bbff81c14e9918c25421143cf605dff20f70f048847e1f7cede396f8dd73903cbef331a809b4a8e15d0db374a5f6809003e7b440f93df1dd4934d28 + checksum: 10c0/25f1bfa0ac34e9ac60aa7de91778f70906cd77a7abb3eb68c5da8d38d5202286b293300d4bb2792b3bb8840a7f5d5c4627c4ec34d2fae6533bfb3e14a70fd8fb languageName: node linkType: hard @@ -3091,17 +2759,16 @@ __metadata: linkType: hard "@testing-library/jest-dom@npm:^6.6.3": - version: 6.6.3 - resolution: "@testing-library/jest-dom@npm:6.6.3" + version: 6.9.1 + resolution: "@testing-library/jest-dom@npm:6.9.1" dependencies: "@adobe/css-tools": "npm:^4.4.0" aria-query: "npm:^5.0.0" - chalk: "npm:^3.0.0" css.escape: "npm:^1.5.1" dom-accessibility-api: "npm:^0.6.3" - lodash: "npm:^4.17.21" + picocolors: "npm:^1.1.1" redent: "npm:^3.0.0" - checksum: 10c0/5566b6c0b7b0709bc244aec3aa3dc9e5f4663e8fb2b99d8cd456fc07279e59db6076cbf798f9d3099a98fca7ef4cd50e4e1f4c4dec5a60a8fad8d24a638a5bf6 + checksum: 10c0/4291ebd2f0f38d14cefac142c56c337941775a5807e2a3d6f1a14c2fbd6be76a18e498ed189e95bedc97d9e8cf1738049bc76c85b5bc5e23fae7c9e10f7b3a12 languageName: node linkType: hard @@ -3129,9 +2796,9 @@ __metadata: linkType: hard "@tsconfig/node10@npm:^1.0.7": - version: 1.0.11 - resolution: "@tsconfig/node10@npm:1.0.11" - checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c + version: 1.0.12 + resolution: "@tsconfig/node10@npm:1.0.12" + checksum: 10c0/7bbbd7408cfaced86387a9b1b71cebc91c6fd701a120369735734da8eab1a4773fc079abd9f40c9e0b049e12586c8ac0e13f0da596bfd455b9b4c3faa813ebc5 languageName: node linkType: hard @@ -3156,16 +2823,7 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.10.0": - version: 0.10.1 - resolution: "@tybys/wasm-util@npm:0.10.1" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 - languageName: node - linkType: hard - -"@tybys/wasm-util@npm:^0.10.2": +"@tybys/wasm-util@npm:^0.10.3": version: 0.10.3 resolution: "@tybys/wasm-util@npm:0.10.3" dependencies: @@ -3214,20 +2872,21 @@ __metadata: linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.18.0": - version: 7.20.7 - resolution: "@types/babel__traverse@npm:7.20.7" + version: 7.28.0 + resolution: "@types/babel__traverse@npm:7.28.0" dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 10c0/5386f0af44f8746b063b87418f06129a814e16bb2686965a575e9d7376b360b088b89177778d8c426012abc43dd1a2d8ec3218bfc382280c898682746ce2ffbd + "@babel/types": "npm:^7.28.2" + checksum: 10c0/b52d7d4e8fc6a9018fe7361c4062c1c190f5778cf2466817cb9ed19d69fbbb54f9a85ffedeb748ed8062d2cf7d4cc088ee739848f47c57740de1c48cbf0d0994 languageName: node linkType: hard "@types/chai@npm:^5.2.2": - version: 5.2.2 - resolution: "@types/chai@npm:5.2.2" + version: 5.2.3 + resolution: "@types/chai@npm:5.2.3" dependencies: "@types/deep-eql": "npm:*" - checksum: 10c0/49282bf0e8246800ebb36f17256f97bd3a8c4fb31f92ad3c0eaa7623518d7e87f1eaad4ad206960fcaf7175854bdff4cb167e4fe96811e0081b4ada83dd533ec + assertion-error: "npm:^2.0.1" + checksum: 10c0/e0ef1de3b6f8045a5e473e867c8565788c444271409d155588504840ad1a53611011f85072188c2833941189400228c1745d78323dac13fcede9c2b28bacfb2f languageName: node linkType: hard @@ -3245,13 +2904,6 @@ __metadata: languageName: node linkType: hard -"@types/dom4@npm:^2.0.1": - version: 2.0.4 - resolution: "@types/dom4@npm:2.0.4" - checksum: 10c0/8314feb34415c021979b91fa2f0fb8caad152141a542642697170dcd06fbbeaf72a315d0ed69f2f9ce06548f062eccaddf93b8ae2f3cd675217345a112e2a007 - languageName: node - linkType: hard - "@types/dompurify@npm:^3.2.0": version: 3.2.0 resolution: "@types/dompurify@npm:3.2.0" @@ -3261,17 +2913,10 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:1.0.8": - version: 1.0.8 - resolution: "@types/estree@npm:1.0.8" - checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 - languageName: node - linkType: hard - -"@types/estree@npm:^1.0.0": - version: 1.0.7 - resolution: "@types/estree@npm:1.0.7" - checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c +"@types/estree@npm:1.0.9, @types/estree@npm:^1.0.0": + version: 1.0.9 + resolution: "@types/estree@npm:1.0.9" + checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387 languageName: node linkType: hard @@ -3283,11 +2928,11 @@ __metadata: linkType: hard "@types/hast@npm:^3.0.4": - version: 3.0.4 - resolution: "@types/hast@npm:3.0.4" + version: 3.0.5 + resolution: "@types/hast@npm:3.0.5" dependencies: "@types/unist": "npm:*" - checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7 + checksum: 10c0/f3af8594a6903a507ed191eda944af18099198d6708c29102ae17118c3e20779f6929e91ed37e033541fd28d58055d8a5910a4366dbdf976cf81b13a464741fb languageName: node linkType: hard @@ -3327,7 +2972,7 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db @@ -3371,34 +3016,34 @@ __metadata: linkType: hard "@types/lodash@npm:*": - version: 4.17.17 - resolution: "@types/lodash@npm:4.17.17" - checksum: 10c0/8e75df02a15f04d4322c5a503e4efd0e7a92470570ce80f17e9f11ce2b1f1a7c994009c9bcff39f07e0f9ffd8ccaff09b3598997c404b801abd5a7eee5a639dc + version: 4.17.24 + resolution: "@types/lodash@npm:4.17.24" + checksum: 10c0/b72f60d4daacdad1fa643edb3faba204c02a01eb1ac00a83ff73496a6d236fc55e459c06106e8ced42277dba932d087d8fc090f8de4ef590d3f91e6d6f7ce85a languageName: node linkType: hard "@types/mdx@npm:^2.0.0": - version: 2.0.13 - resolution: "@types/mdx@npm:2.0.13" - checksum: 10c0/5edf1099505ac568da55f9ae8a93e7e314e8cbc13d3445d0be61b75941226b005e1390d9b95caecf5dcb00c9d1bab2f1f60f6ff9876dc091a48b547495007720 + version: 2.0.14 + resolution: "@types/mdx@npm:2.0.14" + checksum: 10c0/f1e3873c1e36e2685fb99222bf81a23c55a8e2edf49d0c45cabf2c875b0ae814cd6050cce5770ff1c6881ac747d2ad33731e1de32139b04cf181d8d7e1943ff4 languageName: node linkType: hard "@types/node@npm:*": - version: 22.15.21 - resolution: "@types/node@npm:22.15.21" + version: 26.1.1 + resolution: "@types/node@npm:26.1.1" dependencies: - undici-types: "npm:~6.21.0" - checksum: 10c0/f092bbccda2131c2b2c8f720338080aa0ef1d928f5f1062c03954a4f7dafa7ee3ed29bc3e51bd4e2584473b3d943c637a2b39ad7174898970818270187cf10c1 + undici-types: "npm:~8.3.0" + checksum: 10c0/25ac5093195736dd074d5027adbba85617bc951d5a41506ebd3b9073048acb7233613f3822d5f9b9447f9c0841c91f6387c46283916767e3ef79f23917452c46 languageName: node linkType: hard -"@types/node@npm:^18.11.9": - version: 18.19.103 - resolution: "@types/node@npm:18.19.103" +"@types/node@npm:^24.10.2": + version: 24.13.3 + resolution: "@types/node@npm:24.13.3" dependencies: - undici-types: "npm:~5.26.4" - checksum: 10c0/a119321c90787fca6d0ae929e55a964602123690b4674bb0ef2dc2fb78b25cc7ae4804aa6d4014d1055fd245ba8286c66080765304740978047cc706f19ed934 + undici-types: "npm:~7.18.0" + checksum: 10c0/a5bc08f49b9581dcdca90e02cd77197a3c799840807664942e5cd5161a553d4d2ae8064f7e3294410d748d7d098b5c1848be7fa50c06f29c4193ab16be4e59eb languageName: node linkType: hard @@ -3424,9 +3069,9 @@ __metadata: linkType: hard "@types/prop-types@npm:*": - version: 15.7.14 - resolution: "@types/prop-types@npm:15.7.14" - checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1 + version: 15.7.15 + resolution: "@types/prop-types@npm:15.7.15" + checksum: 10c0/b59aad1ad19bf1733cf524fd4e618196c6c7690f48ee70a327eb450a42aab8e8a063fbe59ca0a5701aebe2d92d582292c0fb845ea57474f6a15f6994b0e260b2 languageName: node linkType: hard @@ -3497,9 +3142,9 @@ __metadata: linkType: hard "@types/semver@npm:^7.5.0": - version: 7.7.0 - resolution: "@types/semver@npm:7.7.0" - checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee + version: 7.7.1 + resolution: "@types/semver@npm:7.7.1" + checksum: 10c0/c938aef3bf79a73f0f3f6037c16e2e759ff40c54122ddf0b2583703393d8d3127130823facb880e694caa324eb6845628186aac1997ee8b31dc2d18fafe26268 languageName: node linkType: hard @@ -3554,16 +3199,7 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^17.0.10": - version: 17.0.33 - resolution: "@types/yargs@npm:17.0.33" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b - languageName: node - linkType: hard - -"@types/yargs@npm:^17.0.33": +"@types/yargs@npm:^17.0.10, @types/yargs@npm:^17.0.33": version: 17.0.35 resolution: "@types/yargs@npm:17.0.35" dependencies: @@ -3696,152 +3332,175 @@ __metadata: linkType: hard "@ungap/structured-clone@npm:^1.2.0, @ungap/structured-clone@npm:^1.3.0": - version: 1.3.0 - resolution: "@ungap/structured-clone@npm:1.3.0" - checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a + version: 1.3.3 + resolution: "@ungap/structured-clone@npm:1.3.3" + checksum: 10c0/b199e280ee06e9c447e0ccd38df60a65c2b2c13d3c77af50b1e6d77230aee1ea7da309d7b80c5a4850c8e22e4eee9e4b2813c6a33f8c360560d7f2e99a9f6e8f languageName: node linkType: hard -"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1" +"@unrs/resolver-binding-android-arm-eabi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.12.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-android-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1" +"@unrs/resolver-binding-android-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-android-arm64@npm:1.12.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1" +"@unrs/resolver-binding-darwin-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.12.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1" +"@unrs/resolver-binding-darwin-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-darwin-x64@npm:1.12.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-freebsd-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1" +"@unrs/resolver-binding-freebsd-x64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.12.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1" +"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.12.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.12.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-gnu@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-loong64-musl@npm:1.12.2" + conditions: os=linux & cpu=loong64 & libc=musl + languageName: node + linkType: hard + +"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.12.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.12.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.12.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1" +"@unrs/resolver-binding-linux-x64-musl@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.12.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1" +"@unrs/resolver-binding-openharmony-arm64@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-openharmony-arm64@npm:1.12.2" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@unrs/resolver-binding-wasm32-wasi@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.12.2" dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.11" + "@emnapi/core": "npm:1.10.0" + "@emnapi/runtime": "npm:1.10.0" + "@napi-rs/wasm-runtime": "npm:^1.1.4" conditions: cpu=wasm32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.12.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.12.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1" +"@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2": + version: 1.12.2 + resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.12.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@vitejs/plugin-react@npm:^6.0.2": - version: 6.0.2 - resolution: "@vitejs/plugin-react@npm:6.0.2" + version: 6.0.4 + resolution: "@vitejs/plugin-react@npm:6.0.4" dependencies: - "@rolldown/pluginutils": "npm:^1.0.0" + "@rolldown/pluginutils": "npm:^1.0.1" peerDependencies: "@rolldown/plugin-babel": ^0.1.7 || ^0.2.0 babel-plugin-react-compiler: ^1.0.0 @@ -3851,7 +3510,7 @@ __metadata: optional: true babel-plugin-react-compiler: optional: true - checksum: 10c0/6e2d90974e05f2a9aefafad1d137b75c3b3b4bf3f2affdbfe77c6b11b24832cff22dd8852430c6341e2fb5b00a4513fb00db306a6abdbec6f0f5841e93bbcfba + checksum: 10c0/38446b54f51760b97d81abfa2fb9130bdc7a545183c97b26cfc7a5982fbcbeef431f482a3d44ef8225ca3e8c37e852a0843f8f84d0834391cab49b36a172dbf8 languageName: node linkType: hard @@ -3944,7 +3603,7 @@ __metadata: languageName: node linkType: hard -"@vitest/pretty-format@npm:3.2.6, @vitest/pretty-format@npm:^3.2.6": +"@vitest/pretty-format@npm:3.2.6": version: 3.2.6 resolution: "@vitest/pretty-format@npm:3.2.6" dependencies: @@ -3953,6 +3612,15 @@ __metadata: languageName: node linkType: hard +"@vitest/pretty-format@npm:^3.2.6": + version: 3.2.7 + resolution: "@vitest/pretty-format@npm:3.2.7" + dependencies: + tinyrainbow: "npm:^2.0.0" + checksum: 10c0/f556dd5f9e5240c7ab054d795622292c1b23f6aad3332d1e250f33d801783efbb7883387640b76d22cc91b81f30cb735b40371ec3e4f5293e735495f45d624df + languageName: node + linkType: hard + "@vitest/runner@npm:3.2.6": version: 3.2.6 resolution: "@vitest/runner@npm:3.2.6" @@ -4055,10 +3723,10 @@ __metadata: languageName: node linkType: hard -"abbrev@npm:^4.0.0": - version: 4.0.0 - resolution: "abbrev@npm:4.0.0" - checksum: 10c0/b4cc16935235e80702fc90192e349e32f8ef0ed151ef506aa78c81a7c455ec18375c4125414b99f84b2e055199d66383e787675f0bcd87da7a4dbd59f9eac1d5 +"abbrev@npm:^5.0.0": + version: 5.0.0 + resolution: "abbrev@npm:5.0.0" + checksum: 10c0/8e88f5c798ea4562d28c5a3e9ad69e3879890bc5d695d8f2dffb8609be4c890aacc8f80ef4553fdd2c6a62d70c2ce8bc57b38074e383beb7487bdafa9ed42ea5 languageName: node linkType: hard @@ -4091,29 +3759,20 @@ __metadata: linkType: hard "acorn-walk@npm:^8.1.1, acorn-walk@npm:^8.3.4": - version: 8.3.4 - resolution: "acorn-walk@npm:8.3.4" + version: 8.3.5 + resolution: "acorn-walk@npm:8.3.5" dependencies: acorn: "npm:^8.11.0" - checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62 - languageName: node - linkType: hard - -"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": - version: 8.14.1 - resolution: "acorn@npm:8.14.1" - bin: - acorn: bin/acorn - checksum: 10c0/dbd36c1ed1d2fa3550140000371fcf721578095b18777b85a79df231ca093b08edc6858d75d6e48c73e431c174dcf9214edbd7e6fa5911b93bd8abfa54e47123 + checksum: 10c0/e31bf5b5423ed1349437029d66d708b9fbd1b77a644b031501e2c753b028d13b56348210ed901d5b1d0d86eb3381c0a0fc0d0998511a9d546d1194936266a332 languageName: node linkType: hard -"acorn@npm:^8.15.0": - version: 8.15.0 - resolution: "acorn@npm:8.15.0" +"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": + version: 8.17.0 + resolution: "acorn@npm:8.17.0" bin: acorn: bin/acorn - checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec + checksum: 10c0/5dcefea5f8f023b6cc24cbe71fb5a8112b601d36c4fa07d14e4e6ffc2ee47383332c46b36c766d9437725aa6660156eae50efa0c838719823b50d7c327c4ed42 languageName: node linkType: hard @@ -4127,9 +3786,9 @@ __metadata: linkType: hard "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": - version: 7.1.3 - resolution: "agent-base@npm:7.1.3" - checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 + version: 7.1.4 + resolution: "agent-base@npm:7.1.4" + checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe languageName: node linkType: hard @@ -4158,30 +3817,18 @@ __metadata: linkType: hard "ajv@npm:^6.12.3, ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" + version: 6.15.0 + resolution: "ajv@npm:6.15.0" dependencies: fast-deep-equal: "npm:^3.1.1" fast-json-stable-stringify: "npm:^2.0.0" json-schema-traverse: "npm:^0.4.1" uri-js: "npm:^4.2.2" - checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 - languageName: node - linkType: hard - -"ajv@npm:^8.0.0": - version: 8.17.1 - resolution: "ajv@npm:8.17.1" - dependencies: - fast-deep-equal: "npm:^3.1.3" - fast-uri: "npm:^3.0.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35 + checksum: 10c0/67966499dd272ecde1c2e467084411132891523d057487587879d39ac04207f4351b7b2324c83198013967fbfa632c1612adc960114a30770fbe07a0773b32c2 languageName: node linkType: hard -"ajv@npm:^8.17.1": +"ajv@npm:^8.0.0, ajv@npm:^8.17.1": version: 8.20.0 resolution: "ajv@npm:8.20.0" dependencies: @@ -4241,13 +3888,6 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^6.0.1": - version: 6.1.0 - resolution: "ansi-regex@npm:6.1.0" - checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc - languageName: node - linkType: hard - "ansi-regex@npm:^6.2.2": version: 6.2.2 resolution: "ansi-regex@npm:6.2.2" @@ -4287,14 +3927,7 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"ansi-styles@npm:^6.2.1": +"ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": version: 6.2.3 resolution: "ansi-styles@npm:6.2.3" checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868 @@ -4320,33 +3953,20 @@ __metadata: languageName: node linkType: hard -"archiver-utils@npm:^5.0.0, archiver-utils@npm:^5.0.2": - version: 5.0.2 - resolution: "archiver-utils@npm:5.0.2" - dependencies: - glob: "npm:^10.0.0" - graceful-fs: "npm:^4.2.0" - is-stream: "npm:^2.0.1" - lazystream: "npm:^1.0.0" - lodash: "npm:^4.17.15" - normalize-path: "npm:^3.0.0" - readable-stream: "npm:^4.0.0" - checksum: 10c0/3782c5fa9922186aa1a8e41ed0c2867569faa5f15c8e5e6418ea4c1b730b476e21bd68270b3ea457daf459ae23aaea070b2b9f90cf90a59def8dc79b9e4ef538 - languageName: node - linkType: hard - -"archiver@npm:^7.0.1": - version: 7.0.1 - resolution: "archiver@npm:7.0.1" +"archiver@npm:^8.0.0": + version: 8.0.0 + resolution: "archiver@npm:8.0.0" dependencies: - archiver-utils: "npm:^5.0.2" async: "npm:^3.2.4" buffer-crc32: "npm:^1.0.0" + is-stream: "npm:^4.0.0" + lazystream: "npm:^1.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - readdir-glob: "npm:^1.1.2" + readdir-glob: "npm:^3.0.0" tar-stream: "npm:^3.0.0" - zip-stream: "npm:^6.0.1" - checksum: 10c0/02afd87ca16f6184f752db8e26884e6eff911c476812a0e7f7b26c4beb09f06119807f388a8e26ed2558aa8ba9db28646ebd147a4f99e46813b8b43158e1438e + zip-stream: "npm:^7.0.2" + checksum: 10c0/bcb12f3c8c0baac15ab0b3e92d2b6a249a09c59ffded8b259bdf5ff7ea547a75a93d79e614f99d8ba9d5f4a8ee43bbcedcd07117b1faef3369249fd8070efec8 languageName: node linkType: hard @@ -4455,13 +4075,27 @@ __metadata: linkType: hard "ast-v8-to-istanbul@npm:^0.3.3": - version: 0.3.3 - resolution: "ast-v8-to-istanbul@npm:0.3.3" + version: 0.3.12 + resolution: "ast-v8-to-istanbul@npm:0.3.12" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.25" + "@jridgewell/trace-mapping": "npm:^0.3.31" estree-walker: "npm:^3.0.3" - js-tokens: "npm:^9.0.1" - checksum: 10c0/ffc39bc3ab4b8c1f7aea945960ce6b1e518bab3da7c800277eab2da07d397eeae4a2cb8a5a5f817225646c8ea495c1e4434fbe082c84bae8042abddef53f50b2 + js-tokens: "npm:^10.0.0" + checksum: 10c0/bad6ba222b1073c165c8d65dbf366193d4a90536dabe37f93a3df162269b1c9473975756e4c048f708c235efccc26f8e5321c547b7e9563b64b21b2e0f27cbc9 + languageName: node + linkType: hard + +"async-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-function@npm:1.0.0" + checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73 + languageName: node + linkType: hard + +"async-generator-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-generator-function@npm:1.0.0" + checksum: 10c0/2c50ef856c543ad500d8d8777d347e3c1ba623b93e99c9263ecc5f965c1b12d2a140e2ab6e43c3d0b85366110696f28114649411cbcd10b452a92a2318394186 languageName: node linkType: hard @@ -4479,13 +4113,6 @@ __metadata: languageName: node linkType: hard -"at-least-node@npm:^1.0.0": - version: 1.0.0 - resolution: "at-least-node@npm:1.0.0" - checksum: 10c0/4c058baf6df1bc5a1697cf182e2029c58cd99975288a13f9e70068ef5d6f4e1f1fd7c4d2c3c4912eae44797d1725be9700995736deca441b39f3e66d8dee97ef - languageName: node - linkType: hard - "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" @@ -4509,7 +4136,7 @@ __metadata: languageName: node linkType: hard -"axios@npm:^1.15.0, axios@npm:^1.6.1": +"axios@npm:^1.16.0, axios@npm:^1.6.1": version: 1.18.1 resolution: "axios@npm:1.18.1" dependencies: @@ -4521,32 +4148,32 @@ __metadata: languageName: node linkType: hard -"b4a@npm:^1.6.4": - version: 1.8.0 - resolution: "b4a@npm:1.8.0" +"b4a@npm:^1.6.4, b4a@npm:^1.8.1": + version: 1.8.1 + resolution: "b4a@npm:1.8.1" peerDependencies: react-native-b4a: "*" peerDependenciesMeta: react-native-b4a: optional: true - checksum: 10c0/27eab5c50ea1f1314f36256f160d2e6d6950f55f02ee4942732ecafd8bcc4b3a2ed209fab532b288770d41df2befa97a2745175c06471875b716eb87abf31519 + checksum: 10c0/344d8c94b244ec7a9cb516ea43a98216312454cb72478e4b7628a679ee343be237564c53bbe73995ab10ea9bc923b420236081b180b3cf78fd0c945bfc886798 languageName: node linkType: hard -"babel-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-jest@npm:30.3.0" +"babel-jest@npm:30.4.1": + version: 30.4.1 + resolution: "babel-jest@npm:30.4.1" dependencies: - "@jest/transform": "npm:30.3.0" + "@jest/transform": "npm:30.4.1" "@types/babel__core": "npm:^7.20.5" babel-plugin-istanbul: "npm:^7.0.1" - babel-preset-jest: "npm:30.3.0" + babel-preset-jest: "npm:30.4.0" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-0 - checksum: 10c0/5e41e124a404ddb78aa37a20336d7c883feab5ad9c4f4c72ae26db71be2fcca345874b9a7fef97d9c5f64f144a264b247ebde8acfe493578320f314ca581bac3 + checksum: 10c0/339b449011f31dc9eb18d9c49f0bb84e8de284e1107e64159a2f4a432bbd532d6a729774a56b7fbe76f5ddd716a0b4b7ad737265feab23b4d0225489b79a6f72 languageName: node linkType: hard @@ -4563,12 +4190,12 @@ __metadata: languageName: node linkType: hard -"babel-plugin-jest-hoist@npm:30.3.0": - version: 30.3.0 - resolution: "babel-plugin-jest-hoist@npm:30.3.0" +"babel-plugin-jest-hoist@npm:30.4.0": + version: 30.4.0 + resolution: "babel-plugin-jest-hoist@npm:30.4.0" dependencies: "@types/babel__core": "npm:^7.20.5" - checksum: 10c0/5e15900a6487356131e084970f4a9ebe24b702d74930f786e897d4fab90b0987054f66661a3570ea692f429dcd158c2214c97ecf08f7356cbc60029d7b277c74 + checksum: 10c0/1738ed536bb5ff536b4d406b8db7dbbd76cf10f80bb20d902e6efdda79898f045b9a991124d7104d8c398d0bd995d511d57694952645fba0f6250595a45277b0 languageName: node linkType: hard @@ -4608,15 +4235,15 @@ __metadata: languageName: node linkType: hard -"babel-preset-jest@npm:30.3.0": - version: 30.3.0 - resolution: "babel-preset-jest@npm:30.3.0" +"babel-preset-jest@npm:30.4.0": + version: 30.4.0 + resolution: "babel-preset-jest@npm:30.4.0" dependencies: - babel-plugin-jest-hoist: "npm:30.3.0" + babel-plugin-jest-hoist: "npm:30.4.0" babel-preset-current-node-syntax: "npm:^1.2.0" peerDependencies: "@babel/core": ^7.11.0 || ^8.0.0-beta.1 - checksum: 10c0/a6839a1527d254bf04e82c0cf61a6a2aa283123a74f0a552e6fce462cb990abebab75a13ec3e9c58b09a865d4d2dfbac710c2d3975ae3ce6f2707cb314915c66 + checksum: 10c0/ca2623aa4d8bf82b1fd01e5724a87cea7f80ff089341cf12415e9ce4b10f74838ecc6c8a48921f421f90bcd44f7929c0ad300146082e2f400253adb97ab5eb3a languageName: node linkType: hard @@ -4635,20 +4262,20 @@ __metadata: linkType: hard "bare-events@npm:^2.5.4, bare-events@npm:^2.7.0": - version: 2.8.2 - resolution: "bare-events@npm:2.8.2" + version: 2.9.1 + resolution: "bare-events@npm:2.9.1" peerDependencies: bare-abort-controller: "*" peerDependenciesMeta: bare-abort-controller: optional: true - checksum: 10c0/53fef240cf2cdcca62f78b6eead90ddb5a59b0929f414b13a63764c2b4f9de98ea8a578d033b04d64bb7b86dfbc402e937984e69950855cc3754c7b63da7db21 + checksum: 10c0/576fba522bdd2167f35e86791e6c881fdaaf542aa5fca0acfaf8fac7a2c0789340f1cafa0b63e216808efb5cc710887c0cf683f1783293bf98a215d8555ecc36 languageName: node linkType: hard "bare-fs@npm:^4.5.5": - version: 4.6.0 - resolution: "bare-fs@npm:4.6.0" + version: 4.7.4 + resolution: "bare-fs@npm:4.7.4" dependencies: bare-events: "npm:^2.5.4" bare-path: "npm:^3.0.0" @@ -4660,30 +4287,22 @@ __metadata: peerDependenciesMeta: bare-buffer: optional: true - checksum: 10c0/fe7fce0c2b8f269ec1ff55d034b39201e4cd3100d9808950a267158603e1a85b37bda54c83237b3828ec6989094bef025ac4f44177d72a3d2ce26d69daff81d5 - languageName: node - linkType: hard - -"bare-os@npm:^3.0.1": - version: 3.8.7 - resolution: "bare-os@npm:3.8.7" - checksum: 10c0/6541b223a196a58b52e1103ef1f04d35018c1b56b6c250410fc54680767624273691ece741eb88502c95b058ab90b632972348a9231410df05c5df61a62c9c08 + checksum: 10c0/c189f8075c7f19142383cda7cb95e85c9a057366e6232f00ce8ad901471291bd2c716d5e480c203c38383c757e64c0388fa5184cfa767dc63c4808e566e16d89 languageName: node linkType: hard "bare-path@npm:^3.0.0": - version: 3.0.0 - resolution: "bare-path@npm:3.0.0" - dependencies: - bare-os: "npm:^3.0.1" - checksum: 10c0/56a3ca82a9f808f4976cb1188640ac206546ce0ddff582afafc7bd2a6a5b31c3bd16422653aec656eeada2830cfbaa433c6cbf6d6b4d9eba033d5e06d60d9a68 + version: 3.1.1 + resolution: "bare-path@npm:3.1.1" + checksum: 10c0/833f0fe2df164e518878b9c71646228d7841c2e35bd3fc428e432b512317ce7fdbd2a127649366f34db3312778d12a83f2fff5485004bbbdcdd15975fce73f4c languageName: node linkType: hard "bare-stream@npm:^2.6.4": - version: 2.12.0 - resolution: "bare-stream@npm:2.12.0" + version: 2.13.3 + resolution: "bare-stream@npm:2.13.3" dependencies: + b4a: "npm:^1.8.1" streamx: "npm:^2.25.0" teex: "npm:^1.0.1" peerDependencies: @@ -4697,16 +4316,16 @@ __metadata: optional: true bare-events: optional: true - checksum: 10c0/b2f306e2f23f8a53572c8df90ad71dda0d1565a7de70fef14c95259fe93421de20dfb9420b382698468cfbac4010fc260ba5bd75cca3965ebe47695d1679ad82 + checksum: 10c0/1867ca2e89042a7a9c53e8415a0be6e958bdc7231bc0858a793ec35614419eb6e57ad7a27db2de3dc75a799f7432494e27029b3805eee53693629ff64cae16c9 languageName: node linkType: hard "bare-url@npm:^2.2.2": - version: 2.4.0 - resolution: "bare-url@npm:2.4.0" + version: 2.4.6 + resolution: "bare-url@npm:2.4.6" dependencies: bare-path: "npm:^3.0.0" - checksum: 10c0/b349bf4d3826d6e9fea40aae0b8aaba6e7e83af89feac93ad0b87721c11e0dd84eb651549275242c5ae07a3a21d24620b76bf59c434db65e9605a6e3180f8af2 + checksum: 10c0/fa93bb9fc643133ca0b38c1431bb2041a7179fd1f5f39d08f303feba018ece752bb823133cfe7849b078c01f907ff31429d915a0ae4c47e03de7d8c42f671354 languageName: node linkType: hard @@ -4737,6 +4356,15 @@ __metadata: languageName: node linkType: hard +"baseline-browser-mapping@npm:^2.10.44": + version: 2.11.0 + resolution: "baseline-browser-mapping@npm:2.11.0" + bin: + baseline-browser-mapping: dist/cli.cjs + checksum: 10c0/03176d4d1c85a156971ae328241e9216288d59f46a5195acc95c41f1477b2e791185d0f68128788c311fd0fb0b93b321170d65c1ef7d9bcab096677c844365de + languageName: node + linkType: hard + "bcrypt-pbkdf@npm:^1.0.0": version: 1.0.2 resolution: "bcrypt-pbkdf@npm:1.0.2" @@ -4746,17 +4374,17 @@ __metadata: languageName: node linkType: hard -"bestzip@npm:2.2.3": - version: 2.2.3 - resolution: "bestzip@npm:2.2.3" +"bestzip@npm:3.0.1": + version: 3.0.1 + resolution: "bestzip@npm:3.0.1" dependencies: - archiver: "npm:^7.0.1" + archiver: "npm:^8.0.0" glob: "npm:^13.0.6" which: "npm:^6.0.1" yargs: "npm:^16.2.0" bin: bestzip: bin/cli.js - checksum: 10c0/fda17035db4cf364a2a7d0685db16013fe90559b9943e1268842b895207177a1f22b5cfdd07d51c3b239fd277ac11ad5d6596b23a83af4a7e1c32f2475743343 + checksum: 10c0/9979d6dc41e18267a3af8aa5df78dd39ada7684b34b5c151e465554473ce509f1aa6045b6aa53cb56a9a2266ee322f74c718ce99a3c52dbb15616475e7afc73a languageName: node linkType: hard @@ -4777,19 +4405,19 @@ __metadata: linkType: hard "body-parser@npm:^2.2.1": - version: 2.2.2 - resolution: "body-parser@npm:2.2.2" + version: 2.3.0 + resolution: "body-parser@npm:2.3.0" dependencies: bytes: "npm:^3.1.2" - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" debug: "npm:^4.4.3" - http-errors: "npm:^2.0.0" - iconv-lite: "npm:^0.7.0" + http-errors: "npm:^2.0.1" + iconv-lite: "npm:^0.7.2" on-finished: "npm:^2.4.1" - qs: "npm:^6.14.1" - raw-body: "npm:^3.0.1" - type-is: "npm:^2.0.1" - checksum: 10c0/95a830a003b38654b75166ca765358aa92ee3d561bf0e41d6ccdde0e1a0c9783cab6b90b20eb635d23172c010b59d3563a137a738e74da4ba714463510d05137 + qs: "npm:^6.15.2" + raw-body: "npm:^3.0.2" + type-is: "npm:^2.1.0" + checksum: 10c0/2a8fbbdc471b588338555a3e1a597d1eb0ad0c21cf20fdc3bac5d3f8d9c3a4b19b4163575ab852a43a5dfc0df7770ced5284f979e561f1a24c2f851ce89e695a languageName: node linkType: hard @@ -4819,21 +4447,21 @@ __metadata: languageName: node linkType: hard -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" +"brace-expansion@npm:^2.0.1, brace-expansion@npm:^2.0.2": + version: 2.1.2 + resolution: "brace-expansion@npm:2.1.2" dependencies: balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + checksum: 10c0/5442ecab84045d21826268bc56c81a6ef4215327ee1f5ee153f67928e93f7a915d130ecec9966623143277fa3cce036ebb50020024bcc4d78853cdd6af9a19f8 languageName: node linkType: hard "brace-expansion@npm:^5.0.5": - version: 5.0.5 - resolution: "brace-expansion@npm:5.0.5" + version: 5.0.7 + resolution: "brace-expansion@npm:5.0.7" dependencies: balanced-match: "npm:^4.0.2" - checksum: 10c0/4d238e14ed4f5cc9c07285550a41cef23121ca08ba99fa9eb5b55b580dcb6bf868b8210aa10526bdc9f8dc97f33ca2a7259039c4cc131a93042beddb424c48e3 + checksum: 10c0/4769109c3c082de178e449a371bcad50d51ab468f644bce2dd9188efe0cf0a080ed102105d7fc8577382cedc45bad7e6443a91bf3d8102264ee8cf927dbaf205 languageName: node linkType: hard @@ -4854,16 +4482,17 @@ __metadata: linkType: hard "browserslist@npm:^4.24.0": - version: 4.24.5 - resolution: "browserslist@npm:4.24.5" - dependencies: - caniuse-lite: "npm:^1.0.30001716" - electron-to-chromium: "npm:^1.5.149" - node-releases: "npm:^2.0.19" - update-browserslist-db: "npm:^1.1.3" + version: 4.28.7 + resolution: "browserslist@npm:4.28.7" + dependencies: + baseline-browser-mapping: "npm:^2.10.44" + caniuse-lite: "npm:^1.0.30001806" + electron-to-chromium: "npm:^1.5.393" + node-releases: "npm:^2.0.51" + update-browserslist-db: "npm:^1.2.3" bin: browserslist: cli.js - checksum: 10c0/f4c1ce1a7d8fdfab5e5b88bb6e93d09e8a883c393f86801537a252da0362dbdcde4dbd97b318246c5d84c6607b2f6b47af732c1b000d6a8a881ee024bad29204 + checksum: 10c0/dc41922a9ff0d81e5492498bdab2d932e3a3222f4277814ba38ee64f4e51f26e5244a7cce0777b4cac3ceff6eb196f5cadbb2a832620973a7f9c39611f6bc78e languageName: node linkType: hard @@ -4937,24 +4566,6 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^20.0.1": - version: 20.0.4 - resolution: "cacache@npm:20.0.4" - dependencies: - "@npmcli/fs": "npm:^5.0.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^13.0.0" - lru-cache: "npm:^11.1.0" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^7.0.2" - ssri: "npm:^13.0.0" - checksum: 10c0/539bf4020e44ba9ca5afc2ec435623ed7e0dd80c020097677e6b4a0545df5cc9d20b473212d01209c8b4aea43c0d095af0bb6da97bcb991642ea6fac0d7c462b - languageName: node - linkType: hard - "cacheable-request@npm:^6.0.0": version: 6.1.0 resolution: "cacheable-request@npm:6.1.0" @@ -4982,7 +4593,7 @@ __metadata: languageName: node linkType: hard -"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": +"call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": version: 1.0.2 resolution: "call-bind-apply-helpers@npm:1.0.2" dependencies: @@ -4992,15 +4603,15 @@ __metadata: languageName: node linkType: hard -"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8": - version: 1.0.8 - resolution: "call-bind@npm:1.0.8" +"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7, call-bind@npm:^1.0.8, call-bind@npm:^1.0.9": + version: 1.0.9 + resolution: "call-bind@npm:1.0.9" dependencies: - call-bind-apply-helpers: "npm:^1.0.0" - es-define-property: "npm:^1.0.0" - get-intrinsic: "npm:^1.2.4" + call-bind-apply-helpers: "npm:^1.0.2" + es-define-property: "npm:^1.0.1" + get-intrinsic: "npm:^1.3.0" set-function-length: "npm:^1.2.2" - checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 + checksum: 10c0/a6621f6da1444481919ce3b4983dff725691e0754d3507ae483ce56e54985f2da7d6f1df512c56dbf28660745cf1ca52553f1fc9aef5557f3ce353ef14fab714 languageName: node linkType: hard @@ -5035,10 +4646,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001716": - version: 1.0.30001718 - resolution: "caniuse-lite@npm:1.0.30001718" - checksum: 10c0/67f9ad09bc16443e28d14f265d6e468480cd8dc1900d0d8b982222de80c699c4f2306599c3da8a3fa7139f110d4b30d49dbac78f215470f479abb6ffe141d5d3 +"caniuse-lite@npm:^1.0.30001806": + version: 1.0.30001806 + resolution: "caniuse-lite@npm:1.0.30001806" + checksum: 10c0/9442c8afff0968e9b2ce0104a7340c1ce4a5c09f469ccb9eef10d25712ea0afe542486e5318c697c70dd502f988cfc04eaa1c9438c92ac3bcf4d708a2a17bee1 languageName: node linkType: hard @@ -5065,20 +4676,7 @@ __metadata: languageName: node linkType: hard -"chai@npm:^5.1.1": - version: 5.2.0 - resolution: "chai@npm:5.2.0" - dependencies: - assertion-error: "npm:^2.0.1" - check-error: "npm:^2.1.1" - deep-eql: "npm:^5.0.1" - loupe: "npm:^3.1.0" - pathval: "npm:^2.0.0" - checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d - languageName: node - linkType: hard - -"chai@npm:^5.2.0": +"chai@npm:^5.1.1, chai@npm:^5.2.0": version: 5.3.3 resolution: "chai@npm:5.3.3" dependencies: @@ -5150,9 +4748,9 @@ __metadata: linkType: hard "check-error@npm:^2.1.1": - version: 2.1.1 - resolution: "check-error@npm:2.1.1" - checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e + version: 2.1.3 + resolution: "check-error@npm:2.1.3" + checksum: 10c0/878e99038fb6476316b74668cd6a498c7e66df3efe48158fa40db80a06ba4258742ac3ee2229c4a2a98c5e73f5dff84eb3e50ceb6b65bbd8f831eafc8338607d languageName: node linkType: hard @@ -5210,13 +4808,6 @@ __metadata: languageName: node linkType: hard -"classnames@npm:^2.2": - version: 2.5.1 - resolution: "classnames@npm:2.5.1" - checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 - languageName: node - linkType: hard - "clean-regexp@npm:^1.0.0": version: 1.0.0 resolution: "clean-regexp@npm:1.0.0" @@ -5293,10 +4884,10 @@ __metadata: languageName: node linkType: hard -"clsx@npm:^1.1.1": - version: 1.2.1 - resolution: "clsx@npm:1.2.1" - checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 +"clsx@npm:^2.1.1": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839 languageName: node linkType: hard @@ -5346,10 +4937,10 @@ __metadata: languageName: node linkType: hard -"colorbrewer@npm:^1.6.1": - version: 1.6.1 - resolution: "colorbrewer@npm:1.6.1" - checksum: 10c0/27b8bb83f1343fa763541b16820c34a22b68b6200835dc43b5f8cc6b1270ad66c03c377a30b5819fa04c08d0930ea4e478b4779f5abcefd8f337c691e3c19189 +"colorbrewer@npm:^1.7.0": + version: 1.7.0 + resolution: "colorbrewer@npm:1.7.0" + checksum: 10c0/0671f1d626734d5edfac72b590aa98f118c4eb0f13292f2e37ca267d1746e1bd5bc07d8f4c79c7591b33a411f2aadf64384b2afa95c104cb89b5e43b74fa3a24 languageName: node linkType: hard @@ -5369,6 +4960,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^14.0.0": + version: 14.0.3 + resolution: "commander@npm:14.0.3" + checksum: 10c0/755652564bbf56ff2ff083313912b326450d3f8d8c85f4b71416539c9a05c3c67dbd206821ca72635bf6b160e2afdefcb458e86b317827d5cb333b69ce7f1a24 + languageName: node + linkType: hard + "commander@npm:^2.12.1": version: 2.20.3 resolution: "commander@npm:2.20.3" @@ -5390,16 +4988,16 @@ __metadata: languageName: node linkType: hard -"compress-commons@npm:^6.0.2": - version: 6.0.2 - resolution: "compress-commons@npm:6.0.2" +"compress-commons@npm:^7.0.0": + version: 7.0.1 + resolution: "compress-commons@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" - crc32-stream: "npm:^6.0.0" - is-stream: "npm:^2.0.1" + crc32-stream: "npm:^7.0.1" + is-stream: "npm:^4.0.0" normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/2347031b7c92c8ed5011b07b93ec53b298fa2cd1800897532ac4d4d1aeae06567883f481b6e35f13b65fc31b190c751df6635434d525562f0203fde76f1f0814 + checksum: 10c0/9837b9971c7e536f14b113178e944741a0cb76051db2c84ff23da2b6321f2f6da8ed922d713bb643987d4cd39eeaa537c73d9d7843f9eb74f8fe47afe93d0733 languageName: node linkType: hard @@ -5481,6 +5079,13 @@ __metadata: languageName: node linkType: hard +"content-type@npm:^2.0.0": + version: 2.0.0 + resolution: "content-type@npm:2.0.0" + checksum: 10c0/491539fff707d7594b0ca4fabcc084bef2a31ffa754ff0a4f80c4377e3963cff0394317f9271c24087596c97fa675bc123d61fa34ffe65b4904e7d3d3098de72 + languageName: node + linkType: hard + "convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.7.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" @@ -5536,14 +5141,7 @@ __metadata: languageName: node linkType: hard -"core-js@npm:^3.29.0": - version: 3.42.0 - resolution: "core-js@npm:3.42.0" - checksum: 10c0/2913d3d5452d54ad92f058d66046782d608c05e037bcc523aab79c04454fe640998f94e6011292969d66dfa472f398b085ce843dcb362056532a5799c627184e - languageName: node - linkType: hard - -"core-js@npm:^3.6.0, core-js@npm:^3.8.3": +"core-js@npm:^3.29.0, core-js@npm:^3.6.0, core-js@npm:^3.8.3": version: 3.49.0 resolution: "core-js@npm:3.49.0" checksum: 10c0/2e42edb47eda38fd5368380131623c8aa5d4a6b42164125b17744bdc08fa5ebbbdd06b4b4aa6ca3663470a560b0f2fba48e18f142dfe264b0039df85bc625694 @@ -5623,13 +5221,13 @@ __metadata: languageName: node linkType: hard -"crc32-stream@npm:^6.0.0": - version: 6.0.0 - resolution: "crc32-stream@npm:6.0.0" +"crc32-stream@npm:^7.0.1": + version: 7.0.1 + resolution: "crc32-stream@npm:7.0.1" dependencies: crc-32: "npm:^1.2.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/bf9c84571ede2d119c2b4f3a9ef5eeb9ff94b588493c0d3862259af86d3679dcce1c8569dd2b0a6eff2f35f5e2081cc1263b846d2538d4054da78cf34f262a3d + checksum: 10c0/0d8d217ca4f328bba859a6bef8593028d24841bef2fe4dc44ae892c7cace4301ce6d5676b568642ddb0a709ee3f0f7af1d1ada4c9c399bc5a4ff9b93d5d1071d languageName: node linkType: hard @@ -5688,23 +5286,16 @@ __metadata: linkType: hard "cssstyle@npm:^4.2.1": - version: 4.3.1 - resolution: "cssstyle@npm:4.3.1" + version: 4.6.0 + resolution: "cssstyle@npm:4.6.0" dependencies: - "@asamuzakjp/css-color": "npm:^3.1.2" + "@asamuzakjp/css-color": "npm:^3.2.0" rrweb-cssom: "npm:^0.8.0" - checksum: 10c0/89d73252d5f9930cf67f5c576de8030a9d960aae4c8bdd42d60464b2f67c8d809601fb7e620b43d4c84e03472016da77528df9a21a21393387ed256610ca0ab4 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 + checksum: 10c0/71add1b0ffafa1bedbef6855db6189b9523d3320e015a0bf3fbd504760efb9a81e1f1a225228d5fa892ee58e56d06994ca372e7f4e461cda7c4c9985fe075f65 languageName: node linkType: hard -"csstype@npm:^3.1.3, csstype@npm:^3.2.2": +"csstype@npm:^3.0.2, csstype@npm:^3.1.3, csstype@npm:^3.2.2": version: 3.2.3 resolution: "csstype@npm:3.2.3" checksum: 10c0/cd29c51e70fa822f1cecd8641a1445bed7063697469d35633b516e60fe8c1bde04b08f6c5b6022136bb669b64c63d4173af54864510fbb4ee23281801841a3ce @@ -5749,19 +5340,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.1": - version: 4.4.1 - resolution: "debug@npm:4.4.1" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 - languageName: node - linkType: hard - -"debug@npm:^4.4.0, debug@npm:^4.4.3": +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.4.0, debug@npm:^4.4.1, debug@npm:^4.4.3": version: 4.4.3 resolution: "debug@npm:4.4.3" dependencies: @@ -5781,9 +5360,9 @@ __metadata: linkType: hard "decimal.js@npm:^10.5.0": - version: 10.5.0 - resolution: "decimal.js@npm:10.5.0" - checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 + version: 10.6.0 + resolution: "decimal.js@npm:10.6.0" + checksum: 10c0/07d69fbcc54167a340d2d97de95f546f9ff1f69d2b45a02fd7a5292412df3cd9eb7e23065e532a318f5474a2e1bccf8392fdf0443ef467f97f3bf8cb0477e5aa languageName: node linkType: hard @@ -5815,20 +5394,6 @@ __metadata: languageName: node linkType: hard -"deep-equal@npm:^1.1.1": - version: 1.1.2 - resolution: "deep-equal@npm:1.1.2" - dependencies: - is-arguments: "npm:^1.1.1" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - regexp.prototype.flags: "npm:^1.5.1" - checksum: 10c0/cd85d822d18e9b3e1532d0f6ba412d229aa9d22881d70da161674428ae96e47925191296f7cda29306bac252889007da40ed8449363bd1c96c708acb82068a00 - languageName: node - linkType: hard - "deep-equal@npm:^2.0.5": version: 2.2.3 resolution: "deep-equal@npm:2.2.3" @@ -5988,9 +5553,9 @@ __metadata: linkType: hard "diff@npm:^4.0.1": - version: 4.0.2 - resolution: "diff@npm:4.0.2" - checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + version: 4.0.4 + resolution: "diff@npm:4.0.4" + checksum: 10c0/855fb70b093d1d9643ddc12ea76dca90dc9d9cdd7f82c08ee8b9325c0dc5748faf3c82e2047ced5dcaa8b26e58f7903900be2628d0380a222c02d79d8de385df languageName: node linkType: hard @@ -6089,15 +5654,6 @@ __metadata: languageName: node linkType: hard -"dom-helpers@npm:^3.4.0": - version: 3.4.0 - resolution: "dom-helpers@npm:3.4.0" - dependencies: - "@babel/runtime": "npm:^7.1.2" - checksum: 10c0/1d2d3e4eadac2c4f4c8c7470a737ab32b7ec28237c4d094ea967ec3184168fd12452196fcc424a5d7860b6176117301aeaecba39467bf1a6e8492a8e5c9639d1 - languageName: node - linkType: hard - "dom-helpers@npm:^5.0.1": version: 5.2.1 resolution: "dom-helpers@npm:5.2.1" @@ -6125,13 +5681,6 @@ __metadata: languageName: node linkType: hard -"dom4@npm:^2.1.5": - version: 2.1.6 - resolution: "dom4@npm:2.1.6" - checksum: 10c0/1ed3d869c5a3f1aa9c3c17615324ef367449c8b951b737297ae202357447d79d462855c93b79e57d2d0adcd2f68f0b3374904a2f9051da7290260a0f7b560d7f - languageName: node - linkType: hard - "domelementtype@npm:1, domelementtype@npm:^1.3.1": version: 1.3.1 resolution: "domelementtype@npm:1.3.1" @@ -6155,7 +5704,7 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.0": +"dompurify@npm:*, dompurify@npm:^3.3.1, dompurify@npm:^3.4.10": version: 3.4.12 resolution: "dompurify@npm:3.4.12" dependencies: @@ -6205,9 +5754,9 @@ __metadata: linkType: hard "earcut@npm:^3.0.0": - version: 3.0.1 - resolution: "earcut@npm:3.0.1" - checksum: 10c0/cc1d3ed87a08db1a601b3b836bfb2fe22c8f923dfcfcd7419c64a5d4c270ac6d966d8d1e673cc699f8d69dc32bce84fd6d87136c49431fa35057bd7141627769 + version: 3.2.3 + resolution: "earcut@npm:3.2.3" + checksum: 10c0/38660ec1ce55eecbbbf11d5a0072934c9f33851527bf5e40923c6656c3a0c6b00bb449ae8f4b28f89a0b249fe18568e630a8ea9ee39ce2707a50a89531a2f995 languageName: node linkType: hard @@ -6235,10 +5784,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.149": - version: 1.5.155 - resolution: "electron-to-chromium@npm:1.5.155" - checksum: 10c0/aee32a0b03282e488352370f6a910de37788b814031020a0e244943450e844e8a41f741d6e5ec70d553dfa4382ef80088034ddc400b48f45de95de331b9ec178 +"electron-to-chromium@npm:^1.5.393": + version: 1.5.395 + resolution: "electron-to-chromium@npm:1.5.395" + checksum: 10c0/f1e6f10ab7499ef528afcdcfdd8b900c10388e3fcc19333a0de2f0824404740e5450c675469d32c106cc2bfc08db2de88b925523a0d15540bcd8f65355e2ed7b languageName: node linkType: hard @@ -6285,11 +5834,11 @@ __metadata: linkType: hard "end-of-stream@npm:^1.1.0": - version: 1.4.4 - resolution: "end-of-stream@npm:1.4.4" + version: 1.4.5 + resolution: "end-of-stream@npm:1.4.5" dependencies: once: "npm:^1.4.0" - checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 + checksum: 10c0/b0701c92a10b89afb1cb45bf54a5292c6f008d744eb4382fa559d54775ff31617d1d7bc3ef617575f552e24fad2c7c1a1835948c66b3f3a4be0a6c1f35c883d8 languageName: node linkType: hard @@ -6317,7 +5866,7 @@ __metadata: languageName: node linkType: hard -"entities@npm:^4.4.0": +"entities@npm:^4.5.0": version: 4.5.0 resolution: "entities@npm:4.5.0" checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 @@ -6325,9 +5874,9 @@ __metadata: linkType: hard "entities@npm:^6.0.0": - version: 6.0.0 - resolution: "entities@npm:6.0.0" - checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e + version: 6.0.1 + resolution: "entities@npm:6.0.1" + checksum: 10c0/ed836ddac5acb34341094eb495185d527bd70e8632b6c0d59548cbfa23defdbae70b96f9a405c82904efa421230b5b3fd2283752447d737beffd3f3e6ee74414 languageName: node linkType: hard @@ -6346,11 +5895,11 @@ __metadata: linkType: hard "error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" + version: 1.3.4 + resolution: "error-ex@npm:1.3.4" dependencies: is-arrayish: "npm:^0.2.1" - checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + checksum: 10c0/b9e34ff4778b8f3b31a8377e1c654456f4c41aeaa3d10a1138c3b7635d8b7b2e03eb2475d46d8ae055c1f180a1063e100bffabf64ea7e7388b37735df5328664 languageName: node linkType: hard @@ -6393,11 +5942,11 @@ __metadata: linkType: hard "es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": - version: 1.1.1 - resolution: "es-object-atoms@npm:1.1.1" + version: 1.1.2 + resolution: "es-object-atoms@npm:1.1.2" dependencies: es-errors: "npm:^1.3.0" - checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c + checksum: 10c0/1772861f094f739d6f41b579cfb9a18579daffeb434552a370a5fbef50a32d22227e27b63fdbb757b7ddd429d1b42fe52ccae7966d9302a2ec221b6f1b41bbc4 languageName: node linkType: hard @@ -6432,34 +5981,35 @@ __metadata: linkType: hard "esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0": - version: 0.25.4 - resolution: "esbuild@npm:0.25.4" - dependencies: - "@esbuild/aix-ppc64": "npm:0.25.4" - "@esbuild/android-arm": "npm:0.25.4" - "@esbuild/android-arm64": "npm:0.25.4" - "@esbuild/android-x64": "npm:0.25.4" - "@esbuild/darwin-arm64": "npm:0.25.4" - "@esbuild/darwin-x64": "npm:0.25.4" - "@esbuild/freebsd-arm64": "npm:0.25.4" - "@esbuild/freebsd-x64": "npm:0.25.4" - "@esbuild/linux-arm": "npm:0.25.4" - "@esbuild/linux-arm64": "npm:0.25.4" - "@esbuild/linux-ia32": "npm:0.25.4" - "@esbuild/linux-loong64": "npm:0.25.4" - "@esbuild/linux-mips64el": "npm:0.25.4" - "@esbuild/linux-ppc64": "npm:0.25.4" - "@esbuild/linux-riscv64": "npm:0.25.4" - "@esbuild/linux-s390x": "npm:0.25.4" - "@esbuild/linux-x64": "npm:0.25.4" - "@esbuild/netbsd-arm64": "npm:0.25.4" - "@esbuild/netbsd-x64": "npm:0.25.4" - "@esbuild/openbsd-arm64": "npm:0.25.4" - "@esbuild/openbsd-x64": "npm:0.25.4" - "@esbuild/sunos-x64": "npm:0.25.4" - "@esbuild/win32-arm64": "npm:0.25.4" - "@esbuild/win32-ia32": "npm:0.25.4" - "@esbuild/win32-x64": "npm:0.25.4" + version: 0.25.12 + resolution: "esbuild@npm:0.25.12" + dependencies: + "@esbuild/aix-ppc64": "npm:0.25.12" + "@esbuild/android-arm": "npm:0.25.12" + "@esbuild/android-arm64": "npm:0.25.12" + "@esbuild/android-x64": "npm:0.25.12" + "@esbuild/darwin-arm64": "npm:0.25.12" + "@esbuild/darwin-x64": "npm:0.25.12" + "@esbuild/freebsd-arm64": "npm:0.25.12" + "@esbuild/freebsd-x64": "npm:0.25.12" + "@esbuild/linux-arm": "npm:0.25.12" + "@esbuild/linux-arm64": "npm:0.25.12" + "@esbuild/linux-ia32": "npm:0.25.12" + "@esbuild/linux-loong64": "npm:0.25.12" + "@esbuild/linux-mips64el": "npm:0.25.12" + "@esbuild/linux-ppc64": "npm:0.25.12" + "@esbuild/linux-riscv64": "npm:0.25.12" + "@esbuild/linux-s390x": "npm:0.25.12" + "@esbuild/linux-x64": "npm:0.25.12" + "@esbuild/netbsd-arm64": "npm:0.25.12" + "@esbuild/netbsd-x64": "npm:0.25.12" + "@esbuild/openbsd-arm64": "npm:0.25.12" + "@esbuild/openbsd-x64": "npm:0.25.12" + "@esbuild/openharmony-arm64": "npm:0.25.12" + "@esbuild/sunos-x64": "npm:0.25.12" + "@esbuild/win32-arm64": "npm:0.25.12" + "@esbuild/win32-ia32": "npm:0.25.12" + "@esbuild/win32-x64": "npm:0.25.12" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6503,6 +6053,8 @@ __metadata: optional: true "@esbuild/openbsd-x64": optional: true + "@esbuild/openharmony-arm64": + optional: true "@esbuild/sunos-x64": optional: true "@esbuild/win32-arm64": @@ -6513,40 +6065,40 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/db9f51248f0560bc46ab219461d338047617f6caf373c95f643b204760bdfa10c95b48cfde948949f7e509599ae4ab61c3f112092a3534936c6abfb800c565b0 - languageName: node - linkType: hard - -"esbuild@npm:^0.27.0, esbuild@npm:~0.27.0": - version: 0.27.7 - resolution: "esbuild@npm:0.27.7" - dependencies: - "@esbuild/aix-ppc64": "npm:0.27.7" - "@esbuild/android-arm": "npm:0.27.7" - "@esbuild/android-arm64": "npm:0.27.7" - "@esbuild/android-x64": "npm:0.27.7" - "@esbuild/darwin-arm64": "npm:0.27.7" - "@esbuild/darwin-x64": "npm:0.27.7" - "@esbuild/freebsd-arm64": "npm:0.27.7" - "@esbuild/freebsd-x64": "npm:0.27.7" - "@esbuild/linux-arm": "npm:0.27.7" - "@esbuild/linux-arm64": "npm:0.27.7" - "@esbuild/linux-ia32": "npm:0.27.7" - "@esbuild/linux-loong64": "npm:0.27.7" - "@esbuild/linux-mips64el": "npm:0.27.7" - "@esbuild/linux-ppc64": "npm:0.27.7" - "@esbuild/linux-riscv64": "npm:0.27.7" - "@esbuild/linux-s390x": "npm:0.27.7" - "@esbuild/linux-x64": "npm:0.27.7" - "@esbuild/netbsd-arm64": "npm:0.27.7" - "@esbuild/netbsd-x64": "npm:0.27.7" - "@esbuild/openbsd-arm64": "npm:0.27.7" - "@esbuild/openbsd-x64": "npm:0.27.7" - "@esbuild/openharmony-arm64": "npm:0.27.7" - "@esbuild/sunos-x64": "npm:0.27.7" - "@esbuild/win32-arm64": "npm:0.27.7" - "@esbuild/win32-ia32": "npm:0.27.7" - "@esbuild/win32-x64": "npm:0.27.7" + checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b + languageName: node + linkType: hard + +"esbuild@npm:^0.27.0 || ^0.28.0, esbuild@npm:~0.28.0": + version: 0.28.1 + resolution: "esbuild@npm:0.28.1" + dependencies: + "@esbuild/aix-ppc64": "npm:0.28.1" + "@esbuild/android-arm": "npm:0.28.1" + "@esbuild/android-arm64": "npm:0.28.1" + "@esbuild/android-x64": "npm:0.28.1" + "@esbuild/darwin-arm64": "npm:0.28.1" + "@esbuild/darwin-x64": "npm:0.28.1" + "@esbuild/freebsd-arm64": "npm:0.28.1" + "@esbuild/freebsd-x64": "npm:0.28.1" + "@esbuild/linux-arm": "npm:0.28.1" + "@esbuild/linux-arm64": "npm:0.28.1" + "@esbuild/linux-ia32": "npm:0.28.1" + "@esbuild/linux-loong64": "npm:0.28.1" + "@esbuild/linux-mips64el": "npm:0.28.1" + "@esbuild/linux-ppc64": "npm:0.28.1" + "@esbuild/linux-riscv64": "npm:0.28.1" + "@esbuild/linux-s390x": "npm:0.28.1" + "@esbuild/linux-x64": "npm:0.28.1" + "@esbuild/netbsd-arm64": "npm:0.28.1" + "@esbuild/netbsd-x64": "npm:0.28.1" + "@esbuild/openbsd-arm64": "npm:0.28.1" + "@esbuild/openbsd-x64": "npm:0.28.1" + "@esbuild/openharmony-arm64": "npm:0.28.1" + "@esbuild/sunos-x64": "npm:0.28.1" + "@esbuild/win32-arm64": "npm:0.28.1" + "@esbuild/win32-ia32": "npm:0.28.1" + "@esbuild/win32-x64": "npm:0.28.1" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -6602,7 +6154,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/ccd51f0555708bc9ff4ec9dc3ac92d3daacd45ecaac949ca8645984c5c323bf8cefe98c2df307418685e0b4ce37f9a3bdbfe8e3651fe632a0059a436195a17d4 + checksum: 10c0/29cd456a79ce35ac2c7e05fe871330416b2c395c045d849653f843e51378d6e0d6e774d6dcd01b35f4e83238a29bf8decd04fcd34b3780c589a250b21e5f92bb languageName: node linkType: hard @@ -6649,23 +6201,23 @@ __metadata: linkType: hard "eslint-config-prettier@npm:^9.0.0": - version: 9.1.0 - resolution: "eslint-config-prettier@npm:9.1.0" + version: 9.1.2 + resolution: "eslint-config-prettier@npm:9.1.2" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d + checksum: 10c0/d2e9dc913b1677764a4732433d83d258f40820458c65d0274cb9e3eaf6559b39f2136446f310c05abed065a4b3c2e901807ccf583dff76c6227eaebf4132c39a languageName: node linkType: hard "eslint-formatter-codeframe@npm:^7.32.1": - version: 7.32.1 - resolution: "eslint-formatter-codeframe@npm:7.32.1" + version: 7.32.2 + resolution: "eslint-formatter-codeframe@npm:7.32.2" dependencies: "@babel/code-frame": "npm:7.12.11" chalk: "npm:^4.0.0" - checksum: 10c0/dcde3de808e3c039919e184d0f3752d786f312ac350db65a64bfed38e43c1fc6129127c7fda29938f81a690b79481d83706a351299268ab7983ed619bf9437b9 + checksum: 10c0/faf4bad2cfe24e2083be647ba5127b4c80628db90fcfdbd0b5300c498686f9e733efcef924f4be3df06f3dda13515f85e9103be631e0ec6d5940691022021a20 languageName: node linkType: hard @@ -6683,11 +6235,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.0.1": - version: 5.4.0 - resolution: "eslint-plugin-prettier@npm:5.4.0" + version: 5.5.6 + resolution: "eslint-plugin-prettier@npm:5.5.6" dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.11.0" + prettier-linter-helpers: "npm:^1.0.1" + synckit: "npm:^0.11.13" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -6698,7 +6250,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10c0/50718d16266dfbe6909697f9d7c9188d2664f5be50fa1de4decc0c8236565570823fdf5973f89cd51254af5551b6160650e092716002a62aaa0f0b2c18e8fc3e + checksum: 10c0/af37126c947ff3e87ff1ea76408db8cb1c7da966ebdaba68c6dd5924da7eb1b43b1abc4796d753a97b1bc26ea94c5497093e6ab9f8588fffe558d5a554e19bbf languageName: node linkType: hard @@ -6831,11 +6383,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2, esquery@npm:^1.5.0": - version: 1.6.0 - resolution: "esquery@npm:1.6.0" + version: 1.7.0 + resolution: "esquery@npm:1.7.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 + checksum: 10c0/77d5173db450b66f3bc685d11af4c90cffeedb340f34a39af96d43509a335ce39c894fd79233df32d38f5e4e219fa0f7076f6ec90bae8320170ba082c0db4793 languageName: node linkType: hard @@ -6909,9 +6461,9 @@ __metadata: linkType: hard "eventsource-parser@npm:^3.0.0, eventsource-parser@npm:^3.0.1": - version: 3.0.8 - resolution: "eventsource-parser@npm:3.0.8" - checksum: 10c0/3a73eee85311f33b12fa558381a477c1bdcf8c024a429a9d48f87b043e328c26d24ed280fd7ca92e2fdd4c8c37f749b758420c1533778aaca2beabf895024efa + version: 3.1.0 + resolution: "eventsource-parser@npm:3.1.0" + checksum: 10c0/5ab4c6c9a2a042be0b387b6d03810eb580bac4ce90e299ede56458125a97ffe3af8145b2740089fc898a96cfa5aae792ee79f2a06257fba2776b0e7bce037071 languageName: node linkType: hard @@ -6972,23 +6524,23 @@ __metadata: linkType: hard "expect-type@npm:^1.2.1": - version: 1.3.0 - resolution: "expect-type@npm:1.3.0" - checksum: 10c0/8412b3fe4f392c420ab41dae220b09700e4e47c639a29ba7ba2e83cc6cffd2b4926f7ac9e47d7e277e8f4f02acda76fd6931cb81fd2b382fa9477ef9ada953fd + version: 1.4.0 + resolution: "expect-type@npm:1.4.0" + checksum: 10c0/d40d76b8570695d36587beb3cc28494da2ca3ec8f04e67f5622ed2d372d850e401a9adef19c6835e1a8173903f157c79540b34c7b3fbd7cd8ce726cc903c57b7 languageName: node linkType: hard -"expect@npm:30.3.0": - version: 30.3.0 - resolution: "expect@npm:30.3.0" +"expect@npm:30.4.1": + version: 30.4.1 + resolution: "expect@npm:30.4.1" dependencies: - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - checksum: 10c0/a07a157a0c8b3f1e29bfe5ccbf03a3add2c69fe60d1af8a0980053bb6403d721d5f5e4616f1ea5833b747913f8c880c79ce4d98c23a71a2f0c27cf7273892576 + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + checksum: 10c0/ad04fbdffac5a2bae186478938a60f737e3aac823db9a80c87f3f390f9f458bddcc454dc3a3997d715706747c6aff928923e6a71db3a221adb89a51cc1582e72 languageName: node linkType: hard @@ -7000,13 +6552,14 @@ __metadata: linkType: hard "express-rate-limit@npm:^8.2.1": - version: 8.4.1 - resolution: "express-rate-limit@npm:8.4.1" + version: 8.6.0 + resolution: "express-rate-limit@npm:8.6.0" dependencies: - ip-address: "npm:10.1.0" + debug: "npm:^4.4.3" + ip-address: "npm:^10.2.0" peerDependencies: express: ">= 4.11" - checksum: 10c0/ead87bcf7b9b4094d2a597b6a77569eed34c7d2ff3a449eeef25e1cd4a96dc3de17b8da93e8cf82f757ef441974846138b4bc371621fbc72346f8cc4a07a712b + checksum: 10c0/cce72e87963d90797ddced59de71046b90ca3ca088ab8e73587b50e812aaefa0b79f5a779743034f3ada01fd27d5c7f82063992a02981c7bc9ac74f8b01bb41a languageName: node linkType: hard @@ -7134,11 +6687,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.19.1 - resolution: "fastq@npm:1.19.1" + version: 1.20.1 + resolution: "fastq@npm:1.20.1" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630 + checksum: 10c0/e5dd725884decb1f11e5c822221d76136f239d0236f176fab80b7b8f9e7619ae57e6b4e5b73defc21e6b9ef99437ee7b545cff8e6c2c337819633712fa9d352e languageName: node linkType: hard @@ -7163,14 +6716,7 @@ __metadata: languageName: node linkType: hard -"fflate@npm:^0.8.0": - version: 0.8.2 - resolution: "fflate@npm:0.8.2" - checksum: 10c0/03448d630c0a583abea594835a9fdb2aaf7d67787055a761515bf4ed862913cfd693b4c4ffd5c3f3b355a70cf1e19033e9ae5aedcca103188aaff91b8bd6e293 - languageName: node - linkType: hard - -"fflate@npm:^0.8.1": +"fflate@npm:^0.8.0, fflate@npm:^0.8.1": version: 0.8.3 resolution: "fflate@npm:0.8.3" checksum: 10c0/eab181ca37f5348ae76d4b6f840e0026e30220e33153289ac942222d8b9638237d486507dbcc09878d724095bd354993a2ee48bbee99c8f2c6440d4448719aa7 @@ -7178,11 +6724,13 @@ __metadata: linkType: hard "figlet@npm:^1.1.1": - version: 1.8.1 - resolution: "figlet@npm:1.8.1" + version: 1.11.3 + resolution: "figlet@npm:1.11.3" + dependencies: + commander: "npm:^14.0.0" bin: figlet: bin/index.js - checksum: 10c0/20a9023ee316b2cbbeb9ba94c9adfdb9fc1bd150efec0ddd3492c23a03e3311ac77fb1a65cfa14e3bf4eca250ddcf98ca380871222cb9909bd50071b3602e8da + checksum: 10c0/9aaff7e7e5cdfe15df50b3a6204f74096c1afd2bc18e22e6f4bf6468b827313c100ab43e58bb23bcc66523c7fd9c87ad19ff6d3d58807b619a32a9c9bef3bd23 languageName: node linkType: hard @@ -7395,15 +6943,15 @@ __metadata: linkType: hard "form-data@npm:^4.0.5": - version: 4.0.5 - resolution: "form-data@npm:4.0.5" + version: 4.0.6 + resolution: "form-data@npm:4.0.6" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" es-set-tostringtag: "npm:^2.1.0" - hasown: "npm:^2.0.2" - mime-types: "npm:^2.1.12" - checksum: 10c0/dd6b767ee0bbd6d84039db12a0fa5a2028160ffbfaba1800695713b46ae974a5f6e08b3356c3195137f8530dcd9dfcb5d5ae1eeff53d0db1e5aad863b619ce3b + hasown: "npm:^2.0.4" + mime-types: "npm:^2.1.35" + checksum: 10c0/43947a77bf0ff45c6ceed789778982d47a3f3e720a74b71721174ebf3310a5f1a8be1d6b38a3ee3688e8a18a2c4273073ec0844cd37efda3eaf46d41c9c318ff languageName: node linkType: hard @@ -7425,13 +6973,6 @@ __metadata: languageName: node linkType: hard -"fresh@npm:0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a - languageName: node - linkType: hard - "fresh@npm:^2.0.0": version: 2.0.0 resolution: "fresh@npm:2.0.0" @@ -7439,6 +6980,13 @@ __metadata: languageName: node linkType: hard +"fresh@npm:~0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a + languageName: node + linkType: hard + "fromentries@npm:^1.2.0": version: 1.3.2 resolution: "fromentries@npm:1.3.2" @@ -7453,35 +7001,25 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^8.1.0": - version: 8.1.0 - resolution: "fs-extra@npm:8.1.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^4.0.0" - universalify: "npm:^0.1.0" - checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 - languageName: node - linkType: hard - -"fs-extra@npm:^9.0.0": - version: 9.1.0 - resolution: "fs-extra@npm:9.1.0" +"fs-extra@npm:^10.0.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" dependencies: - at-least-node: "npm:^1.0.0" graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 10c0/9b808bd884beff5cb940773018179a6b94a966381d005479f00adda6b44e5e3d4abf765135773d849cc27efe68c349e4a7b86acd7d3306d5932c14f3a4b17a92 + checksum: 10c0/5f579466e7109719d162a9249abbeffe7f426eb133ea486e020b89bc6d67a741134076bf439983f2eb79276ceaf6bd7b7c1e43c3fd67fe889863e69072fb0a5e languageName: node linkType: hard -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 10c0/259f7b814d9e50d686899550c4f9ded85c46c643f7fe19be69504888e007fcbc08f306fae8ec495b8b998635e997c9e3e175ff2eeed230524ef1c1684cc96423 languageName: node linkType: hard @@ -7544,6 +7082,13 @@ __metadata: languageName: node linkType: hard +"generator-function@npm:^2.0.0": + version: 2.0.1 + resolution: "generator-function@npm:2.0.1" + checksum: 10c0/8a9f59df0f01cfefafdb3b451b80555e5cf6d76487095db91ac461a0e682e4ff7a9dbce15f4ecec191e53586d59eece01949e05a4b4492879600bbbe8e28d6b8 + languageName: node + linkType: hard + "gensync@npm:^1.0.0-beta.2": version: 1.0.0-beta.2 resolution: "gensync@npm:1.0.0-beta.2" @@ -7551,10 +7096,10 @@ __metadata: languageName: node linkType: hard -"geojson-vt@npm:^4.0.2": - version: 4.0.2 - resolution: "geojson-vt@npm:4.0.2" - checksum: 10c0/f2ca14d868e46f6262f5d3862f8e38a2418ecf9bd7cd6938a67bf87f1e2f8fbf65345d95996711b07cdf8f05ef512be0e2c20f0a8179c6393c2fd41badcb0532 +"geojson-vt@npm:^4.0.3": + version: 4.0.3 + resolution: "geojson-vt@npm:4.0.3" + checksum: 10c0/e53d8c1177adbac0d684328de14c45d95a74f60332e610a29a48e3bbf91d88fec7dbbbcf3fe5825bd275c73ee2a5dd7f5d46faa3086478a255479c493e321a1d languageName: node linkType: hard @@ -7589,20 +7134,23 @@ __metadata: linkType: hard "get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.3.0": - version: 1.3.0 - resolution: "get-intrinsic@npm:1.3.0" + version: 1.3.1 + resolution: "get-intrinsic@npm:1.3.1" dependencies: + async-function: "npm:^1.0.0" + async-generator-function: "npm:^1.0.0" call-bind-apply-helpers: "npm:^1.0.2" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" function-bind: "npm:^1.1.2" + generator-function: "npm:^2.0.0" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" math-intrinsics: "npm:^1.1.0" - checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a + checksum: 10c0/9f4ab0cf7efe0fd2c8185f52e6f637e708f3a112610c88869f8f041bb9ecc2ce44bf285dfdbdc6f4f7c277a5b88d8e94a432374d97cca22f3de7fc63795deb5d languageName: node linkType: hard @@ -7620,7 +7168,7 @@ __metadata: languageName: node linkType: hard -"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": +"get-proto@npm:^1.0.1": version: 1.0.1 resolution: "get-proto@npm:1.0.1" dependencies: @@ -7662,15 +7210,6 @@ __metadata: languageName: node linkType: hard -"get-tsconfig@npm:^4.7.5": - version: 4.13.6 - resolution: "get-tsconfig@npm:4.13.6" - dependencies: - resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/bab6937302f542f97217cbe7cbbdfa7e85a56a377bc7a73e69224c1f0b7c9ae8365918e55752ae8648265903f506c1705f63c0de1d4bab1ec2830fef3e539a1a - languageName: node - linkType: hard - "getpass@npm:^0.1.1": version: 0.1.7 resolution: "getpass@npm:0.1.7" @@ -7698,7 +7237,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.0.0, glob@npm:^10.5.0": +"glob@npm:^10.0.0, glob@npm:^10.4.1, glob@npm:^10.5.0": version: 10.5.0 resolution: "glob@npm:10.5.0" dependencies: @@ -7714,23 +7253,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.4.1": - version: 10.4.5 - resolution: "glob@npm:10.4.5" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^3.1.2" - minimatch: "npm:^9.0.4" - minipass: "npm:^7.1.2" - package-json-from-dist: "npm:^1.0.0" - path-scurry: "npm:^1.11.1" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e - languageName: node - linkType: hard - -"glob@npm:^13.0.0, glob@npm:^13.0.3, glob@npm:^13.0.6": +"glob@npm:^13.0.3, glob@npm:^13.0.6": version: 13.0.6 resolution: "glob@npm:13.0.6" dependencies: @@ -7741,7 +7264,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6, glob@npm:^7.1.7": +"glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: @@ -7796,13 +7319,6 @@ __metadata: languageName: node linkType: hard -"globals@npm:^11.1.0": - version: 11.12.0 - resolution: "globals@npm:11.12.0" - checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 - languageName: node - linkType: hard - "globals@npm:^13.19.0, globals@npm:^13.24.0": version: 13.24.0 resolution: "globals@npm:13.24.0" @@ -7834,11 +7350,11 @@ __metadata: linkType: hard "goober@npm:^2.1.16": - version: 2.1.18 - resolution: "goober@npm:2.1.18" + version: 2.1.19 + resolution: "goober@npm:2.1.19" peerDependencies: csstype: ^3.0.10 - checksum: 10c0/de9bf7b6f57417900afac81a479b85d8c0bcb0322ba8b174f9287d10e7891ba7e33db5fe2b0cdd75281c69130e76eb0c694345acf45ea57e4e4a2db8e4c4f021 + checksum: 10c0/f6a01f2e8abfef571ac539f96e650dcde964e7c0bef6c9055a8c8e110624ccd7b51ab90706a806ca570a56141ea689d355fb1cec3ee9209499c249638883990d languageName: node linkType: hard @@ -7882,13 +7398,6 @@ __metadata: languageName: node linkType: hard -"gud@npm:^1.0.0": - version: 1.0.0 - resolution: "gud@npm:1.0.0" - checksum: 10c0/a4db6edc18e2c4e3a22dc9e639e40a4e5650d53dae9cf384a96d5380dfa17ddda376cf6b7797a5c30d140d2532e5a69d167bdb70c2c151dd673253bac6b027f3 - languageName: node - linkType: hard - "har-schema@npm:^2.0.0": version: 2.0.0 resolution: "har-schema@npm:2.0.0" @@ -7978,12 +7487,12 @@ __metadata: languageName: node linkType: hard -"hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" +"hasown@npm:^2.0.2, hasown@npm:^2.0.3, hasown@npm:^2.0.4": + version: 2.0.4 + resolution: "hasown@npm:2.0.4" dependencies: function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + checksum: 10c0/2d8de939e270b70618f8cebb69746620db10617dbb495bc66ddad326955ea24d3ca4af133aff3eb7c1853e0218f867bc2b050ec26fe02e3aea58f880ffc5e506 languageName: node linkType: hard @@ -8059,26 +7568,13 @@ __metadata: languageName: node linkType: hard -"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1": +"http-cache-semantics@npm:^4.0.0": version: 4.2.0 resolution: "http-cache-semantics@npm:4.2.0" checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37 languageName: node linkType: hard -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: "npm:2.0.0" - inherits: "npm:2.0.4" - setprototypeof: "npm:1.2.0" - statuses: "npm:2.0.1" - toidentifier: "npm:1.0.1" - checksum: 10c0/fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 - languageName: node - linkType: hard - "http-errors@npm:^2.0.0, http-errors@npm:^2.0.1, http-errors@npm:~2.0.1": version: 2.0.1 resolution: "http-errors@npm:2.0.1" @@ -8092,7 +7588,7 @@ __metadata: languageName: node linkType: hard -"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.2": +"http-proxy-agent@npm:^7.0.2": version: 7.0.2 resolution: "http-proxy-agent@npm:7.0.2" dependencies: @@ -8123,7 +7619,7 @@ __metadata: languageName: node linkType: hard -"https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.6": +"https-proxy-agent@npm:^7.0.6": version: 7.0.6 resolution: "https-proxy-agent@npm:7.0.6" dependencies: @@ -8149,12 +7645,12 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.7.0, iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": - version: 0.7.2 - resolution: "iconv-lite@npm:0.7.2" +"iconv-lite@npm:^0.7.2, iconv-lite@npm:~0.7.0": + version: 0.7.3 + resolution: "iconv-lite@npm:0.7.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722 + checksum: 10c0/be2fd2414f7e94be3a63063fa0ad5919c16bc7b6e00c77eea0765ced6db405739f38dd51016583058fba25cc1d0106ba30b83fbb7a7e32f824d4db76f23d8d33 languageName: node linkType: hard @@ -8173,9 +7669,9 @@ __metadata: linkType: hard "immer@npm:^11.0.0": - version: 11.1.4 - resolution: "immer@npm:11.1.4" - checksum: 10c0/77beca6b0a4e361b30414189d63c64beb7df40ac1d8cbf524308fcbabe755e9aa49db3c6e95a6e412911416fec621f2c8470be5ec79feedc6abd6e4f7f18a9ce + version: 11.1.15 + resolution: "immer@npm:11.1.15" + checksum: 10c0/5215eaec9641ad786ae8940a489514c26ce3726f8c49f0191a754902800f3ddd102b0653e894cabe7049d93e77b86d67d19953e778ffebba56848739a31b3b79 languageName: node linkType: hard @@ -8232,7 +7728,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": +"inherits@npm:2, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3, inherits@npm:~2.0.4": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 @@ -8271,14 +7767,7 @@ __metadata: languageName: node linkType: hard -"ip-address@npm:10.1.0": - version: 10.1.0 - resolution: "ip-address@npm:10.1.0" - checksum: 10c0/0103516cfa93f6433b3bd7333fa876eb21263912329bfa47010af5e16934eeeff86f3d2ae700a3744a137839ddfad62b900c7a445607884a49b5d1e32a3d7566 - languageName: node - linkType: hard - -"ip-address@npm:^10.0.1": +"ip-address@npm:^10.2.0": version: 10.2.0 resolution: "ip-address@npm:10.2.0" checksum: 10c0/5a00aada6e922c9c69dfc800ed5d0fa3348675ebdeed0e1575f503f27ca385b5f534363c9af7ad1daf64c1f1409388cdd3cc2e9b9b0fe1c924a431378d55075a @@ -8375,12 +7864,12 @@ __metadata: languageName: node linkType: hard -"is-core-module@npm:^2.16.0": - version: 2.16.1 - resolution: "is-core-module@npm:2.16.1" +"is-core-module@npm:^2.16.1": + version: 2.16.2 + resolution: "is-core-module@npm:2.16.2" dependencies: - hasown: "npm:^2.0.2" - checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd + hasown: "npm:^2.0.3" + checksum: 10c0/14b4258390283709c15476d023ec173e27458d5d014ccdb8ed39d576e551c3fa45498b7c9fe178f1529c4cb2648ddd58852a6a62107a019f6e349529f277518a languageName: node linkType: hard @@ -8434,14 +7923,15 @@ __metadata: linkType: hard "is-generator-function@npm:^1.0.7": - version: 1.1.0 - resolution: "is-generator-function@npm:1.1.0" + version: 1.1.2 + resolution: "is-generator-function@npm:1.1.2" dependencies: - call-bound: "npm:^1.0.3" - get-proto: "npm:^1.0.0" + call-bound: "npm:^1.0.4" + generator-function: "npm:^2.0.0" + get-proto: "npm:^1.0.1" has-tostringtag: "npm:^1.0.2" safe-regex-test: "npm:^1.1.0" - checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a + checksum: 10c0/83da102e89c3e3b71d67b51d47c9f9bc862bceb58f87201727e27f7fa19d1d90b0ab223644ecaee6fc6e3d2d622bb25c966fbdaf87c59158b01ce7c0fe2fa372 languageName: node linkType: hard @@ -8569,13 +8059,20 @@ __metadata: languageName: node linkType: hard -"is-stream@npm:^2.0.0, is-stream@npm:^2.0.1": +"is-stream@npm:^2.0.0": version: 2.0.1 resolution: "is-stream@npm:2.0.1" checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 languageName: node linkType: hard +"is-stream@npm:^4.0.0": + version: 4.0.1 + resolution: "is-stream@npm:4.0.1" + checksum: 10c0/2706c7f19b851327ba374687bc4a3940805e14ca496dc672b9629e744d143b1ad9c6f1b162dece81c7bfbc0f83b32b61ccc19ad2e05aad2dd7af347408f60c7f + languageName: node + linkType: hard + "is-string@npm:^1.0.7, is-string@npm:^1.1.1": version: 1.1.1 resolution: "is-string@npm:1.1.1" @@ -8806,7 +8303,7 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3": +"istanbul-reports@npm:^3.0.2, istanbul-reports@npm:^3.1.3, istanbul-reports@npm:^3.1.7": version: 3.2.0 resolution: "istanbul-reports@npm:3.2.0" dependencies: @@ -8816,16 +8313,6 @@ __metadata: languageName: node linkType: hard -"istanbul-reports@npm:^3.1.7": - version: 3.1.7 - resolution: "istanbul-reports@npm:3.1.7" - dependencies: - html-escaper: "npm:^2.0.0" - istanbul-lib-report: "npm:^3.0.0" - checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 - languageName: node - linkType: hard - "jackspeak@npm:^3.1.2": version: 3.4.3 resolution: "jackspeak@npm:3.4.3" @@ -8839,58 +8326,58 @@ __metadata: languageName: node linkType: hard -"jest-changed-files@npm:30.3.0": - version: 30.3.0 - resolution: "jest-changed-files@npm:30.3.0" +"jest-changed-files@npm:30.4.1": + version: 30.4.1 + resolution: "jest-changed-files@npm:30.4.1" dependencies: execa: "npm:^5.1.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - checksum: 10c0/5a2f9790f8ab7f5804ebbf0fcdd908c40286d602d76abbecc6bea72e7f3c60b77dc8a3d3f5acdddd11653b2574f471a5c126ceda0734bc6a7d607cf145843525 + checksum: 10c0/324bbec3920a7d9ceb1d11872b9f1befe73d152a7ef289243f663bf3b22afe124c2c656ec316e44393f30a83b74a1738b56307a066906fa49b800686fd4d0f04 languageName: node linkType: hard -"jest-circus@npm:30.3.0, jest-circus@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-circus@npm:30.3.0" +"jest-circus@npm:30.4.2, jest-circus@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-circus@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/expect": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/expect": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" co: "npm:^4.6.0" dedent: "npm:^1.6.0" is-generator-fn: "npm:^2.1.0" - jest-each: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-each: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" p-limit: "npm:^3.1.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" pure-rand: "npm:^7.0.0" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/a3a0eb973699b400fb6de4207a7fbc5b33f51523e5e94f954d0e6e60418ea95099883614495fce54d805a321cb65e883592048b73203a59b8f4e53d1bb975a07 + checksum: 10c0/5d99f1336eb249057063a007fabad4ced802501fbaad7ddeea8db9553fa54fbd44d26e71e8bf61a0979d42b3b93a3d920e6f00afa26cdbb70d1e7d0969515d10 languageName: node linkType: hard -"jest-cli@npm:30.3.0": - version: 30.3.0 - resolution: "jest-cli@npm:30.3.0" +"jest-cli@npm:30.4.2": + version: 30.4.2 + resolution: "jest-cli@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" exit-x: "npm:^0.2.2" import-local: "npm:^3.2.0" - jest-config: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-config: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" yargs: "npm:^17.7.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -8899,35 +8386,35 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/764d77551e0fb6d666212e89d01be6f7bb1a2b3adb918bba7c5c37593a11b01cf2af645506c2b6438335cfc79bfcf41bfd4680958d8ca751851752a7c66269d3 + checksum: 10c0/a036a1bf06ce7d5fed644a518c4a4ccf60c5fe5f3d96d143973048e6690c4a28a4f97fa3275d90ca236430a1b2a7c10544e7e190a4f2edfdf0a4e6daf1f6a384 languageName: node linkType: hard -"jest-config@npm:30.3.0": - version: 30.3.0 - resolution: "jest-config@npm:30.3.0" +"jest-config@npm:30.4.2": + version: 30.4.2 + resolution: "jest-config@npm:30.4.2" dependencies: "@babel/core": "npm:^7.27.4" "@jest/get-type": "npm:30.1.0" - "@jest/pattern": "npm:30.0.1" - "@jest/test-sequencer": "npm:30.3.0" - "@jest/types": "npm:30.3.0" - babel-jest: "npm:30.3.0" + "@jest/pattern": "npm:30.4.0" + "@jest/test-sequencer": "npm:30.4.1" + "@jest/types": "npm:30.4.1" + babel-jest: "npm:30.4.1" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" deepmerge: "npm:^4.3.1" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-circus: "npm:30.3.0" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-runner: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-circus: "npm:30.4.2" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-runner: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" parse-json: "npm:^5.2.0" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" strip-json-comments: "npm:^3.1.1" peerDependencies: @@ -8941,78 +8428,78 @@ __metadata: optional: true ts-node: optional: true - checksum: 10c0/157607e5ac5e83924df97d992fbd40a1540af07c5a7be296fae49455b3729687847304f3b4a9112e7da17593b76cec3453cd55c1ecd4334f7318f2489d7d10a1 + checksum: 10c0/18300b1dc54a4bfb5d1db6c10aeb01b6c64736224e3f60d119da9504d49cbab5a76d789f38c44af7d168418463356db6843ad7e44f249c63ce7f409758eba0c6 languageName: node linkType: hard -"jest-diff@npm:30.3.0": - version: 30.3.0 - resolution: "jest-diff@npm:30.3.0" +"jest-diff@npm:30.4.1": + version: 30.4.1 + resolution: "jest-diff@npm:30.4.1" dependencies: - "@jest/diff-sequences": "npm:30.3.0" + "@jest/diff-sequences": "npm:30.4.0" "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - pretty-format: "npm:30.3.0" - checksum: 10c0/573a2a1a155b95fbde547d8ee33a5375179a8d03d4586025478dac16d695e4614aef075c3afa57e0f3a96cea8f638fa68a55c1e625f6e86b4f5b9e5850311ffb + pretty-format: "npm:30.4.1" + checksum: 10c0/787e11f0ea27e94815479d6c5415e4173da1e74bede34c1515b8515fc9d1fe053e2ad25a3c31f9998a7292c186a0e4d395ed82e0e149d57d7708ee6759b442e9 languageName: node linkType: hard -"jest-docblock@npm:30.2.0": - version: 30.2.0 - resolution: "jest-docblock@npm:30.2.0" +"jest-docblock@npm:30.4.0": + version: 30.4.0 + resolution: "jest-docblock@npm:30.4.0" dependencies: detect-newline: "npm:^3.1.0" - checksum: 10c0/2578366604eef1b36d59ffe1fc52a710995571535d437f83d94ff94756a83f78e699c1ba004c38a34c01859d669fd6c64e865c23c5a7d5bf4837cfca4bef3dda + checksum: 10c0/1fe1c971207e1b905e4f23d98e508a03ae631337e9ffa347ff2f6df81a1d75ced7ed3e52a809fad75fb8a8cd55b6bda4483bc124e5e1d7529eeb4ef76b29e913 languageName: node linkType: hard -"jest-each@npm:30.3.0": - version: 30.3.0 - resolution: "jest-each@npm:30.3.0" +"jest-each@npm:30.4.1": + version: 30.4.1 + resolution: "jest-each@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" chalk: "npm:^4.1.2" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/d23d2b43b3ea42beaf99648e2cf1c74b8a13c3e45c7c882979171471c225f7d666cb4a0d5f1ff9031b4504866fa3badc7266ffd885d3d8035420c559a31501e1 + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/41bc1cec23901cb0c7d8f547a70574fffca8cc16a1660ed97645bf3b61f4e6151aaa58bb14ce55a3cd9f5a63a2cc782a39366caf3304a2159d1e3cc5ae79a9e4 languageName: node linkType: hard -"jest-environment-node@npm:30.3.0, jest-environment-node@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-environment-node@npm:30.3.0" +"jest-environment-node@npm:30.4.1, jest-environment-node@npm:^30.0.4": + version: 30.4.1 + resolution: "jest-environment-node@npm:30.4.1" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-mock: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" - checksum: 10c0/2a4be80861e569fa11456d89ff2aaedd71726ae02ade8f2cc6fbc86ba8749e24c37864676c4718fc08a40f6e6d2b2b51bc48d715b09b1e93e15e42e4a10f7b5b + jest-mock: "npm:30.4.1" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" + checksum: 10c0/d8d6bb22bfd280f077b5856558d9d7112c48fd3bae6eda9b76694f1c8e1be783a725686a137437d180c9d49e6b37386c8e342e0b8e5bfcb6526dee9c10cc31ec languageName: node linkType: hard -"jest-haste-map@npm:30.3.0": - version: 30.3.0 - resolution: "jest-haste-map@npm:30.3.0" +"jest-haste-map@npm:30.4.1": + version: 30.4.1 + resolution: "jest-haste-map@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" anymatch: "npm:^3.1.3" fb-watchman: "npm:^2.0.2" fsevents: "npm:^2.3.3" graceful-fs: "npm:^4.2.11" - jest-regex-util: "npm:30.0.1" - jest-util: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-regex-util: "npm:30.4.0" + jest-util: "npm:30.4.1" + jest-worker: "npm:30.4.1" picomatch: "npm:^4.0.3" walker: "npm:^1.0.8" dependenciesMeta: fsevents: optional: true - checksum: 10c0/b9ef350082b15d4c119d6188f781024d859d6cfb17ae25d15c90c3a373234e16109afbeffdcf1af4baf6a85eb0cbbab00439c981ad43037c0f05d89ff98bd1af + checksum: 10c0/1350c24952bbf31c86cb1ed4e2e5edd4766a93e2be8816c4648c05463d06cfae89f3c73732f9274fdb626fdfdfe6605ed6f259b6c21257df536a6379d4b9a5e7 languageName: node linkType: hard @@ -9048,53 +8535,54 @@ __metadata: languageName: node linkType: hard -"jest-leak-detector@npm:30.3.0": - version: 30.3.0 - resolution: "jest-leak-detector@npm:30.3.0" +"jest-leak-detector@npm:30.4.1": + version: 30.4.1 + resolution: "jest-leak-detector@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/a648c082b74e6c7d0c2e890002094ba97b108398fa3d0316958fc74321aa7b0824507a685d261a463856f219a724b86a6073bac86d351cf0675ecf962c1ee0ca + pretty-format: "npm:30.4.1" + checksum: 10c0/57256ac08f12186e3ed1687126b8d75a12de9c4ffa959ff41322e9ba5f93e3ed8af91dc36bc4d59f77cef6d4008bcf5a3e646cdd950743898576aec8dbae6778 languageName: node linkType: hard -"jest-matcher-utils@npm:30.3.0": - version: 30.3.0 - resolution: "jest-matcher-utils@npm:30.3.0" +"jest-matcher-utils@npm:30.4.1": + version: 30.4.1 + resolution: "jest-matcher-utils@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" chalk: "npm:^4.1.2" - jest-diff: "npm:30.3.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/4c5f4b6435964110e64c4b5b42e3553fffe303ecdd68021147a7bcc72914aec3a899867c50db22b250c72aded53e3f7a9f64d83c9dca2e65ce27f36d23c6ca78 + jest-diff: "npm:30.4.1" + pretty-format: "npm:30.4.1" + checksum: 10c0/ddbb0c7075def27ba30160883c327cb3fd13f561f5789d00a1edca1b48b0651f8ea23a1c51bcfcb6413a68c47d658bcf47a34701b8a39ce135dd28d87a3117af languageName: node linkType: hard -"jest-message-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-message-util@npm:30.3.0" +"jest-message-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-message-util@npm:30.4.1" dependencies: "@babel/code-frame": "npm:^7.27.1" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/stack-utils": "npm:^2.0.3" chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" + jest-util: "npm:30.4.1" picomatch: "npm:^4.0.3" - pretty-format: "npm:30.3.0" + pretty-format: "npm:30.4.1" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.6" - checksum: 10c0/6ce611caef76394872b23a111286b48e56f42655d14a5fbd0629d9b7437ed892e85ad96b15864bc22185c24ef670afb6665c57b9729458a36d50ffe8310f0926 + checksum: 10c0/ae7427544e042bc1c14abf3c0dbe8b83d0dbec22a9a5efefaca5b8ccb6b9bf391abe732e6f2117ca995c6889bfe1be35c78cec75e5ea0a50e28cffe1ba6f9fdf languageName: node linkType: hard -"jest-mock@npm:30.3.0": - version: 30.3.0 - resolution: "jest-mock@npm:30.3.0" +"jest-mock@npm:30.4.1": + version: 30.4.1 + resolution: "jest-mock@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" - jest-util: "npm:30.3.0" - checksum: 10c0/9d95d550c6c998a85887c48ff5ee26de4bca18be91462ea8a8135d6023d591132465756f74981ca39b60f8708dfe38213a55bd4b619798a7b9438ca10d718099 + jest-util: "npm:30.4.1" + checksum: 10c0/5185a41255285c1634c5d85dda037afaaadfc12793b3293c9e253a30bb67449f8df968447f830abb9cf7a52e63694e6734680130e8085ce119056280890bf6fc languageName: node linkType: hard @@ -9128,96 +8616,96 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:30.0.1, jest-regex-util@npm:^30.0.0": - version: 30.0.1 - resolution: "jest-regex-util@npm:30.0.1" - checksum: 10c0/f30c70524ebde2d1012afe5ffa5691d5d00f7d5ba9e43d588f6460ac6fe96f9e620f2f9b36a02d0d3e7e77bc8efb8b3450ae3b80ac53c8be5099e01bf54f6728 +"jest-regex-util@npm:30.4.0, jest-regex-util@npm:^30.0.0": + version: 30.4.0 + resolution: "jest-regex-util@npm:30.4.0" + checksum: 10c0/fe7426f67b54d38bed8e9d6e6a099d63d72f41f5bf65b922d9d03fedcb55c614b45657207632f6ee22d0a59d8d11327891f258d23f68a58912fcdb0f7db48435 languageName: node linkType: hard -"jest-resolve-dependencies@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve-dependencies@npm:30.3.0" +"jest-resolve-dependencies@npm:30.4.2": + version: 30.4.2 + resolution: "jest-resolve-dependencies@npm:30.4.2" dependencies: - jest-regex-util: "npm:30.0.1" - jest-snapshot: "npm:30.3.0" - checksum: 10c0/25dde0c8c050bc3437332f37ab87484f597596b80ece77a93e4da2b466b42e45cc5ad748270c1477587536de15eea1ffe83a32638e824b120830c3a87c9a5b71 + jest-regex-util: "npm:30.4.0" + jest-snapshot: "npm:30.4.1" + checksum: 10c0/4101afabd2a4ef4e6c82bf82ea145286c1238373f7611938e8d47ddcf5aaa6e10af365436a934b7af194451e351774829cb021ac73f857b4873dcccc7aabb616 languageName: node linkType: hard -"jest-resolve@npm:30.3.0": - version: 30.3.0 - resolution: "jest-resolve@npm:30.3.0" +"jest-resolve@npm:30.4.1": + version: 30.4.1 + resolution: "jest-resolve@npm:30.4.1" dependencies: chalk: "npm:^4.1.2" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" jest-pnp-resolver: "npm:^1.2.3" - jest-util: "npm:30.3.0" - jest-validate: "npm:30.3.0" + jest-util: "npm:30.4.1" + jest-validate: "npm:30.4.1" slash: "npm:^3.0.0" unrs-resolver: "npm:^1.7.11" - checksum: 10c0/540f59f160c232c1b922b111a93f24ef5202d75e00f2e994de976badf6e88879893b474320ff363a6b97259a7a208b6a4f5eeabede787eea9b7912a12ac64b1b + checksum: 10c0/0a99ef4f4fd7b3678d58a5e1cf8f0b5ec1997cdba21f5d66a8b26353d57a226f8e6a5fffc450c8836e90ab0e20d5e7935d0dea939d9a9b6a08781b9a7413184c languageName: node linkType: hard -"jest-runner@npm:30.3.0, jest-runner@npm:^30.0.4": - version: 30.3.0 - resolution: "jest-runner@npm:30.3.0" +"jest-runner@npm:30.4.2, jest-runner@npm:^30.0.4": + version: 30.4.2 + resolution: "jest-runner@npm:30.4.2" dependencies: - "@jest/console": "npm:30.3.0" - "@jest/environment": "npm:30.3.0" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/console": "npm:30.4.1" + "@jest/environment": "npm:30.4.1" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" exit-x: "npm:^0.2.2" graceful-fs: "npm:^4.2.11" - jest-docblock: "npm:30.2.0" - jest-environment-node: "npm:30.3.0" - jest-haste-map: "npm:30.3.0" - jest-leak-detector: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-resolve: "npm:30.3.0" - jest-runtime: "npm:30.3.0" - jest-util: "npm:30.3.0" - jest-watcher: "npm:30.3.0" - jest-worker: "npm:30.3.0" + jest-docblock: "npm:30.4.0" + jest-environment-node: "npm:30.4.1" + jest-haste-map: "npm:30.4.1" + jest-leak-detector: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-resolve: "npm:30.4.1" + jest-runtime: "npm:30.4.2" + jest-util: "npm:30.4.1" + jest-watcher: "npm:30.4.1" + jest-worker: "npm:30.4.1" p-limit: "npm:^3.1.0" source-map-support: "npm:0.5.13" - checksum: 10c0/6fb205f48541658f0b23b6c9a6730f0133f07c994a22ef506ebfcded5bbb444b655ac828074157e6579e664609a46f6a5bf3d366b694c6c8b523b5207a70499c + checksum: 10c0/339e630fb1a7db52e208ed9f12f722122733fe9a450d9bd83c0fccc10fbc5142a8808f624c41ab1e25833af02f9c3eca85561554b75a5b3ad75b4a226f72c5cf languageName: node linkType: hard -"jest-runtime@npm:30.3.0": - version: 30.3.0 - resolution: "jest-runtime@npm:30.3.0" +"jest-runtime@npm:30.4.2": + version: 30.4.2 + resolution: "jest-runtime@npm:30.4.2" dependencies: - "@jest/environment": "npm:30.3.0" - "@jest/fake-timers": "npm:30.3.0" - "@jest/globals": "npm:30.3.0" + "@jest/environment": "npm:30.4.1" + "@jest/fake-timers": "npm:30.4.1" + "@jest/globals": "npm:30.4.1" "@jest/source-map": "npm:30.0.1" - "@jest/test-result": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" cjs-module-lexer: "npm:^2.1.0" collect-v8-coverage: "npm:^1.0.2" glob: "npm:^10.5.0" graceful-fs: "npm:^4.2.11" - jest-haste-map: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-mock: "npm:30.3.0" - jest-regex-util: "npm:30.0.1" - jest-resolve: "npm:30.3.0" - jest-snapshot: "npm:30.3.0" - jest-util: "npm:30.3.0" + jest-haste-map: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-mock: "npm:30.4.1" + jest-regex-util: "npm:30.4.0" + jest-resolve: "npm:30.4.1" + jest-snapshot: "npm:30.4.1" + jest-util: "npm:30.4.1" slash: "npm:^3.0.0" strip-bom: "npm:^4.0.0" - checksum: 10c0/79c486157a926d5be5c66356ad26cc3792cca1afb1490e255a550f52784b6c92eea42f1cb3b2c7565650ea777cf17ffc3f8e305d6b97888e7d273f6d7f282686 + checksum: 10c0/9fce55b0c78fbe47dc2c10a944e9513833fd43c14f292460ef5cdd91e375088bf35549336e66f69fc9d29bf4f410894e9a7eef0bf12a6f39d99174a5300c2c53 languageName: node linkType: hard @@ -9230,60 +8718,60 @@ __metadata: languageName: node linkType: hard -"jest-snapshot@npm:30.3.0": - version: 30.3.0 - resolution: "jest-snapshot@npm:30.3.0" +"jest-snapshot@npm:30.4.1": + version: 30.4.1 + resolution: "jest-snapshot@npm:30.4.1" dependencies: "@babel/core": "npm:^7.27.4" "@babel/generator": "npm:^7.27.5" "@babel/plugin-syntax-jsx": "npm:^7.27.1" "@babel/plugin-syntax-typescript": "npm:^7.27.1" "@babel/types": "npm:^7.27.3" - "@jest/expect-utils": "npm:30.3.0" + "@jest/expect-utils": "npm:30.4.1" "@jest/get-type": "npm:30.1.0" - "@jest/snapshot-utils": "npm:30.3.0" - "@jest/transform": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/snapshot-utils": "npm:30.4.1" + "@jest/transform": "npm:30.4.1" + "@jest/types": "npm:30.4.1" babel-preset-current-node-syntax: "npm:^1.2.0" chalk: "npm:^4.1.2" - expect: "npm:30.3.0" + expect: "npm:30.4.1" graceful-fs: "npm:^4.2.11" - jest-diff: "npm:30.3.0" - jest-matcher-utils: "npm:30.3.0" - jest-message-util: "npm:30.3.0" - jest-util: "npm:30.3.0" - pretty-format: "npm:30.3.0" + jest-diff: "npm:30.4.1" + jest-matcher-utils: "npm:30.4.1" + jest-message-util: "npm:30.4.1" + jest-util: "npm:30.4.1" + pretty-format: "npm:30.4.1" semver: "npm:^7.7.2" synckit: "npm:^0.11.8" - checksum: 10c0/c1dd295d9d4962f2504c965575212fc62a358a849c66ab96b2f6e608ebdf6a6029ca505bb0693664a54a534e581883665d404a59976a5b46b1a1f88b537e96c5 + checksum: 10c0/cebd70277b6f0d2606f22815480146cf1e37295ed69a1d16e260a99a2ab48db167857e2fb9a938923d22ac13203c83a5e31d7f066b58d87c6d42db58c914ff13 languageName: node linkType: hard -"jest-util@npm:30.3.0": - version: 30.3.0 - resolution: "jest-util@npm:30.3.0" +"jest-util@npm:30.4.1": + version: 30.4.1 + resolution: "jest-util@npm:30.4.1" dependencies: - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" chalk: "npm:^4.1.2" ci-info: "npm:^4.2.0" graceful-fs: "npm:^4.2.11" picomatch: "npm:^4.0.3" - checksum: 10c0/eea6f39e52a8cb2b1a28bb315a90dc6a8e450fffed73bb5ef4489d02d86f7d91be600d83f1dcba22956b8ac5fefa8f1b250e636c8402d3e8b50a5eec8b5963b2 + checksum: 10c0/3efe1f25e5a172d04c6af8612d82867ab603b7c1bd8cb89073ff834679b44eba178793cf3af162cf5e25be13aa736ebd23a7826683acc85bddc5873f305b1f6e languageName: node linkType: hard -"jest-validate@npm:30.3.0": - version: 30.3.0 - resolution: "jest-validate@npm:30.3.0" +"jest-validate@npm:30.4.1": + version: 30.4.1 + resolution: "jest-validate@npm:30.4.1" dependencies: "@jest/get-type": "npm:30.1.0" - "@jest/types": "npm:30.3.0" + "@jest/types": "npm:30.4.1" camelcase: "npm:^6.3.0" chalk: "npm:^4.1.2" leven: "npm:^3.1.0" - pretty-format: "npm:30.3.0" - checksum: 10c0/645629e9ae0926252dee26b0ad71b9f0392daa896328393479c63b1b13d2a70df4dac8b5053227c64e0120e930db1242897898c40706f135f20f73ef77fcf4f5 + pretty-format: "npm:30.4.1" + checksum: 10c0/23e6677ee6d06476f368c8b6d442b4207e5fbe062e74c1da3eae9ed30a18605f4e8a14809fa9cc7f22a2d8446e8de91a512f59c278720db2ad61c77dc25ffefc languageName: node linkType: hard @@ -9304,43 +8792,43 @@ __metadata: languageName: node linkType: hard -"jest-watcher@npm:30.3.0, jest-watcher@npm:^30.0.0": - version: 30.3.0 - resolution: "jest-watcher@npm:30.3.0" +"jest-watcher@npm:30.4.1, jest-watcher@npm:^30.0.0": + version: 30.4.1 + resolution: "jest-watcher@npm:30.4.1" dependencies: - "@jest/test-result": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/test-result": "npm:30.4.1" + "@jest/types": "npm:30.4.1" "@types/node": "npm:*" ansi-escapes: "npm:^4.3.2" chalk: "npm:^4.1.2" emittery: "npm:^0.13.1" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" string-length: "npm:^4.0.2" - checksum: 10c0/2631be5cc122fbf14cb0bb7566cdea6d6c432b984d8ef3c6385254bb6c378342e0754cbd2dfe094d80762d44bd1c7015de2ec2100eb6f192906619d8b229e1a5 + checksum: 10c0/a56e1714b7b0f9c620c5cee95a84a48b780093594cd188e365a24768f208714895a0deb784ee48e4eec7f1828bc00435ab3c39208d490c33be3786937e997c97 languageName: node linkType: hard -"jest-worker@npm:30.3.0": - version: 30.3.0 - resolution: "jest-worker@npm:30.3.0" +"jest-worker@npm:30.4.1": + version: 30.4.1 + resolution: "jest-worker@npm:30.4.1" dependencies: "@types/node": "npm:*" "@ungap/structured-clone": "npm:^1.3.0" - jest-util: "npm:30.3.0" + jest-util: "npm:30.4.1" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.1.1" - checksum: 10c0/25dfb1bc43d389e1daf8baad0ef7964249f001a7da7d92c61e398840424ca13fb1fb6242f6e021f0cbb37952f90371fb8be1ef0183b5d04ef161fdb8f09ee78e + checksum: 10c0/3eb7ec7e928b82491e66ae6709e3a1eef3edad2bc351514a5d52037b997151989de6ce2912d6a5a3806ae3ae3bf6a1c36b1ad7bbc567d0790503fdb74576f140 languageName: node linkType: hard "jest@npm:^30.0.4": - version: 30.3.0 - resolution: "jest@npm:30.3.0" + version: 30.4.2 + resolution: "jest@npm:30.4.2" dependencies: - "@jest/core": "npm:30.3.0" - "@jest/types": "npm:30.3.0" + "@jest/core": "npm:30.4.2" + "@jest/types": "npm:30.4.1" import-local: "npm:^3.2.0" - jest-cli: "npm:30.3.0" + jest-cli: "npm:30.4.2" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -9348,26 +8836,26 @@ __metadata: optional: true bin: jest: ./bin/jest.js - checksum: 10c0/1f940424b741d1541c3d71e311f77c3cfaf31cff9ab2d53180333f00a31f157790a8d3d413b72b8dd2bb191aa75769fa741d9bc9085df779cd59689559a65815 + checksum: 10c0/26a76eaabfc043abd8ee702b97f61ff968dde03412efdb4a69c22c99a5e4bf47788a3e45f75134aec1377a686a9d59d1e3bae85a816e409013475a80de1458ec languageName: node linkType: hard "joi@npm:^17.11.0": - version: 17.13.3 - resolution: "joi@npm:17.13.3" + version: 17.13.4 + resolution: "joi@npm:17.13.4" dependencies: "@hapi/hoek": "npm:^9.3.0" "@hapi/topo": "npm:^5.1.0" "@sideway/address": "npm:^4.1.5" "@sideway/formula": "npm:^3.0.1" "@sideway/pinpoint": "npm:^2.0.0" - checksum: 10c0/9262aef1da3f1bec5b03caf50c46368899fe03b8ff26cbe3d53af4584dd1049079fc97230bbf1500b6149db7cc765b9ee45f0deb24bb6fc3fa06229d7148c17f + checksum: 10c0/5addfef638e90eb6a45a72e3884128d8d9a80c487cb8bfcb949be179b875ad1095af347fa1bd05c4ebec2b2ccbc3f3db5f34501c8672ecd16100de2b77087122 languageName: node linkType: hard -"joi@npm:^18.1.2": - version: 18.1.2 - resolution: "joi@npm:18.1.2" +"joi@npm:^18.2.1": + version: 18.2.3 + resolution: "joi@npm:18.2.3" dependencies: "@hapi/address": "npm:^5.1.1" "@hapi/formula": "npm:^3.0.2" @@ -9376,14 +8864,21 @@ __metadata: "@hapi/tlds": "npm:^1.1.1" "@hapi/topo": "npm:^6.0.2" "@standard-schema/spec": "npm:^1.1.0" - checksum: 10c0/67d6fcbd81c017adf31ae6e0e6cd9d82ba25d6835d2981970ec0ea3198f2e8223aded756cdb8d5ed14fff3d6da2e2684a0767a770bcc544ce00fdcf9748e104a + checksum: 10c0/ccf2cba791968330208d05ab2e4459d1f9532a31fd5323795734184dfa628a9373bca4252fc0b636a36656c5b7be4a28e986715737a8a779b8103a28d9988cd2 languageName: node linkType: hard "jose@npm:^6.1.3": - version: 6.2.3 - resolution: "jose@npm:6.2.3" - checksum: 10c0/aa91bccba22cc84d86308f833749bcb0b00441e35c24e0ac79abeac5f76dc62d47bdef9c1da6a0c609f5da6478595f52b252085888b89dbdb163861e40ea4188 + version: 6.2.4 + resolution: "jose@npm:6.2.4" + checksum: 10c0/aaba866d71a8cd5bfd7c2c228367318df99f36318d7c6f1e7bca835c3bdd74ea3fe38783277f7bf7c9703ae24338bb3642a6ccdef6aa54c006d29a9711e6f782 + languageName: node + linkType: hard + +"js-tokens@npm:^10.0.0": + version: 10.0.0 + resolution: "js-tokens@npm:10.0.0" + checksum: 10c0/a93498747812ba3e0c8626f95f75ab29319f2a13613a0de9e610700405760931624433a0de59eb7c27ff8836e526768fb20783861b86ef89be96676f2c996b64 languageName: node linkType: hard @@ -9414,13 +8909,13 @@ __metadata: linkType: hard "js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" + version: 4.3.0 + resolution: "js-yaml@npm:4.3.0" dependencies: argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + checksum: 10c0/058b30473d6915ca5b4feb11e2f7d4d97242f98d00a798ed48dd90b46b7c640398afe9128c5db22c5300f8c6528fe2a174b9a93f351a70ebc28c6203938d8bff languageName: node linkType: hard @@ -9432,9 +8927,9 @@ __metadata: linkType: hard "jsdoc-type-pratt-parser@npm:^4.0.0": - version: 4.1.0 - resolution: "jsdoc-type-pratt-parser@npm:4.1.0" - checksum: 10c0/7700372d2e733a32f7ea0a1df9cec6752321a5345c11a91b2ab478a031a426e934f16d5c1f15c8566c7b2c10af9f27892a29c2c789039f595470e929a4aa60ea + version: 4.8.0 + resolution: "jsdoc-type-pratt-parser@npm:4.8.0" + checksum: 10c0/c2b77751d35e3931db9da96720b544b215830722b748b58ee8ce51ec72092006a4a03c5a59c86a4552d0094975c8d3bcc21a7241a0e47860e127d3fba5b55f33 languageName: node linkType: hard @@ -9588,7 +9083,7 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:6.2.1": +"jsonfile@npm:6.2.1, jsonfile@npm:^6.0.1": version: 6.2.1 resolution: "jsonfile@npm:6.2.1" dependencies: @@ -9613,19 +9108,6 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" - dependencies: - graceful-fs: "npm:^4.1.6" - universalify: "npm:^2.0.0" - dependenciesMeta: - graceful-fs: - optional: true - checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 - languageName: node - linkType: hard - "jsonify@npm:^0.0.1": version: 0.0.1 resolution: "jsonify@npm:0.0.1" @@ -9633,7 +9115,7 @@ __metadata: languageName: node linkType: hard -"jspdf@npm:^4.0.0": +"jspdf@npm:^4.2.1": version: 4.2.1 resolution: "jspdf@npm:4.2.1" dependencies: @@ -9754,99 +9236,99 @@ __metadata: languageName: node linkType: hard -"lightningcss-android-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-android-arm64@npm:1.32.0" +"lightningcss-android-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-android-arm64@npm:1.33.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-arm64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-arm64@npm:1.32.0" +"lightningcss-darwin-arm64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-arm64@npm:1.33.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lightningcss-darwin-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-darwin-x64@npm:1.32.0" +"lightningcss-darwin-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-darwin-x64@npm:1.33.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lightningcss-freebsd-x64@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-freebsd-x64@npm:1.32.0" +"lightningcss-freebsd-x64@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-freebsd-x64@npm:1.33.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lightningcss-linux-arm-gnueabihf@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm-gnueabihf@npm:1.32.0" +"lightningcss-linux-arm-gnueabihf@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.33.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"lightningcss-linux-arm64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-gnu@npm:1.32.0" +"lightningcss-linux-arm64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-arm64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-arm64-musl@npm:1.32.0" +"lightningcss-linux-arm64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.33.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"lightningcss-linux-x64-gnu@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-gnu@npm:1.32.0" +"lightningcss-linux-x64-gnu@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"lightningcss-linux-x64-musl@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-linux-x64-musl@npm:1.32.0" +"lightningcss-linux-x64-musl@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-linux-x64-musl@npm:1.33.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"lightningcss-win32-arm64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-arm64-msvc@npm:1.32.0" +"lightningcss-win32-arm64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.33.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lightningcss-win32-x64-msvc@npm:1.32.0": - version: 1.32.0 - resolution: "lightningcss-win32-x64-msvc@npm:1.32.0" +"lightningcss-win32-x64-msvc@npm:1.33.0": + version: 1.33.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.33.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "lightningcss@npm:^1.32.0": - version: 1.32.0 - resolution: "lightningcss@npm:1.32.0" + version: 1.33.0 + resolution: "lightningcss@npm:1.33.0" dependencies: detect-libc: "npm:^2.0.3" - lightningcss-android-arm64: "npm:1.32.0" - lightningcss-darwin-arm64: "npm:1.32.0" - lightningcss-darwin-x64: "npm:1.32.0" - lightningcss-freebsd-x64: "npm:1.32.0" - lightningcss-linux-arm-gnueabihf: "npm:1.32.0" - lightningcss-linux-arm64-gnu: "npm:1.32.0" - lightningcss-linux-arm64-musl: "npm:1.32.0" - lightningcss-linux-x64-gnu: "npm:1.32.0" - lightningcss-linux-x64-musl: "npm:1.32.0" - lightningcss-win32-arm64-msvc: "npm:1.32.0" - lightningcss-win32-x64-msvc: "npm:1.32.0" + lightningcss-android-arm64: "npm:1.33.0" + lightningcss-darwin-arm64: "npm:1.33.0" + lightningcss-darwin-x64: "npm:1.33.0" + lightningcss-freebsd-x64: "npm:1.33.0" + lightningcss-linux-arm-gnueabihf: "npm:1.33.0" + lightningcss-linux-arm64-gnu: "npm:1.33.0" + lightningcss-linux-arm64-musl: "npm:1.33.0" + lightningcss-linux-x64-gnu: "npm:1.33.0" + lightningcss-linux-x64-musl: "npm:1.33.0" + lightningcss-win32-arm64-msvc: "npm:1.33.0" + lightningcss-win32-x64-msvc: "npm:1.33.0" dependenciesMeta: lightningcss-android-arm64: optional: true @@ -9870,7 +9352,7 @@ __metadata: optional: true lightningcss-win32-x64-msvc: optional: true - checksum: 10c0/70945bd55097af46fc9fab7f5ed09cd5869d85940a2acab7ee06d0117004a1d68155708a2d462531cea2fc3c67aefc9333a7068c80b0b78dd404c16838809e03 + checksum: 10c0/ce1f8279fbae636dbf37fa6e7385d5f98ed881d72af3362f24afbd4685e19c1fcdfecf17e5dd77f2ebee3d0c23ade276230d85842d07292229a2cffba8ff20a3 languageName: node linkType: hard @@ -9881,7 +9363,7 @@ __metadata: languageName: node linkType: hard -"linkify-it@npm:^5.0.1": +"linkify-it@npm:^5.0.2": version: 5.0.2 resolution: "linkify-it@npm:5.0.2" dependencies: @@ -9986,7 +9468,7 @@ __metadata: languageName: node linkType: hard -"lodash@npm:^4, lodash@npm:^4.17.15, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": +"lodash@npm:^4, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.18.1": version: 4.18.1 resolution: "lodash@npm:4.18.1" checksum: 10c0/757228fc68805c59789e82185135cf85f05d0b2d3d54631d680ca79ec21944ec8314d4533639a14b8bcfbd97a517e78960933041a5af17ecb693ec6eecb99a27 @@ -10007,7 +9489,7 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: @@ -10018,14 +9500,7 @@ __metadata: languageName: node linkType: hard -"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2": - version: 3.1.3 - resolution: "loupe@npm:3.1.3" - checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541 - languageName: node - linkType: hard - -"loupe@npm:^3.1.4": +"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2, loupe@npm:^3.1.4": version: 3.2.1 resolution: "loupe@npm:3.2.1" checksum: 10c0/910c872cba291309664c2d094368d31a68907b6f5913e989d301b5c25f30e97d76d77f23ab3bf3b46d0f601ff0b6af8810c10c31b91d2c6b2f132809ca2cc705 @@ -10054,16 +9529,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.0.0": - version: 11.1.0 - resolution: "lru-cache@npm:11.1.0" - checksum: 10c0/85c312f7113f65fae6a62de7985348649937eb34fb3d212811acbf6704dc322a421788aca253b62838f1f07049a84cc513d88f494e373d3756514ad263670a64 - languageName: node - linkType: hard - -"lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": - version: 11.3.5 - resolution: "lru-cache@npm:11.3.5" - checksum: 10c0/5b54ef7b88afb4bd25b7a778f1b2b1cde32d9770913e530da34ab203cf0442413bcaa6e372800cbab9562557a4480e4d8bf32e3a368bb5a91b12218eca085c66 + version: 11.5.2 + resolution: "lru-cache@npm:11.5.2" + checksum: 10c0/ece1ad731f5b655e85d67047d04bfc13823dc77aa61c5454924a9869ba600a0104e39cc33d726021feef812bc347ca34a5608a5eb1972a5dd0870b7ecd42c3f2 languageName: node linkType: hard @@ -10101,7 +9569,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.0": +"magic-string@npm:^0.30.0, magic-string@npm:^0.30.17": version: 0.30.21 resolution: "magic-string@npm:0.30.21" dependencies: @@ -10110,15 +9578,6 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.17": - version: 0.30.17 - resolution: "magic-string@npm:0.30.17" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 - languageName: node - linkType: hard - "magicast@npm:^0.3.5": version: 0.3.5 resolution: "magicast@npm:0.3.5" @@ -10155,26 +9614,6 @@ __metadata: languageName: node linkType: hard -"make-fetch-happen@npm:^15.0.0": - version: 15.0.5 - resolution: "make-fetch-happen@npm:15.0.5" - dependencies: - "@gar/promise-retry": "npm:^1.0.0" - "@npmcli/agent": "npm:^4.0.0" - "@npmcli/redact": "npm:^4.0.0" - cacache: "npm:^20.0.1" - http-cache-semantics: "npm:^4.1.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^5.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^1.0.0" - proc-log: "npm:^6.0.0" - ssri: "npm:^13.0.0" - checksum: 10c0/527580eb5e5476e6ad07a4e3bd017d13e935f4be815674b442081ae5a721c13d3af5715006619e6be79a85723067e047f83a0c9e699f41d8cec43609a8de4f7b - languageName: node - linkType: hard - "makeerror@npm:1.0.12": version: 1.0.12 resolution: "makeerror@npm:1.0.12" @@ -10195,10 +9634,9 @@ __metadata: version: 0.0.0-use.local resolution: "mapguide-react-layout@workspace:." dependencies: - "@blueprintjs/core": "npm:^3.54.0" "@modelcontextprotocol/sdk": "npm:1.29.0" "@playwright/test": "npm:1.59.1" - "@reduxjs/toolkit": "npm:^2.11.2" + "@reduxjs/toolkit": "npm:^2.12.0" "@storybook/addon-actions": "npm:^8.6.18" "@storybook/addon-docs": "npm:^8.6.18" "@storybook/addon-knobs": "npm:^8.0.1" @@ -10226,29 +9664,29 @@ __metadata: "@vitest/coverage-v8": "npm:3.2.4" "@welldone-software/why-did-you-render": "npm:^7.0.1" barrelsby: "npm:2.8.1" - bestzip: "npm:2.2.3" - colorbrewer: "npm:^1.6.1" + bestzip: "npm:3.0.1" + colorbrewer: "npm:^1.7.0" concurrently: "npm:9.2.1" copyfiles: "npm:2.4.1" coveralls: "npm:3.1.1" cross-env: "npm:10.1.0" docsify-cli: "npm:4.4.4" - dompurify: "npm:^3.4.0" - geojson-vt: "npm:^4.0.2" + dompurify: "npm:^3.4.10" + geojson-vt: "npm:^4.0.3" jest-image-snapshot: "npm:6.5.2" jsdom: "npm:^26.1.0" jsonfile: "npm:6.2.1" - jspdf: "npm:^4.0.0" + jspdf: "npm:^4.2.1" lodash.debounce: "npm:^4.0.8" lodash.xor: "npm:^4.5.0" lodash.xorby: "npm:^4.7.0" ol: "npm:^10.9.0" papaparse: "npm:^5.5.3" patch-package: "npm:^8.0.0" - proj4: "npm:2.20.8" + proj4: "npm:2.20.9" raf: "npm:^3.4.1" react: "npm:^17.0.2" - react-colorful: "npm:^5.6.1" + react-colorful: "npm:^5.7.0" react-dom: "npm:^17.0.2" react-hot-toast: "npm:2.6.0" react-redux: "npm:^8.1.3" @@ -10268,33 +9706,25 @@ __metadata: typedoc-plugin-merge-modules: "npm:7.0.0" typescript: "npm:5.9.3" typescript-json-schema: "npm:^0.67.1" - vite: "npm:^8.0.14" + vite: "npm:^8.0.16" vitest: "npm:3.2.6" - wait-on: "npm:9.0.5" - peerDependencies: - "@blueprintjs/core": ^3.54.0 - "@blueprintjs/icons": ^3.33.0 - peerDependenciesMeta: - "@blueprintjs/core": - optional: true - "@blueprintjs/icons": - optional: true + wait-on: "npm:9.0.10" languageName: unknown linkType: soft "markdown-it@npm:^14.1.1": - version: 14.2.0 - resolution: "markdown-it@npm:14.2.0" + version: 14.3.0 + resolution: "markdown-it@npm:14.3.0" dependencies: argparse: "npm:^2.0.1" - entities: "npm:^4.4.0" - linkify-it: "npm:^5.0.1" + entities: "npm:^4.5.0" + linkify-it: "npm:^5.0.2" mdurl: "npm:^2.0.0" punycode.js: "npm:^2.3.1" uc.micro: "npm:^2.1.0" bin: markdown-it: bin/markdown-it.mjs - checksum: 10c0/1d3a50061d2fe4efbcf317aac853dbee6892ed6f5a217570eead723f2ef2dd1c9baaeef5a687cd283480c45c2d20724a73e84a9ed72843cf7b3b719067af40ef + checksum: 10c0/b2dea908968109d6e9088ac972254bca842157d85d2e6838d0eb263cd8106e7e6a72663b138366cc98f57441d9f3f2ebfb842bf7b2f9e1c13187ebe70e0af8f9 languageName: node linkType: hard @@ -10403,7 +9833,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.12, mime-types@npm:~2.1.19": +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35, mime-types@npm:~2.1.19": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -10453,7 +9883,7 @@ __metadata: languageName: node linkType: hard -"min-indent@npm:^1.0.0, min-indent@npm:^1.0.1": +"min-indent@npm:^1.0.0": version: 1.0.1 resolution: "min-indent@npm:1.0.1" checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c @@ -10479,29 +9909,20 @@ __metadata: linkType: hard "minimatch@npm:^3.0.3, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" + version: 3.1.5 + resolution: "minimatch@npm:3.1.5" dependencies: brace-expansion: "npm:^1.1.7" - checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 - languageName: node - linkType: hard - -"minimatch@npm:^5.1.0": - version: 5.1.6 - resolution: "minimatch@npm:5.1.6" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3 + checksum: 10c0/2ecbdc0d33f07bddb0315a8b5afbcb761307a8778b48f0b312418ccbced99f104a2d17d8aca7573433c70e8ccd1c56823a441897a45e384ea76ef401a26ace70 languageName: node linkType: hard "minimatch@npm:^9.0.4": - version: 9.0.5 - resolution: "minimatch@npm:9.0.5" + version: 9.0.9 + resolution: "minimatch@npm:9.0.9" dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + brace-expansion: "npm:^2.0.2" + checksum: 10c0/0b6a58530dbb00361745aa6c8cffaba4c90f551afe7c734830bd95fd88ebf469dd7355a027824ea1d09e37181cfeb0a797fb17df60c15ac174303ac110eb7e86 languageName: node linkType: hard @@ -10512,81 +9933,14 @@ __metadata: languageName: node linkType: hard -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e - languageName: node - linkType: hard - -"minipass-fetch@npm:^5.0.0": - version: 5.0.2 - resolution: "minipass-fetch@npm:5.0.2" - dependencies: - iconv-lite: "npm:^0.7.2" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^2.0.0" - minizlib: "npm:^3.0.1" - dependenciesMeta: - iconv-lite: - optional: true - checksum: 10c0/ce4ab9f21cfabaead2097d95dd33f485af8072fbc6b19611bce694965393453a1639d641c2bcf1c48f2ea7d41ea7fab8278373f1d0bee4e63b0a5b2cdd0ef649 - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.7 - resolution: "minipass-flush@npm:1.0.7" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/960915c02aa0991662c37c404517dd93708d17f96533b2ca8c1e776d158715d8107c5ced425ffc61674c167d93607f07f48a83c139ce1057f8781e5dfb4b90c2 - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 - languageName: node - linkType: hard - -"minipass-sized@npm:^2.0.0": - version: 2.0.0 - resolution: "minipass-sized@npm:2.0.0" - dependencies: - minipass: "npm:^7.1.2" - checksum: 10c0/f9201696a6f6d68610d04c9c83e3d2e5cb9c026aae1c8cbf7e17f386105cb79c1bb088dbc21bf0b1eb4f3fb5df384fd1e7aa3bf1f33868c416ae8c8a92679db8 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.1.2": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 - languageName: node - linkType: hard - -"minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.3": +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": version: 7.1.3 resolution: "minipass@npm:7.1.3" checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb languageName: node linkType: hard -"minizlib@npm:^3.0.1, minizlib@npm:^3.1.0": +"minizlib@npm:^3.1.0": version: 3.1.0 resolution: "minizlib@npm:3.1.0" dependencies: @@ -10629,25 +9983,16 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.11": - version: 3.3.11 - resolution: "nanoid@npm:3.3.11" +"nanoid@npm:^3.3.16": + version: 3.3.16 + resolution: "nanoid@npm:3.3.16" bin: nanoid: bin/nanoid.cjs - checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b + checksum: 10c0/bbf2dcffe22d2b62d16de2711752070b539c0f644c7916f823ad6521986b2078cbe524f2d6240f58c46e9141ea0c7b87a029e100c0f7f175228cacaf30e41bba languageName: node linkType: hard -"nanoid@npm:^3.3.12": - version: 3.3.12 - resolution: "nanoid@npm:3.3.12" - bin: - nanoid: bin/nanoid.cjs - checksum: 10c0/ba142b7b39e11e80c16dd74b0365d407880c87c1cf7e1480956981ae940ee36060fa5b6f092cd1e315184dd19244c657bd017d03327bd3c62247d691c5e8edfb - languageName: node - linkType: hard - -"napi-postinstall@npm:^0.3.0": +"napi-postinstall@npm:^0.3.4": version: 0.3.4 resolution: "napi-postinstall@npm:0.3.4" bin: @@ -10692,22 +10037,22 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 12.2.0 - resolution: "node-gyp@npm:12.2.0" + version: 13.0.1 + resolution: "node-gyp@npm:13.0.1" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^15.0.0" - nopt: "npm:^9.0.0" - proc-log: "npm:^6.0.0" + nopt: "npm:^10.0.0" + proc-log: "npm:^7.0.0" semver: "npm:^7.3.5" tar: "npm:^7.5.4" tinyglobby: "npm:^0.2.12" - which: "npm:^6.0.0" + undici: "npm:^8.4.1" + which: "npm:^7.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/3ed046746a5a7d90950cd8b0547332b06598443f31fe213ef4332a7174c7b7d259e1704835feda79b87d3f02e59d7791842aac60642ede4396ab25fdf0f8f759 + checksum: 10c0/424077bc9e9bbe953a8e86db473ba818cbc6a121714008c977fd589e21e5f0c811fbf22faac730dc7182450b5e52df301811d01ae3373898658d999b7710f4e6 languageName: node linkType: hard @@ -10727,10 +10072,10 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.19": - version: 2.0.19 - resolution: "node-releases@npm:2.0.19" - checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa +"node-releases@npm:^2.0.51": + version: 2.0.51 + resolution: "node-releases@npm:2.0.51" + checksum: 10c0/6cf3fe1f9eabe02ce6de67e9db77b73edc9f5625003791e1f8f239f8e2a851450a5aeb1eff2cc43cfb26312e19b26bfe07626bf428479e6a76f56553fc6148da languageName: node linkType: hard @@ -10744,14 +10089,14 @@ __metadata: languageName: node linkType: hard -"nopt@npm:^9.0.0": - version: 9.0.0 - resolution: "nopt@npm:9.0.0" +"nopt@npm:^10.0.0": + version: 10.0.1 + resolution: "nopt@npm:10.0.1" dependencies: - abbrev: "npm:^4.0.0" + abbrev: "npm:^5.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/1822eb6f9b020ef6f7a7516d7b64a8036e09666ea55ac40416c36e4b2b343122c3cff0e2f085675f53de1d2db99a2a89a60ccea1d120bcd6a5347bf6ceb4a7fd + checksum: 10c0/980d89257f9587f3e1f77877ddbf905d6aa3b738ec33e49a4fa1a059a0dd82eb28063982b150654a7ae9de386f2ead60e56172db7d37cf56de545f7392a2a26a languageName: node linkType: hard @@ -10781,13 +10126,6 @@ __metadata: languageName: node linkType: hard -"normalize.css@npm:^8.0.1": - version: 8.0.1 - resolution: "normalize.css@npm:8.0.1" - checksum: 10c0/4ddf56d1af5ca755fa5e692e718316d8758ecb792aa96e1ad206824b5810a043763d681d6f7697d46573515f5e9690038b4c91a95c1997567128815545fb8cd7 - languageName: node - linkType: hard - "npm-run-path@npm:^4.0.1": version: 4.0.1 resolution: "npm-run-path@npm:4.0.1" @@ -10807,9 +10145,9 @@ __metadata: linkType: hard "nwsapi@npm:^2.2.16": - version: 2.2.20 - resolution: "nwsapi@npm:2.2.20" - checksum: 10c0/07f4dafa3186aef7c007863e90acd4342a34ba9d44b22f14f644fdb311f6086887e21c2fc15efaa826c2bc39ab2bc841364a1a630e7c87e0cb723ba59d729297 + version: 2.2.24 + resolution: "nwsapi@npm:2.2.24" + checksum: 10c0/9bc04ee9c7698f1b5506778d36f7382962f71667205d441d6a50f6180ee92328e770b76be78b907817ee103241b29984d3a17ae387e4723aebe0aeaed7a7c3a1 languageName: node linkType: hard @@ -10864,7 +10202,7 @@ __metadata: languageName: node linkType: hard -"object-inspect@npm:^1.13.3": +"object-inspect@npm:^1.13.3, object-inspect@npm:^1.13.4": version: 1.13.4 resolution: "object-inspect@npm:1.13.4" checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692 @@ -10916,7 +10254,7 @@ __metadata: languageName: node linkType: hard -"on-finished@npm:2.4.1, on-finished@npm:^2.4.1": +"on-finished@npm:^2.4.1, on-finished@npm:~2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" dependencies: @@ -11033,13 +10371,6 @@ __metadata: languageName: node linkType: hard -"os-tmpdir@npm:~1.0.2": - version: 1.0.2 - resolution: "os-tmpdir@npm:1.0.2" - checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 - languageName: node - linkType: hard - "p-cancelable@npm:^1.0.0": version: 1.1.0 resolution: "p-cancelable@npm:1.1.0" @@ -11126,13 +10457,6 @@ __metadata: languageName: node linkType: hard -"p-map@npm:^7.0.2": - version: 7.0.4 - resolution: "p-map@npm:7.0.4" - checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd - languageName: node - linkType: hard - "p-timeout@npm:^3.1.0": version: 3.2.0 resolution: "p-timeout@npm:3.2.0" @@ -11188,16 +10512,16 @@ __metadata: linkType: hard "pako@npm:^2.0.4, pako@npm:^2.1.0": - version: 2.1.0 - resolution: "pako@npm:2.1.0" - checksum: 10c0/8e8646581410654b50eb22a5dfd71159cae98145bd5086c9a7a816ec0370b5f72b4648d08674624b3870a521e6a3daffd6c2f7bc00fdefc7063c9d8232ff5116 + version: 2.2.0 + resolution: "pako@npm:2.2.0" + checksum: 10c0/e5d31de1940fdd13cc4014296b0026112483d0834bce4856ca29c8af8438d030c6416986a0f6df7d5372cae18d6dd6c57f48b24a49d6c207c0a4cc66af15c07d languageName: node linkType: hard "papaparse@npm:^5.5.3": - version: 5.5.3 - resolution: "papaparse@npm:5.5.3" - checksum: 10c0/623aae6a35703308fd5a39d616fb3837231ebc70697346355ea508154d3f24df75b6554b736afc1924192205518a5db14e75f5e1cf35d154326050a37cdd9447 + version: 5.5.4 + resolution: "papaparse@npm:5.5.4" + checksum: 10c0/8942ae45dcc171b720fd67953f825a544fdeeeadb85cf28a239d016fd6cff0c59650e667b3158a9a0153c6e1d7674c199603bcf360d854ce7edce822eb7f7bb6 languageName: node linkType: hard @@ -11270,27 +10594,26 @@ __metadata: linkType: hard "patch-package@npm:^8.0.0": - version: 8.0.0 - resolution: "patch-package@npm:8.0.0" + version: 8.0.1 + resolution: "patch-package@npm:8.0.1" dependencies: "@yarnpkg/lockfile": "npm:^1.1.0" chalk: "npm:^4.1.2" ci-info: "npm:^3.7.0" cross-spawn: "npm:^7.0.3" find-yarn-workspace-root: "npm:^2.0.0" - fs-extra: "npm:^9.0.0" + fs-extra: "npm:^10.0.0" json-stable-stringify: "npm:^1.0.2" klaw-sync: "npm:^6.0.0" minimist: "npm:^1.2.6" open: "npm:^7.4.2" - rimraf: "npm:^2.6.3" semver: "npm:^7.5.3" slash: "npm:^2.0.0" - tmp: "npm:^0.0.33" + tmp: "npm:^0.2.4" yaml: "npm:^2.2.2" bin: patch-package: index.js - checksum: 10c0/690eab0537e953a3fd7d32bb23f0e82f97cd448f8244c3227ed55933611a126f9476397325c06ad2c11d881a19b427a02bd1881bee78d89f1731373fc4fe0fee + checksum: 10c0/6dd7cdd8b814902f1a66bc9082bd5a5a484956563538a694ff1de2e7f4cc14a13480739f5f04e0d1747395d6f1b651eb1ddbc39687ce5ff8a3927f212cffd2ac languageName: node linkType: hard @@ -11378,9 +10701,9 @@ __metadata: linkType: hard "pathval@npm:^2.0.0": - version: 2.0.0 - resolution: "pathval@npm:2.0.0" - checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5 + version: 2.0.1 + resolution: "pathval@npm:2.0.1" + checksum: 10c0/460f4709479fbf2c45903a65655fc8f0a5f6d808f989173aeef5fdea4ff4f303dc13f7870303999add60ec49d4c14733895c0a869392e9866f1091fa64fd7581 languageName: node linkType: hard @@ -11416,10 +10739,10 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4": - version: 4.0.4 - resolution: "picomatch@npm:4.0.4" - checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0 +"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3, picomatch@npm:^4.0.4, picomatch@npm:^4.0.5": + version: 4.0.5 + resolution: "picomatch@npm:4.0.5" + checksum: 10c0/947bc6b6e1ff1e6c5aaf95b107a0839d12802f4f7b867663f67d47accba939ca1cb582cf99dfc30438efa1c4648ac5990967e783e8929c36b03e8440704ef1bd languageName: node linkType: hard @@ -11474,16 +10797,25 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.59.1, playwright-core@npm:>=1.2.0": +"playwright-core@npm:1.59.1": version: 1.59.1 resolution: "playwright-core@npm:1.59.1" bin: playwright-core: cli.js - checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee + languageName: node + linkType: hard + +"playwright-core@npm:1.61.1, playwright-core@npm:>=1.2.0": + version: 1.61.1 + resolution: "playwright-core@npm:1.61.1" + bin: + playwright-core: cli.js + checksum: 10c0/c28896ba82a602182e240ed4f9c467fb0dd9cb57d510f8aba9f25183fe1cde3a0105725a29baffa4157fe885bbb11e228032a2aad0424111584fde45303f07bd languageName: node linkType: hard -"playwright@npm:1.59.1, playwright@npm:^1.14.0": +"playwright@npm:1.59.1": version: 1.59.1 resolution: "playwright@npm:1.59.1" dependencies: @@ -11498,6 +10830,21 @@ __metadata: languageName: node linkType: hard +"playwright@npm:^1.14.0": + version: 1.61.1 + resolution: "playwright@npm:1.61.1" + dependencies: + fsevents: "npm:2.3.2" + playwright-core: "npm:1.61.1" + dependenciesMeta: + fsevents: + optional: true + bin: + playwright: cli.js + checksum: 10c0/cea1bc4d2a64ec3ef683891606774029da7b8a8036ed98332565cec2f8e89549ca1fab9a89fbfba4e08e27e0d7e7d148031e965af66d5ff97bb3c34058cfcad0 + languageName: node + linkType: hard + "pluralize@npm:^8.0.0": version: 8.0.0 resolution: "pluralize@npm:8.0.0" @@ -11528,13 +10875,6 @@ __metadata: languageName: node linkType: hard -"popper.js@npm:^1.14.4, popper.js@npm:^1.16.1": - version: 1.16.1 - resolution: "popper.js@npm:1.16.1" - checksum: 10c0/1c1a826f757edb5b8c2049dfd7a9febf6ae1e9d0e51342fc715b49a0c1020fced250d26484619883651e097c5764bbcacd2f31496e3646027f079dd83e072681 - languageName: node - linkType: hard - "possible-typed-array-names@npm:^1.0.0": version: 1.1.0 resolution: "possible-typed-array-names@npm:1.1.0" @@ -11542,25 +10882,14 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.5.15": - version: 8.5.15 - resolution: "postcss@npm:8.5.15" +"postcss@npm:^8.5.17, postcss@npm:^8.5.6": + version: 8.5.22 + resolution: "postcss@npm:8.5.22" dependencies: - nanoid: "npm:^3.3.12" + nanoid: "npm:^3.3.16" picocolors: "npm:^1.1.1" source-map-js: "npm:^1.2.1" - checksum: 10c0/7f2e63ae22fbe43aace1bf652bd99da4e90737c64194d49e51ddc9cd0f9e51ff2861a7d734379b494deffa03a880a5c65eec70bc29ee9ebaa7136dde3eee8f31 - languageName: node - linkType: hard - -"postcss@npm:^8.5.6": - version: 8.5.12 - resolution: "postcss@npm:8.5.12" - dependencies: - nanoid: "npm:^3.3.11" - picocolors: "npm:^1.1.1" - source-map-js: "npm:^1.2.1" - checksum: 10c0/5baebaf574c567bc1b3d61197f38af4ce5920b8f611c887fb6bc3dcc14af00253c169dbf19897bc889cce0b0d9818ab5eb4ea0caedf02b0bab10da8a43ce8c12 + checksum: 10c0/9e143ee457988049d5f187116fd37f2750ae9d8d71cc99eae690b776e549e134b34086cbaa2f0360ecd1729b15d918227bd0fc3a2ffbe341f7212d0827080793 languageName: node linkType: hard @@ -11585,32 +10914,33 @@ __metadata: languageName: node linkType: hard -"prettier-linter-helpers@npm:^1.0.0": - version: 1.0.0 - resolution: "prettier-linter-helpers@npm:1.0.0" +"prettier-linter-helpers@npm:^1.0.1": + version: 1.0.1 + resolution: "prettier-linter-helpers@npm:1.0.1" dependencies: fast-diff: "npm:^1.1.2" - checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab + checksum: 10c0/91cea965681bc5f62c9d26bd3ca6358b81557261d4802e96ec1cf0acbd99d4b61632d53320cd2c3ec7d7f7805a81345644108a41ef46ddc9688e783a9ac792d1 languageName: node linkType: hard "prettier@npm:^3.0.3": - version: 3.5.3 - resolution: "prettier@npm:3.5.3" + version: 3.9.6 + resolution: "prettier@npm:3.9.6" bin: prettier: bin/prettier.cjs - checksum: 10c0/3880cb90b9dc0635819ab52ff571518c35bd7f15a6e80a2054c05dbc8a3aa6e74f135519e91197de63705bcb38388ded7e7230e2178432a1468005406238b877 + checksum: 10c0/9f7ddae234035868f3daab3dc34e6de7e54622185afb017378029f0c09a9c023248ccf6f34def0b17a0538e18c47aa1b3188bab72965d1bf735919baa0747e99 languageName: node linkType: hard -"pretty-format@npm:30.3.0": - version: 30.3.0 - resolution: "pretty-format@npm:30.3.0" +"pretty-format@npm:30.4.1": + version: 30.4.1 + resolution: "pretty-format@npm:30.4.1" dependencies: - "@jest/schemas": "npm:30.0.5" + "@jest/schemas": "npm:30.4.1" ansi-styles: "npm:^5.2.0" - react-is: "npm:^18.3.1" - checksum: 10c0/719b27d70cd8b01013485054c5d094e1fe85e093b09ee73553e3b19302da3cf54fbd6a7ea9577d6471aeff8d372200e56979ffc4c831e2133520bd18060895fb + react-is-18: "npm:react-is@^18.3.1" + react-is-19: "npm:react-is@^19.2.5" + checksum: 10c0/c7e6633740cd2f6d382f188c00c8b4b3f2bee3cda16db6753471c6bb4b94f76531358d3a7793062a0fb00d72ebfb934e8ae1d4f5ced6bb34c8e7f60996f90076 languageName: node linkType: hard @@ -11632,10 +10962,10 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^6.0.0": - version: 6.1.0 - resolution: "proc-log@npm:6.1.0" - checksum: 10c0/4f178d4062733ead9d71a9b1ab24ebcecdfe2250916a5b1555f04fe2eda972a0ec76fbaa8df1ad9c02707add6749219d118a4fc46dc56bdfe4dde4b47d80bb82 +"proc-log@npm:^7.0.0": + version: 7.0.0 + resolution: "proc-log@npm:7.0.0" + checksum: 10c0/b89c2d862604f35fec795477b0c7e376feab3ba0d4f4d291c4e959567442697cf451ac557d0623c1cc38af45a78128b983410f397a10c5d3a67f76c33de4754b languageName: node linkType: hard @@ -11662,13 +10992,18 @@ __metadata: languageName: node linkType: hard -"proj4@npm:2.20.8": - version: 2.20.8 - resolution: "proj4@npm:2.20.8" +"proj4@npm:2.20.9": + version: 2.20.9 + resolution: "proj4@npm:2.20.9" dependencies: mgrs: "npm:1.0.0" wkt-parser: "npm:^1.5.5" - checksum: 10c0/a4488c5229d25260697ca925d06fc251e772d033e7d081f97ab8b01a37854378d4a48903c667c39aa9305febff59ad09dddc019be8866977cdd2767d3a774239 + peerDependencies: + geotiff: "*" + peerDependenciesMeta: + geotiff: + optional: true + checksum: 10c0/9917dc75627a3198b0226741a04e29ecd084f3613ba4a9359815fddab4f579d3135cf68d3ba914659470c45a5ca9c3d52b6f68a43365d6b9484d8603761ecdf9 languageName: node linkType: hard @@ -11682,7 +11017,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": +"prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -11727,12 +11062,12 @@ __metadata: linkType: hard "pump@npm:^3.0.0": - version: 3.0.2 - resolution: "pump@npm:3.0.2" + version: 3.0.4 + resolution: "pump@npm:3.0.4" dependencies: end-of-stream: "npm:^1.1.0" once: "npm:^1.3.1" - checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f + checksum: 10c0/2780e66b5471c19e3e3e1063b84f3f6a3a08367f24c5ed552f98cd5901e6ada27c7ad6495d4244f553fd03b01884a4561933064f053f47c8994d84fd352768ea languageName: node linkType: hard @@ -11766,28 +11101,20 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.11.1": - version: 6.15.0 - resolution: "qs@npm:6.15.0" - dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/ff341078a78a991d8a48b4524d52949211447b4b1ad907f489cac0770cbc346a28e47304455c0320e5fb000f8762d64b03331e3b71865f663bf351bcba8cdb4b - languageName: node - linkType: hard - -"qs@npm:^6.14.0, qs@npm:^6.14.1": - version: 6.15.1 - resolution: "qs@npm:6.15.1" +"qs@npm:^6.11.1, qs@npm:^6.14.0, qs@npm:^6.15.2": + version: 6.15.3 + resolution: "qs@npm:6.15.3" dependencies: - side-channel: "npm:^1.1.0" - checksum: 10c0/19ee504f0ebff72598503e38cd6d9bd7b52a8ab62ae18b1e6bee3d4db58469bd65871ef1893a881bafb0f80ef2f9ab586e1f255cf25cc8d816c0f5a704721d97 + es-define-property: "npm:^1.0.1" + side-channel: "npm:^1.1.1" + checksum: 10c0/8f3f6e45ece255347d57696628401cde29e9ec649fff698b53bd3150dea7cefdf33036e1bc1826b9f110bfa7cb0ec4ab9f5297eca628ce216c55af82c304e08e languageName: node linkType: hard "qs@npm:~6.5.2": - version: 6.5.3 - resolution: "qs@npm:6.5.3" - checksum: 10c0/6631d4f2fa9d315e480662646745a4aa3a708817fbffe2cbdacec8ab9be130f92740c66191770fe9b704bc5fa9c1cc1f6596f55ad132fef7bd3ad1582f199eb0 + version: 6.5.5 + resolution: "qs@npm:6.5.5" + checksum: 10c0/6a5728b92378776d194c19d2bcf8e8847fa96ecfa6eb64f64e7ac73a394043cacaf257be014fa1a86201077a1e0c5ef5760ee0e0d6b6a4fe9f5ae8afcf5b9254 languageName: node linkType: hard @@ -11828,14 +11155,21 @@ __metadata: languageName: node linkType: hard -"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": +"range-parser@npm:^1.2.1": + version: 1.3.0 + resolution: "range-parser@npm:1.3.0" + checksum: 10c0/295494bb6685f9ab50f41a5f4fa5ce445aeeb9673b491bf178460fcc3a812dcf0d164cf1c83074f13a71a87d91ead5e097afd53e0630bc49a5101ed60f2a7529 + languageName: node + linkType: hard + +"range-parser@npm:~1.2.1": version: 1.2.1 resolution: "range-parser@npm:1.2.1" checksum: 10c0/96c032ac2475c8027b7a4e9fe22dc0dfe0f6d90b85e496e0f016fbdb99d6d066de0112e680805075bd989905e2123b3b3d002765149294dce0c1f7f01fcc2ea0 languageName: node linkType: hard -"raw-body@npm:^3.0.0, raw-body@npm:^3.0.1": +"raw-body@npm:^3.0.0, raw-body@npm:^3.0.2": version: 3.0.2 resolution: "raw-body@npm:3.0.2" dependencies: @@ -11870,7 +11204,7 @@ __metadata: languageName: node linkType: hard -"re-resizable@npm:6.11.2": +"re-resizable@npm:^6.11.2": version: 6.11.2 resolution: "re-resizable@npm:6.11.2" peerDependencies: @@ -11880,22 +11214,22 @@ __metadata: languageName: node linkType: hard -"react-colorful@npm:^5.6.1": - version: 5.6.1 - resolution: "react-colorful@npm:5.6.1" +"react-colorful@npm:^5.6.1, react-colorful@npm:^5.7.0": + version: 5.8.0 + resolution: "react-colorful@npm:5.8.0" peerDependencies: react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/48eb73cf71e10841c2a61b6b06ab81da9fffa9876134c239bfdebcf348ce2a47e56b146338e35dfb03512c85966bfc9a53844fc56bc50154e71f8daee59ff6f0 + checksum: 10c0/852ee03ad7751d748e2232ad3bd089de6620de6a06582ee26177377802104b259bf5630d205e875dba4406d601d0e00ddd0912bb0d763da2a053b51c7c57b3a4 languageName: node linkType: hard "react-docgen-typescript@npm:^2.2.2": - version: 2.2.2 - resolution: "react-docgen-typescript@npm:2.2.2" + version: 2.4.0 + resolution: "react-docgen-typescript@npm:2.4.0" peerDependencies: typescript: ">= 4.3.x" - checksum: 10c0/d31a061a21b5d4b67d4af7bc742541fd9e16254bd32861cd29c52565bc2175f40421a3550d52b6a6b0d0478e7cc408558eb0060a0bdd2957b02cfceeb0ee1e88 + checksum: 10c0/18e3e1c80d28abcdd72e62261d2f70b0904d9b088f9c2ebe485ffee5e46f5735208bc174a20ed2772112b3ca6432b5f3d5f0ac345872fe76e541f84543e49e50 languageName: node linkType: hard @@ -11918,13 +11252,13 @@ __metadata: linkType: hard "react-dom@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react-dom@npm:19.2.5" + version: 19.2.8 + resolution: "react-dom@npm:19.2.8" dependencies: scheduler: "npm:^0.27.0" peerDependencies: - react: ^19.2.5 - checksum: 10c0/8067606e9f58e4c2e8cb5f09570217dbc71c4843ebcaa20ae2085912d3e3a351f17d8f7c1713313cdda7f272840c8c34ff6c860fcb840862071bceea218e0c63 + react: ^19.2.8 + checksum: 10c0/41ba2247b76f687fcfe5bbc99f514d6b851d8c8041c2f5ded36ed05bd7fdc5208cacbac9de51e3e6633e77f96f44cec9f0d4a5a55184dba4e00738f224439134 languageName: node linkType: hard @@ -11941,16 +11275,16 @@ __metadata: languageName: node linkType: hard -"react-draggable@npm:4.4.6": - version: 4.4.6 - resolution: "react-draggable@npm:4.4.6" +"react-draggable@npm:^4.5.0": + version: 4.7.0 + resolution: "react-draggable@npm:4.7.0" dependencies: - clsx: "npm:^1.1.1" + clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" peerDependencies: react: ">= 16.3.0" react-dom: ">= 16.3.0" - checksum: 10c0/1e8cf47414a8554caa68447e5f27749bc40e1eabb4806e2dadcb39ab081d263f517d6aaec5231677e6b425603037c7e3386d1549898f9ffcc98a86cabafb2b9a + checksum: 10c0/4bfd46025b6009585a644d17721cafcd7976c058c250086c06c1a952724230c83caa548c54f9b5849c3a148144e3ed6610a1745b2afc6db685c85c56a0b4f775 languageName: node linkType: hard @@ -11967,13 +11301,20 @@ __metadata: languageName: node linkType: hard -"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0, react-is@npm:^18.3.1": +"react-is-18@npm:react-is@^18.3.1, react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 languageName: node linkType: hard +"react-is-19@npm:react-is@^19.2.5": + version: 19.2.8 + resolution: "react-is@npm:19.2.8" + checksum: 10c0/ed5322c84efe035c8fc814b1614ff5ca7fb8c2872a7c045197daf99f9b1bd68f32a2c79ffcbcfcff2fc5d93924ff9f9447400898f5b1534e6302bb0736a257f0 + languageName: node + linkType: hard + "react-is@npm:^16.13.1, react-is@npm:^16.7.0": version: 16.13.1 resolution: "react-is@npm:16.13.1" @@ -11995,23 +11336,6 @@ __metadata: languageName: node linkType: hard -"react-popper@npm:^1.3.7": - version: 1.3.11 - resolution: "react-popper@npm:1.3.11" - dependencies: - "@babel/runtime": "npm:^7.1.2" - "@hypnosphi/create-react-context": "npm:^0.3.1" - deep-equal: "npm:^1.1.1" - popper.js: "npm:^1.14.4" - prop-types: "npm:^15.6.1" - typed-styles: "npm:^0.0.7" - warning: "npm:^4.0.2" - peerDependencies: - react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/d5dd1d0d4b5a3407134681b42a079fce525c94bce892ad177515d54a8cf64203eecbc30231476367e916aaff91221f5b6abd5afc207a86c698f35b7254178488 - languageName: node - linkType: hard - "react-redux@npm:^8.1.3": version: 8.1.3 resolution: "react-redux@npm:8.1.3" @@ -12045,22 +11369,22 @@ __metadata: linkType: hard "react-rnd@npm:^10.5.2": - version: 10.5.2 - resolution: "react-rnd@npm:10.5.2" + version: 10.5.3 + resolution: "react-rnd@npm:10.5.3" dependencies: - re-resizable: "npm:6.11.2" - react-draggable: "npm:4.4.6" + re-resizable: "npm:^6.11.2" + react-draggable: "npm:^4.5.0" tslib: "npm:2.6.2" peerDependencies: react: ">=16.3.0" react-dom: ">=16.3.0" - checksum: 10c0/27215052246fcc0f74b1d9ead0445fdabb98e666272a8af33f4d735bcf13fb34240c064b1b59601c87c4387ddfeb44568a182f6138a3c04ce2596272b50ff2b5 + checksum: 10c0/9f65397150adc472ee96c0f257fa0f8301afb010d4e6ed97df793347ce7cd7c84bac980b7977cfc70314b9da3bd9a96c1ca5171b3c5e03fe2392832550307cb7 languageName: node linkType: hard "react-select@npm:^5.7.0": - version: 5.10.1 - resolution: "react-select@npm:5.10.1" + version: 5.10.2 + resolution: "react-select@npm:5.10.2" dependencies: "@babel/runtime": "npm:^7.12.0" "@emotion/cache": "npm:^11.4.0" @@ -12074,7 +11398,7 @@ __metadata: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - checksum: 10c0/0d10a249b96150bd648f2575d59c848b8fac7f4d368a97ae84e4aaba5bbc1035deba4cdc82e49a43904b79ec50494505809618b0e98022b2d51e7629551912ed + checksum: 10c0/2027ef57b0a375d1accdad60550329dc0911b31d429ec6eb9ae391ae9baf9f26991b0ff8615eb99de319a55ce6e9382107783e615cb2116522ed0275b214b7f7 languageName: node linkType: hard @@ -12114,21 +11438,6 @@ __metadata: languageName: node linkType: hard -"react-transition-group@npm:^2.9.0": - version: 2.9.0 - resolution: "react-transition-group@npm:2.9.0" - dependencies: - dom-helpers: "npm:^3.4.0" - loose-envify: "npm:^1.4.0" - prop-types: "npm:^15.6.2" - react-lifecycles-compat: "npm:^3.0.4" - peerDependencies: - react: ">=15.0.0" - react-dom: ">=15.0.0" - checksum: 10c0/df40608e9defb6873290b9f2165921f17139b8edbb2019e2de38f77477f9cbd8fdb739b20e1e04cb16a513137c80e85cf5f0fff96049a94b740d389313394476 - languageName: node - linkType: hard - "react-transition-group@npm:^4.3.0": version: 4.4.5 resolution: "react-transition-group@npm:4.4.5" @@ -12145,9 +11454,9 @@ __metadata: linkType: hard "react@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": - version: 19.2.5 - resolution: "react@npm:19.2.5" - checksum: 10c0/4b5f231dbef92886f602533c9ce3bde04d99f0e71dfb5d794c43e02726efaad0421c08688f75fc98a6d6e1dc017372e1af7abbfecdc86a79968f461675931a7a + version: 19.2.8 + resolution: "react@npm:19.2.8" + checksum: 10c0/5f86bdb56426652fd6d989d30a6f2e603c057272c47c9ca3a3fbe190a3a39ee9ccce937d63cfc039717abed1b8891d6a499134bc35311acc07eafdacd86537cd languageName: node linkType: hard @@ -12235,12 +11544,12 @@ __metadata: languageName: node linkType: hard -"readdir-glob@npm:^1.1.2": - version: 1.1.3 - resolution: "readdir-glob@npm:1.1.3" +"readdir-glob@npm:^3.0.0": + version: 3.0.0 + resolution: "readdir-glob@npm:3.0.0" dependencies: - minimatch: "npm:^5.1.0" - checksum: 10c0/a37e0716726650845d761f1041387acd93aa91b28dd5381950733f994b6c349ddc1e21e266ec7cc1f9b92e205a7a972232f9b89d5424d07361c2c3753d5dbace + minimatch: "npm:^10.2.2" + checksum: 10c0/9a358c8347b4db2a1f72168da67f7ef8d9ccd51f7fdaa127eed8170a1025e97942705f827b0b45e6fdc0e40f04d0859ba75c3d471ee1fcc9e2cfb9fc81606989 languageName: node linkType: hard @@ -12254,15 +11563,15 @@ __metadata: linkType: hard "recast@npm:^0.23.5": - version: 0.23.11 - resolution: "recast@npm:0.23.11" + version: 0.23.12 + resolution: "recast@npm:0.23.12" dependencies: ast-types: "npm:^0.16.1" esprima: "npm:~4.0.0" source-map: "npm:~0.6.1" tiny-invariant: "npm:^1.3.3" tslib: "npm:^2.0.1" - checksum: 10c0/45b520a8f0868a5a24ecde495be9de3c48e69a54295d82a7331106554b75cfba75d16c909959d056e9ceed47a1be5e061e2db8b9ecbcd6ba44c2f3ef9a47bd18 + checksum: 10c0/6abedaca3ce696b1f3d4e0a9c458319d5e24a8dc2666e91ae9729882f523c144558f4d415b40d398eed6a3956500656299df44ca8c4dba8e35a75bb454a067fc languageName: node linkType: hard @@ -12417,9 +11726,9 @@ __metadata: linkType: hard "reselect@npm:^5.1.0": - version: 5.1.1 - resolution: "reselect@npm:5.1.1" - checksum: 10c0/219c30da122980f61853db3aebd173524a2accd4b3baec770e3d51941426c87648a125ca08d8c57daa6b8b086f2fdd2703cb035dd6231db98cdbe1176a71f489 + version: 5.2.0 + resolution: "reselect@npm:5.2.0" + checksum: 10c0/d0a8497e404b25a769fe792eacae88b9b576c30870450cd243d76ec9427d91a59c4a2cc00d824d283448b444c4c698a8f961d771c8ae39c759313afb31950e2e languageName: node linkType: hard @@ -12463,13 +11772,6 @@ __metadata: languageName: node linkType: hard -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab - languageName: node - linkType: hard - "resolve-protobuf-schema@npm:^2.1.0": version: 2.1.0 resolution: "resolve-protobuf-schema@npm:2.1.0" @@ -12480,28 +11782,30 @@ __metadata: linkType: hard "resolve@npm:^1.10.0, resolve@npm:^1.19.0, resolve@npm:^1.22.1, resolve@npm:^1.22.8, resolve@npm:^1.3.2": - version: 1.22.10 - resolution: "resolve@npm:1.22.10" + version: 1.22.12 + resolution: "resolve@npm:1.22.12" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 + checksum: 10c0/b16dc9b537c02e8c3388f7d3dcff9741d3071625f9a97ac1c885f2b0ca51e78df22328fb6d6ef214dd9101fb7cfc19aa2836fe3410402a94f3f7b8639c7149bf languageName: node linkType: hard "resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.3.2#optional!builtin": - version: 1.22.10 - resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" + version: 1.22.12 + resolution: "resolve@patch:resolve@npm%3A1.22.12#optional!builtin::version=1.22.12&hash=c3c19d" dependencies: - is-core-module: "npm:^2.16.0" + es-errors: "npm:^1.3.0" + is-core-module: "npm:^2.16.1" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 + checksum: 10c0/fc6519984ae1f894d877c0060ba8b1f5ba3bc0e85a02f74e141929c118c23d74d9735619a9cc2965397387e514884245c65d72a40731dcb6cfc84c7bcdc8321e languageName: node linkType: hard @@ -12540,17 +11844,6 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:^2.6.3": - version: 2.7.1 - resolution: "rimraf@npm:2.7.1" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: ./bin.js - checksum: 10c0/4eef73d406c6940927479a3a9dee551e14a54faf54b31ef861250ac815172bade86cc6f7d64a4dc5e98b65e4b18a2e1c9ff3b68d296be0c748413f092bb0dd40 - languageName: node - linkType: hard - "rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": version: 3.0.2 resolution: "rimraf@npm:3.0.2" @@ -12562,26 +11855,26 @@ __metadata: languageName: node linkType: hard -"rolldown@npm:~1.1.2": - version: 1.1.2 - resolution: "rolldown@npm:1.1.2" - dependencies: - "@oxc-project/types": "npm:=0.137.0" - "@rolldown/binding-android-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-arm64": "npm:1.1.2" - "@rolldown/binding-darwin-x64": "npm:1.1.2" - "@rolldown/binding-freebsd-x64": "npm:1.1.2" - "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.2" - "@rolldown/binding-linux-arm64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-arm64-musl": "npm:1.1.2" - "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-s390x-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-gnu": "npm:1.1.2" - "@rolldown/binding-linux-x64-musl": "npm:1.1.2" - "@rolldown/binding-openharmony-arm64": "npm:1.1.2" - "@rolldown/binding-wasm32-wasi": "npm:1.1.2" - "@rolldown/binding-win32-arm64-msvc": "npm:1.1.2" - "@rolldown/binding-win32-x64-msvc": "npm:1.1.2" +"rolldown@npm:~1.1.5": + version: 1.1.5 + resolution: "rolldown@npm:1.1.5" + dependencies: + "@oxc-project/types": "npm:=0.139.0" + "@rolldown/binding-android-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-arm64": "npm:1.1.5" + "@rolldown/binding-darwin-x64": "npm:1.1.5" + "@rolldown/binding-freebsd-x64": "npm:1.1.5" + "@rolldown/binding-linux-arm-gnueabihf": "npm:1.1.5" + "@rolldown/binding-linux-arm64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-arm64-musl": "npm:1.1.5" + "@rolldown/binding-linux-ppc64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-s390x-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-gnu": "npm:1.1.5" + "@rolldown/binding-linux-x64-musl": "npm:1.1.5" + "@rolldown/binding-openharmony-arm64": "npm:1.1.5" + "@rolldown/binding-wasm32-wasi": "npm:1.1.5" + "@rolldown/binding-win32-arm64-msvc": "npm:1.1.5" + "@rolldown/binding-win32-x64-msvc": "npm:1.1.5" "@rolldown/pluginutils": "npm:^1.0.0" dependenciesMeta: "@rolldown/binding-android-arm64": @@ -12616,7 +11909,7 @@ __metadata: optional: true bin: rolldown: ./bin/cli.mjs - checksum: 10c0/e35b83849aa341dcb5403d58654161ce2a0fb7c334ee17c186e497be0e43eb7a5a80ecfd4eee505847fcf8b0a3255ccd32438b2f548663afcce9b7b13820825f + checksum: 10c0/93072aa9d95882f9fa5cd57fe7db6a48efd6f85a25a32137425052ecca02df653651eed0c33a865c33511681bd6a40691d5c88900b8e95ce1334f4f75ba826ff languageName: node linkType: hard @@ -12643,35 +11936,35 @@ __metadata: linkType: hard "rollup@npm:^4.43.0": - version: 4.59.0 - resolution: "rollup@npm:4.59.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.59.0" - "@rollup/rollup-android-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-arm64": "npm:4.59.0" - "@rollup/rollup-darwin-x64": "npm:4.59.0" - "@rollup/rollup-freebsd-arm64": "npm:4.59.0" - "@rollup/rollup-freebsd-x64": "npm:4.59.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.59.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.59.0" - "@rollup/rollup-linux-loong64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-loong64-musl": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-ppc64-musl": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-riscv64-musl": "npm:4.59.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.59.0" - "@rollup/rollup-linux-x64-musl": "npm:4.59.0" - "@rollup/rollup-openbsd-x64": "npm:4.59.0" - "@rollup/rollup-openharmony-arm64": "npm:4.59.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.59.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.59.0" - "@rollup/rollup-win32-x64-gnu": "npm:4.59.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.59.0" - "@types/estree": "npm:1.0.8" + version: 4.62.2 + resolution: "rollup@npm:4.62.2" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.62.2" + "@rollup/rollup-android-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-arm64": "npm:4.62.2" + "@rollup/rollup-darwin-x64": "npm:4.62.2" + "@rollup/rollup-freebsd-arm64": "npm:4.62.2" + "@rollup/rollup-freebsd-x64": "npm:4.62.2" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.62.2" + "@rollup/rollup-linux-arm64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-arm64-musl": "npm:4.62.2" + "@rollup/rollup-linux-loong64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-loong64-musl": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-ppc64-musl": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-riscv64-musl": "npm:4.62.2" + "@rollup/rollup-linux-s390x-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-gnu": "npm:4.62.2" + "@rollup/rollup-linux-x64-musl": "npm:4.62.2" + "@rollup/rollup-openbsd-x64": "npm:4.62.2" + "@rollup/rollup-openharmony-arm64": "npm:4.62.2" + "@rollup/rollup-win32-arm64-msvc": "npm:4.62.2" + "@rollup/rollup-win32-ia32-msvc": "npm:4.62.2" + "@rollup/rollup-win32-x64-gnu": "npm:4.62.2" + "@rollup/rollup-win32-x64-msvc": "npm:4.62.2" + "@types/estree": "npm:1.0.9" fsevents: "npm:~2.3.2" dependenciesMeta: "@rollup/rollup-android-arm-eabi": @@ -12728,7 +12021,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/f38742da34cfee5e899302615fa157aa77cb6a2a1495e5e3ce4cc9c540d3262e235bbe60caa31562bbfe492b01fdb3e7a8c43c39d842d3293bcf843123b766fc + checksum: 10c0/83ff5f4a1fea3fa05db2ef56beceee8c33d4a72b818e19c562f1e85c41076fe5b12aadc44048bb73e60b83336df82154b017fa6bf0186f3141643e6f215fbdcb languageName: node linkType: hard @@ -12802,7 +12095,7 @@ __metadata: languageName: node linkType: hard -"safe-stable-stringify@npm:^2.2.0": +"safe-stable-stringify@npm:^2.5.0": version: 2.5.0 resolution: "safe-stable-stringify@npm:2.5.0" checksum: 10c0/baea14971858cadd65df23894a40588ed791769db21bafb7fd7608397dbdce9c5aac60748abae9995e0fc37e15f2061980501e012cd48859740796bea2987f49 @@ -12869,42 +12162,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2": - version: 7.7.2 - resolution: "semver@npm:7.7.2" - bin: - semver: bin/semver.js - checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea - languageName: node - linkType: hard - -"semver@npm:^7.7.2": - version: 7.7.4 - resolution: "semver@npm:7.7.4" +"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.2, semver@npm:^7.7.2": + version: 7.8.5 + resolution: "semver@npm:7.8.5" bin: semver: bin/semver.js - checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 - languageName: node - linkType: hard - -"send@npm:0.19.0": - version: 0.19.0 - resolution: "send@npm:0.19.0" - dependencies: - debug: "npm:2.6.9" - depd: "npm:2.0.0" - destroy: "npm:1.2.0" - encodeurl: "npm:~1.0.2" - escape-html: "npm:~1.0.3" - etag: "npm:~1.8.1" - fresh: "npm:0.5.2" - http-errors: "npm:2.0.0" - mime: "npm:1.6.0" - ms: "npm:2.1.3" - on-finished: "npm:2.4.1" - range-parser: "npm:~1.2.1" - statuses: "npm:2.0.1" - checksum: 10c0/ea3f8a67a8f0be3d6bf9080f0baed6d2c51d11d4f7b4470de96a5029c598a7011c497511ccc28968b70ef05508675cebff27da9151dd2ceadd60be4e6cf845e3 + checksum: 10c0/b1f3127a5be8125a94f37188b361c212466c292c6910adce3ec106cff5dc211ccaedc4739c11bb70fda59d6fc1f040a9bca289f4e093451521a2372e5231fe0c languageName: node linkType: hard @@ -12927,15 +12190,36 @@ __metadata: languageName: node linkType: hard +"send@npm:~0.19.1": + version: 0.19.2 + resolution: "send@npm:0.19.2" + dependencies: + debug: "npm:2.6.9" + depd: "npm:2.0.0" + destroy: "npm:1.2.0" + encodeurl: "npm:~2.0.0" + escape-html: "npm:~1.0.3" + etag: "npm:~1.8.1" + fresh: "npm:~0.5.2" + http-errors: "npm:~2.0.1" + mime: "npm:1.6.0" + ms: "npm:2.1.3" + on-finished: "npm:~2.4.1" + range-parser: "npm:~1.2.1" + statuses: "npm:~2.0.2" + checksum: 10c0/20c2389fe0fdf3fc499938cac598bc32272287e993c4960717381a10de8550028feadfb9076f959a3a3ebdea42e1f690e116f0d16468fa56b9fd41866d3dc267 + languageName: node + linkType: hard + "serve-static@npm:^1.12.1": - version: 1.16.2 - resolution: "serve-static@npm:1.16.2" + version: 1.16.3 + resolution: "serve-static@npm:1.16.3" dependencies: encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" parseurl: "npm:~1.3.3" - send: "npm:0.19.0" - checksum: 10c0/528fff6f5e12d0c5a391229ad893910709bc51b5705962b09404a1d813857578149b8815f35d3ee5752f44cd378d0f31669d4b1d7e2d11f41e08283d5134bd1f + send: "npm:~0.19.1" + checksum: 10c0/36320397a073c71bedf58af48a4a100fe6d93f07459af4d6f08b9a7217c04ce2a4939e0effd842dc7bece93ffcd59eb52f58c4fff2a8e002dc29ae6b219cd42b languageName: node linkType: hard @@ -12984,7 +12268,7 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.2.0, setprototypeof@npm:~1.2.0": +"setprototypeof@npm:~1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" checksum: 10c0/68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc @@ -13014,13 +12298,13 @@ __metadata: languageName: node linkType: hard -"side-channel-list@npm:^1.0.0": - version: 1.0.0 - resolution: "side-channel-list@npm:1.0.0" +"side-channel-list@npm:^1.0.1": + version: 1.0.1 + resolution: "side-channel-list@npm:1.0.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d + object-inspect: "npm:^1.13.4" + checksum: 10c0/d346c787fd2f9f1c2fdea14f00e8250118db0e7596d85a6cb9faa75f105d31a73a8f7a341c93d7df2a2429098c3d37a77bd3be9e88c37094b8c01807bc77c7a2 languageName: node linkType: hard @@ -13049,16 +12333,16 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0": - version: 1.1.0 - resolution: "side-channel@npm:1.1.0" +"side-channel@npm:^1.0.4, side-channel@npm:^1.1.0, side-channel@npm:^1.1.1": + version: 1.1.1 + resolution: "side-channel@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" - object-inspect: "npm:^1.13.3" - side-channel-list: "npm:^1.0.0" + object-inspect: "npm:^1.13.4" + side-channel-list: "npm:^1.0.1" side-channel-map: "npm:^1.0.1" side-channel-weakmap: "npm:^1.0.2" - checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 + checksum: 10c0/dc0ab81d67f61bda9247d053ce93f41c3fd8ad2bdcb9cf9d8d2f8540d488f26d87a5e99ebfc07eea49ec025867b2452b705442d974b1478f0395e69f6bfb3270 languageName: node linkType: hard @@ -13122,34 +12406,6 @@ __metadata: languageName: node linkType: hard -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.3": - version: 8.0.5 - resolution: "socks-proxy-agent@npm:8.0.5" - dependencies: - agent-base: "npm:^7.1.2" - debug: "npm:^4.3.4" - socks: "npm:^2.8.3" - checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 - languageName: node - linkType: hard - -"socks@npm:^2.8.3": - version: 2.8.7 - resolution: "socks@npm:2.8.7" - dependencies: - ip-address: "npm:^10.0.1" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/2805a43a1c4bcf9ebf6e018268d87b32b32b06fbbc1f9282573583acc155860dc361500f89c73bfbb157caa1b4ac78059eac0ef15d1811eb0ca75e0bdadbc9d2 - languageName: node - linkType: hard - "source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" @@ -13242,9 +12498,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.21 - resolution: "spdx-license-ids@npm:3.0.21" - checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 + version: 3.0.23 + resolution: "spdx-license-ids@npm:3.0.23" + checksum: 10c0/8495620f6f2a237749cce922ea2d593a66f7885c301b1a0f5542183e7041182f27f616a8f13345cefdea0c9b3e0899328e0aa8cec100cf4f3fac4bb3bd975515 languageName: node linkType: hard @@ -13283,15 +12539,6 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^13.0.0": - version: 13.0.1 - resolution: "ssri@npm:13.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/cf6408a18676c57ff2ed06b8a20dc64bb3e748e5c7e095332e6aecaa2b8422b1e94a739a8453bf65156a8a47afe23757ba4ab52d3ea3b62322dc40875763e17a - languageName: node - linkType: hard - "stack-utils@npm:^2.0.6": version: 2.0.6 resolution: "stack-utils@npm:2.0.6" @@ -13315,13 +12562,6 @@ __metadata: languageName: node linkType: hard -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 - languageName: node - linkType: hard - "statuses@npm:^2.0.1, statuses@npm:^2.0.2, statuses@npm:~2.0.2": version: 2.0.2 resolution: "statuses@npm:2.0.2" @@ -13337,9 +12577,9 @@ __metadata: linkType: hard "std-env@npm:^3.9.0": - version: 3.9.0 - resolution: "std-env@npm:3.9.0" - checksum: 10c0/4a6f9218aef3f41046c3c7ecf1f98df00b30a07f4f35c6d47b28329bc2531eef820828951c7d7b39a1c5eb19ad8a46e3ddfc7deb28f0a2f3ceebee11bab7ba50 + version: 3.10.0 + resolution: "std-env@npm:3.10.0" + checksum: 10c0/1814927a45004d36dde6707eaf17552a546769bc79a6421be2c16ce77d238158dfe5de30910b78ec30d95135cc1c59ea73ee22d2ca170f8b9753f84da34c427f languageName: node linkType: hard @@ -13379,13 +12619,13 @@ __metadata: linkType: hard "streamx@npm:^2.12.5, streamx@npm:^2.15.0, streamx@npm:^2.25.0": - version: 2.25.0 - resolution: "streamx@npm:2.25.0" + version: 2.28.0 + resolution: "streamx@npm:2.28.0" dependencies: events-universal: "npm:^1.0.0" fast-fifo: "npm:^1.3.2" text-decoder: "npm:^1.1.0" - checksum: 10c0/1ecc4b722050e9088b99cde59d035e846ac97cedc3ef14a00b196d9c0b6f47d9fd18df454a19f56f0f586ab4f23fb7229069b9e8eaf22072a21bd9c909d4e0ea + checksum: 10c0/1cd5647c4dbdaadf4623b48183bab1d71bdc251e24c8f3baddf9fb9fa75096a7d446aba2c58a4f71964eeb5753f514b59e97bfdf94a60ce2c1b33594410b0342 languageName: node linkType: hard @@ -13484,16 +12724,7 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.1.0": +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": version: 7.2.0 resolution: "strip-ansi@npm:7.2.0" dependencies: @@ -13533,11 +12764,9 @@ __metadata: linkType: hard "strip-indent@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-indent@npm:4.0.0" - dependencies: - min-indent: "npm:^1.0.1" - checksum: 10c0/6b1fb4e22056867f5c9e7a6f3f45922d9a2436cac758607d58aeaac0d3b16ec40b1c43317de7900f1b8dd7a4107352fa47fb960f2c23566538c51e8585c8870e + version: 4.1.1 + resolution: "strip-indent@npm:4.1.1" + checksum: 10c0/5b23dd5934be0ef6b6fe1b802887f83e56ad9dcd9f6c3896a637da2c6c3a6da3fdf3e51354a98e6cccb6f1c41863e7b9b9deaa348639dfd35f71f3549edb4dff languageName: node linkType: hard @@ -13626,46 +12855,37 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.11.0": - version: 0.11.6 - resolution: "synckit@npm:0.11.6" +"synckit@npm:^0.11.13, synckit@npm:^0.11.8": + version: 0.11.13 + resolution: "synckit@npm:0.11.13" dependencies: - "@pkgr/core": "npm:^0.2.4" - checksum: 10c0/51c0e41c025b90cc68a7b304fbfe873cc77b3ddc99e92ab33fbd42f4fbd1ee65fc7d9affd8eedcac43644658399244aa521e19fb18d7b4e66898d0e2c0cc8d9b - languageName: node - linkType: hard - -"synckit@npm:^0.11.8": - version: 0.11.12 - resolution: "synckit@npm:0.11.12" - dependencies: - "@pkgr/core": "npm:^0.2.9" - checksum: 10c0/cc4d446806688ae0d728ae7bb3f53176d065cf9536647fb85bdd721dcefbd7bf94874df6799ff61580f2b03a392659219b778a9254ad499f9a1f56c34787c235 + "@pkgr/core": "npm:^0.3.6" + checksum: 10c0/5a6c19f4f79045aaa7994106401bff6dbe7cca23a6d0a0723ff14eb8b1bebeb4a71729118f6914905598e304ea2fa13509885e11ba07d92e7cb68a06740cb328 languageName: node linkType: hard "tar-stream@npm:^3.0.0": - version: 3.1.8 - resolution: "tar-stream@npm:3.1.8" + version: 3.2.0 + resolution: "tar-stream@npm:3.2.0" dependencies: b4a: "npm:^1.6.4" bare-fs: "npm:^4.5.5" fast-fifo: "npm:^1.2.0" streamx: "npm:^2.15.0" - checksum: 10c0/c4bf369de2302fcf30218d091167a5372ee79b69a1b5bb493ddb7714193ca805719558966334bab1f2775c8142826865f24e25459ff1c5f0a096bc3a3d5c5ce2 + checksum: 10c0/8a06c915f93c9b0906e79867e36a9cfe197da4d41b72e89ec0de99577ae755505d14815c1346b70c2410aa09d3145c3e3af2ff5802b6af84990cdd6c60dbb997 languageName: node linkType: hard "tar@npm:^7.5.4": - version: 7.5.20 - resolution: "tar@npm:7.5.20" + version: 7.5.21 + resolution: "tar@npm:7.5.21" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" minizlib: "npm:^3.1.0" yallist: "npm:^5.0.0" - checksum: 10c0/4df4335c6d958b76adf1eaced55889dec3ca1c51f450658a074af80694bb0d9c154a8e93fdf4da617372d1575b121295379993961bbe4cd4b0867c0e5689846a + checksum: 10c0/bce0e51692356078e6f6a909d5c93f5b4c099c097ffea19b1b1bf10385539a429baba26bca59aabbace68c4519d16f2f1c07afe7eaab55876a449a032480fabc languageName: node linkType: hard @@ -13697,13 +12917,13 @@ __metadata: linkType: hard "test-exclude@npm:^7.0.1": - version: 7.0.1 - resolution: "test-exclude@npm:7.0.1" + version: 7.0.2 + resolution: "test-exclude@npm:7.0.2" dependencies: "@istanbuljs/schema": "npm:^0.1.2" glob: "npm:^10.4.1" - minimatch: "npm:^9.0.4" - checksum: 10c0/6d67b9af4336a2e12b26a68c83308c7863534c65f27ed4ff7068a56f5a58f7ac703e8fc80f698a19bb154fd8f705cdf7ec347d9512b2c522c737269507e7b263 + minimatch: "npm:^10.2.2" + checksum: 10c0/b79b855af9168c6a362146015ccf40f5e3a25e307304ba9bea930818507f6319d230380d5d7b5baa659c981ccc11f1bd21b6f012f85606353dec07e02dee67c9 languageName: node linkType: hard @@ -13770,27 +12990,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12": - version: 0.2.16 - resolution: "tinyglobby@npm:0.2.16" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.4" - checksum: 10c0/f2e09fd93dd95c41e522113b686ff6f7c13020962f8698a864a257f3d7737599afc47722b7ab726e12f8a813f779906187911ff8ee6701ede65072671a7e934b - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": - version: 0.2.15 - resolution: "tinyglobby@npm:0.2.15" - dependencies: - fdir: "npm:^6.5.0" - picomatch: "npm:^4.0.3" - checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.17": +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15, tinyglobby@npm:^0.2.17": version: 0.2.17 resolution: "tinyglobby@npm:0.2.17" dependencies: @@ -13853,12 +13053,10 @@ __metadata: languageName: node linkType: hard -"tmp@npm:^0.0.33": - version: 0.0.33 - resolution: "tmp@npm:0.0.33" - dependencies: - os-tmpdir: "npm:~1.0.2" - checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 +"tmp@npm:^0.2.4": + version: 0.2.7 + resolution: "tmp@npm:0.2.7" + checksum: 10c0/59eb55584f2f07210d3231b6a1f6b5c2b9794d8a7b509c8ee867ed2acad6d2245ee2448b7937b676ffbff3155a70077edde8a69f9d7cf0f90c86a62e8910c357 languageName: node linkType: hard @@ -13892,7 +13090,7 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.1, toidentifier@npm:~1.0.1": +"toidentifier@npm:~1.0.1": version: 1.0.1 resolution: "toidentifier@npm:1.0.1" checksum: 10c0/93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 @@ -13960,13 +13158,13 @@ __metadata: linkType: hard "ts-dedent@npm:^2.0.0": - version: 2.2.0 - resolution: "ts-dedent@npm:2.2.0" - checksum: 10c0/175adea838468cc2ff7d5e97f970dcb798bbcb623f29c6088cb21aa2880d207c5784be81ab1741f56b9ac37840cbaba0c0d79f7f8b67ffe61c02634cafa5c303 + version: 2.3.0 + resolution: "ts-dedent@npm:2.3.0" + checksum: 10c0/bfc3331e0740191c0134fb526e7f01e16657e50955c9395de14703c6ef17119c91651fa044cf558dc9c1dbb0fe1b2a74e303aeebcbd5e3b31acd14f72f545a54 languageName: node linkType: hard -"ts-node@npm:^10.9.1": +"ts-node@npm:^10.9.2": version: 10.9.2 resolution: "ts-node@npm:10.9.2" dependencies: @@ -14036,20 +13234,6 @@ __metadata: languageName: node linkType: hard -"tslib@npm:~2.3.1": - version: 2.3.1 - resolution: "tslib@npm:2.3.1" - checksum: 10c0/4efd888895bdb3b987086b2b7793ad1013566f882b0eb7a328384e5ecc0d71cafb16bbeab3196200cbf7f01a73ccc25acc2f131d4ea6ee959be7436a8a306482 - languageName: node - linkType: hard - -"tslib@npm:~2.5.0": - version: 2.5.3 - resolution: "tslib@npm:2.5.3" - checksum: 10c0/4cb1817d34fae5b27d146e6c4a468d4155097d95c1335d0bc9690f11f33e63844806bf4ed6d97c30c72b8d85261b66cbbe16d871d9c594ac05701ec83e62a607 - languageName: node - linkType: hard - "tslint@npm:6.1.3": version: 6.1.3 resolution: "tslint@npm:6.1.3" @@ -14087,18 +13271,17 @@ __metadata: linkType: hard "tsx@npm:^4.21.0": - version: 4.21.0 - resolution: "tsx@npm:4.21.0" + version: 4.23.1 + resolution: "tsx@npm:4.23.1" dependencies: - esbuild: "npm:~0.27.0" + esbuild: "npm:~0.28.0" fsevents: "npm:~2.3.3" - get-tsconfig: "npm:^4.7.5" dependenciesMeta: fsevents: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/f5072923cd8459a1f9a26df87823a2ab5754641739d69df2a20b415f61814322b751fa6be85db7c6ec73cf68ba8fac2fd1cfc76bdb0aa86ded984d84d5d2126b + checksum: 10c0/2f7393c09ffd161701342c87141c6158945967c0fdb6476f157a72e53554cbc983b8e516b441beafde27c9840d8ffd619802acce6b6be5e9e197d693e111a55d languageName: node linkType: hard @@ -14169,21 +13352,14 @@ __metadata: languageName: node linkType: hard -"type-is@npm:^2.0.1": - version: 2.0.1 - resolution: "type-is@npm:2.0.1" +"type-is@npm:^2.0.1, type-is@npm:^2.1.0": + version: 2.1.0 + resolution: "type-is@npm:2.1.0" dependencies: - content-type: "npm:^1.0.5" + content-type: "npm:^2.0.0" media-typer: "npm:^1.1.0" mime-types: "npm:^3.0.0" - checksum: 10c0/7f7ec0a060b16880bdad36824ab37c26019454b67d73e8a465ed5a3587440fbe158bc765f0da68344498235c877e7dbbb1600beccc94628ed05599d667951b99 - languageName: node - linkType: hard - -"typed-styles@npm:^0.0.7": - version: 0.0.7 - resolution: "typed-styles@npm:0.0.7" - checksum: 10c0/ec159f0e538364750cf9b8f19136375df64ad364fda355e6f7a7216ebffc67f18b436722c5c6853c89f70e6507eb69e5061ceb9334fa1f54902c0f6be1b985fe + checksum: 10c0/a6018f8f509de48f2c7429305e3a920e73b374fa93127dd0877ae1c2df65a5d33907caac8afb0c37a9b9fc7c49f29e3f55d668963dc845d966930b667c07f50e languageName: node linkType: hard @@ -14234,25 +13410,25 @@ __metadata: linkType: hard "typescript-json-schema@npm:^0.67.1": - version: 0.67.1 - resolution: "typescript-json-schema@npm:0.67.1" + version: 0.67.4 + resolution: "typescript-json-schema@npm:0.67.4" dependencies: - "@types/json-schema": "npm:^7.0.9" - "@types/node": "npm:^18.11.9" - glob: "npm:^7.1.7" + "@types/json-schema": "npm:^7.0.15" + "@types/node": "npm:^24.10.2" + glob: "npm:^13.0.6" path-equal: "npm:^1.2.5" - safe-stable-stringify: "npm:^2.2.0" - ts-node: "npm:^10.9.1" - typescript: "npm:~5.5.0" - vm2: "npm:^3.10.0" - yargs: "npm:^17.1.1" + safe-stable-stringify: "npm:^2.5.0" + ts-node: "npm:^10.9.2" + typescript: "npm:~5.9.3" + vm2: "npm:^3.11.3" + yargs: "npm:^18.0.0" bin: typescript-json-schema: bin/typescript-json-schema - checksum: 10c0/f7d9695f56ebeab64515947f20cd53899a9df1f737063b60c2a187b5ddc618d57a23aca3e5cb778a270e024308d378d98f86834888665b9198eee50509fed81c + checksum: 10c0/9a5a17ca1a2b186615398cbe088e811b68dd2188c5ce83bb4572f45329892d3ee08f3a9c5b993bdc04c276829d4c516ad5e45e142d482d0366c51e665b2176d8 languageName: node linkType: hard -"typescript@npm:5.9.3": +"typescript@npm:5.9.3, typescript@npm:~5.9.3": version: 5.9.3 resolution: "typescript@npm:5.9.3" bin: @@ -14262,17 +13438,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:~5.5.0": - version: 5.5.4 - resolution: "typescript@npm:5.5.4" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c - languageName: node - linkType: hard - -"typescript@patch:typescript@npm%3A5.9.3#optional!builtin": +"typescript@patch:typescript@npm%3A5.9.3#optional!builtin, typescript@patch:typescript@npm%3A~5.9.3#optional!builtin": version: 5.9.3 resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5" bin: @@ -14282,16 +13448,6 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A~5.5.0#optional!builtin": - version: 5.5.4 - resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=379a07" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/73409d7b9196a5a1217b3aaad929bf76294d3ce7d6e9766dd880ece296ee91cf7d7db6b16c6c6c630ee5096eccde726c0ef17c7dfa52b01a243e57ae1f09ef07 - languageName: node - linkType: hard - "uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": version: 2.1.0 resolution: "uc.micro@npm:2.1.0" @@ -14299,17 +13455,24 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 +"undici-types@npm:~7.18.0": + version: 7.18.2 + resolution: "undici-types@npm:7.18.2" + checksum: 10c0/85a79189113a238959d7a647368e4f7c5559c3a404ebdb8fc4488145ce9426fcd82252a844a302798dfc0e37e6fb178ff481ed03bc4caf634c5757d9ef43521d languageName: node linkType: hard -"undici-types@npm:~6.21.0": - version: 6.21.0 - resolution: "undici-types@npm:6.21.0" - checksum: 10c0/c01ed51829b10aa72fc3ce64b747f8e74ae9b60eafa19a7b46ef624403508a54c526ffab06a14a26b3120d055e1104d7abe7c9017e83ced038ea5cf52f8d5e04 +"undici-types@npm:~8.3.0": + version: 8.3.0 + resolution: "undici-types@npm:8.3.0" + checksum: 10c0/c8aa7e2fbebfce519654dafadc0ece59be888d2ccaf180fb4495da875e7b536d2456345c384069c7e6f3e9c9ab7435f074957da306f142343eee86ff8048855a + languageName: node + linkType: hard + +"undici@npm:^8.4.1": + version: 8.8.0 + resolution: "undici@npm:8.8.0" + checksum: 10c0/6ee51e6b814b67e212b19349c38657be988d878ca669ccf2ad33f0ebbb0d83e851aa57554b6ce3c6668a9a4df3010fb6a6af7bd28692ade911083ef376a3a75d languageName: node linkType: hard @@ -14354,29 +13517,32 @@ __metadata: linkType: hard "unrs-resolver@npm:^1.7.11": - version: 1.11.1 - resolution: "unrs-resolver@npm:1.11.1" - dependencies: - "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1" - "@unrs/resolver-binding-android-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-x64": "npm:1.11.1" - "@unrs/resolver-binding-freebsd-x64": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1" - napi-postinstall: "npm:^0.3.0" + version: 1.12.2 + resolution: "unrs-resolver@npm:1.12.2" + dependencies: + "@unrs/resolver-binding-android-arm-eabi": "npm:1.12.2" + "@unrs/resolver-binding-android-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-arm64": "npm:1.12.2" + "@unrs/resolver-binding-darwin-x64": "npm:1.12.2" + "@unrs/resolver-binding-freebsd-x64": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-arm64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-loong64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.12.2" + "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-gnu": "npm:1.12.2" + "@unrs/resolver-binding-linux-x64-musl": "npm:1.12.2" + "@unrs/resolver-binding-openharmony-arm64": "npm:1.12.2" + "@unrs/resolver-binding-wasm32-wasi": "npm:1.12.2" + "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.12.2" + "@unrs/resolver-binding-win32-x64-msvc": "npm:1.12.2" + napi-postinstall: "npm:^0.3.4" dependenciesMeta: "@unrs/resolver-binding-android-arm-eabi": optional: true @@ -14396,6 +13562,10 @@ __metadata: optional: true "@unrs/resolver-binding-linux-arm64-musl": optional: true + "@unrs/resolver-binding-linux-loong64-gnu": + optional: true + "@unrs/resolver-binding-linux-loong64-musl": + optional: true "@unrs/resolver-binding-linux-ppc64-gnu": optional: true "@unrs/resolver-binding-linux-riscv64-gnu": @@ -14408,6 +13578,8 @@ __metadata: optional: true "@unrs/resolver-binding-linux-x64-musl": optional: true + "@unrs/resolver-binding-openharmony-arm64": + optional: true "@unrs/resolver-binding-wasm32-wasi": optional: true "@unrs/resolver-binding-win32-arm64-msvc": @@ -14416,7 +13588,7 @@ __metadata: optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true - checksum: 10c0/c91b112c71a33d6b24e5c708dab43ab80911f2df8ee65b87cd7a18fb5af446708e98c4b415ca262026ad8df326debcc7ca6a801b2935504d87fd6f0b9d70dce1 + checksum: 10c0/ddc27f6d920eabdafeac0077ebff9fd799c895cea025751dc17b360bf9be7c93c471fafebf65f205eec476f90d7daa36aef889d47362b2dd4705d68852bcfea4 languageName: node linkType: hard @@ -14434,9 +13606,9 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.3": - version: 1.1.3 - resolution: "update-browserslist-db@npm:1.1.3" +"update-browserslist-db@npm:^1.2.3": + version: 1.2.3 + resolution: "update-browserslist-db@npm:1.2.3" dependencies: escalade: "npm:^3.2.0" picocolors: "npm:^1.1.1" @@ -14444,7 +13616,7 @@ __metadata: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 10c0/682e8ecbf9de474a626f6462aa85927936cdd256fe584c6df2508b0df9f7362c44c957e9970df55dfe44d3623807d26316ea2c7d26b80bb76a16c56c37233c32 + checksum: 10c0/13a00355ea822388f68af57410ce3255941d5fb9b7c49342c4709a07c9f230bbef7f7499ae0ca7e0de532e79a82cc0c4edbd125f1a323a1845bf914efddf8bec languageName: node linkType: hard @@ -14633,10 +13805,10 @@ __metadata: linkType: hard "vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": - version: 7.3.5 - resolution: "vite@npm:7.3.5" + version: 7.3.6 + resolution: "vite@npm:7.3.6" dependencies: - esbuild: "npm:^0.27.0" + esbuild: "npm:^0.27.0 || ^0.28.0" fdir: "npm:^6.5.0" fsevents: "npm:~2.3.3" picomatch: "npm:^4.0.3" @@ -14683,19 +13855,19 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/4ad700649ed2ebd1e726d32f3f6e41eecbec4e29bcb5977805f3d43a5659280518aa431b0fc61adc1879df4fe1978d7cfc7dbbe54cdf014022385052967721e8 + checksum: 10c0/c6d359f84ad362f5c97ff7988b77c90add04162c60cdf6059375a7d9e3217848c53a8cb6b6c48517bef84b6bba4c9bc85319a889b5236acb7d5a2bc8cb7b9a8d languageName: node linkType: hard -"vite@npm:^8.0.14": - version: 8.1.0 - resolution: "vite@npm:8.1.0" +"vite@npm:^8.0.16": + version: 8.1.5 + resolution: "vite@npm:8.1.5" dependencies: fsevents: "npm:~2.3.3" lightningcss: "npm:^1.32.0" - picomatch: "npm:^4.0.4" - postcss: "npm:^8.5.15" - rolldown: "npm:~1.1.2" + picomatch: "npm:^4.0.5" + postcss: "npm:^8.5.17" + rolldown: "npm:~1.1.5" tinyglobby: "npm:^0.2.17" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 @@ -14740,7 +13912,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/d7e2da70169a7d93c68f5d0e246bdf2fb35d8835170663a28f01191d73e16b80322b5f229973ce754de80136be843481b0afa616bb8530b51e7454e4887c4b45 + checksum: 10c0/3231e24dd4394d0bc8b4f0f5d6d6a2eda8737e5053042892b4163564456a03d67f953c4c7498621f9517eebc30a492ea136c728a767a122eb84bf6d7cf60e1e6 languageName: node linkType: hard @@ -14800,7 +13972,7 @@ __metadata: languageName: node linkType: hard -"vm2@npm:^3.10.0": +"vm2@npm:^3.11.3": version: 3.11.5 resolution: "vm2@npm:3.11.5" dependencies: @@ -14821,18 +13993,18 @@ __metadata: languageName: node linkType: hard -"wait-on@npm:9.0.5": - version: 9.0.5 - resolution: "wait-on@npm:9.0.5" +"wait-on@npm:9.0.10": + version: 9.0.10 + resolution: "wait-on@npm:9.0.10" dependencies: - axios: "npm:^1.15.0" - joi: "npm:^18.1.2" + axios: "npm:^1.16.0" + joi: "npm:^18.2.1" lodash: "npm:^4.18.1" minimist: "npm:^1.2.8" rxjs: "npm:^7.8.2" bin: wait-on: bin/wait-on - checksum: 10c0/79823ebda9bb08ae341abb49d298d001039071ac103f6557da69371ae92a6b35ea8faca0b1c349f08c7b6db0ea527705bea9044a6a41e5a0e4470ee9d95fdcd1 + checksum: 10c0/f5a1e940fe8efa6ad4b52efabad46925bfddea191d895a7f87e1c364975e7b095b0849f2f37549aea6a9dabacbf3c8ab14e818ba1182e370f060b7f6c8da0cf2 languageName: node linkType: hard @@ -14873,15 +14045,6 @@ __metadata: languageName: node linkType: hard -"warning@npm:^4.0.2, warning@npm:^4.0.3": - version: 4.0.3 - resolution: "warning@npm:4.0.3" - dependencies: - loose-envify: "npm:^1.0.0" - checksum: 10c0/aebab445129f3e104c271f1637fa38e55eb25f968593e3825bd2f7a12bd58dc3738bb70dc8ec85826621d80b4acfed5a29ebc9da17397c6125864d72301b937e - languageName: node - linkType: hard - "web-worker@npm:^1.5.0": version: 1.5.0 resolution: "web-worker@npm:1.5.0" @@ -14979,17 +14142,17 @@ __metadata: linkType: hard "which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.2": - version: 1.1.19 - resolution: "which-typed-array@npm:1.1.19" + version: 1.1.22 + resolution: "which-typed-array@npm:1.1.22" dependencies: available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.8" + call-bind: "npm:^1.0.9" call-bound: "npm:^1.0.4" for-each: "npm:^0.3.5" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" - checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f + checksum: 10c0/e59db184a4e78b461fac3b05fafc1e7badbbedafbf04a967ee1de73717f1f9723a79699e7b5de71d449541cb5da8353efc01a4f8a72a152479850e54fa196c40 languageName: node linkType: hard @@ -15015,7 +14178,7 @@ __metadata: languageName: node linkType: hard -"which@npm:^6.0.0, which@npm:^6.0.1": +"which@npm:^6.0.1": version: 6.0.1 resolution: "which@npm:6.0.1" dependencies: @@ -15026,6 +14189,17 @@ __metadata: languageName: node linkType: hard +"which@npm:^7.0.0": + version: 7.0.0 + resolution: "which@npm:7.0.0" + dependencies: + isexe: "npm:^4.0.0" + bin: + node-which: bin/which.js + checksum: 10c0/ca0b54f198f78bbc4b7c02e34bda8d335cb352e0adb4cbca1c37b1a957af3a879a82c4c27ca6525bc942f548d8b64f816ef6528360af9f3de55ffb9b979b620d + languageName: node + linkType: hard + "why-is-node-running@npm:^2.3.0": version: 2.3.0 resolution: "why-is-node-running@npm:2.3.0" @@ -15150,8 +14324,8 @@ __metadata: linkType: hard "ws@npm:^8.18.0, ws@npm:^8.2.3": - version: 8.18.2 - resolution: "ws@npm:8.18.2" + version: 8.21.1 + resolution: "ws@npm:8.21.1" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -15160,7 +14334,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 10c0/4b50f67931b8c6943c893f59c524f0e4905bbd183016cfb0f2b8653aa7f28dad4e456b9d99d285bbb67cca4fedd9ce90dfdfaa82b898a11414ebd66ee99141e4 + checksum: 10c0/c4c6f1d95f6d465262de2037c57c715725d67e078dd49420ede4e19115668aba159cb64d85c5e89c06eb2826be599e62e5095860ad6cc54ff42e8bd7684e1db8 languageName: node linkType: hard @@ -15237,13 +14411,6 @@ __metadata: languageName: node linkType: hard -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a - languageName: node - linkType: hard - "yallist@npm:^5.0.0": version: 5.0.0 resolution: "yallist@npm:5.0.0" @@ -15252,27 +14419,18 @@ __metadata: linkType: hard "yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f - languageName: node - linkType: hard - -"yaml@npm:^2.2.2": - version: 2.8.0 - resolution: "yaml@npm:2.8.0" - bin: - yaml: bin.mjs - checksum: 10c0/f6f7310cf7264a8107e72c1376f4de37389945d2fb4656f8060eca83f01d2d703f9d1b925dd8f39852a57034fafefde6225409ddd9f22aebfda16c6141b71858 + version: 1.10.3 + resolution: "yaml@npm:1.10.3" + checksum: 10c0/c309ff85a0a569a981d71ab9cf0fef68672a16b9cdf40639d1c3b30034f6cd16ee428602bd6d64ecf006f8c8bee499023cac236538f79898aa99fb5db529a2ed languageName: node linkType: hard -"yaml@npm:^2.8.3": - version: 2.8.3 - resolution: "yaml@npm:2.8.3" +"yaml@npm:^2.2.2, yaml@npm:^2.8.3": + version: 2.9.0 + resolution: "yaml@npm:2.9.0" bin: yaml: bin.mjs - checksum: 10c0/ddff0e11c1b467728d7eb4633db61c5f5de3d8e9373cf84d08fb0cdee03e1f58f02b9f1c51a4a8a865751695addbd465a77f73f1079be91fe5493b29c305fd77 + checksum: 10c0/f340718df45e97a9551b9bf9dac61c80050bc464513b710debfb5067c380c8472e3b67809cffacb4ab5ffb5e66ef9310816c88b05f371cec60abfedd8c88e0a2 languageName: node linkType: hard @@ -15318,7 +14476,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:17.7.2, yargs@npm:^17.1.1, yargs@npm:^17.4.1, yargs@npm:^17.7.2": +"yargs@npm:17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: @@ -15353,8 +14511,8 @@ __metadata: linkType: hard "yargs@npm:^16.1.0, yargs@npm:^16.2.0": - version: 16.2.0 - resolution: "yargs@npm:16.2.0" + version: 16.2.2 + resolution: "yargs@npm:16.2.2" dependencies: cliui: "npm:^7.0.2" escalade: "npm:^3.1.1" @@ -15363,7 +14521,22 @@ __metadata: string-width: "npm:^4.2.0" y18n: "npm:^5.0.5" yargs-parser: "npm:^20.2.2" - checksum: 10c0/b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 + checksum: 10c0/1ca2152581ee7c9c9fb4174767ff7294b1c272d2d0a1f6eb13c39ce177fded85eb9c96711e00cd7913c0a9b88b6e763713ee11cae81b9b62fd97bdd0b03d5549 + languageName: node + linkType: hard + +"yargs@npm:^17.4.1, yargs@npm:^17.7.2": + version: 17.7.3 + resolution: "yargs@npm:17.7.3" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/7a28572f7e785a57886e34fdbddb9b28756dec552e1453d5f6e7cdd00ad8721a4e8c4321d33683f5e61cacb36ad43258adbb48396b71ec4ed14abee0fc0d0c1f languageName: node linkType: hard @@ -15396,23 +14569,23 @@ __metadata: linkType: hard "zarrita@npm:^0.7.1": - version: 0.7.1 - resolution: "zarrita@npm:0.7.1" + version: 0.7.3 + resolution: "zarrita@npm:0.7.3" dependencies: "@zarrita/storage": "npm:^0.2.0" numcodecs: "npm:^0.3.2" - checksum: 10c0/f82f5710ff7a5594e02f50a3519a3a03eaba5395c0c546cdf9066a72c43442443191708835749917bd603e61062cf555fba3f0960ba3fc1c703aa76ed4ff7b9b + checksum: 10c0/97ad16f900a190f14872582d03c75da26a77ae925aa57dcc5dcdb04216ecd25383c46e78947d503bb9e0857e69d9c4018c2489b3d8d8f312e69eec924d2393de languageName: node linkType: hard -"zip-stream@npm:^6.0.1": - version: 6.0.1 - resolution: "zip-stream@npm:6.0.1" +"zip-stream@npm:^7.0.2": + version: 7.0.5 + resolution: "zip-stream@npm:7.0.5" dependencies: - archiver-utils: "npm:^5.0.0" - compress-commons: "npm:^6.0.2" + compress-commons: "npm:^7.0.0" + normalize-path: "npm:^3.0.0" readable-stream: "npm:^4.0.0" - checksum: 10c0/50f2fb30327fb9d09879abf7ae2493705313adf403e794b030151aaae00009162419d60d0519e807673ec04d442e140c8879ca14314df0a0192de3b233e8f28b + checksum: 10c0/e1669e17031c3c7243cb9014eacfaa66f4cd2e0d613a57dbee9caf7122ae869f8b2ea2e5891b5d9eee2897060c01db048b9b2a544ba83e227f6c162905282e48 languageName: node linkType: hard @@ -15426,9 +14599,9 @@ __metadata: linkType: hard "zod@npm:^3.25 || ^4.0": - version: 4.3.6 - resolution: "zod@npm:4.3.6" - checksum: 10c0/860d25a81ab41d33aa25f8d0d07b091a04acb426e605f396227a796e9e800c44723ed96d0f53a512b57be3d1520f45bf69c0cb3b378a232a00787a2609625307 + version: 4.4.3 + resolution: "zod@npm:4.4.3" + checksum: 10c0/7ea31b558e88f9faf44f31dd185e2e1cbf51fed3081787fb96cc2534749b50c0acfc6da7f0922a7353ed092dd358c7d50c28ea96c94d04af64191bd33152eca3 languageName: node linkType: hard
Zoom in or out of the map. The physical map size should be shown below
Zoom in or out of the map. The map scale should be shown below
Click the test select button to simulate a map selection request. The selection count should display below diff --git a/src/styles/index.css b/src/styles/index.css index 760ba49b..a7d75e5f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -2,11 +2,6 @@ @import "../../stdassets/sprites/icons.css"; @import "./splitter-layout.css"; -/* HACK: Clear out any trace of the font icon as HTMLSelect should be using the SVG counterpart */ -.bp3-select:after { - content: ""; -} - .legend-label-highlight-text { background-color: yellow; } @@ -19,6 +14,10 @@ background-color: white; } +.map-viewer-component:focus { + outline: none; +} + .map-viewer-component .ol-overlaycontainer, .map-viewer-component .ol-overlaycontainer-stopevent { z-index: 20; @@ -520,10 +519,6 @@ div.InfoText { word-wrap: break-word; } -.bp3-dark { - background-color: #30404d; -} - .colorpicker { position: relative; width: 100%; diff --git a/stdassets/bp-icons.js b/stdassets/bp-icons.js deleted file mode 100644 index ce4d1f82..00000000 --- a/stdassets/bp-icons.js +++ /dev/null @@ -1,121 +0,0 @@ -/** - * bp-icons.js - * - * A verbatim subset of the Blueprint.js SVG icon set that we actually use - * - * All usages of the BP icon set will be replaced with this via - * bundler aliasing in the build config - * - * When adding icons, copy the relevant icon path definitions from - * node_modules/@blueprintjs/icons/src/generated/iconSvgPaths.ts - */ - -//TODO/FIXME: This module is not used directly by sources, so changes to -//this file may not trigger a rebuild. If making changes, you may -//have to restart the current build process. - -export const IconSvgPaths16 = { - "arrow-left": ["M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z"], - "arrow-right": ["M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"], - "arrows-horizontal": ["M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z"], - "caret-up": ["M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z"], - "chevron-down": ["M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z"], - "chevron-right": ["M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "cog": ["M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"], - "comment": ["M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z"], - "comparison": ["M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z"], - "delete": ["M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z"], - "disable": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z"], - "double-caret-vertical": ["M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"], - "edit": ["M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z"], - "error": ["M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z"], - "folder-close": ["M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z"], - "hand": ["M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z"], - "home": ["M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z"], - "issue": ["M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z"], - "layer": ["M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z"], - "layers": ["M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z"], - "map": ["M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z"], - "media": ["M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z"], - "menu-closed": ["M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z"], - "minus": ["M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z"], - "new-layer": ["M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z"], - "path-search": ["M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z"], - "play": ["M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z"], - "plus": ["M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z"], - "properties": ["M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"], - "search": ["M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"], - "select": ["M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z"], - "small-cross": ["M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"], - "stop": ["M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z"], - "th": ["M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z"], - "tick": ["M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z"], - "trash": ["M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z"], - "upload": ["M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z"], - "warning-sign": ["M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z"], - "zoom-to-fit": ["M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z"] -} - -export const IconSvgPaths20 = { - "arrow-left": ["M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z"], - "arrow-right": ["M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "arrows-horizontal": ["M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z"], - "application": ["M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z"], - "caret-down": ["M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z"], - "caret-up": ["M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z"], - "chevron-down": ["M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z"], - "chevron-right": ["M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "chevron-up": ["M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "cross": ["M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "cog": ["M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "comment": ["M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"], - "comparison": ["M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z"], - "delete": ["M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"], - "disable": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z"], - "double-caret-vertical": ["M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z"], - "edit": ["M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z"], - "error": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z"], - "folder-close": ["M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z"], - "geosearch": ["M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z"], - "hand": ["M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z"], - "home": ["M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z"], - "info-sign": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z"], - "issue": ["M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z"], - "layer": ["M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z"], - "layers": ["M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z", -"M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", -"M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z"], - "map": ["M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z"], - "media": ["M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z"], - "menu-closed": ["M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z"], - "menu-open": ["M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z"], - "minus": ["M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "multi-select": ["M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z"], - "new-layer": ["M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z"], - "path-search": ["M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"], - "play": ["M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z"], - "plus": ["M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z"], - "print": ["M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z"], - "properties": ["M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"], - "select": ["M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z"], - "search": ["M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"], - "small-cross": ["M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"], - "stop": ["M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"], - "tag": ["M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z"], - "th": ["M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z"], - "tick": ["M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z"], - "trash": ["M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z"], - "upload": ["M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z"], - "warning-sign": ["M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z"], - "zoom-to-fit": ["M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z"] -} \ No newline at end of file diff --git a/test/components/map-load-indicator.spec.tsx b/test/components/map-load-indicator.spec.tsx index f208ca96..9576724a 100644 --- a/test/components/map-load-indicator.spec.tsx +++ b/test/components/map-load-indicator.spec.tsx @@ -16,7 +16,7 @@ describe("MapLoadIndicator", () => { const { container } = render(); const div = container.firstChild as HTMLDivElement; expect(div).toBeInTheDocument(); - expect(div.style.width).toBe("50.0%"); + expect(div.style.width).toBe("50%"); expect(div.style.background).toBe("rgb(255, 0, 0)"); // #ff0000 in rgb expect(div.style.visibility).toBe("visible"); expect(div.style.position).toBe("absolute"); @@ -61,7 +61,7 @@ describe("MapLoadIndicator", () => { const props = { ...baseProps, loaded: 0, loading: 10 }; const { container } = render(); const div = container.firstChild as HTMLDivElement; - expect(div.style.width).toBe("0.0%"); + expect(div.style.width).toBe("0%"); expect(div.style.visibility).toBe("visible"); }); }); \ No newline at end of file diff --git a/test/containers/add-manage-layers.spec.tsx b/test/containers/add-manage-layers.spec.tsx index 32a0570c..cb85b2b6 100644 --- a/test/containers/add-manage-layers.spec.tsx +++ b/test/containers/add-manage-layers.spec.tsx @@ -31,8 +31,8 @@ import { AddManageLayersContainer } from "../../src/containers/add-manage-layers import { tr } from "../../src/api/i18n"; // --------------------------------------------------------------------------- -// Mock element-context so that Blueprint components are replaced with simple -// HTML elements that work in jsdom without any Blueprint CSS / portals. +// Mock element-context so components are replaced with simple HTML elements +// that work in jsdom without any external CSS / portals. // --------------------------------------------------------------------------- vi.mock("../../src/components/elements/element-context", () => ({ useElementContext: () => ({ diff --git a/test/containers/measure.spec.tsx b/test/containers/measure.spec.tsx index 95cef2c7..233d35e6 100644 --- a/test/containers/measure.spec.tsx +++ b/test/containers/measure.spec.tsx @@ -75,6 +75,7 @@ vi.mock("../../src/components/elements/element-context", () => ({ Callout: ({ children }: React.PropsWithChildren<{}>) =>