From a7301a8bf3e48e7f3a6dbea15cd826c881991b28 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Mon, 29 Jul 2024 16:26:16 +0900
Subject: [PATCH 01/14] Replace header buttons with Yorkie UI components
---
components/Layout/Header.tsx | 39 +-
hooks/useTheme.ts | 25 +-
package-lock.json | 14633 ++++++++++-----------------------
package.json | 5 +-
pages/_app.tsx | 1 +
styles/style.css | 13981 ++++++++++++++++++++++++++++++-
6 files changed, 18274 insertions(+), 10410 deletions(-)
diff --git a/components/Layout/Header.tsx b/components/Layout/Header.tsx
index 7a42e77..bfcd49e 100644
--- a/components/Layout/Header.tsx
+++ b/components/Layout/Header.tsx
@@ -1,7 +1,8 @@
import { ReactElement, useEffect, useState } from 'react';
import { useRouter } from 'next/router';
import Link from 'next/link';
-import { Button, Icon } from '@/components';
+import { Icon } from '@/components';
+import { Button, Flex } from 'yorkie-ui-test';
import { isValidToken } from '@/utils/isValidToken';
import { MobileGnbDropdown } from './MobileGnbDropdown';
import LogoSVG from '@/public/assets/icons/logo_horizontal_xs.svg';
@@ -51,25 +52,25 @@ export function Header(): ReactElement {
- {isLoggedIn ? (
-
- Dashboard
-
- ) : isLoggedIn === false ? (
- <>
-
- Sign in
+
+ {!!isLoggedIn ? (
+
+ Dashboard
- }
- >
- Start for free
-
- >
- ) : null}
+ ) : (
+ <>
+
+ Sign in
+
+
+
+
+ Start for free
+
+
+ >
+ )}
+
diff --git a/hooks/useTheme.ts b/hooks/useTheme.ts
index 913bc0b..453df1d 100644
--- a/hooks/useTheme.ts
+++ b/hooks/useTheme.ts
@@ -1,30 +1,35 @@
import { useState, useEffect } from 'react';
export type ThemeOption = 'system' | 'light' | 'dark';
+
+const handleTheme = (theme: 'light' | 'dark') => {
+ if (theme === 'dark') {
+ window.document.body.classList.add('dark');
+ window.document.body.classList.add('darkmode');
+ } else if (theme === 'light') {
+ window.document.body.classList.remove('dark');
+ window.document.body.classList.remove('darkmode');
+ }
+};
+
export function useTheme(initialTheme?: ThemeOption) {
const [theme, setTheme] = useState(initialTheme);
useEffect(() => {
const mediaQueryList = window.matchMedia('(prefers-color-scheme: dark)');
const handleSystemThemeChange = (e: MediaQueryListEvent) => {
- if (e.matches) {
- window.document.body.classList.add('darkmode');
- } else {
- window.document.body.classList.remove('darkmode');
- }
+ handleTheme(e.matches ? 'dark' : 'light');
};
if (theme === 'dark') {
- window.document.body.classList.add('darkmode');
+ handleTheme('dark');
window.localStorage.setItem('theme', 'dark');
} else if (theme === 'light') {
- window.document.body.classList.remove('darkmode');
+ handleTheme('light');
window.localStorage.setItem('theme', 'light');
} else if (theme === 'system') {
+ handleTheme(mediaQueryList.matches ? 'dark' : 'light');
window.localStorage.setItem('theme', 'system');
- if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
- window.document.body.classList.add('darkmode');
- }
mediaQueryList.addEventListener('change', handleSystemThemeChange);
}
return () => {
diff --git a/package-lock.json b/package-lock.json
index db26935..c58552e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,7 +1,7 @@
{
"name": "homepage",
"version": "0.1.0",
- "lockfileVersion": 2,
+ "lockfileVersion": 3,
"requires": true,
"packages": {
"": {
@@ -17,7 +17,7 @@
"jwt-decode": "^3.1.2",
"lodash.clonedeep": "^4.5.0",
"minimatch": "^5.1.2",
- "next": "13.0.0",
+ "next": "13.4.7",
"next-image-export-optimizer": "^1.0.1",
"next-mdx-remote": "^4.1.0",
"next-remote-watch": "^2.0.0",
@@ -41,7 +41,8 @@
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
- "typescript": "4.8.4"
+ "typescript": "4.8.4",
+ "yorkie-ui-test": "^0.0.4"
}
},
"node_modules/@ampproject/remapping": {
@@ -56,6 +57,63 @@
"node": ">=6.0.0"
}
},
+ "node_modules/@ark-ui/react": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/@ark-ui/react/-/react-3.6.2.tgz",
+ "integrity": "sha512-WOPeGiJ+P1UHhIgOD14iQZ18EpnFN+zhrQ6IkVk1ZirZrdJlGicWqsRuD3LHh8MznmS4WCFUcYfWaDpTkwZfuA==",
+ "dev": true,
+ "dependencies": {
+ "@internationalized/date": "3.5.5",
+ "@zag-js/accordion": "0.63.0",
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/avatar": "0.63.0",
+ "@zag-js/carousel": "0.63.0",
+ "@zag-js/checkbox": "0.63.0",
+ "@zag-js/clipboard": "0.63.0",
+ "@zag-js/collapsible": "0.63.0",
+ "@zag-js/color-picker": "0.63.0",
+ "@zag-js/color-utils": "0.63.0",
+ "@zag-js/combobox": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/date-picker": "0.63.0",
+ "@zag-js/date-utils": "0.63.0",
+ "@zag-js/dialog": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/editable": "0.63.0",
+ "@zag-js/file-upload": "0.63.0",
+ "@zag-js/file-utils": "0.63.0",
+ "@zag-js/hover-card": "0.63.0",
+ "@zag-js/i18n-utils": "0.63.0",
+ "@zag-js/menu": "0.63.0",
+ "@zag-js/number-input": "0.63.0",
+ "@zag-js/pagination": "0.63.0",
+ "@zag-js/pin-input": "0.63.0",
+ "@zag-js/popover": "0.63.0",
+ "@zag-js/presence": "0.63.0",
+ "@zag-js/progress": "0.63.0",
+ "@zag-js/qr-code": "0.63.0",
+ "@zag-js/radio-group": "0.63.0",
+ "@zag-js/rating-group": "0.63.0",
+ "@zag-js/react": "0.63.0",
+ "@zag-js/select": "0.63.0",
+ "@zag-js/signature-pad": "0.63.0",
+ "@zag-js/slider": "0.63.0",
+ "@zag-js/splitter": "0.63.0",
+ "@zag-js/switch": "0.63.0",
+ "@zag-js/tabs": "0.63.0",
+ "@zag-js/tags-input": "0.63.0",
+ "@zag-js/time-picker": "0.63.0",
+ "@zag-js/toast": "0.63.0",
+ "@zag-js/toggle-group": "0.63.0",
+ "@zag-js/tooltip": "0.63.0",
+ "@zag-js/tree-view": "0.63.0",
+ "@zag-js/types": "0.63.0"
+ },
+ "peerDependencies": {
+ "react": ">=18.0.0",
+ "react-dom": ">=18.0.0"
+ }
+ },
"node_modules/@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
@@ -1909,6 +1967,31 @@
"node": "*"
}
},
+ "node_modules/@floating-ui/core": {
+ "version": "1.6.5",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.5.tgz",
+ "integrity": "sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==",
+ "dev": true,
+ "dependencies": {
+ "@floating-ui/utils": "^0.2.5"
+ }
+ },
+ "node_modules/@floating-ui/dom": {
+ "version": "1.6.8",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.8.tgz",
+ "integrity": "sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==",
+ "dev": true,
+ "dependencies": {
+ "@floating-ui/core": "^1.6.0",
+ "@floating-ui/utils": "^0.2.5"
+ }
+ },
+ "node_modules/@floating-ui/utils": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.5.tgz",
+ "integrity": "sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==",
+ "dev": true
+ },
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.6",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz",
@@ -1964,6 +2047,24 @@
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
+ "node_modules/@internationalized/date": {
+ "version": "3.5.5",
+ "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.5.5.tgz",
+ "integrity": "sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==",
+ "dev": true,
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ }
+ },
+ "node_modules/@internationalized/number": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.5.3.tgz",
+ "integrity": "sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==",
+ "dev": true,
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ }
+ },
"node_modules/@jridgewell/gen-mapping": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
@@ -2169,9 +2270,9 @@
}
},
"node_modules/@next/env": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-13.0.0.tgz",
- "integrity": "sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg=="
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.7.tgz",
+ "integrity": "sha512-ZlbiFulnwiFsW9UV1ku1OvX/oyIPLtMk9p/nnvDSwI0s7vSoZdRtxXNsaO+ZXrLv/pMbXVGq4lL8TbY9iuGmVw=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.0.0",
@@ -2182,40 +2283,10 @@
"glob": "7.1.7"
}
},
- "node_modules/@next/swc-android-arm-eabi": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.0.tgz",
- "integrity": "sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-android-arm64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.0.0.tgz",
- "integrity": "sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
"node_modules/@next/swc-darwin-arm64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.0.tgz",
- "integrity": "sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.7.tgz",
+ "integrity": "sha512-VZTxPv1b59KGiv/pZHTO5Gbsdeoxcj2rU2cqJu03btMhHpn3vwzEK0gUSVC/XW96aeGO67X+cMahhwHzef24/w==",
"cpu": [
"arm64"
],
@@ -2228,9 +2299,9 @@
}
},
"node_modules/@next/swc-darwin-x64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.0.tgz",
- "integrity": "sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.7.tgz",
+ "integrity": "sha512-gO2bw+2Ymmga+QYujjvDz9955xvYGrWofmxTq7m70b9pDPvl7aDFABJOZ2a8SRCuSNB5mXU8eTOmVVwyp/nAew==",
"cpu": [
"x64"
],
@@ -2242,40 +2313,10 @@
"node": ">= 10"
}
},
- "node_modules/@next/swc-freebsd-x64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.0.tgz",
- "integrity": "sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm-gnueabihf": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.0.tgz",
- "integrity": "sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
"node_modules/@next/swc-linux-arm64-gnu": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.0.tgz",
- "integrity": "sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.7.tgz",
+ "integrity": "sha512-6cqp3vf1eHxjIDhEOc7Mh/s8z1cwc/l5B6ZNkOofmZVyu1zsbEM5Hmx64s12Rd9AYgGoiCz4OJ4M/oRnkE16/Q==",
"cpu": [
"arm64"
],
@@ -2288,9 +2329,9 @@
}
},
"node_modules/@next/swc-linux-arm64-musl": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.0.tgz",
- "integrity": "sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.7.tgz",
+ "integrity": "sha512-T1kD2FWOEy5WPidOn1si0rYmWORNch4a/NR52Ghyp4q7KyxOCuiOfZzyhVC5tsLIBDH3+cNdB5DkD9afpNDaOw==",
"cpu": [
"arm64"
],
@@ -2303,9 +2344,9 @@
}
},
"node_modules/@next/swc-linux-x64-gnu": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.0.tgz",
- "integrity": "sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.7.tgz",
+ "integrity": "sha512-zaEC+iEiAHNdhl6fuwl0H0shnTzQoAoJiDYBUze8QTntE/GNPfTYpYboxF5LRYIjBwETUatvE0T64W6SKDipvg==",
"cpu": [
"x64"
],
@@ -2318,9 +2359,9 @@
}
},
"node_modules/@next/swc-linux-x64-musl": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.0.tgz",
- "integrity": "sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.7.tgz",
+ "integrity": "sha512-X6r12F8d8SKAtYJqLZBBMIwEqcTRvUdVm+xIq+l6pJqlgT2tNsLLf2i5Cl88xSsIytBICGsCNNHd+siD2fbWBA==",
"cpu": [
"x64"
],
@@ -2333,9 +2374,9 @@
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.0.tgz",
- "integrity": "sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.7.tgz",
+ "integrity": "sha512-NPnmnV+vEIxnu6SUvjnuaWRglZzw4ox5n/MQTxeUhb5iwVWFedolPFebMNwgrWu4AELwvTdGtWjqof53AiWHcw==",
"cpu": [
"arm64"
],
@@ -2348,9 +2389,9 @@
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.0.tgz",
- "integrity": "sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.7.tgz",
+ "integrity": "sha512-6Hxijm6/a8XqLQpOOf/XuwWRhcuc/g4rBB2oxjgCMuV9Xlr2bLs5+lXyh8w9YbAUMYR3iC9mgOlXbHa79elmXw==",
"cpu": [
"ia32"
],
@@ -2363,9 +2404,9 @@
}
},
"node_modules/@next/swc-win32-x64-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.0.tgz",
- "integrity": "sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA==",
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.7.tgz",
+ "integrity": "sha512-sW9Yt36Db1nXJL+mTr2Wo0y+VkPWeYhygvcHj1FF0srVtV+VoDjxleKtny21QHaG05zdeZnw2fCtf2+dEqgwqA==",
"cpu": [
"x64"
],
@@ -2662,9 +2703,9 @@
}
},
"node_modules/@swc/helpers": {
- "version": "0.4.11",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz",
- "integrity": "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==",
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
+ "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
"dependencies": {
"tslib": "^2.4.0"
}
@@ -3114,9125 +3155,1091 @@
"dev": true,
"peer": true
},
- "node_modules/accepts": {
- "version": "1.3.8",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
- "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "node_modules/@zag-js/accordion": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/accordion/-/accordion-0.63.0.tgz",
+ "integrity": "sha512-W78tkIA26ymbsk0lFIEY/SRMuKr+XollkSF0YmpnIxlni3+qSDL1Kiv3HK6qlFClfhdRxQPHdtGI5CZK9XHxBQ==",
+ "dev": true,
"dependencies": {
- "mime-types": "~2.1.34",
- "negotiator": "0.6.3"
- },
- "engines": {
- "node": ">= 0.6"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/acorn": {
- "version": "8.8.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
- "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
+ "node_modules/@zag-js/anatomy": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/anatomy/-/anatomy-0.63.0.tgz",
+ "integrity": "sha512-eUq3iAR3SI8iVrgXM0iCRxt/gU9WUR8utPI1xZW4VWaP95aeI1ethbc+76LkJZ64ibAxGu3nBQchegU4uL9utw==",
+ "dev": true
},
- "node_modules/acorn-import-assertions": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
- "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
+ "node_modules/@zag-js/aria-hidden": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/aria-hidden/-/aria-hidden-0.63.0.tgz",
+ "integrity": "sha512-6Ujm0EONbCnSKbQXt5oTaS7ZEP9DlU7NGiYiEJUvdyhtcbCkchNZoW7BKeAoIVBbQVd4E/+sSlWT6JscSh3VUA==",
"dev": true,
- "peer": true,
- "peerDependencies": {
- "acorn": "^8"
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0"
}
},
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ "node_modules/@zag-js/auto-resize": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/auto-resize/-/auto-resize-0.63.0.tgz",
+ "integrity": "sha512-xInEQs+BM57eONvM09euN2/l6iinyxfgXaWmVMHDvUtj4DKtAwt/6Cq+zXmvJ1O5p8D2Eb/W6kuMsoov5WKbMQ==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0"
}
},
- "node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "node_modules/@zag-js/avatar": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/avatar/-/avatar-0.63.0.tgz",
+ "integrity": "sha512-QZiQb6+Y49A5YsJP/oLzWrEF4bVyaLSdTstj6W3ZydUUwzMcpj0Z5Ky4lZp4Ja25sbVpgMTywCzRX95DLPHwDw==",
"dev": true,
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "node_modules/@zag-js/carousel": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/carousel/-/carousel-0.63.0.tgz",
+ "integrity": "sha512-PWYv0sj/vS2A58bPwFTY/YfXxNGwTJ37nZ8L/+P8G+Zi+3BzmC0D5c0FvyvCJZRpe3wvaX4/p1WPwHnzIKLcEw==",
"dev": true,
- "peer": true,
- "peerDependencies": {
- "ajv": "^6.9.1"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "engines": {
- "node": ">=8"
+ "node_modules/@zag-js/checkbox": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/checkbox/-/checkbox-0.63.0.tgz",
+ "integrity": "sha512-xqiU2iMFKQ15Qq6HU1ey734n9AwyB5BOg/V0TlRuN5T8AiHfGNQDIvLzZYuXXqIrZq9pPAv9Du0FaJGW8tKYbA==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "node_modules/@zag-js/clipboard": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/clipboard/-/clipboard-0.63.0.tgz",
+ "integrity": "sha512-tgv0Qds2RBJcc5w7sGXO3GKw7d1g/Wsl0CHXFg0Ey8WgeE3C9A/wSmTiPvjCZXzqjsfX1Tnzg3GPhAGY+AZwlQ==",
+ "dev": true,
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/anymatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
- "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+ "node_modules/@zag-js/collapsible": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/collapsible/-/collapsible-0.63.0.tgz",
+ "integrity": "sha512-WgI9od9pf3gxd1DgFT2JZxykObzVrVmPEWbn0IjUZKlFDieD88465Zp6YNZmgogOVMEDHlhhsF/upO+5AZ2vcg==",
+ "dev": true,
"dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/argparse": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
- },
- "node_modules/aria-query": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
- "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
+ "node_modules/@zag-js/collection": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/collection/-/collection-0.63.0.tgz",
+ "integrity": "sha512-Xt0yOM5pTWhe14/uuJi/gKKvGhYtrFj0zYYhgMwu8+FFYj/OKPeZnkRpAD6u8jzaRA/jJfCe40tqM69aSngMeQ==",
"dev": true,
"dependencies": {
- "@babel/runtime": "^7.10.2",
- "@babel/runtime-corejs3": "^7.10.2"
- },
- "engines": {
- "node": ">=6.0"
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/array-flatten": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
- },
- "node_modules/array-includes": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz",
- "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==",
+ "node_modules/@zag-js/color-picker": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/color-picker/-/color-picker-0.63.0.tgz",
+ "integrity": "sha512-eWJgWUv1zpmV70Pqv9CcjfDdAcjH3Ljl8REh/Dfn4bQK418m5n2jf+gBYyYMzgnI5kMxHxoYw+Fs9HVzNt8emg==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5",
- "get-intrinsic": "^1.1.1",
- "is-string": "^1.0.7"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/color-utils": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/text-selection": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/array-union": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "node_modules/@zag-js/color-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/color-utils/-/color-utils-0.63.0.tgz",
+ "integrity": "sha512-ISuRR/OsMYmKGjEtMywyFipi8LRVAp9tbjjMwEYSh+7aUvpeL53tpQTNiKe4d/fz7dwnRVjuhhZx8iKmE0/FGg==",
"dev": true,
- "engines": {
- "node": ">=8"
+ "dependencies": {
+ "@zag-js/numeric-range": "0.63.0"
}
},
- "node_modules/array.prototype.flat": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz",
- "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==",
+ "node_modules/@zag-js/combobox": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/combobox/-/combobox-0.63.0.tgz",
+ "integrity": "sha512-y4y0uzLHKEYSeVqscol+sgGhWMTBmD2nXMX7YvRM1KGjsAsTb8eTTmf9bnagf4+Y0EIgozGyEQTyq/Fv9cKPDg==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.2",
- "es-shim-unscopables": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/aria-hidden": "0.63.0",
+ "@zag-js/collection": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "node_modules/array.prototype.flatmap": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz",
- "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==",
+ "node_modules/@zag-js/core": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/core/-/core-0.63.0.tgz",
+ "integrity": "sha512-LsnyODBZ/kkYgPQIs5SD01RfSdnlqYU+lkHgBFXV+haP227mkzWyfVWjIzPDiQdtshjppMm24Ic48xdwtPWEhQ==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.2",
- "es-shim-unscopables": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "@zag-js/store": "0.63.0",
+ "klona": "2.0.6"
}
},
- "node_modules/ast-types-flow": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
- "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==",
- "dev": true
+ "node_modules/@zag-js/date-picker": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/date-picker/-/date-picker-0.63.0.tgz",
+ "integrity": "sha512-QbotF6ngxhJYEV6m1RATaocJYY3Gx98cwpZuxWaEktSJQ0uEYDzjZD08G1i3kwVGYdel0W0RzGyXNmwF7WzNQw==",
+ "dev": true,
+ "dependencies": {
+ "@internationalized/date": "3.5.5",
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/date-utils": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/live-region": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/text-selection": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "node_modules/astring": {
- "version": "1.8.3",
- "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.3.tgz",
- "integrity": "sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A==",
- "bin": {
- "astring": "bin/astring"
+ "node_modules/@zag-js/date-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/date-utils/-/date-utils-0.63.0.tgz",
+ "integrity": "sha512-a1iko12HnxorI8B+r50wLOyXVi8NNWSREEG97eNG/ijGYBn/o3Pnrf2cMLnp6P8N132kj2RaWKVYLdsQHdaN8A==",
+ "dev": true,
+ "peerDependencies": {
+ "@internationalized/date": ">=3.0.0"
}
},
- "node_modules/axe-core": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.0.tgz",
- "integrity": "sha512-4+rr8eQ7+XXS5nZrKcMO/AikHL0hVqy+lHWAnE3xdHl+aguag8SOQ6eEqLexwLNWgXIMfunGuD3ON1/6Kyet0A==",
+ "node_modules/@zag-js/dialog": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/dialog/-/dialog-0.63.0.tgz",
+ "integrity": "sha512-dxRBJBnU6qN7+Xt6mE9Ma7rMdYDrlXcXwSrJLNZM3Eaw28oV0W/mOAm6HTWaBuYglF1pnLOvFaabMrtAKIZcuw==",
"dev": true,
- "engines": {
- "node": ">=4"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/aria-hidden": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/remove-scroll": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0",
+ "focus-trap": "7.5.4"
}
},
- "node_modules/axobject-query": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz",
- "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==",
- "dev": true
- },
- "node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
- "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
- "dependencies": {
- "@babel/compat-data": "^7.17.7",
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "semver": "^6.1.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
- "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "core-js-compat": "^3.25.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
- "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/bail": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
- "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
- },
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/binary-extensions": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
- "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/bl": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
- "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
- "dependencies": {
- "buffer": "^5.5.0",
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0"
- }
- },
- "node_modules/body-parser": {
- "version": "1.20.1",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
- "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
- "dependencies": {
- "bytes": "3.1.2",
- "content-type": "~1.0.4",
- "debug": "2.6.9",
- "depd": "2.0.0",
- "destroy": "1.2.0",
- "http-errors": "2.0.0",
- "iconv-lite": "0.4.24",
- "on-finished": "2.4.1",
- "qs": "6.11.0",
- "raw-body": "2.5.1",
- "type-is": "~1.6.18",
- "unpipe": "1.0.0"
- },
- "engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
- }
- },
- "node_modules/body-parser/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/body-parser/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- },
- "node_modules/boolbase": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
- },
- "node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dependencies": {
- "fill-range": "^7.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.21.4",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz",
- "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- }
- ],
- "dependencies": {
- "caniuse-lite": "^1.0.30001400",
- "electron-to-chromium": "^1.4.251",
- "node-releases": "^2.0.6",
- "update-browserslist-db": "^1.0.9"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/buffer": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "dependencies": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001425",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001425.tgz",
- "integrity": "sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- }
- ]
- },
- "node_modules/ccount": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
- "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/character-entities": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
- "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/character-entities-html4": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
- "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/character-entities-legacy": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
- "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/character-reference-invalid": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
- "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/chokidar": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
- "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
- "funding": [
- {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- ],
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/chokidar/node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/chownr": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
- "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
- "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/classnames": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz",
- "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw=="
- },
- "node_modules/cli-progress": {
- "version": "3.11.2",
- "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.2.tgz",
- "integrity": "sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA==",
- "dependencies": {
- "string-width": "^4.2.3"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/client-only": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
- "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
- },
- "node_modules/color": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
- "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
- "dependencies": {
- "color-convert": "^2.0.1",
- "color-string": "^1.9.0"
- },
- "engines": {
- "node": ">=12.5.0"
- }
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "node_modules/color-string": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
- "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
- "dependencies": {
- "color-name": "^1.0.0",
- "simple-swizzle": "^0.2.2"
- }
- },
- "node_modules/comma-separated-tokens": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz",
- "integrity": "sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true
- },
- "node_modules/content-disposition": {
- "version": "0.5.4",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
- "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
- "dependencies": {
- "safe-buffer": "5.2.1"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/content-type": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/convert-source-map": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
- },
- "node_modules/cookie": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
- "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie-signature": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
- "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
- },
- "node_modules/core-js-compat": {
- "version": "3.26.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz",
- "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==",
- "dependencies": {
- "browserslist": "^4.21.4"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/core-js-pure": {
- "version": "3.26.0",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz",
- "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==",
- "dev": true,
- "hasInstallScript": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/cosmiconfig": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
- "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/css-select": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
- "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.0.1",
- "domhandler": "^4.3.1",
- "domutils": "^2.8.0",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/css-tree": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
- "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
- "dependencies": {
- "mdn-data": "2.0.14",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/css-what": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
- "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
- "engines": {
- "node": ">= 6"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/csso": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
- "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
- "dependencies": {
- "css-tree": "^1.1.2"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/csstype": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
- "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
- },
- "node_modules/damerau-levenshtein": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
- "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
- "dev": true
- },
- "node_modules/debug": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/decode-named-character-reference": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
- "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
- "dependencies": {
- "character-entities": "^2.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/decompress-response": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
- "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
- "dependencies": {
- "mimic-response": "^3.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/deep-extend": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/deep-is": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true
- },
- "node_modules/deepmerge": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/define-properties": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
- "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
- "dev": true,
- "dependencies": {
- "has-property-descriptors": "^1.0.0",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/dequal": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/destroy": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
- "engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
- }
- },
- "node_modules/detect-libc": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
- "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/diff": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz",
- "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==",
- "engines": {
- "node": ">=0.3.1"
- }
- },
- "node_modules/dir-glob": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
- "dev": true,
- "dependencies": {
- "path-type": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
- "dev": true,
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/dom-serializer": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
- "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/dom-serializer/node_modules/entities": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ]
- },
- "node_modules/domhandler": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
- "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
- "dependencies": {
- "domelementtype": "^2.2.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/domutils": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
- "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
- "dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.284",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz",
- "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="
- },
- "node_modules/emoji-regex": {
- "version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "dev": true
- },
- "node_modules/encodeurl": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "dependencies": {
- "once": "^1.4.0"
- }
- },
- "node_modules/enhanced-resolve": {
- "version": "5.12.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
- "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/entities": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
- "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==",
- "engines": {
- "node": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/es-abstract": {
- "version": "1.20.4",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz",
- "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.1.3",
- "get-symbol-description": "^1.0.0",
- "has": "^1.0.3",
- "has-property-descriptors": "^1.0.0",
- "has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "is-callable": "^1.2.7",
- "is-negative-zero": "^2.0.2",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "is-string": "^1.0.7",
- "is-weakref": "^1.0.2",
- "object-inspect": "^1.12.2",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
- "safe-regex-test": "^1.0.0",
- "string.prototype.trimend": "^1.0.5",
- "string.prototype.trimstart": "^1.0.5",
- "unbox-primitive": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/es-module-lexer": {
- "version": "0.9.3",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
- "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/es-shim-unscopables": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
- "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
- "dev": true,
- "dependencies": {
- "has": "^1.0.3"
- }
- },
- "node_modules/es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "dev": true,
- "dependencies": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
- },
- "node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint": {
- "version": "8.26.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz",
- "integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==",
- "dev": true,
- "dependencies": {
- "@eslint/eslintrc": "^1.3.3",
- "@humanwhocodes/config-array": "^0.11.6",
- "@humanwhocodes/module-importer": "^1.0.1",
- "@nodelib/fs.walk": "^1.2.8",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.3.2",
- "doctrine": "^3.0.0",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^7.1.1",
- "eslint-utils": "^3.0.0",
- "eslint-visitor-keys": "^3.3.0",
- "espree": "^9.4.0",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "find-up": "^5.0.0",
- "glob-parent": "^6.0.2",
- "globals": "^13.15.0",
- "grapheme-splitter": "^1.0.4",
- "ignore": "^5.2.0",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "is-path-inside": "^3.0.3",
- "js-sdsl": "^4.1.4",
- "js-yaml": "^4.1.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.1.2",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "regexpp": "^3.2.0",
- "strip-ansi": "^6.0.1",
- "strip-json-comments": "^3.1.0",
- "text-table": "^0.2.0"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/eslint-config-next": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.0.0.tgz",
- "integrity": "sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==",
- "dev": true,
- "dependencies": {
- "@next/eslint-plugin-next": "13.0.0",
- "@rushstack/eslint-patch": "^1.1.3",
- "@typescript-eslint/parser": "^5.21.0",
- "eslint-import-resolver-node": "^0.3.6",
- "eslint-import-resolver-typescript": "^2.7.1",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-jsx-a11y": "^6.5.1",
- "eslint-plugin-react": "^7.31.7",
- "eslint-plugin-react-hooks": "^4.5.0"
- },
- "peerDependencies": {
- "eslint": "^7.23.0 || ^8.0.0",
- "typescript": ">=3.3.1"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-import-resolver-node": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz",
- "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==",
- "dev": true,
- "dependencies": {
- "debug": "^3.2.7",
- "resolve": "^1.20.0"
- }
- },
- "node_modules/eslint-import-resolver-node/node_modules/debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-import-resolver-typescript": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz",
- "integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==",
- "dev": true,
- "dependencies": {
- "debug": "^4.3.4",
- "glob": "^7.2.0",
- "is-glob": "^4.0.3",
- "resolve": "^1.22.0",
- "tsconfig-paths": "^3.14.1"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "*",
- "eslint-plugin-import": "*"
- }
- },
- "node_modules/eslint-import-resolver-typescript/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/eslint-import-resolver-typescript/node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/eslint-import-resolver-typescript/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/eslint-module-utils": {
- "version": "2.7.4",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz",
- "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==",
- "dev": true,
- "dependencies": {
- "debug": "^3.2.7"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependenciesMeta": {
- "eslint": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-module-utils/node_modules/debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-plugin-import": {
- "version": "2.26.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz",
- "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==",
- "dev": true,
- "dependencies": {
- "array-includes": "^3.1.4",
- "array.prototype.flat": "^1.2.5",
- "debug": "^2.6.9",
- "doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.6",
- "eslint-module-utils": "^2.7.3",
- "has": "^1.0.3",
- "is-core-module": "^2.8.1",
- "is-glob": "^4.0.3",
- "minimatch": "^3.1.2",
- "object.values": "^1.1.5",
- "resolve": "^1.22.0",
- "tsconfig-paths": "^3.14.1"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "dev": true
- },
- "node_modules/eslint-plugin-jsx-a11y": {
- "version": "6.6.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz",
- "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==",
- "dev": true,
- "dependencies": {
- "@babel/runtime": "^7.18.9",
- "aria-query": "^4.2.2",
- "array-includes": "^3.1.5",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.4.3",
- "axobject-query": "^2.2.0",
- "damerau-levenshtein": "^1.0.8",
- "emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.2",
- "language-tags": "^1.0.5",
- "minimatch": "^3.1.2",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=4.0"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
- }
- },
- "node_modules/eslint-plugin-jsx-a11y/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/eslint-plugin-jsx-a11y/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/eslint-plugin-react": {
- "version": "7.31.10",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz",
- "integrity": "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==",
- "dev": true,
- "dependencies": {
- "array-includes": "^3.1.5",
- "array.prototype.flatmap": "^1.3.0",
- "doctrine": "^2.1.0",
- "estraverse": "^5.3.0",
- "jsx-ast-utils": "^2.4.1 || ^3.0.0",
- "minimatch": "^3.1.2",
- "object.entries": "^1.1.5",
- "object.fromentries": "^2.0.5",
- "object.hasown": "^1.1.1",
- "object.values": "^1.1.5",
- "prop-types": "^15.8.1",
- "resolve": "^2.0.0-next.3",
- "semver": "^6.3.0",
- "string.prototype.matchall": "^4.0.7"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
- }
- },
- "node_modules/eslint-plugin-react-hooks": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
- "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/resolve": {
- "version": "2.0.0-next.4",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
- "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
- "dev": true,
- "dependencies": {
- "is-core-module": "^2.9.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/eslint-scope": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
- "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
- "dev": true,
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "node_modules/eslint-utils": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
- "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^2.0.0"
- },
- "engines": {
- "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- },
- "peerDependencies": {
- "eslint": ">=5"
- }
- },
- "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
- "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
- "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
- "dev": true,
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "node_modules/eslint/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/eslint/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/espree": {
- "version": "9.4.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz",
- "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==",
- "dev": true,
- "dependencies": {
- "acorn": "^8.8.0",
- "acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^3.3.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/esquery": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
- "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
- "dev": true,
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estree-util-attach-comments": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.0.tgz",
- "integrity": "sha512-rJz6I4L0GaXYtHpoMScgDIwM0/Vwbu5shbMeER596rB2D1EWF6+Gj0e0UKzJPZrpoOc87+Q2kgVFHfjAymIqmw==",
- "dependencies": {
- "@types/estree": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-util-build-jsx": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.0.tgz",
- "integrity": "sha512-apsfRxF9uLrqosApvHVtYZjISPvTJ+lBiIydpC+9wE6cF6ssbhnjyQLqaIjgzGxvC2Hbmec1M7g91PoBayYoQQ==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "estree-walker": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-util-is-identifier-name": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz",
- "integrity": "sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-util-to-js": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.1.0.tgz",
- "integrity": "sha512-490lbfCcpLk+ofK6HCgqDfYs4KAfq6QVvDw3+Bm1YoKRgiOjKiKYGAVQE1uwh7zVxBgWhqp4FDtp5SqunpUk1A==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "astring": "^1.8.0",
- "source-map": "^0.7.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-util-to-js/node_modules/source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/estree-util-visit": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.0.tgz",
- "integrity": "sha512-wdsoqhWueuJKsh5hqLw3j8lwFqNStm92VcwtAOAny8g/KS/l5Y8RISjR4k5W6skCj3Nirag/WUCMS0Nfy3sgsg==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/estree-walker": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.1.tgz",
- "integrity": "sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g=="
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/events": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=0.8.x"
- }
- },
- "node_modules/expand-template": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
- "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/express": {
- "version": "4.18.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
- "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
- "dependencies": {
- "accepts": "~1.3.8",
- "array-flatten": "1.1.1",
- "body-parser": "1.20.1",
- "content-disposition": "0.5.4",
- "content-type": "~1.0.4",
- "cookie": "0.5.0",
- "cookie-signature": "1.0.6",
- "debug": "2.6.9",
- "depd": "2.0.0",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "finalhandler": "1.2.0",
- "fresh": "0.5.2",
- "http-errors": "2.0.0",
- "merge-descriptors": "1.0.1",
- "methods": "~1.1.2",
- "on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "path-to-regexp": "0.1.7",
- "proxy-addr": "~2.0.7",
- "qs": "6.11.0",
- "range-parser": "~1.2.1",
- "safe-buffer": "5.2.1",
- "send": "0.18.0",
- "serve-static": "1.15.0",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "type-is": "~1.6.18",
- "utils-merge": "1.0.1",
- "vary": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.10.0"
- }
- },
- "node_modules/express/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/express/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- },
- "node_modules/extend": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
- },
- "node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "dev": true
- },
- "node_modules/fast-glob": {
- "version": "3.2.12",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
- "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
- "dev": true,
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
- },
- "engines": {
- "node": ">=8.6.0"
- }
- },
- "node_modules/fast-glob/node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
- "dev": true
- },
- "node_modules/fastq": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
- "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
- "dev": true,
- "dependencies": {
- "reusify": "^1.0.4"
- }
- },
- "node_modules/file-entry-cache": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
- "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
- "dev": true,
- "dependencies": {
- "flat-cache": "^3.0.4"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/finalhandler": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
- "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
- "dependencies": {
- "debug": "2.6.9",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "statuses": "2.0.1",
- "unpipe": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/finalhandler/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/finalhandler/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- },
- "node_modules/find-up": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
- "dev": true,
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
- "dev": true,
- "dependencies": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/flatted": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
- "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
- "dev": true
- },
- "node_modules/forwarded": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/framer-motion": {
- "version": "7.6.7",
- "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-7.6.7.tgz",
- "integrity": "sha512-vEGsjXygf4qSmgXXsCT1FC56DjiZau9tSQTCchwAP2mOHnYHUy5gbthc4RXFWJh4Z/gFtqE8bzEmjahwOrfT7w==",
- "dependencies": {
- "@motionone/dom": "10.13.1",
- "framesync": "6.1.2",
- "hey-listen": "^1.0.8",
- "popmotion": "11.0.5",
- "style-value-types": "5.1.2",
- "tslib": "2.4.0"
- },
- "optionalDependencies": {
- "@emotion/is-prop-valid": "^0.8.2"
- },
- "peerDependencies": {
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- }
- },
- "node_modules/framesync": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz",
- "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==",
- "dependencies": {
- "tslib": "2.4.0"
- }
- },
- "node_modules/fresh": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fs-constants": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
- "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "dev": true
- },
- "node_modules/fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "node_modules/function.prototype.name": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
- "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/functions-have-names": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
- "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
- "dependencies": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-symbol-description": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
- "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/github-from-package": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
- "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="
- },
- "node_modules/github-slugger": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
- "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="
- },
- "node_modules/glob": {
- "version": "7.1.7",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
- "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
- "dev": true,
- "dependencies": {
- "is-glob": "^4.0.3"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true,
- "peer": true
- },
- "node_modules/glob/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/glob/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/globals": {
- "version": "13.17.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
- "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/globby": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
- "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
- "dev": true,
- "dependencies": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.9",
- "ignore": "^5.2.0",
- "merge2": "^1.4.1",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.10",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
- "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
- "dev": true,
- "peer": true
- },
- "node_modules/grapheme-splitter": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
- "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
- "dev": true
- },
- "node_modules/gray-matter": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
- "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
- "dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/gray-matter/node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/gray-matter/node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "dependencies": {
- "function-bind": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/has-bigints": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
- "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/has-property-descriptors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
- "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
- "dev": true,
- "dependencies": {
- "get-intrinsic": "^1.1.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-tostringtag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
- "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
- "dev": true,
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/hast-util-has-property": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.0.tgz",
- "integrity": "sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hast-util-heading-rank": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-2.1.0.tgz",
- "integrity": "sha512-w+Rw20Q/iWp2Bcnr6uTrYU6/ftZLbHKhvc8nM26VIWpDqDMlku2iXUVTeOlsdoih/UKQhY7PHQ+vZ0Aqq8bxtQ==",
- "dependencies": {
- "@types/hast": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hast-util-is-element": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz",
- "integrity": "sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hast-util-to-estree": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.1.0.tgz",
- "integrity": "sha512-Vwch1etMRmm89xGgz+voWXvVHba2iiMdGMKmaMfYt35rbVtFDq8JNwwAIvi8zHMkO6Gvqo9oTMwJTmzVRfXh4g==",
- "dependencies": {
- "@types/estree": "^1.0.0",
- "@types/estree-jsx": "^1.0.0",
- "@types/hast": "^2.0.0",
- "@types/unist": "^2.0.0",
- "comma-separated-tokens": "^2.0.0",
- "estree-util-attach-comments": "^2.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "hast-util-whitespace": "^2.0.0",
- "mdast-util-mdx-expression": "^1.0.0",
- "mdast-util-mdxjs-esm": "^1.0.0",
- "property-information": "^6.0.0",
- "space-separated-tokens": "^2.0.0",
- "style-to-object": "^0.3.0",
- "unist-util-position": "^4.0.0",
- "zwitch": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hast-util-to-string": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz",
- "integrity": "sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==",
- "dependencies": {
- "@types/hast": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hast-util-whitespace": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz",
- "integrity": "sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hey-listen": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
- "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
- },
- "node_modules/http-errors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
- "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
- "dependencies": {
- "depd": "2.0.0",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "toidentifier": "1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/ignore": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
- "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
- "dev": true,
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/image-size": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz",
- "integrity": "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==",
- "dependencies": {
- "queue": "6.0.2"
- },
- "bin": {
- "image-size": "bin/image-size.js"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "dev": true,
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
- },
- "node_modules/ini": {
- "version": "1.3.8",
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
- },
- "node_modules/inline-style-parser": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
- "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
- },
- "node_modules/internal-slot": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
- "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
- "dev": true,
- "dependencies": {
- "get-intrinsic": "^1.1.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/is-alphabetical": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
- "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/is-alphanumerical": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
- "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
- "dependencies": {
- "is-alphabetical": "^2.0.0",
- "is-decimal": "^2.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
- },
- "node_modules/is-bigint": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
- "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
- "dev": true,
- "dependencies": {
- "has-bigints": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-boolean-object": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
- "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-buffer": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
- "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/is-callable": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
- "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.11.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
- "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
- "dependencies": {
- "has": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-date-object": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
- "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
- "dev": true,
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-decimal": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
- "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-hexadecimal": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
- "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/is-negative-zero": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
- "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-number-object": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
- "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
- "dev": true,
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-path-inside": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-plain-obj": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-reference": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.0.tgz",
- "integrity": "sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q==",
- "dependencies": {
- "@types/estree": "*"
- }
- },
- "node_modules/is-regex": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
- "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
- "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-string": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
- "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
- "dev": true,
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-symbol": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
- "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
- "dev": true,
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-weakref": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
- "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "dev": true
- },
- "node_modules/jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/js-sdsl": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
- "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
- "dev": true
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
- },
- "node_modules/js-yaml": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
- "dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
- },
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
- },
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
- "dev": true
- },
- "node_modules/json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/jsx-ast-utils": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
- "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
- "dev": true,
- "dependencies": {
- "array-includes": "^3.1.5",
- "object.assign": "^4.1.3"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/jwt-decode": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz",
- "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A=="
- },
- "node_modules/kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/kleur": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
- "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/language-subtag-registry": {
- "version": "0.3.22",
- "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
- "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==",
- "dev": true
- },
- "node_modules/language-tags": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
- "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
- "dev": true,
- "dependencies": {
- "language-subtag-registry": "~0.3.2"
- }
- },
- "node_modules/levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
- },
- "node_modules/loader-runner": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
- "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=6.11.5"
- }
- },
- "node_modules/locate-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
- "dev": true,
- "dependencies": {
- "p-locate": "^5.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/lodash.clonedeep": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
- "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ=="
- },
- "node_modules/lodash.debounce": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "dev": true
- },
- "node_modules/long": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/long/-/long-5.2.1.tgz",
- "integrity": "sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A=="
- },
- "node_modules/longest-streak": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz",
- "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/loose-envify": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "dependencies": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- },
- "bin": {
- "loose-envify": "cli.js"
- }
- },
- "node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/markdown-extensions": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz",
- "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/markdown-table": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz",
- "integrity": "sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/mdast-util-definitions": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.1.tgz",
- "integrity": "sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-find-and-replace": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.1.tgz",
- "integrity": "sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==",
- "dependencies": {
- "escape-string-regexp": "^5.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
- "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/mdast-util-from-markdown": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz",
- "integrity": "sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "decode-named-character-reference": "^1.0.0",
- "mdast-util-to-string": "^3.1.0",
- "micromark": "^3.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-decode-string": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.1.tgz",
- "integrity": "sha512-42yHBbfWIFisaAfV1eixlabbsa6q7vHeSPY+cg+BBjX51M8xhgMacqH9g6TftB/9+YkcI0ooV4ncfrJslzm/RQ==",
- "dependencies": {
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-gfm-autolink-literal": "^1.0.0",
- "mdast-util-gfm-footnote": "^1.0.0",
- "mdast-util-gfm-strikethrough": "^1.0.0",
- "mdast-util-gfm-table": "^1.0.0",
- "mdast-util-gfm-task-list-item": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm-autolink-literal": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz",
- "integrity": "sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "ccount": "^2.0.0",
- "mdast-util-find-and-replace": "^2.0.0",
- "micromark-util-character": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm-footnote": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.1.tgz",
- "integrity": "sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0",
- "micromark-util-normalize-identifier": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm-strikethrough": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.2.tgz",
- "integrity": "sha512-T/4DVHXcujH6jx1yqpcAYYwd+z5lAYMw4Ls6yhTfbMMtCt0PHY4gEfhW9+lKsLBtyhUGKRIzcUA2FATVqnvPDA==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm-table": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.6.tgz",
- "integrity": "sha512-uHR+fqFq3IvB3Rd4+kzXW8dmpxUhvgCQZep6KdjsLK4O6meK5dYZEayLtIxNus1XO3gfjfcIFe8a7L0HZRGgag==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "markdown-table": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.3.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-gfm-task-list-item": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.1.tgz",
- "integrity": "sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-to-markdown": "^1.3.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-mdx": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz",
- "integrity": "sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==",
- "dependencies": {
- "mdast-util-mdx-expression": "^1.0.0",
- "mdast-util-mdx-jsx": "^2.0.0",
- "mdast-util-mdxjs-esm": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-mdx-expression": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.1.tgz",
- "integrity": "sha512-TTb6cKyTA1RD+1su1iStZ5PAv3rFfOUKcoU5EstUpv/IZo63uDX03R8+jXjMEhcobXnNOiG6/ccekvVl4eV1zQ==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-mdx-jsx": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.0.tgz",
- "integrity": "sha512-KzgzfWMhdteDkrY4mQtyvTU5bc/W4ppxhe9SzelO6QUUiwLAM+Et2Dnjjprik74a336kHdo0zKm7Tp+n6FFeRg==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "ccount": "^2.0.0",
- "mdast-util-to-markdown": "^1.3.0",
- "parse-entities": "^4.0.0",
- "stringify-entities": "^4.0.0",
- "unist-util-remove-position": "^4.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-mdxjs-esm": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.0.tgz",
- "integrity": "sha512-7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g==",
- "dependencies": {
- "@types/estree-jsx": "^1.0.0",
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "mdast-util-to-markdown": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-to-hast": {
- "version": "12.2.4",
- "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.2.4.tgz",
- "integrity": "sha512-a21xoxSef1l8VhHxS1Dnyioz6grrJkoaCUgGzMD/7dWHvboYX3VW53esRUfB5tgTyz4Yos1n25SPcj35dJqmAg==",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-definitions": "^5.0.0",
- "micromark-util-sanitize-uri": "^1.1.0",
- "trim-lines": "^3.0.0",
- "unist-builder": "^3.0.0",
- "unist-util-generated": "^2.0.0",
- "unist-util-position": "^4.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-to-markdown": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz",
- "integrity": "sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "longest-streak": "^3.0.0",
- "mdast-util-to-string": "^3.0.0",
- "micromark-util-decode-string": "^1.0.0",
- "unist-util-visit": "^4.0.0",
- "zwitch": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdast-util-to-string": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz",
- "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/mdn-data": {
- "version": "2.0.14",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
- "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
- },
- "node_modules/media-typer": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/merge-descriptors": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
- "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true,
- "peer": true
- },
- "node_modules/merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "dev": true,
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/methods": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/micromark": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz",
- "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "@types/debug": "^4.0.0",
- "debug": "^4.0.0",
- "decode-named-character-reference": "^1.0.0",
- "micromark-core-commonmark": "^1.0.1",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-encode": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-subtokenize": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.1",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-core-commonmark": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
- "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "decode-named-character-reference": "^1.0.0",
- "micromark-factory-destination": "^1.0.0",
- "micromark-factory-label": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-factory-title": "^1.0.0",
- "micromark-factory-whitespace": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-classify-character": "^1.0.0",
- "micromark-util-html-tag-name": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-subtokenize": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.1",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-extension-gfm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz",
- "integrity": "sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==",
- "dependencies": {
- "micromark-extension-gfm-autolink-literal": "^1.0.0",
- "micromark-extension-gfm-footnote": "^1.0.0",
- "micromark-extension-gfm-strikethrough": "^1.0.0",
- "micromark-extension-gfm-table": "^1.0.0",
- "micromark-extension-gfm-tagfilter": "^1.0.0",
- "micromark-extension-gfm-task-list-item": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-autolink-literal": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz",
- "integrity": "sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==",
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-footnote": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.4.tgz",
- "integrity": "sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==",
- "dependencies": {
- "micromark-core-commonmark": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-normalize-identifier": "^1.0.0",
- "micromark-util-sanitize-uri": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-strikethrough": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz",
- "integrity": "sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==",
- "dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-classify-character": "^1.0.0",
- "micromark-util-resolve-all": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-table": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz",
- "integrity": "sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==",
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-tagfilter": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz",
- "integrity": "sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==",
- "dependencies": {
- "micromark-util-types": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-gfm-task-list-item": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz",
- "integrity": "sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==",
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-mdx-expression": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz",
- "integrity": "sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-factory-mdx-expression": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-extension-mdx-jsx": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz",
- "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==",
- "dependencies": {
- "@types/acorn": "^4.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "micromark-factory-mdx-expression": "^1.0.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-mdx-md": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz",
- "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==",
- "dependencies": {
- "micromark-util-types": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-mdxjs": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz",
- "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==",
- "dependencies": {
- "acorn": "^8.0.0",
- "acorn-jsx": "^5.0.0",
- "micromark-extension-mdx-expression": "^1.0.0",
- "micromark-extension-mdx-jsx": "^1.0.0",
- "micromark-extension-mdx-md": "^1.0.0",
- "micromark-extension-mdxjs-esm": "^1.0.0",
- "micromark-util-combine-extensions": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-extension-mdxjs-esm": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz",
- "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==",
- "dependencies": {
- "micromark-core-commonmark": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-position-from-estree": "^1.1.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/micromark-factory-destination": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
- "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-factory-label": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
- "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-factory-mdx-expression": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.6.tgz",
- "integrity": "sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-events-to-acorn": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "unist-util-position-from-estree": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-message": "^3.0.0"
- }
- },
- "node_modules/micromark-factory-space": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
- "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-factory-title": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
- "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-factory-whitespace": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
- "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-util-character": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
- "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-util-chunked": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
- "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-symbol": "^1.0.0"
- }
- },
- "node_modules/micromark-util-classify-character": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
- "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-util-combine-extensions": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
- "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-util-decode-numeric-character-reference": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
- "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-symbol": "^1.0.0"
- }
- },
- "node_modules/micromark-util-decode-string": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
- "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "decode-named-character-reference": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-decode-numeric-character-reference": "^1.0.0",
- "micromark-util-symbol": "^1.0.0"
- }
- },
- "node_modules/micromark-util-encode": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
- "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ]
- },
- "node_modules/micromark-util-events-to-acorn": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.0.tgz",
- "integrity": "sha512-WWp3bf7xT9MppNuw3yPjpnOxa8cj5ACivEzXJKu0WwnjBYfzaBvIAT9KfeyI0Qkll+bfQtfftSwdgTH6QhTOKw==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "@types/acorn": "^4.0.0",
- "@types/estree": "^1.0.0",
- "estree-util-visit": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0",
- "vfile-location": "^4.0.0",
- "vfile-message": "^3.0.0"
- }
- },
- "node_modules/micromark-util-html-tag-name": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz",
- "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ]
- },
- "node_modules/micromark-util-normalize-identifier": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
- "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-symbol": "^1.0.0"
- }
- },
- "node_modules/micromark-util-resolve-all": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
- "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-types": "^1.0.0"
- }
- },
- "node_modules/micromark-util-sanitize-uri": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz",
- "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-character": "^1.0.0",
- "micromark-util-encode": "^1.0.0",
- "micromark-util-symbol": "^1.0.0"
- }
- },
- "node_modules/micromark-util-subtokenize": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
- "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ],
- "dependencies": {
- "micromark-util-chunked": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- }
- },
- "node_modules/micromark-util-symbol": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
- "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ]
- },
- "node_modules/micromark-util-types": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
- "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==",
- "funding": [
- {
- "type": "GitHub Sponsors",
- "url": "https://github.com/sponsors/unifiedjs"
- },
- {
- "type": "OpenCollective",
- "url": "https://opencollective.com/unified"
- }
- ]
- },
- "node_modules/micromatch": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
- "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
- "dev": true,
- "dependencies": {
- "braces": "^3.0.2",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/mime": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dependencies": {
- "mime-db": "1.52.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mimic-response": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
- "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/minimatch": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.2.tgz",
- "integrity": "sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/minimist": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
- "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/mkdirp-classic": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
- "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
- },
- "node_modules/mri": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
- "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
- },
- "node_modules/nanoid": {
- "version": "3.3.4",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
- "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/napi-build-utils": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
- "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg=="
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true
- },
- "node_modules/negotiator": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
- "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/neo-async": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
- "dev": true,
- "peer": true
- },
- "node_modules/next": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/next/-/next-13.0.0.tgz",
- "integrity": "sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA==",
- "dependencies": {
- "@next/env": "13.0.0",
- "@swc/helpers": "0.4.11",
- "caniuse-lite": "^1.0.30001406",
- "postcss": "8.4.14",
- "styled-jsx": "5.1.0",
- "use-sync-external-store": "1.2.0"
- },
- "bin": {
- "next": "dist/bin/next"
- },
- "engines": {
- "node": ">=14.6.0"
- },
- "optionalDependencies": {
- "@next/swc-android-arm-eabi": "13.0.0",
- "@next/swc-android-arm64": "13.0.0",
- "@next/swc-darwin-arm64": "13.0.0",
- "@next/swc-darwin-x64": "13.0.0",
- "@next/swc-freebsd-x64": "13.0.0",
- "@next/swc-linux-arm-gnueabihf": "13.0.0",
- "@next/swc-linux-arm64-gnu": "13.0.0",
- "@next/swc-linux-arm64-musl": "13.0.0",
- "@next/swc-linux-x64-gnu": "13.0.0",
- "@next/swc-linux-x64-musl": "13.0.0",
- "@next/swc-win32-arm64-msvc": "13.0.0",
- "@next/swc-win32-ia32-msvc": "13.0.0",
- "@next/swc-win32-x64-msvc": "13.0.0"
- },
- "peerDependencies": {
- "fibers": ">= 3.1.0",
- "node-sass": "^6.0.0 || ^7.0.0",
- "react": "^18.0.0-0",
- "react-dom": "^18.0.0-0",
- "sass": "^1.3.0"
- },
- "peerDependenciesMeta": {
- "fibers": {
- "optional": true
- },
- "node-sass": {
- "optional": true
- },
- "sass": {
- "optional": true
- }
- }
- },
- "node_modules/next-image-export-optimizer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/next-image-export-optimizer/-/next-image-export-optimizer-1.0.1.tgz",
- "integrity": "sha512-2+FCo7GXMdvMYcVgMZZj+NAopf4go+g/2v0OvB+uaW0jv7ZjZCYqBPski/CxsUvf1KW4UQu+Nedc5EmqzzlJGQ==",
- "dependencies": {
- "cli-progress": "^3.10.0",
- "sharp": "^0.31.0",
- "typescript": "^4.7.2"
- },
- "bin": {
- "next-image-export-optimizer": "src/optimizeImages.js"
- },
- "engines": {
- "node": ">=16.0.0"
- },
- "peerDependencies": {
- "next": "^13.0.0",
- "react": "^18.0.0-0"
- }
- },
- "node_modules/next-mdx-remote": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/next-mdx-remote/-/next-mdx-remote-4.1.0.tgz",
- "integrity": "sha512-ZdL5AFJcEqvInGkYYRKda930D6AJt1GOLX/OXFE/vTwaqV/Mw+l3/njZ4kWqvYSAkl89Z6W7WZrTtN0fd0XwPg==",
- "dependencies": {
- "@mdx-js/mdx": "^2.0.0",
- "@mdx-js/react": "^2.0.0",
- "vfile": "^5.3.0",
- "vfile-matter": "^3.0.1"
- },
- "engines": {
- "node": ">=14",
- "npm": ">=7"
- },
- "peerDependencies": {
- "react": ">=16.x <=18.x",
- "react-dom": ">=16.x <=18.x"
- }
- },
- "node_modules/next-remote-watch": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/next-remote-watch/-/next-remote-watch-2.0.0.tgz",
- "integrity": "sha512-FyKDFMwbjKCPdu8ypZ8WTkDBzuxnH6rgfR89vgQwsND4ErrfXnDFZcZJAmSpwND6QA7G9f0DRzYMSdspY6t8Uw==",
- "dependencies": {
- "chalk": "^4.0.0",
- "chokidar": "^3.4.0",
- "commander": "^5.0.0",
- "express": "^4.17.1"
- },
- "bin": {
- "next-remote-watch": "bin/next-remote-watch"
- },
- "engines": {
- "node": ">= 10"
- },
- "peerDependencies": {
- "next": ">=10"
- }
- },
- "node_modules/next-remote-watch/node_modules/commander": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
- "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/node-abi": {
- "version": "3.28.0",
- "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.28.0.tgz",
- "integrity": "sha512-fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A==",
- "dependencies": {
- "semver": "^7.3.5"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/node-addon-api": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz",
- "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="
- },
- "node_modules/node-releases": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz",
- "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/nth-check": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
- "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
- "dependencies": {
- "boolbase": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/fb55/nth-check?sponsor=1"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.12.2",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
- "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.assign": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
- "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "has-symbols": "^1.0.3",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.entries": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
- "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.fromentries": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
- "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.hasown": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz",
- "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==",
- "dev": true,
- "dependencies": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.values": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
- "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/optionator": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
- "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
- "dev": true,
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
- "dev": true,
- "dependencies": {
- "p-limit": "^3.0.2"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dependencies": {
- "callsites": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-entities": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.0.tgz",
- "integrity": "sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "character-entities": "^2.0.0",
- "character-entities-legacy": "^3.0.0",
- "character-reference-invalid": "^2.0.0",
- "decode-named-character-reference": "^1.0.0",
- "is-alphanumerical": "^2.0.0",
- "is-decimal": "^2.0.0",
- "is-hexadecimal": "^2.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
- },
- "node_modules/path-to-regexp": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
- "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
- },
- "node_modules/path-type": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/periscopic": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.0.4.tgz",
- "integrity": "sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg==",
- "dependencies": {
- "estree-walker": "^3.0.0",
- "is-reference": "^3.0.0"
- }
- },
- "node_modules/picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/popmotion": {
- "version": "11.0.5",
- "resolved": "https://registry.npmjs.org/popmotion/-/popmotion-11.0.5.tgz",
- "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==",
- "dependencies": {
- "framesync": "6.1.2",
- "hey-listen": "^1.0.8",
- "style-value-types": "5.1.2",
- "tslib": "2.4.0"
- }
- },
- "node_modules/postcss": {
- "version": "8.4.14",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
- "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- }
- ],
- "dependencies": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/postcss-path-replace": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/postcss-path-replace/-/postcss-path-replace-1.0.4.tgz",
- "integrity": "sha512-6ZvsOX9Ls6Wk1nUVNojhwthmuogwG+r1C24hi80KZEzJb3MijofjmKUrfdkOG/Lk7YUE31wxuQuvFAkHON16gg==",
- "dev": true,
- "dependencies": {
- "postcss": "^6.0.21"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/postcss-path-replace/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-path-replace/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-path-replace/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/postcss-path-replace/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "node_modules/postcss-path-replace/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true,
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/postcss-path-replace/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-path-replace/node_modules/postcss": {
- "version": "6.0.23",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
- "dev": true,
- "dependencies": {
- "chalk": "^2.4.1",
- "source-map": "^0.6.1",
- "supports-color": "^5.4.0"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/postcss-path-replace/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/prebuild-install": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz",
- "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==",
- "dependencies": {
- "detect-libc": "^2.0.0",
- "expand-template": "^2.0.3",
- "github-from-package": "0.0.0",
- "minimist": "^1.2.3",
- "mkdirp-classic": "^0.5.3",
- "napi-build-utils": "^1.0.1",
- "node-abi": "^3.3.0",
- "pump": "^3.0.0",
- "rc": "^1.2.7",
- "simple-get": "^4.0.0",
- "tar-fs": "^2.0.0",
- "tunnel-agent": "^0.6.0"
- },
- "bin": {
- "prebuild-install": "bin.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/prism-react-renderer": {
- "version": "1.3.5",
- "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz",
- "integrity": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==",
- "peerDependencies": {
- "react": ">=0.14.9"
- }
- },
- "node_modules/prismjs": {
- "version": "1.29.0",
- "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
- "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/prop-types": {
- "version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
- "dev": true,
- "dependencies": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
- }
- },
- "node_modules/property-information": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.1.1.tgz",
- "integrity": "sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/pump": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
- "dependencies": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
- }
- },
- "node_modules/punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/qs": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
- "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
- "dependencies": {
- "side-channel": "^1.0.4"
- },
- "engines": {
- "node": ">=0.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/queue": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
- "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
- "dependencies": {
- "inherits": "~2.0.3"
- }
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "safe-buffer": "^5.1.0"
- }
- },
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/raw-body": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
- "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
- "dependencies": {
- "bytes": "3.1.2",
- "http-errors": "2.0.0",
- "iconv-lite": "0.4.24",
- "unpipe": "1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/rc": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
- "dependencies": {
- "deep-extend": "^0.6.0",
- "ini": "~1.3.0",
- "minimist": "^1.2.0",
- "strip-json-comments": "~2.0.1"
- },
- "bin": {
- "rc": "cli.js"
- }
- },
- "node_modules/rc/node_modules/strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
- "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
- "dependencies": {
- "loose-envify": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
- "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
- "dependencies": {
- "loose-envify": "^1.1.0",
- "scheduler": "^0.23.0"
- },
- "peerDependencies": {
- "react": "^18.2.0"
- }
- },
- "node_modules/react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
- "dev": true
- },
- "node_modules/readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/regenerate": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
- },
- "node_modules/regenerate-unicode-properties": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
- "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
- "dependencies": {
- "regenerate": "^1.4.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regenerator-runtime": {
- "version": "0.13.10",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz",
- "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
- },
- "node_modules/regenerator-transform": {
- "version": "0.15.0",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz",
- "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==",
- "dependencies": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "node_modules/regexp.prototype.flags": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
- "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "functions-have-names": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/regexpp": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
- "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/regexpu-core": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz",
- "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==",
- "dependencies": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^10.1.0",
- "regjsgen": "^0.7.1",
- "regjsparser": "^0.9.1",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regjsgen": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz",
- "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA=="
- },
- "node_modules/regjsparser": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz",
- "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==",
- "dependencies": {
- "jsesc": "~0.5.0"
- },
- "bin": {
- "regjsparser": "bin/parser"
- }
- },
- "node_modules/regjsparser/node_modules/jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==",
- "bin": {
- "jsesc": "bin/jsesc"
- }
- },
- "node_modules/rehype-autolink-headings": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/rehype-autolink-headings/-/rehype-autolink-headings-6.1.1.tgz",
- "integrity": "sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "extend": "^3.0.0",
- "hast-util-has-property": "^2.0.0",
- "hast-util-heading-rank": "^2.0.0",
- "hast-util-is-element": "^2.0.0",
- "unified": "^10.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/rehype-slug": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-5.1.0.tgz",
- "integrity": "sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "github-slugger": "^2.0.0",
- "hast-util-has-property": "^2.0.0",
- "hast-util-heading-rank": "^2.0.0",
- "hast-util-to-string": "^2.0.0",
- "unified": "^10.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-gfm": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz",
- "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-gfm": "^2.0.0",
- "micromark-extension-gfm": "^2.0.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-mdx": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.1.5.tgz",
- "integrity": "sha512-A8vw5s+BgOa968Irt8BO7DfWJTE0Fe7Ge3hX8zzDB1DnwMZTNdK6qF2IcFao+/7nzk1vSysKcFp+3ku4vhMpaQ==",
- "dependencies": {
- "mdast-util-mdx": "^2.0.0",
- "micromark-extension-mdxjs": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-parse": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
- "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/remark-rehype": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz",
- "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==",
- "dependencies": {
- "@types/hast": "^2.0.0",
- "@types/mdast": "^3.0.0",
- "mdast-util-to-hast": "^12.1.0",
- "unified": "^10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/resolve": {
- "version": "1.22.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
- "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
- "dependencies": {
- "is-core-module": "^2.9.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/reusify": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
- "dev": true,
- "engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
- }
- },
- "node_modules/rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "dependencies": {
- "queue-microtask": "^1.2.2"
- }
- },
- "node_modules/sade": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
- "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
- "dependencies": {
- "mri": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/safe-regex-test": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
- "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
- "is-regex": "^1.1.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
- },
- "node_modules/scheduler": {
- "version": "0.23.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
- "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
- "dependencies": {
- "loose-envify": "^1.1.0"
- }
- },
- "node_modules/schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/section-matter": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/semver": {
- "version": "7.3.8",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
- "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/send": {
- "version": "0.18.0",
- "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
- "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
- "dependencies": {
- "debug": "2.6.9",
- "depd": "2.0.0",
- "destroy": "1.2.0",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "fresh": "0.5.2",
- "http-errors": "2.0.0",
- "mime": "1.6.0",
- "ms": "2.1.3",
- "on-finished": "2.4.1",
- "range-parser": "~1.2.1",
- "statuses": "2.0.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/send/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/send/node_modules/debug/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- },
- "node_modules/send/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
- "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/serve-static": {
- "version": "1.15.0",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
- "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
- "dependencies": {
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "parseurl": "~1.3.3",
- "send": "0.18.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
- },
- "node_modules/sharp": {
- "version": "0.31.2",
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.2.tgz",
- "integrity": "sha512-DUdNVEXgS5A97cTagSLIIp8dUZ/lZtk78iNVZgHdHbx1qnQR7JAHY0BnXnwwH39Iw+VKhO08CTYhIg0p98vQ5Q==",
- "hasInstallScript": true,
- "dependencies": {
- "color": "^4.2.3",
- "detect-libc": "^2.0.1",
- "node-addon-api": "^5.0.0",
- "prebuild-install": "^7.1.1",
- "semver": "^7.3.8",
- "simple-get": "^4.0.1",
- "tar-fs": "^2.1.1",
- "tunnel-agent": "^0.6.0"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/side-channel": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
- "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "dependencies": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/simple-concat": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
- "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/simple-get": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
- "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "dependencies": {
- "decompress-response": "^6.0.0",
- "once": "^1.3.1",
- "simple-concat": "^1.0.0"
- }
- },
- "node_modules/simple-swizzle": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
- "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
- "dependencies": {
- "is-arrayish": "^0.3.1"
- }
- },
- "node_modules/simple-swizzle/node_modules/is-arrayish": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
- },
- "node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/space-separated-tokens": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz",
- "integrity": "sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
- },
- "node_modules/stable": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
- "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
- "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility"
- },
- "node_modules/statuses": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "dependencies": {
- "safe-buffer": "~5.2.0"
- }
- },
- "node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/string-width/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- },
- "node_modules/string.prototype.matchall": {
- "version": "4.0.7",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz",
- "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1",
- "get-intrinsic": "^1.1.1",
- "has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.1",
- "side-channel": "^1.0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimend": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz",
- "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimstart": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz",
- "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.19.5"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/stringify-entities": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz",
- "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==",
- "dependencies": {
- "character-entities-html4": "^2.0.0",
- "character-entities-legacy": "^3.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/strip-bom-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/style-to-object": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
- "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
- "dependencies": {
- "inline-style-parser": "0.1.1"
- }
- },
- "node_modules/style-value-types": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/style-value-types/-/style-value-types-5.1.2.tgz",
- "integrity": "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==",
- "dependencies": {
- "hey-listen": "^1.0.8",
- "tslib": "2.4.0"
- }
- },
- "node_modules/styled-jsx": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.0.tgz",
- "integrity": "sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==",
- "dependencies": {
- "client-only": "0.0.1"
- },
- "engines": {
- "node": ">= 12.0.0"
- },
- "peerDependencies": {
- "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
- },
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- },
- "babel-plugin-macros": {
- "optional": true
- }
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/svg-parser": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
- "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
- },
- "node_modules/svgo": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
- "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
- "dependencies": {
- "@trysound/sax": "0.2.0",
- "commander": "^7.2.0",
- "css-select": "^4.1.3",
- "css-tree": "^1.1.3",
- "csso": "^4.2.0",
- "picocolors": "^1.0.0",
- "stable": "^0.1.8"
- },
- "bin": {
- "svgo": "bin/svgo"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tar-fs": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
- "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
- "dependencies": {
- "chownr": "^1.1.1",
- "mkdirp-classic": "^0.5.2",
- "pump": "^3.0.0",
- "tar-stream": "^2.1.4"
- }
- },
- "node_modules/tar-stream": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
- "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
- "dependencies": {
- "bl": "^4.0.3",
- "end-of-stream": "^1.4.1",
- "fs-constants": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^3.1.1"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/terser": {
- "version": "5.16.1",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz",
- "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/source-map": "^0.3.2",
- "acorn": "^8.5.0",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/terser-webpack-plugin": {
- "version": "5.3.6",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz",
- "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.14",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.0",
- "terser": "^5.14.1"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@swc/core": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
- }
- },
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
- "dev": true
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "engines": {
- "node": ">=0.6"
- }
- },
- "node_modules/trim-lines": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
- "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/trough": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
- "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/tsconfig-paths": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
- "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
- "dev": true,
- "dependencies": {
- "@types/json5": "^0.0.29",
- "json5": "^1.0.1",
- "minimist": "^1.2.6",
- "strip-bom": "^3.0.0"
- }
- },
- "node_modules/tslib": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
- "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
- },
- "node_modules/tsutils": {
- "version": "3.21.0",
- "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
- "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
- "dev": true,
- "dependencies": {
- "tslib": "^1.8.1"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
- }
- },
- "node_modules/tsutils/node_modules/tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
- "dev": true
- },
- "node_modules/tunnel-agent": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
- "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
- "dependencies": {
- "safe-buffer": "^5.0.1"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "dependencies": {
- "prelude-ls": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/type-is": {
- "version": "1.6.18",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
- "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
- "dependencies": {
- "media-typer": "0.3.0",
- "mime-types": "~2.1.24"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/typescript": {
- "version": "4.8.4",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz",
- "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=4.2.0"
- }
- },
- "node_modules/unbox-primitive": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
- "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-bigints": "^1.0.2",
- "has-symbols": "^1.0.3",
- "which-boxed-primitive": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
- "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
- "dependencies": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-value-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
- "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-property-aliases-ecmascript": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
- "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unified": {
- "version": "10.1.2",
- "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
- "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "bail": "^2.0.0",
- "extend": "^3.0.0",
- "is-buffer": "^2.0.0",
- "is-plain-obj": "^4.0.0",
- "trough": "^2.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-builder": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.0.tgz",
- "integrity": "sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-generated": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.0.tgz",
- "integrity": "sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-is": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
- "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-position": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.3.tgz",
- "integrity": "sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-position-from-estree": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz",
- "integrity": "sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-remove-position": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz",
- "integrity": "sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-stringify-position": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz",
- "integrity": "sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==",
- "dependencies": {
- "@types/unist": "^2.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-visit": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz",
- "integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0",
- "unist-util-visit-parents": "^5.1.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unist-util-visit-parents": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz",
- "integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
- "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- }
- ],
- "dependencies": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "browserslist-lint": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "dev": true,
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/use-sync-external-store": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
- "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
- },
- "node_modules/utils-merge": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/uvu": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz",
- "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==",
- "dependencies": {
- "dequal": "^2.0.0",
- "diff": "^5.0.0",
- "kleur": "^4.0.3",
- "sade": "^1.7.3"
- },
- "bin": {
- "uvu": "bin.js"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/vary": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/vfile": {
- "version": "5.3.5",
- "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.5.tgz",
- "integrity": "sha512-U1ho2ga33eZ8y8pkbQLH54uKqGhFJ6GYIHnnG5AhRpAh3OWjkrRHKa/KogbmQn8We+c0KVV3rTOgR9V/WowbXQ==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "is-buffer": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "vfile-message": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vfile-location": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.0.1.tgz",
- "integrity": "sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "vfile": "^5.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vfile-matter": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vfile-matter/-/vfile-matter-3.0.1.tgz",
- "integrity": "sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==",
- "dependencies": {
- "@types/js-yaml": "^4.0.0",
- "is-buffer": "^2.0.0",
- "js-yaml": "^4.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/vfile-message": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.2.tgz",
- "integrity": "sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==",
- "dependencies": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^3.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/watchpack": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
- "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webpack": {
- "version": "5.75.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz",
- "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^0.0.51",
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/wasm-edit": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.0",
- "es-module-lexer": "^0.9.0",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.1.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.1.3",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webpack/node_modules/@types/estree": {
- "version": "0.0.51",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
- "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/webpack/node_modules/eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/webpack/node_modules/estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/which-boxed-primitive": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
- "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
- "dev": true,
- "dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
- },
- "node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
- },
- "node_modules/yaml": {
- "version": "1.10.2",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
- "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/yorkie-js-sdk": {
- "version": "0.4.28",
- "resolved": "https://registry.npmjs.org/yorkie-js-sdk/-/yorkie-js-sdk-0.4.28.tgz",
- "integrity": "sha512-laDG5LVXV1mW085F4BdagUgIgU4hd+QBD0kon8kAeVA086ZGwXRMlFSYhEZtY1bB+RTSDSe4i78vVGG2Kv6bcg==",
- "dependencies": {
- "@bufbuild/protobuf": "^1.6.0",
- "@connectrpc/connect": "^1.4.0",
- "@connectrpc/connect-web": "^1.4.0",
- "long": "^5.2.0"
- },
- "engines": {
- "node": ">=18.0.0",
- "npm": ">=7.1.0"
- }
- },
- "node_modules/zwitch": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz",
- "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- }
- },
- "dependencies": {
- "@ampproject/remapping": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
- "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
- "requires": {
- "@jridgewell/gen-mapping": "^0.1.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "requires": {
- "@babel/highlight": "^7.18.6"
- }
- },
- "@babel/compat-data": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz",
- "integrity": "sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw=="
- },
- "@babel/core": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz",
- "integrity": "sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==",
- "requires": {
- "@ampproject/remapping": "^2.1.0",
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.6",
- "@babel/helper-compilation-targets": "^7.19.3",
- "@babel/helper-module-transforms": "^7.19.6",
- "@babel/helpers": "^7.19.4",
- "@babel/parser": "^7.19.6",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.6",
- "@babel/types": "^7.19.4",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.1",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "json5": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
- "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
- }
- },
- "@babel/generator": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.6.tgz",
- "integrity": "sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==",
- "requires": {
- "@babel/types": "^7.19.4",
- "@jridgewell/gen-mapping": "^0.3.2",
- "jsesc": "^2.5.1"
- },
- "dependencies": {
- "@jridgewell/gen-mapping": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
- "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
- "requires": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- }
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
- "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz",
- "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==",
- "requires": {
- "@babel/helper-explode-assignable-expression": "^7.18.6",
- "@babel/types": "^7.18.9"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz",
- "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==",
- "requires": {
- "@babel/compat-data": "^7.19.3",
- "@babel/helper-validator-option": "^7.18.6",
- "browserslist": "^4.21.3",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz",
- "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.19.0",
- "@babel/helper-member-expression-to-functions": "^7.18.9",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.9",
- "@babel/helper-split-export-declaration": "^7.18.6"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz",
- "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "regexpu-core": "^5.1.0"
- }
- },
- "@babel/helper-define-polyfill-provider": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
- "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
- "requires": {
- "@babel/helper-compilation-targets": "^7.17.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
- }
- },
- "@babel/helper-environment-visitor": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
- "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
- },
- "@babel/helper-explode-assignable-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz",
- "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
- "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
- "requires": {
- "@babel/template": "^7.18.10",
- "@babel/types": "^7.19.0"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
- "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz",
- "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==",
- "requires": {
- "@babel/types": "^7.18.9"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
- "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz",
- "integrity": "sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==",
- "requires": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-simple-access": "^7.19.4",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.19.1",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.6",
- "@babel/types": "^7.19.4"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
- "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz",
- "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw=="
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
- "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-wrap-function": "^7.18.9",
- "@babel/types": "^7.18.9"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz",
- "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==",
- "requires": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-member-expression-to-functions": "^7.18.9",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/traverse": "^7.19.1",
- "@babel/types": "^7.19.0"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz",
- "integrity": "sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==",
- "requires": {
- "@babel/types": "^7.19.4"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz",
- "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==",
- "requires": {
- "@babel/types": "^7.18.9"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
- "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
- "requires": {
- "@babel/types": "^7.18.6"
- }
- },
- "@babel/helper-string-parser": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
- "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
- },
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- },
- "@babel/helper-validator-option": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz",
- "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
- },
- "@babel/helper-wrap-function": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz",
- "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==",
- "requires": {
- "@babel/helper-function-name": "^7.19.0",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0"
- }
- },
- "@babel/helpers": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz",
- "integrity": "sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==",
- "requires": {
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.4",
- "@babel/types": "^7.19.4"
- }
- },
- "@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "@babel/parser": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.6.tgz",
- "integrity": "sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA=="
- },
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
- "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz",
- "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9",
- "@babel/plugin-proposal-optional-chaining": "^7.18.9"
- }
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz",
- "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==",
- "requires": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-remap-async-to-generator": "^7.18.9",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- }
- },
- "@babel/plugin-proposal-class-properties": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
- "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-proposal-class-static-block": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz",
- "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
- "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
- "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
- "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz",
- "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
- "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
- "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz",
- "integrity": "sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==",
- "requires": {
- "@babel/compat-data": "^7.19.4",
- "@babel/helper-compilation-targets": "^7.19.3",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.18.8"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
- "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz",
- "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-private-methods": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
- "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-proposal-private-property-in-object": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz",
- "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
- "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
- }
- },
- "@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
- "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
- }
- },
- "@babel/plugin-syntax-import-assertions": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz",
- "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-jsx": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz",
- "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-typescript": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz",
- "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz",
- "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz",
- "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==",
- "requires": {
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-remap-async-to-generator": "^7.18.6"
- }
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
- "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz",
- "integrity": "sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.19.0"
- }
- },
- "@babel/plugin-transform-classes": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz",
- "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-compilation-targets": "^7.19.0",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.19.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-replace-supers": "^7.18.9",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "globals": "^11.1.0"
- },
- "dependencies": {
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
- }
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz",
- "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz",
- "integrity": "sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.19.0"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
- "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
- "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
- "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.18.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz",
- "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
- "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
- "requires": {
- "@babel/helper-compilation-targets": "^7.18.9",
- "@babel/helper-function-name": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
- "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
- "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz",
- "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==",
- "requires": {
- "@babel/helper-module-transforms": "^7.19.6",
- "@babel/helper-plugin-utils": "^7.19.0"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz",
- "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==",
- "requires": {
- "@babel/helper-module-transforms": "^7.19.6",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-simple-access": "^7.19.4"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz",
- "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==",
- "requires": {
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-module-transforms": "^7.19.6",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-validator-identifier": "^7.19.1"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
- "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
- "requires": {
- "@babel/helper-module-transforms": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz",
- "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.19.0",
- "@babel/helper-plugin-utils": "^7.19.0"
- }
- },
- "@babel/plugin-transform-new-target": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
- "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-object-super": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
- "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.6"
- }
- },
- "@babel/plugin-transform-parameters": {
- "version": "7.18.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz",
- "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-property-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
- "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-react-constant-elements": {
- "version": "7.18.12",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.12.tgz",
- "integrity": "sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-react-display-name": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz",
- "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-react-jsx": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz",
- "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/plugin-syntax-jsx": "^7.18.6",
- "@babel/types": "^7.19.0"
- }
- },
- "@babel/plugin-transform-react-jsx-development": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz",
- "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==",
- "requires": {
- "@babel/plugin-transform-react-jsx": "^7.18.6"
- }
- },
- "@babel/plugin-transform-react-pure-annotations": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz",
- "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==",
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-regenerator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz",
- "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "regenerator-transform": "^0.15.0"
- }
- },
- "@babel/plugin-transform-reserved-words": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
- "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
- "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz",
- "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9"
- }
- },
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
- "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/plugin-transform-template-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
- "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
- "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-typescript": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.3.tgz",
- "integrity": "sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==",
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.19.0",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/plugin-syntax-typescript": "^7.18.6"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
- "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
- "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
- },
- "@babel/preset-env": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.4.tgz",
- "integrity": "sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==",
- "requires": {
- "@babel/compat-data": "^7.19.4",
- "@babel/helper-compilation-targets": "^7.19.3",
- "@babel/helper-plugin-utils": "^7.19.0",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
- "@babel/plugin-proposal-async-generator-functions": "^7.19.1",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/plugin-proposal-class-static-block": "^7.18.6",
- "@babel/plugin-proposal-dynamic-import": "^7.18.6",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-json-strings": "^7.18.6",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "^7.19.4",
- "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.18.9",
- "@babel/plugin-proposal-private-methods": "^7.18.6",
- "@babel/plugin-proposal-private-property-in-object": "^7.18.6",
- "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-import-assertions": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.18.6",
- "@babel/plugin-transform-async-to-generator": "^7.18.6",
- "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
- "@babel/plugin-transform-block-scoping": "^7.19.4",
- "@babel/plugin-transform-classes": "^7.19.0",
- "@babel/plugin-transform-computed-properties": "^7.18.9",
- "@babel/plugin-transform-destructuring": "^7.19.4",
- "@babel/plugin-transform-dotall-regex": "^7.18.6",
- "@babel/plugin-transform-duplicate-keys": "^7.18.9",
- "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
- "@babel/plugin-transform-for-of": "^7.18.8",
- "@babel/plugin-transform-function-name": "^7.18.9",
- "@babel/plugin-transform-literals": "^7.18.9",
- "@babel/plugin-transform-member-expression-literals": "^7.18.6",
- "@babel/plugin-transform-modules-amd": "^7.18.6",
- "@babel/plugin-transform-modules-commonjs": "^7.18.6",
- "@babel/plugin-transform-modules-systemjs": "^7.19.0",
- "@babel/plugin-transform-modules-umd": "^7.18.6",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
- "@babel/plugin-transform-new-target": "^7.18.6",
- "@babel/plugin-transform-object-super": "^7.18.6",
- "@babel/plugin-transform-parameters": "^7.18.8",
- "@babel/plugin-transform-property-literals": "^7.18.6",
- "@babel/plugin-transform-regenerator": "^7.18.6",
- "@babel/plugin-transform-reserved-words": "^7.18.6",
- "@babel/plugin-transform-shorthand-properties": "^7.18.6",
- "@babel/plugin-transform-spread": "^7.19.0",
- "@babel/plugin-transform-sticky-regex": "^7.18.6",
- "@babel/plugin-transform-template-literals": "^7.18.9",
- "@babel/plugin-transform-typeof-symbol": "^7.18.9",
- "@babel/plugin-transform-unicode-escapes": "^7.18.10",
- "@babel/plugin-transform-unicode-regex": "^7.18.6",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.19.4",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "core-js-compat": "^3.25.1",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
- }
- },
- "@babel/preset-modules": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- }
- },
- "@babel/preset-react": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz",
- "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-react-display-name": "^7.18.6",
- "@babel/plugin-transform-react-jsx": "^7.18.6",
- "@babel/plugin-transform-react-jsx-development": "^7.18.6",
- "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
- }
- },
- "@babel/preset-typescript": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz",
- "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==",
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-typescript": "^7.18.6"
- }
- },
- "@babel/runtime": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz",
- "integrity": "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/runtime-corejs3": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz",
- "integrity": "sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA==",
- "dev": true,
- "requires": {
- "core-js-pure": "^3.25.1",
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/template": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
- "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
- "requires": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.18.10",
- "@babel/types": "^7.18.10"
- }
- },
- "@babel/traverse": {
- "version": "7.19.6",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.6.tgz",
- "integrity": "sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==",
- "requires": {
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.19.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.19.6",
- "@babel/types": "^7.19.4",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "dependencies": {
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
- }
- }
- },
- "@babel/types": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz",
- "integrity": "sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==",
- "requires": {
- "@babel/helper-string-parser": "^7.19.4",
- "@babel/helper-validator-identifier": "^7.19.1",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@bufbuild/protobuf": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-1.9.0.tgz",
- "integrity": "sha512-W7gp8Q/v1NlCZLsv8pQ3Y0uCu/SHgXOVFK+eUluUKWXmsb6VHkpNx0apdOWWcDbB9sJoKeP8uPrjmehJz6xETQ=="
- },
- "@connectrpc/connect": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@connectrpc/connect/-/connect-1.4.0.tgz",
- "integrity": "sha512-vZeOkKaAjyV4+RH3+rJZIfDFJAfr+7fyYr6sLDKbYX3uuTVszhFe9/YKf5DNqrDb5cKdKVlYkGn6DTDqMitAnA==",
- "requires": {}
- },
- "@connectrpc/connect-web": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@connectrpc/connect-web/-/connect-web-1.4.0.tgz",
- "integrity": "sha512-13aO4psFbbm7rdOFGV0De2Za64DY/acMspgloDlcOKzLPPs0yZkhp1OOzAQeiAIr7BM/VOHIA3p8mF0inxCYTA==",
- "requires": {}
- },
- "@emotion/is-prop-valid": {
- "version": "0.8.8",
- "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
- "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
- "optional": true,
- "requires": {
- "@emotion/memoize": "0.7.4"
- }
- },
- "@emotion/memoize": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
- "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
- "optional": true
- },
- "@eslint/eslintrc": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
- "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
- "dev": true,
- "requires": {
- "ajv": "^6.12.4",
- "debug": "^4.3.2",
- "espree": "^9.4.0",
- "globals": "^13.15.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.0",
- "minimatch": "^3.1.2",
- "strip-json-comments": "^3.1.1"
- },
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- }
- }
- },
- "@humanwhocodes/config-array": {
- "version": "0.11.6",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz",
- "integrity": "sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg==",
- "dev": true,
- "requires": {
- "@humanwhocodes/object-schema": "^1.2.1",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
- },
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- }
- }
- },
- "@humanwhocodes/module-importer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
- "dev": true
- },
- "@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
- "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
- "dev": true
- },
- "@jridgewell/gen-mapping": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
- "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
- "requires": {
- "@jridgewell/set-array": "^1.0.0",
- "@jridgewell/sourcemap-codec": "^1.4.10"
- }
- },
- "@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
- },
- "@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
- },
- "@jridgewell/source-map": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz",
- "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "dependencies": {
- "@jridgewell/gen-mapping": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
- "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- }
- }
- },
- "@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
- },
- "@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
- "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
- "requires": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "@jsdevtools/rehype-toc": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@jsdevtools/rehype-toc/-/rehype-toc-3.0.2.tgz",
- "integrity": "sha512-n5JEf16Wr4mdkRMZ8wMP/wN9/sHmTjRPbouXjJH371mZ2LEGDl72t8tEsMRNFerQN/QJtivOxqK1frdGa4QK5Q=="
- },
- "@mdx-js/loader": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-2.1.5.tgz",
- "integrity": "sha512-oXjfTa/iAcMmW8DdQ+hQFodPCLqw5VKT2yoZkLwrZfPVVpUgKrI+5/ZePYq328xxtAUStZmR3ed0PWJrwd5Pkg==",
- "dev": true,
- "requires": {
- "@mdx-js/mdx": "^2.0.0",
- "source-map": "^0.7.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
- "dev": true
- }
- }
- },
- "@mdx-js/mdx": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.1.5.tgz",
- "integrity": "sha512-zEG0lt+Bl/r5U6e0TOS7qDbsXICtemfAPquxWFsMbdzrvlWaqMGemLl+sjVpqlyaaiCiGVQBSGdCk0t1qXjkQg==",
- "requires": {
- "@types/estree-jsx": "^1.0.0",
- "@types/mdx": "^2.0.0",
- "estree-util-build-jsx": "^2.0.0",
- "estree-util-is-identifier-name": "^2.0.0",
- "estree-util-to-js": "^1.1.0",
- "estree-walker": "^3.0.0",
- "hast-util-to-estree": "^2.0.0",
- "markdown-extensions": "^1.0.0",
- "periscopic": "^3.0.0",
- "remark-mdx": "^2.0.0",
- "remark-parse": "^10.0.0",
- "remark-rehype": "^10.0.0",
- "unified": "^10.0.0",
- "unist-util-position-from-estree": "^1.0.0",
- "unist-util-stringify-position": "^3.0.0",
- "unist-util-visit": "^4.0.0",
- "vfile": "^5.0.0"
- }
- },
- "@mdx-js/react": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.1.5.tgz",
- "integrity": "sha512-3Az1I6SAWA9R38rYjz5rXBrGKeZhq96CSSyQtqY+maPj8stBsoUH5pNcmIixuGkufYsh8F5+ka2CVPo2fycWZw==",
- "requires": {
- "@types/mdx": "^2.0.0",
- "@types/react": ">=16"
- }
- },
- "@motionone/animation": {
- "version": "10.14.0",
- "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.14.0.tgz",
- "integrity": "sha512-h+1sdyBP8vbxEBW5gPFDnj+m2DCqdlAuf2g6Iafb1lcMnqjsRXWlPw1AXgvUMXmreyhqmPbJqoNfIKdytampRQ==",
- "requires": {
- "@motionone/easing": "^10.14.0",
- "@motionone/types": "^10.14.0",
- "@motionone/utils": "^10.14.0",
- "tslib": "^2.3.1"
- }
- },
- "@motionone/dom": {
- "version": "10.13.1",
- "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.13.1.tgz",
- "integrity": "sha512-zjfX+AGMIt/fIqd/SL1Lj93S6AiJsEA3oc5M9VkUr+Gz+juRmYN1vfvZd6MvEkSqEjwPQgcjN7rGZHrDB9APfQ==",
- "requires": {
- "@motionone/animation": "^10.13.1",
- "@motionone/generators": "^10.13.1",
- "@motionone/types": "^10.13.0",
- "@motionone/utils": "^10.13.1",
- "hey-listen": "^1.0.8",
- "tslib": "^2.3.1"
- }
- },
- "@motionone/easing": {
- "version": "10.14.0",
- "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.14.0.tgz",
- "integrity": "sha512-2vUBdH9uWTlRbuErhcsMmt1jvMTTqvGmn9fHq8FleFDXBlHFs5jZzHJT9iw+4kR1h6a4SZQuCf72b9ji92qNYA==",
- "requires": {
- "@motionone/utils": "^10.14.0",
- "tslib": "^2.3.1"
- }
- },
- "@motionone/generators": {
- "version": "10.14.0",
- "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.14.0.tgz",
- "integrity": "sha512-6kRHezoFfIjFN7pPpaxmkdZXD36tQNcyJe3nwVqwJ+ZfC0e3rFmszR8kp9DEVFs9QL/akWjuGPSLBI1tvz+Vjg==",
- "requires": {
- "@motionone/types": "^10.14.0",
- "@motionone/utils": "^10.14.0",
- "tslib": "^2.3.1"
- }
- },
- "@motionone/types": {
- "version": "10.14.0",
- "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.14.0.tgz",
- "integrity": "sha512-3bNWyYBHtVd27KncnJLhksMFQ5o2MSdk1cA/IZqsHtA9DnRM1SYgN01CTcJ8Iw8pCXF5Ocp34tyAjY7WRpOJJQ=="
- },
- "@motionone/utils": {
- "version": "10.14.0",
- "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.14.0.tgz",
- "integrity": "sha512-sLWBLPzRqkxmOTRzSaD3LFQXCPHvDzyHJ1a3VP9PRzBxyVd2pv51/gMOsdAcxQ9n+MIeGJnxzXBYplUHKj4jkw==",
- "requires": {
- "@motionone/types": "^10.14.0",
- "hey-listen": "^1.0.8",
- "tslib": "^2.3.1"
- }
- },
- "@next/env": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-13.0.0.tgz",
- "integrity": "sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg=="
- },
- "@next/eslint-plugin-next": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.0.tgz",
- "integrity": "sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==",
+ "node_modules/@zag-js/dismissable": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/dismissable/-/dismissable-0.63.0.tgz",
+ "integrity": "sha512-JcFTlLQGh68pSRMhUjCFw2g4OtTijyU79M8Vi2xS4lSJ9chxtJy3W6IV/tFmkDLjFNL3/7JIeCkvxJyUAk+wOA==",
"dev": true,
- "requires": {
- "glob": "7.1.7"
+ "dependencies": {
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/interact-outside": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@next/swc-android-arm-eabi": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.0.tgz",
- "integrity": "sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA==",
- "optional": true
- },
- "@next/swc-android-arm64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.0.0.tgz",
- "integrity": "sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g==",
- "optional": true
- },
- "@next/swc-darwin-arm64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.0.tgz",
- "integrity": "sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q==",
- "optional": true
- },
- "@next/swc-darwin-x64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.0.tgz",
- "integrity": "sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw==",
- "optional": true
- },
- "@next/swc-freebsd-x64": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.0.tgz",
- "integrity": "sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg==",
- "optional": true
- },
- "@next/swc-linux-arm-gnueabihf": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.0.tgz",
- "integrity": "sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q==",
- "optional": true
- },
- "@next/swc-linux-arm64-gnu": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.0.tgz",
- "integrity": "sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw==",
- "optional": true
- },
- "@next/swc-linux-arm64-musl": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.0.tgz",
- "integrity": "sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g==",
- "optional": true
- },
- "@next/swc-linux-x64-gnu": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.0.tgz",
- "integrity": "sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw==",
- "optional": true
- },
- "@next/swc-linux-x64-musl": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.0.tgz",
- "integrity": "sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA==",
- "optional": true
- },
- "@next/swc-win32-arm64-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.0.tgz",
- "integrity": "sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg==",
- "optional": true
- },
- "@next/swc-win32-ia32-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.0.tgz",
- "integrity": "sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg==",
- "optional": true
- },
- "@next/swc-win32-x64-msvc": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.0.tgz",
- "integrity": "sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA==",
- "optional": true
- },
- "@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "node_modules/@zag-js/dom-event": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/dom-event/-/dom-event-0.63.0.tgz",
+ "integrity": "sha512-6jJBXknWCOajvwHTx7lbIL56sTg9qIo3/aaaAKlhXI2R1oFsyso4AFgIj1Pt01p+dKZjH4tVg1U0a+t6ZPnfzA==",
"dev": true,
- "requires": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/text-selection": "0.63.0",
+ "@zag-js/types": "0.63.0"
}
},
- "@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "node_modules/@zag-js/dom-query": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.63.0.tgz",
+ "integrity": "sha512-ChgdEzojNNRv79yR1AXTlRWkQhD0rujIcwljzhceyn2oNKpKLDXNKQj8DP+nYYnmeI66dNlOGY35iUAbDaLV2g==",
"dev": true
},
- "@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "node_modules/@zag-js/editable": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/editable/-/editable-0.63.0.tgz",
+ "integrity": "sha512-f6Dn62B+1CmXVWNKWJHoI4rHpm3h2WsJR/122RJwJQB/JFA9/p9dB0hU+jJM4W88VMFHXJC12SU5c9REHIiU8g==",
"dev": true,
- "requires": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/interact-outside": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@rushstack/eslint-patch": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
- "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==",
+ "node_modules/@zag-js/element-rect": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/element-rect/-/element-rect-0.63.0.tgz",
+ "integrity": "sha512-98VlKSSxWvsnObitnCcloOwzXQ0eamt4CqIWg70LsFE/vPbCyrqyNoorXTgZA50TYm9K4oSkmBc/CIq8/VFkpQ==",
"dev": true
},
- "@svgr/babel-plugin-add-jsx-attribute": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.0.tgz",
- "integrity": "sha512-Cp1JR1IPrQNvPRbkfcPmax52iunBC+eQDyBce8feOIIbVH6ZpVhErYoJtPWRBj2rKi4Wi9HvCm1+L1UD6QlBmg==",
- "requires": {}
- },
- "@svgr/babel-plugin-remove-jsx-attribute": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz",
- "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==",
- "requires": {}
- },
- "@svgr/babel-plugin-remove-jsx-empty-expression": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz",
- "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==",
- "requires": {}
- },
- "@svgr/babel-plugin-replace-jsx-attribute-value": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.0.tgz",
- "integrity": "sha512-XWm64/rSPUCQ+MFyA9lhMO+w8bOZvkTvovRIU1lpIy63ysPaVAFtxjQiZj+S7QaLaLGUXkSkf8WZsaN+QPo/gA==",
- "requires": {}
- },
- "@svgr/babel-plugin-svg-dynamic-title": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.0.tgz",
- "integrity": "sha512-JIF2D2ltiWFGlTw2fJ9jJg1fNT9rWjOD2Cf0/xzeW6Z2LIRQTHcRHxpZq359+SRWtEPsCXEWV2Xmd+DMBj6dBw==",
- "requires": {}
- },
- "@svgr/babel-plugin-svg-em-dimensions": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.0.tgz",
- "integrity": "sha512-uuo0FfLP4Nu2zncOcoUFDzZdXWma2bxkTGk0etRThs4/PghvPIGaW8cPhCg6yJ8zpaauWcKV0wZtzKlJRCtVzg==",
- "requires": {}
- },
- "@svgr/babel-plugin-transform-react-native-svg": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.0.tgz",
- "integrity": "sha512-VMRWyOmrV+DaEFPgP3hZMsFgs2g87ojs3txw0Rx8iz6Nf/E3UoHUwTqpkSCWd3Hsnc9gMOY9+wl6+/Ycleh1sw==",
- "requires": {}
- },
- "@svgr/babel-plugin-transform-svg-component": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.0.tgz",
- "integrity": "sha512-b67Ul3SelaqvGEEG/1B3VJ03KUtGFgRQjRLCCjdttMQLcYa9l/izQFEclNFx53pNqhijUMNKHPhGMY/CWGVKig==",
- "requires": {}
- },
- "@svgr/babel-preset": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.0.tgz",
- "integrity": "sha512-UWM98PKVuMqw2UZo8YO3erI6nF1n7/XBYTXBqR0QhZP7HTjYK6QxFNvPfIshddy1hBdzhVpkf148Vg8xiVOtyg==",
- "requires": {
- "@svgr/babel-plugin-add-jsx-attribute": "^6.5.0",
- "@svgr/babel-plugin-remove-jsx-attribute": "^6.5.0",
- "@svgr/babel-plugin-remove-jsx-empty-expression": "^6.5.0",
- "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.0",
- "@svgr/babel-plugin-svg-dynamic-title": "^6.5.0",
- "@svgr/babel-plugin-svg-em-dimensions": "^6.5.0",
- "@svgr/babel-plugin-transform-react-native-svg": "^6.5.0",
- "@svgr/babel-plugin-transform-svg-component": "^6.5.0"
- }
- },
- "@svgr/core": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.0.tgz",
- "integrity": "sha512-jIbu36GMjfK8HCCQitkfVVeQ2vSXGfq0ef0GO9HUxZGjal6Kvpkk4PwpkFP+OyCzF+skQFT9aWrUqekT3pKF8w==",
- "requires": {
- "@babel/core": "^7.18.5",
- "@svgr/babel-preset": "^6.5.0",
- "@svgr/plugin-jsx": "^6.5.0",
- "camelcase": "^6.2.0",
- "cosmiconfig": "^7.0.1"
- }
- },
- "@svgr/hast-util-to-babel-ast": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.0.tgz",
- "integrity": "sha512-PPy94U/EiPQ2dY0b4jEqj4QOdDRq6DG7aTHjpGaL8HlKSHkpU1DpjfywCXTJqtOdCo2FywjWvg0U2FhqMeUJaA==",
- "requires": {
- "@babel/types": "^7.18.4",
- "entities": "^4.3.0"
- }
- },
- "@svgr/plugin-jsx": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.0.tgz",
- "integrity": "sha512-1CHMqOBKoNk/ZPU+iGXKcQPC6q9zaD7UOI99J+BaGY5bdCztcf5bZyi0QZSDRJtCQpdofeVv7XfBYov2mtl0Pw==",
- "requires": {
- "@babel/core": "^7.18.5",
- "@svgr/babel-preset": "^6.5.0",
- "@svgr/hast-util-to-babel-ast": "^6.5.0",
- "svg-parser": "^2.0.4"
- }
- },
- "@svgr/plugin-svgo": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.0.tgz",
- "integrity": "sha512-8Zv1Yyv6I7HlIqrqGFM0sDKQrhjbfNZJawR8UjIaVWSb0tKZP1Ra6ymhqIFu6FT6kDRD0Ct5NlQZ10VUujSspw==",
- "requires": {
- "cosmiconfig": "^7.0.1",
- "deepmerge": "^4.2.2",
- "svgo": "^2.8.0"
- }
- },
- "@svgr/webpack": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.5.0.tgz",
- "integrity": "sha512-rM/Z4pwMhqvAXEHoHIlE4SeTb0ToQNmJuBdiHwhP2ZtywyX6XqrgCv2WX7K/UCgNYJgYbekuylgyjnuLUHTcZQ==",
- "requires": {
- "@babel/core": "^7.18.5",
- "@babel/plugin-transform-react-constant-elements": "^7.17.12",
- "@babel/preset-env": "^7.18.2",
- "@babel/preset-react": "^7.17.12",
- "@babel/preset-typescript": "^7.17.12",
- "@svgr/core": "^6.5.0",
- "@svgr/plugin-jsx": "^6.5.0",
- "@svgr/plugin-svgo": "^6.5.0"
- }
- },
- "@swc/helpers": {
- "version": "0.4.11",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz",
- "integrity": "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==",
- "requires": {
- "tslib": "^2.4.0"
- }
- },
- "@trysound/sax": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
- "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
- },
- "@types/acorn": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz",
- "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==",
- "requires": {
- "@types/estree": "*"
- }
- },
- "@types/debug": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
- "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
- "requires": {
- "@types/ms": "*"
- }
+ "node_modules/@zag-js/element-size": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.63.0.tgz",
+ "integrity": "sha512-QfLcNNb9aZYRZUCVMjbUnHJk4ujRpINWmr8NTCMsqCtmqZ0ay3YmyGL/ZzrMkKWkCYjrq4tD23XYChIjha/24Q==",
+ "dev": true
},
- "@types/eslint": {
- "version": "8.4.10",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz",
- "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==",
+ "node_modules/@zag-js/file-upload": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/file-upload/-/file-upload-0.63.0.tgz",
+ "integrity": "sha512-WHaYNFwhOI+5Cj0tx/bMdB8V6Gmz19JUFSYSsq5xwQt5mYEFp4P6NH+OMHdsD/daKyJ2zUjYwaDt1FK/3LK1mw==",
"dev": true,
- "peer": true,
- "requires": {
- "@types/estree": "*",
- "@types/json-schema": "*"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/file-utils": "0.63.0",
+ "@zag-js/i18n-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@types/eslint-scope": {
- "version": "3.7.4",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
- "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
+ "node_modules/@zag-js/file-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/file-utils/-/file-utils-0.63.0.tgz",
+ "integrity": "sha512-ob6HSzhRIEftefIx+NaVni6DFrXmqgQqdcjIJNq93FNz+b8/cr42s18feL4brr6X6U7lGVqEVYpAdJokOvZx/g==",
"dev": true,
- "peer": true,
- "requires": {
- "@types/eslint": "*",
- "@types/estree": "*"
+ "dependencies": {
+ "@zag-js/i18n-utils": "0.63.0"
}
},
- "@types/estree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
- "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="
+ "node_modules/@zag-js/form-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/form-utils/-/form-utils-0.63.0.tgz",
+ "integrity": "sha512-oSv8w2E4jVXdvzp/WxNUGk+gbkawp6pBRUK2p4KHlhWqJr0rlekgN1KdAv15Nw1svMA163DqQwfIfNspzTNNjA==",
+ "dev": true
},
- "@types/estree-jsx": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz",
- "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==",
- "requires": {
- "@types/estree": "*"
+ "node_modules/@zag-js/hover-card": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/hover-card/-/hover-card-0.63.0.tgz",
+ "integrity": "sha512-uGRKzr1yoAB0Lvp/7dcce0F62snXoH7tXixxneR9iEacuHQutzCzPcFnUJ2QKq61CWOI0isARzjB+9PHNQnCvA==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@types/hast": {
- "version": "2.3.4",
- "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz",
- "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==",
- "requires": {
- "@types/unist": "*"
+ "node_modules/@zag-js/i18n-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/i18n-utils/-/i18n-utils-0.63.0.tgz",
+ "integrity": "sha512-K217Uw7XBMwx47dasYuPOCQK7+FG2o1Xs0D2jtGEzXb6lrG9Q2BpwIOguAHdcDTm5hdDz0o5NZPLYw4EiCe4Ew==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0"
}
},
- "@types/js-yaml": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz",
- "integrity": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA=="
- },
- "@types/json-schema": {
- "version": "7.0.11",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
- "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
+ "node_modules/@zag-js/interact-outside": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/interact-outside/-/interact-outside-0.63.0.tgz",
+ "integrity": "sha512-a8sq3D8wWiGnUySdg2UtStwNXfvqqtA84PLoWCYBNi2l/gvsnIIBxikkaEadisVdfQYGyCcRf4hh3BQ6T9FTzw==",
"dev": true,
- "peer": true
- },
- "@types/json5": {
- "version": "0.0.29",
- "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
- "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
- "dev": true
+ "dependencies": {
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@types/lodash": {
- "version": "4.14.191",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
- "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
+ "node_modules/@zag-js/live-region": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/live-region/-/live-region-0.63.0.tgz",
+ "integrity": "sha512-7qJkTpMn52qVzgrR/hdVQa4huD2C7rPrVhYCDz75IySIkHQTiGdAbo1GZIA67Uwdpp5xWMASh3hSLoEpGezvaw==",
"dev": true
},
- "@types/lodash.clonedeep": {
- "version": "4.5.7",
- "resolved": "https://registry.npmjs.org/@types/lodash.clonedeep/-/lodash.clonedeep-4.5.7.tgz",
- "integrity": "sha512-ccNqkPptFIXrpVqUECi60/DFxjNKsfoQxSQsgcBJCX/fuX1wgyQieojkcWH/KpE3xzLoWN/2k+ZeGqIN3paSvw==",
+ "node_modules/@zag-js/menu": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/menu/-/menu-0.63.0.tgz",
+ "integrity": "sha512-CiF5UhWAfilIsdkw66/n3hYPQFm8m85mrMCaPUPXRixri2kgNl+FXgT3jdOWph7Q5G8yxvEOnI6CFuD77zROGw==",
"dev": true,
- "requires": {
- "@types/lodash": "*"
- }
- },
- "@types/mdast": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz",
- "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==",
- "requires": {
- "@types/unist": "*"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/rect-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@types/mdx": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz",
- "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ=="
- },
- "@types/minimatch": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz",
- "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
- "dev": true
- },
- "@types/ms": {
- "version": "0.7.31",
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
- "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
- },
- "@types/node": {
- "version": "18.11.5",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.5.tgz",
- "integrity": "sha512-3JRwhbjI+cHLAkUorhf8RnqUbFXajvzX4q6fMn5JwkgtuwfYtRQYI3u4V92vI6NJuTsbBQWWh3RZjFsuevyMGQ==",
- "dev": true
+ "node_modules/@zag-js/number-input": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/number-input/-/number-input-0.63.0.tgz",
+ "integrity": "sha512-GVM1puz6VbBWl5KVb5C3zDaPrDS3dMYB+MzcFwtw8MGRMxx7D8ZZlj8fr+Oo0fztxLCbbwHhm5PDyW1aG/fK3w==",
+ "dev": true,
+ "dependencies": {
+ "@internationalized/number": "3.5.3",
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/number-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@types/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
+ "node_modules/@zag-js/number-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/number-utils/-/number-utils-0.63.0.tgz",
+ "integrity": "sha512-+s9K54HJJtdH5oJKNFRCtFyDcPhFSqFUWxNy9J0FL4+wfr6TrStitU7x29anMJIsfsgCKyNTwH0BmMWJGATt/Q==",
+ "dev": true
},
- "@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
+ "node_modules/@zag-js/numeric-range": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/numeric-range/-/numeric-range-0.63.0.tgz",
+ "integrity": "sha512-r5dhB3tHNO+xeUYzxdeimQ1MJD2t7bZ7KWZ0LiJ7ckrTCVv8gP0LUtlKVlGwQm1z84cBS75+sfa1rKJyg7WgCA==",
+ "dev": true
},
- "@types/react": {
- "version": "18.0.23",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.23.tgz",
- "integrity": "sha512-R1wTULtCiJkudAN2DJGoYYySbGtOdzZyUWAACYinKdiQC8auxso4kLDUhQ7AJ2kh3F6A6z4v69U6tNY39hihVQ==",
- "requires": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
+ "node_modules/@zag-js/pagination": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/pagination/-/pagination-0.63.0.tgz",
+ "integrity": "sha512-VgBe2S+rjDoOAPQhn9czK7pheWAiwU+nDrjznVKBcmocYEmUGos6wfa/j82vk57jKJMZIyKJ3xjdp5DC7fwoNQ==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@types/react-dom": {
- "version": "18.0.7",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.7.tgz",
- "integrity": "sha512-HaXc+BbqAZE1RdsK3tC8SbkFy6UL2xF76lT9rQs5JkPrJg3rWA3Ou/Lhw3YJQzEDkBpmJ79nBsfnd05WrBd2QQ==",
+ "node_modules/@zag-js/pin-input": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/pin-input/-/pin-input-0.63.0.tgz",
+ "integrity": "sha512-AO1WCadGamsrrhco6MnR7CvcS6Wu4QYxeBMyrA5R+iGjLtdB1zsJE1yzDifMatho6jrZBUvKrGEwdjctbbpS1Q==",
"dev": true,
- "requires": {
- "@types/react": "*"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@types/scheduler": {
- "version": "0.16.2",
- "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
- "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
+ "node_modules/@zag-js/popover": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/popover/-/popover-0.63.0.tgz",
+ "integrity": "sha512-2etMwWHK6Ek1v41P6dXfe3KRZYsgxIRNo2O9jSw2GQQC48Ndatiu18dIz8MQDvmS0lJluIQ3Sz0bvF0MOxd8CA==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/aria-hidden": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/remove-scroll": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0",
+ "focus-trap": "7.5.4"
+ }
},
- "@types/unist": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz",
- "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ=="
+ "node_modules/@zag-js/popper": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/popper/-/popper-0.63.0.tgz",
+ "integrity": "sha512-3/c1bQ0vMSNKK0CcOd0TwQGSeJuRNzpJzp8nk923QV+fOhZjc0s+6oalHIM3kFh/SVPCa9ypPddOgRWKHqBhOg==",
+ "dev": true,
+ "dependencies": {
+ "@floating-ui/dom": "1.6.8",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@typescript-eslint/parser": {
- "version": "5.41.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.41.0.tgz",
- "integrity": "sha512-HQVfix4+RL5YRWZboMD1pUfFN8MpRH4laziWkkAzyO1fvNOY/uinZcvo3QiFJVS/siNHupV8E5+xSwQZrl6PZA==",
+ "node_modules/@zag-js/presence": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/presence/-/presence-0.63.0.tgz",
+ "integrity": "sha512-rAFY3WRhBi+OrOxIp1xRWAqD5WyCVDW2zm2sWf+A88GUO/gh5wlzc3JhPYr6ruCfy8ionJaaaZ7gWzAZJlCeGg==",
"dev": true,
- "requires": {
- "@typescript-eslint/scope-manager": "5.41.0",
- "@typescript-eslint/types": "5.41.0",
- "@typescript-eslint/typescript-estree": "5.41.0",
- "debug": "^4.3.4"
+ "dependencies": {
+ "@zag-js/core": "0.63.0",
+ "@zag-js/types": "0.63.0"
}
},
- "@typescript-eslint/scope-manager": {
- "version": "5.41.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.41.0.tgz",
- "integrity": "sha512-xOxPJCnuktUkY2xoEZBKXO5DBCugFzjrVndKdUnyQr3+9aDWZReKq9MhaoVnbL+maVwWJu/N0SEtrtEUNb62QQ==",
+ "node_modules/@zag-js/progress": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/progress/-/progress-0.63.0.tgz",
+ "integrity": "sha512-NYYwe5F03kUuy0pABmhV56jYH0bcFKDVk99nPvR8bVBtCNDzIO/IixYCViLRdepnIKldIKqmnxk9Im7zvQGNYw==",
"dev": true,
- "requires": {
- "@typescript-eslint/types": "5.41.0",
- "@typescript-eslint/visitor-keys": "5.41.0"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@typescript-eslint/types": {
- "version": "5.41.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.41.0.tgz",
- "integrity": "sha512-5BejraMXMC+2UjefDvrH0Fo/eLwZRV6859SXRg+FgbhA0R0l6lDqDGAQYhKbXhPN2ofk2kY5sgGyLNL907UXpA==",
- "dev": true
+ "node_modules/@zag-js/qr-code": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/qr-code/-/qr-code-0.63.0.tgz",
+ "integrity": "sha512-G5EmXeQPD67zJGG4fxADqB6zxiN5LWzcwUYok45ABUmj/b/xub+SUanFpH+AE/2rxgnmd27aHVH8tN4XZycf9w==",
+ "dev": true,
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0",
+ "proxy-memoize": "3.0.1",
+ "uqr": "0.1.2"
+ }
},
- "@typescript-eslint/typescript-estree": {
- "version": "5.41.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.41.0.tgz",
- "integrity": "sha512-SlzFYRwFSvswzDSQ/zPkIWcHv8O5y42YUskko9c4ki+fV6HATsTODUPbRbcGDFYP86gaJL5xohUEytvyNNcXWg==",
+ "node_modules/@zag-js/radio-group": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/radio-group/-/radio-group-0.63.0.tgz",
+ "integrity": "sha512-a4QIZChEK4guGAbNq1BOI5PvM4C/iiPN2H3FIjNMUA3izkdpv1oiT8RV/YUDJJz4RHCRf4amB8NYKqzYb5rPwQ==",
"dev": true,
- "requires": {
- "@typescript-eslint/types": "5.41.0",
- "@typescript-eslint/visitor-keys": "5.41.0",
- "debug": "^4.3.4",
- "globby": "^11.1.0",
- "is-glob": "^4.0.3",
- "semver": "^7.3.7",
- "tsutils": "^3.21.0"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/element-rect": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@typescript-eslint/visitor-keys": {
- "version": "5.41.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.41.0.tgz",
- "integrity": "sha512-vilqeHj267v8uzzakbm13HkPMl7cbYpKVjgFWZPIOHIJHZtinvypUhJ5xBXfWYg4eFKqztbMMpOgFpT9Gfx4fw==",
+ "node_modules/@zag-js/rating-group": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/rating-group/-/rating-group-0.63.0.tgz",
+ "integrity": "sha512-CxB7TavnG2Pa30rFZOrwM69SJuCNoBDMkTnCFVaXWddEtdS1zx968G/xAY4qxrNnXCH/C14T4INYGY15qVlR4Q==",
"dev": true,
- "requires": {
- "@typescript-eslint/types": "5.41.0",
- "eslint-visitor-keys": "^3.3.0"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/ast": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
- "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
+ "node_modules/@zag-js/react": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/react/-/react-0.63.0.tgz",
+ "integrity": "sha512-8DbgK8XSONBFQ92CFlp4aWCrG+aFMgo0m9HR8YPTLuex9RUe19AOyeXBtr5JfrDnvX3dOJyecZd1mJpdaDVOwA==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
+ "dependencies": {
+ "@zag-js/core": "0.63.0",
+ "@zag-js/store": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "proxy-compare": "3.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18.0.0",
+ "react-dom": ">=18.0.0"
}
},
- "@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
- "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==",
+ "node_modules/@zag-js/rect-utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/rect-utils/-/rect-utils-0.63.0.tgz",
+ "integrity": "sha512-vWbJNWE5TtCvcBMTlnaXKFfVe2IJGkVyyZyZtxINR0AvTj1qkaGq5T9lmlgOLHPnTyMIHBQ1JNGL6v9EI2yeIQ==",
+ "dev": true
+ },
+ "node_modules/@zag-js/remove-scroll": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/remove-scroll/-/remove-scroll-0.63.0.tgz",
+ "integrity": "sha512-UGR3pVgrxhDArmsxQ1G7VKV9dhUnJPtPToT7he9J9uVEwVJs8qq9q80vd/qKPvfPs0wKTGt5638J/SmWyNjrUg==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0"
+ }
},
- "@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
- "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==",
+ "node_modules/@zag-js/select": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/select/-/select-0.63.0.tgz",
+ "integrity": "sha512-Hx2hRw6ivKT+DfABWQy6D6EDEKP2msndVOQKGAWyTJgatYTLBwL4wIo29sp81rU9LSRHOUt/2NRRyodT4glYCw==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/collection": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
- "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==",
+ "node_modules/@zag-js/signature-pad": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/signature-pad/-/signature-pad-0.63.0.tgz",
+ "integrity": "sha512-KJSSf5c4BnXMQTDr2JsRo5gme4Q3mC4Xsy9PcYLCeSQqG2vJyJgv39VewgHlRyZZawQiOwxbzByNai0U/I4a8A==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0",
+ "perfect-freehand": "^1.2.2"
+ }
},
- "@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
- "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
+ "node_modules/@zag-js/slider": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/slider/-/slider-0.63.0.tgz",
+ "integrity": "sha512-k3rlT2S1QP9QVuhc+ZcehZ9rkEp+Osi/zJXGESXTg8geiKdr4zVVGbfRlkU0GF0RjYExDHRCc/aAzqdwxqWJ4g==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/element-size": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/numeric-range": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
- "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==",
+ "node_modules/@zag-js/splitter": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/splitter/-/splitter-0.63.0.tgz",
+ "integrity": "sha512-rAyFa6tU66C60qC+GILUHi5LeNbIICKdIq6d93ROfoAphwN8wEsDA3/0q1rllNpdcseFfYerLcb/zFzuBJXbmg==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/number-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
- "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
+ "node_modules/@zag-js/store": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/store/-/store-0.63.0.tgz",
+ "integrity": "sha512-45aUdxDeAxKu1hCY7/oHAGvA3mR25Eoyb85rT41z2NHbdH6HLiGDFzLCL5OHMQSugiFWymxQ0NjpRWTVBkHSRA==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1"
+ "dependencies": {
+ "proxy-compare": "3.0.0"
}
},
- "@webassemblyjs/ieee754": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
- "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
+ "node_modules/@zag-js/switch": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/switch/-/switch-0.63.0.tgz",
+ "integrity": "sha512-QbtNibR/6NlBk51yi7vxs6RI519ICL7KW0zjvDNticShqIyz+dCeR4SEZNkKrhkCGbM1FpRclwKTAoqTAHYZ8A==",
"dev": true,
- "peer": true,
- "requires": {
- "@xtuc/ieee754": "^1.2.0"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/leb128": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
- "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
+ "node_modules/@zag-js/tabs": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/tabs/-/tabs-0.63.0.tgz",
+ "integrity": "sha512-Fdeva7vCFptj+Cgnu8zgUlcXeSAmkpB8MeTgqQpKzODOCyEwE7UWkrV9j2pAMRA/goR/OObdnLLxBuyZyZSS3Q==",
"dev": true,
- "peer": true,
- "requires": {
- "@xtuc/long": "4.2.2"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/element-rect": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/utf8": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
- "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==",
+ "node_modules/@zag-js/tags-input": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/tags-input/-/tags-input-0.63.0.tgz",
+ "integrity": "sha512-wfY3dE2JnnieNKsl55UAJ5V4LMba/1zBLHaMJ+M/X0QGN4/NlTghhyaC5zArteFHIOXjZSJWUop/e/igsIIo0A==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/auto-resize": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/form-utils": "0.63.0",
+ "@zag-js/interact-outside": "0.63.0",
+ "@zag-js/live-region": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
- "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
+ "node_modules/@zag-js/text-selection": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/text-selection/-/text-selection-0.63.0.tgz",
+ "integrity": "sha512-um7GFbRCz8GCVEPOQT146Y4ek35i4DXxnweKc79Qw6BXaIYpZOdoKdKypCsd+bS3VWfRorUxIQ46tQcsb4KouA==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/helper-wasm-section": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-opt": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "@webassemblyjs/wast-printer": "1.11.1"
+ "dependencies": {
+ "@zag-js/dom-query": "0.63.0"
}
},
- "@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
- "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
+ "node_modules/@zag-js/time-picker": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/time-picker/-/time-picker-0.63.0.tgz",
+ "integrity": "sha512-i+7iAipTl9Mk+41arcBzEQml9wHkDS0e1Yj8pDtlVDVZ+IiiLGsTVJ3eJkN88UHrMaLaRYMGoyuUBro2xhpzVw==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
+ "dependencies": {
+ "@internationalized/date": "3.5.5",
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "^0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
- "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
+ "node_modules/@zag-js/toast": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/toast/-/toast-0.63.0.tgz",
+ "integrity": "sha512-ti5IyP8frA2fkobnomdbqzYiLM1Eb/8hPJuNTnAC+gGyVbDg3aE+a8/rbXYPVCD2TyE4XEzJJKE2HDmKrXY8lg==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dismissable": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
- "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
+ "node_modules/@zag-js/toggle-group": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/toggle-group/-/toggle-group-0.63.0.tgz",
+ "integrity": "sha512-fRXNJ8gDSKkcVrZ21A7v28ZxTpgJHm+VNy3svov+BeoxXz/Qjcde8e5rhf+0ecmFWZf/qGtxDdGlAriUu4wpVg==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
- "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
+ "node_modules/@zag-js/tooltip": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/tooltip/-/tooltip-0.63.0.tgz",
+ "integrity": "sha512-JE7yQxZi2GMNUcFdqx43VRjzQAaxXdEFx5tjnLVhnKCzSXqqHb8bhvTpporFpc1HxxZZ3Rc7uCBmFibnSODocw==",
"dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/popper": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
}
},
- "@xtuc/ieee754": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "node_modules/@zag-js/tree-view": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/tree-view/-/tree-view-0.63.0.tgz",
+ "integrity": "sha512-A2MEmyQQBu2AlW0EyaNZCQNF7Tg9F3nMfjyvYOwJ3JT4igh+3mWmLM4QNnTkFuyCb9BQlD9p06N78ScClf6yvQ==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "@zag-js/anatomy": "0.63.0",
+ "@zag-js/core": "0.63.0",
+ "@zag-js/dom-event": "0.63.0",
+ "@zag-js/dom-query": "0.63.0",
+ "@zag-js/types": "0.63.0",
+ "@zag-js/utils": "0.63.0"
+ }
},
- "@xtuc/long": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "node_modules/@zag-js/types": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/types/-/types-0.63.0.tgz",
+ "integrity": "sha512-WupxwmeEZNz108TWA+3/ZXuebOHtQl694bMaShjle0i1Bpi8ABMngZm46qxHqYZ3vkbcZC+/5ItQsYpQMpTAqQ==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "csstype": "3.1.3"
+ }
},
- "accepts": {
+ "node_modules/@zag-js/utils": {
+ "version": "0.63.0",
+ "resolved": "https://registry.npmjs.org/@zag-js/utils/-/utils-0.63.0.tgz",
+ "integrity": "sha512-MmDJ5ypNQqD2LTFvz+SmR9KzP+sEmJoKDlsP5/MCPF6+EMFa272LLlsEEehDLOb5dZwzQFjSz9SBqGIvnwjt6A==",
+ "dev": true
+ },
+ "node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
- "requires": {
+ "dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
}
},
- "acorn": {
+ "node_modules/acorn": {
"version": "8.8.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
- "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="
+ "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
},
- "acorn-import-assertions": {
+ "node_modules/acorn-import-assertions": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
"integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
"dev": true,
"peer": true,
- "requires": {}
+ "peerDependencies": {
+ "acorn": "^8"
+ }
},
- "acorn-jsx": {
+ "node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "requires": {}
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
},
- "ajv": {
+ "node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
- "requires": {
+ "dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "ajv-keywords": {
+ "node_modules/ajv-keywords": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"peer": true,
- "requires": {}
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
},
- "ansi-regex": {
+ "node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "engines": {
+ "node": ">=8"
+ }
},
- "ansi-styles": {
+ "node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
+ "dependencies": {
"color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "anymatch": {
+ "node_modules/anymatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
- "requires": {
+ "dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "argparse": {
+ "node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
- "aria-query": {
+ "node_modules/aria-query": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
"integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
"dev": true,
- "requires": {
+ "dependencies": {
"@babel/runtime": "^7.10.2",
"@babel/runtime-corejs3": "^7.10.2"
+ },
+ "engines": {
+ "node": ">=6.0"
}
},
- "array-flatten": {
+ "node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
- "array-includes": {
+ "node_modules/array-includes": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz",
"integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5",
"get-intrinsic": "^1.1.1",
"is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "array-union": {
+ "node_modules/array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "array.prototype.flat": {
+ "node_modules/array.prototype.flat": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz",
"integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.2",
"es-shim-unscopables": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "array.prototype.flatmap": {
+ "node_modules/array.prototype.flatmap": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz",
"integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.2",
"es-shim-unscopables": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "ast-types-flow": {
+ "node_modules/ast-types-flow": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
"integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==",
"dev": true
},
- "astring": {
+ "node_modules/astring": {
"version": "1.8.3",
"resolved": "https://registry.npmjs.org/astring/-/astring-1.8.3.tgz",
- "integrity": "sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A=="
+ "integrity": "sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A==",
+ "bin": {
+ "astring": "bin/astring"
+ }
},
- "axe-core": {
+ "node_modules/axe-core": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.0.tgz",
"integrity": "sha512-4+rr8eQ7+XXS5nZrKcMO/AikHL0hVqy+lHWAnE3xdHl+aguag8SOQ6eEqLexwLNWgXIMfunGuD3ON1/6Kyet0A==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
},
- "axobject-query": {
+ "node_modules/axobject-query": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz",
"integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==",
"dev": true
},
- "babel-plugin-polyfill-corejs2": {
+ "node_modules/babel-plugin-polyfill-corejs2": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
"integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
- "requires": {
+ "dependencies": {
"@babel/compat-data": "^7.17.7",
"@babel/helper-define-polyfill-provider": "^0.3.3",
"semver": "^6.1.1"
},
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "bin": {
+ "semver": "bin/semver.js"
}
},
- "babel-plugin-polyfill-corejs3": {
+ "node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
"integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
- "requires": {
+ "dependencies": {
"@babel/helper-define-polyfill-provider": "^0.3.3",
"core-js-compat": "^3.25.1"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "babel-plugin-polyfill-regenerator": {
+ "node_modules/babel-plugin-polyfill-regenerator": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
"integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
- "requires": {
+ "dependencies": {
"@babel/helper-define-polyfill-provider": "^0.3.3"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
}
},
- "bail": {
+ "node_modules/bail": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
- "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "balanced-match": {
+ "node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
- "base64-js": {
+ "node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
- "binary-extensions": {
+ "node_modules/binary-extensions": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
- "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "engines": {
+ "node": ">=8"
+ }
},
- "bl": {
+ "node_modules/bl": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
- "requires": {
+ "dependencies": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
}
},
- "body-parser": {
+ "node_modules/body-parser": {
"version": "1.20.1",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
"integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
- "requires": {
+ "dependencies": {
"bytes": "3.1.2",
"content-type": "~1.0.4",
"debug": "2.6.9",
@@ -12246,537 +4253,787 @@
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- }
+ "ms": "2.0.0"
}
},
- "boolbase": {
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "node_modules/boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
- "brace-expansion": {
+ "node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "requires": {
+ "dependencies": {
"balanced-match": "^1.0.0"
}
},
- "braces": {
+ "node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
+ "dependencies": {
"fill-range": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "browserslist": {
+ "node_modules/browserslist": {
"version": "4.21.4",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz",
"integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
- "requires": {
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ }
+ ],
+ "dependencies": {
"caniuse-lite": "^1.0.30001400",
"electron-to-chromium": "^1.4.251",
"node-releases": "^2.0.6",
"update-browserslist-db": "^1.0.9"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
}
},
- "buffer": {
+ "node_modules/buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
- "requires": {
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
- "buffer-from": {
+ "node_modules/buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"dev": true,
"peer": true
},
- "bytes": {
+ "node_modules/busboy": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
+ "dependencies": {
+ "streamsearch": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=10.16.0"
+ }
+ },
+ "node_modules/bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "call-bind": {
+ "node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "requires": {
+ "dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "callsites": {
+ "node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "engines": {
+ "node": ">=6"
+ }
},
- "camelcase": {
+ "node_modules/camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "caniuse-lite": {
+ "node_modules/caniuse-lite": {
"version": "1.0.30001425",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001425.tgz",
- "integrity": "sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw=="
+ "integrity": "sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ }
+ ]
},
- "ccount": {
+ "node_modules/ccount": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
- "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "chalk": {
+ "node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
+ "dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "character-entities": {
+ "node_modules/character-entities": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
- "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ=="
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "character-entities-html4": {
+ "node_modules/character-entities-html4": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
- "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA=="
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "character-entities-legacy": {
+ "node_modules/character-entities-legacy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
- "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ=="
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "character-reference-invalid": {
+ "node_modules/character-reference-invalid": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
- "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw=="
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "chokidar": {
+ "node_modules/chokidar": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
"integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
- "requires": {
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ ],
+ "dependencies": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
- "fsevents": "~2.3.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
},
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/chokidar/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dependencies": {
- "glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- }
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
}
},
- "chownr": {
+ "node_modules/chownr": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
},
- "chrome-trace-event": {
+ "node_modules/chrome-trace-event": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
"integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
"dev": true,
- "peer": true
+ "peer": true,
+ "engines": {
+ "node": ">=6.0"
+ }
},
- "classnames": {
+ "node_modules/classnames": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz",
"integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw=="
},
- "cli-progress": {
+ "node_modules/cli-progress": {
"version": "3.11.2",
"resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.2.tgz",
"integrity": "sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA==",
- "requires": {
+ "dependencies": {
"string-width": "^4.2.3"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "client-only": {
+ "node_modules/client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
},
- "color": {
+ "node_modules/color": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
- "requires": {
+ "dependencies": {
"color-convert": "^2.0.1",
"color-string": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=12.5.0"
}
},
- "color-convert": {
+ "node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "requires": {
+ "dependencies": {
"color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
}
},
- "color-name": {
+ "node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
- "color-string": {
+ "node_modules/color-string": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
- "requires": {
+ "dependencies": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
}
},
- "comma-separated-tokens": {
+ "node_modules/comma-separated-tokens": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz",
- "integrity": "sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg=="
+ "integrity": "sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "commander": {
+ "node_modules/commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "engines": {
+ "node": ">= 10"
+ }
},
- "concat-map": {
+ "node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true
},
- "content-disposition": {
+ "node_modules/content-disposition": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
- "requires": {
+ "dependencies": {
"safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
}
},
- "content-type": {
+ "node_modules/content-type": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "convert-source-map": {
+ "node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
- "cookie": {
+ "node_modules/cookie": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
- "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="
+ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "cookie-signature": {
+ "node_modules/cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
},
- "core-js-compat": {
+ "node_modules/core-js-compat": {
"version": "3.26.0",
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz",
"integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==",
- "requires": {
+ "dependencies": {
"browserslist": "^4.21.4"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
}
},
- "core-js-pure": {
+ "node_modules/core-js-pure": {
"version": "3.26.0",
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz",
"integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==",
- "dev": true
+ "dev": true,
+ "hasInstallScript": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
},
- "cosmiconfig": {
+ "node_modules/cosmiconfig": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
"integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
- "requires": {
+ "dependencies": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "cross-spawn": {
+ "node_modules/cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
"dev": true,
- "requires": {
+ "dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "css-select": {
+ "node_modules/css-select": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
- "requires": {
+ "dependencies": {
"boolbase": "^1.0.0",
"css-what": "^6.0.1",
"domhandler": "^4.3.1",
"domutils": "^2.8.0",
"nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "css-tree": {
+ "node_modules/css-tree": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
- "requires": {
+ "dependencies": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "css-what": {
+ "node_modules/css-what": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
- "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
},
- "csso": {
+ "node_modules/csso": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
- "requires": {
+ "dependencies": {
"css-tree": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "csstype": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
- "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
},
- "damerau-levenshtein": {
+ "node_modules/damerau-levenshtein": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
"dev": true
},
- "debug": {
+ "node_modules/debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
- "requires": {
+ "dependencies": {
"ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "decode-named-character-reference": {
+ "node_modules/decode-named-character-reference": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
- "requires": {
+ "dependencies": {
"character-entities": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "decompress-response": {
+ "node_modules/decompress-response": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
- "requires": {
+ "dependencies": {
"mimic-response": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "deep-extend": {
+ "node_modules/deep-extend": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
+ "engines": {
+ "node": ">=4.0.0"
+ }
},
- "deep-is": {
+ "node_modules/deep-is": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
"dev": true
},
- "deepmerge": {
+ "node_modules/deepmerge": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "define-properties": {
+ "node_modules/define-properties": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
"integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "depd": {
+ "node_modules/depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "dequal": {
+ "node_modules/dequal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "engines": {
+ "node": ">=6"
+ }
},
- "destroy": {
+ "node_modules/destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
},
- "detect-libc": {
+ "node_modules/detect-libc": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
- "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="
+ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==",
+ "engines": {
+ "node": ">=8"
+ }
},
- "diff": {
+ "node_modules/diff": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz",
- "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw=="
+ "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==",
+ "engines": {
+ "node": ">=0.3.1"
+ }
},
- "dir-glob": {
+ "node_modules/dir-glob": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"dev": true,
- "requires": {
+ "dependencies": {
"path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "doctrine": {
+ "node_modules/doctrine": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"dev": true,
- "requires": {
+ "dependencies": {
"esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
}
},
- "dom-serializer": {
+ "node_modules/dom-serializer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
- "requires": {
+ "dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
"entities": "^2.0.0"
},
- "dependencies": {
- "entities": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
- }
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/dom-serializer/node_modules/entities": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "domelementtype": {
+ "node_modules/domelementtype": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ]
},
- "domhandler": {
+ "node_modules/domhandler": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
- "requires": {
+ "dependencies": {
"domelementtype": "^2.2.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "domutils": {
+ "node_modules/domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
- "requires": {
+ "dependencies": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
"domhandler": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
}
},
- "ee-first": {
+ "node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
},
- "electron-to-chromium": {
+ "node_modules/electron-to-chromium": {
"version": "1.4.284",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz",
"integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="
},
- "emoji-regex": {
+ "node_modules/emoji-regex": {
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
"dev": true
},
- "encodeurl": {
+ "node_modules/encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "end-of-stream": {
+ "node_modules/end-of-stream": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "requires": {
+ "dependencies": {
"once": "^1.4.0"
}
},
- "enhanced-resolve": {
+ "node_modules/enhanced-resolve": {
"version": "5.12.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"graceful-fs": "^4.2.4",
"tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/entities": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
+ "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "entities": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
- "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA=="
- },
- "error-ex": {
+ "node_modules/error-ex": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "requires": {
+ "dependencies": {
"is-arrayish": "^0.2.1"
}
},
- "es-abstract": {
+ "node_modules/es-abstract": {
"version": "1.20.4",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz",
"integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
@@ -12801,57 +5058,78 @@
"string.prototype.trimend": "^1.0.5",
"string.prototype.trimstart": "^1.0.5",
"unbox-primitive": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "es-module-lexer": {
+ "node_modules/es-module-lexer": {
"version": "0.9.3",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
"integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
"dev": true,
"peer": true
},
- "es-shim-unscopables": {
+ "node_modules/es-shim-unscopables": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
"integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
"dev": true,
- "requires": {
+ "dependencies": {
"has": "^1.0.3"
}
},
- "es-to-primitive": {
+ "node_modules/es-to-primitive": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
"dev": true,
- "requires": {
+ "dependencies": {
"is-callable": "^1.1.4",
"is-date-object": "^1.0.1",
"is-symbol": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "escalade": {
+ "node_modules/escalade": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "engines": {
+ "node": ">=6"
+ }
},
- "escape-html": {
+ "node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
},
- "escape-string-regexp": {
+ "node_modules/escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "eslint": {
+ "node_modules/eslint": {
"version": "8.26.0",
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz",
"integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==",
"dev": true,
- "requires": {
+ "dependencies": {
"@eslint/eslintrc": "^1.3.3",
"@humanwhocodes/config-array": "^0.11.6",
"@humanwhocodes/module-importer": "^1.0.1",
@@ -12892,34 +5170,22 @@
"strip-json-comments": "^3.1.0",
"text-table": "^0.2.0"
},
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- }
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "eslint-config-next": {
+ "node_modules/eslint-config-next": {
"version": "13.0.0",
"resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.0.0.tgz",
"integrity": "sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==",
"dev": true,
- "requires": {
+ "dependencies": {
"@next/eslint-plugin-next": "13.0.0",
"@rushstack/eslint-patch": "^1.1.3",
"@typescript-eslint/parser": "^5.21.0",
@@ -12929,103 +5195,130 @@
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.5.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.23.0 || ^8.0.0",
+ "typescript": ">=3.3.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
- "eslint-import-resolver-node": {
+ "node_modules/eslint-import-resolver-node": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz",
"integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==",
"dev": true,
- "requires": {
+ "dependencies": {
"debug": "^3.2.7",
"resolve": "^1.20.0"
- },
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
"dependencies": {
- "debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "requires": {
- "ms": "^2.1.1"
- }
- }
+ "ms": "^2.1.1"
}
},
- "eslint-import-resolver-typescript": {
+ "node_modules/eslint-import-resolver-typescript": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz",
"integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"debug": "^4.3.4",
"glob": "^7.2.0",
"is-glob": "^4.0.3",
"resolve": "^1.22.0",
"tsconfig-paths": "^3.14.1"
},
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "*",
+ "eslint-plugin-import": "*"
+ }
+ },
+ "node_modules/eslint-import-resolver-typescript/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
"dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- }
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/eslint-import-resolver-typescript/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dev": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/eslint-import-resolver-typescript/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
}
},
- "eslint-module-utils": {
+ "node_modules/eslint-module-utils": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz",
"integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==",
"dev": true,
- "requires": {
+ "dependencies": {
"debug": "^3.2.7"
},
- "dependencies": {
- "debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "requires": {
- "ms": "^2.1.1"
- }
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
}
}
},
- "eslint-plugin-import": {
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import": {
"version": "2.26.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz",
"integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==",
"dev": true,
- "requires": {
+ "dependencies": {
"array-includes": "^3.1.4",
"array.prototype.flat": "^1.2.5",
"debug": "^2.6.9",
@@ -13040,106 +5333,126 @@
"resolve": "^1.22.0",
"tsconfig-paths": "^3.14.1"
},
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
"dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "dev": true
- }
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "dev": true
+ },
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.6.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz",
+ "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.18.9",
+ "aria-query": "^4.2.2",
+ "array-includes": "^3.1.5",
+ "ast-types-flow": "^0.0.7",
+ "axe-core": "^4.4.3",
+ "axobject-query": "^2.2.0",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "has": "^1.0.3",
+ "jsx-ast-utils": "^3.3.2",
+ "language-tags": "^1.0.5",
+ "minimatch": "^3.1.2",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
}
},
- "eslint-plugin-jsx-a11y": {
- "version": "6.6.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz",
- "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==",
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true,
- "requires": {
- "@babel/runtime": "^7.18.9",
- "aria-query": "^4.2.2",
- "array-includes": "^3.1.5",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.4.3",
- "axobject-query": "^2.2.0",
- "damerau-levenshtein": "^1.0.8",
- "emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.2",
- "language-tags": "^1.0.5",
- "minimatch": "^3.1.2",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true
- }
+ "bin": {
+ "semver": "bin/semver.js"
}
},
- "eslint-plugin-react": {
+ "node_modules/eslint-plugin-react": {
"version": "7.31.10",
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz",
"integrity": "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==",
"dev": true,
- "requires": {
+ "dependencies": {
"array-includes": "^3.1.5",
"array.prototype.flatmap": "^1.3.0",
"doctrine": "^2.1.0",
@@ -13155,215 +5468,332 @@
"semver": "^6.3.0",
"string.prototype.matchall": "^4.0.7"
},
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "resolve": {
- "version": "2.0.0-next.4",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
- "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.9.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- }
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true
- }
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "eslint-plugin-react-hooks": {
+ "node_modules/eslint-plugin-react-hooks": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
"integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
"dev": true,
- "requires": {}
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.4",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
+ "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
+ "dev": true,
+ "dependencies": {
+ "is-core-module": "^2.9.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
},
- "eslint-scope": {
+ "node_modules/eslint-scope": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
"dev": true,
- "requires": {
+ "dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
- "eslint-utils": {
+ "node_modules/eslint-utils": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
"integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
"dev": true,
- "requires": {
+ "dependencies": {
"eslint-visitor-keys": "^2.0.0"
},
- "dependencies": {
- "eslint-visitor-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
- "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
- "dev": true
- }
+ "engines": {
+ "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=5"
+ }
+ },
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
}
},
- "eslint-visitor-keys": {
+ "node_modules/eslint-visitor-keys": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
"integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/eslint/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/eslint/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
},
- "espree": {
+ "node_modules/espree": {
"version": "9.4.0",
"resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz",
"integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==",
"dev": true,
- "requires": {
+ "dependencies": {
"acorn": "^8.8.0",
"acorn-jsx": "^5.3.2",
"eslint-visitor-keys": "^3.3.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "esprima": {
+ "node_modules/esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "esquery": {
+ "node_modules/esquery": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
"integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
"dev": true,
- "requires": {
+ "dependencies": {
"estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
}
},
- "esrecurse": {
+ "node_modules/esrecurse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
- "requires": {
+ "dependencies": {
"estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
}
},
- "estraverse": {
+ "node_modules/estraverse": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
},
- "estree-util-attach-comments": {
+ "node_modules/estree-util-attach-comments": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.0.tgz",
"integrity": "sha512-rJz6I4L0GaXYtHpoMScgDIwM0/Vwbu5shbMeER596rB2D1EWF6+Gj0e0UKzJPZrpoOc87+Q2kgVFHfjAymIqmw==",
- "requires": {
+ "dependencies": {
"@types/estree": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "estree-util-build-jsx": {
+ "node_modules/estree-util-build-jsx": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.0.tgz",
"integrity": "sha512-apsfRxF9uLrqosApvHVtYZjISPvTJ+lBiIydpC+9wE6cF6ssbhnjyQLqaIjgzGxvC2Hbmec1M7g91PoBayYoQQ==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"estree-util-is-identifier-name": "^2.0.0",
"estree-walker": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "estree-util-is-identifier-name": {
+ "node_modules/estree-util-is-identifier-name": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz",
- "integrity": "sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ=="
+ "integrity": "sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "estree-util-to-js": {
+ "node_modules/estree-util-to-js": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.1.0.tgz",
"integrity": "sha512-490lbfCcpLk+ofK6HCgqDfYs4KAfq6QVvDw3+Bm1YoKRgiOjKiKYGAVQE1uwh7zVxBgWhqp4FDtp5SqunpUk1A==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"astring": "^1.8.0",
"source-map": "^0.7.0"
},
- "dependencies": {
- "source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-to-js/node_modules/source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "engines": {
+ "node": ">= 8"
}
},
- "estree-util-visit": {
+ "node_modules/estree-util-visit": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.0.tgz",
"integrity": "sha512-wdsoqhWueuJKsh5hqLw3j8lwFqNStm92VcwtAOAny8g/KS/l5Y8RISjR4k5W6skCj3Nirag/WUCMS0Nfy3sgsg==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "estree-walker": {
+ "node_modules/estree-walker": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.1.tgz",
"integrity": "sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g=="
},
- "esutils": {
+ "node_modules/esutils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "etag": {
+ "node_modules/etag": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "events": {
+ "node_modules/events": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"dev": true,
- "peer": true
+ "peer": true,
+ "engines": {
+ "node": ">=0.8.x"
+ }
},
- "expand-template": {
+ "node_modules/expand-template": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
- "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
+ "engines": {
+ "node": ">=6"
+ }
},
- "express": {
+ "node_modules/express": {
"version": "4.18.2",
"resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
"integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
- "requires": {
+ "dependencies": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
"body-parser": "1.20.1",
@@ -13396,108 +5826,122 @@
"utils-merge": "1.0.1",
"vary": "~1.1.2"
},
+ "engines": {
+ "node": ">= 0.10.0"
+ }
+ },
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- }
+ "ms": "2.0.0"
}
},
- "extend": {
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "node_modules/extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
},
- "extend-shallow": {
+ "node_modules/extend-shallow": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
- "requires": {
+ "dependencies": {
"is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "fast-deep-equal": {
+ "node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true
},
- "fast-glob": {
+ "node_modules/fast-glob": {
"version": "3.2.12",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
"dev": true,
- "requires": {
+ "dependencies": {
"@nodelib/fs.stat": "^2.0.2",
"@nodelib/fs.walk": "^1.2.3",
"glob-parent": "^5.1.2",
"merge2": "^1.3.0",
"micromatch": "^4.0.4"
},
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
"dependencies": {
- "glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- }
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
}
},
- "fast-json-stable-stringify": {
+ "node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
"dev": true
},
- "fast-levenshtein": {
+ "node_modules/fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
"dev": true
},
- "fastq": {
+ "node_modules/fastq": {
"version": "1.13.0",
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
"integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
"dev": true,
- "requires": {
+ "dependencies": {
"reusify": "^1.0.4"
}
},
- "file-entry-cache": {
+ "node_modules/file-entry-cache": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"dev": true,
- "requires": {
+ "dependencies": {
"flat-cache": "^3.0.4"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "fill-range": {
+ "node_modules/fill-range": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
+ "dependencies": {
"to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "finalhandler": {
+ "node_modules/finalhandler": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
"integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
- "requires": {
+ "dependencies": {
"debug": "2.6.9",
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
@@ -13506,161 +5950,220 @@
"statuses": "2.0.1",
"unpipe": "~1.0.0"
},
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- }
+ "ms": "2.0.0"
}
},
- "find-up": {
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "node_modules/find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
- "requires": {
+ "dependencies": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "flat-cache": {
+ "node_modules/flat-cache": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
"integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
"dev": true,
- "requires": {
+ "dependencies": {
"flatted": "^3.1.0",
"rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
}
},
- "flatted": {
+ "node_modules/flatted": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
"integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
"dev": true
},
- "forwarded": {
+ "node_modules/focus-trap": {
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz",
+ "integrity": "sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==",
+ "dev": true,
+ "dependencies": {
+ "tabbable": "^6.2.0"
+ }
+ },
+ "node_modules/forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "framer-motion": {
+ "node_modules/framer-motion": {
"version": "7.6.7",
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-7.6.7.tgz",
"integrity": "sha512-vEGsjXygf4qSmgXXsCT1FC56DjiZau9tSQTCchwAP2mOHnYHUy5gbthc4RXFWJh4Z/gFtqE8bzEmjahwOrfT7w==",
- "requires": {
- "@emotion/is-prop-valid": "^0.8.2",
+ "dependencies": {
"@motionone/dom": "10.13.1",
"framesync": "6.1.2",
"hey-listen": "^1.0.8",
"popmotion": "11.0.5",
"style-value-types": "5.1.2",
"tslib": "2.4.0"
+ },
+ "optionalDependencies": {
+ "@emotion/is-prop-valid": "^0.8.2"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
}
},
- "framesync": {
+ "node_modules/framesync": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz",
"integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==",
- "requires": {
+ "dependencies": {
"tslib": "2.4.0"
}
},
- "fresh": {
+ "node_modules/fresh": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "fs-constants": {
+ "node_modules/fs-constants": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
},
- "fs.realpath": {
+ "node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
"dev": true
},
- "fsevents": {
+ "node_modules/fsevents": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
- "optional": true
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
},
- "function-bind": {
+ "node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
- "function.prototype.name": {
+ "node_modules/function.prototype.name": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
"integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.0",
"functions-have-names": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "functions-have-names": {
+ "node_modules/functions-have-names": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
"integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "dev": true
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "gensync": {
+ "node_modules/gensync": {
"version": "1.0.0-beta.2",
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
- "get-intrinsic": {
+ "node_modules/get-intrinsic": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
"integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
- "requires": {
+ "dependencies": {
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "get-symbol-description": {
+ "node_modules/get-symbol-description": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
"integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"get-intrinsic": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "github-from-package": {
+ "node_modules/github-from-package": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="
},
- "github-slugger": {
+ "node_modules/github-slugger": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
"integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="
},
- "glob": {
+ "node_modules/glob": {
"version": "7.1.7",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
@@ -13668,179 +6171,237 @@
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
- "dependencies": {
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- }
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "glob-parent": {
+ "node_modules/glob-parent": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dev": true,
- "requires": {
+ "dependencies": {
"is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "glob-to-regexp": {
+ "node_modules/glob-to-regexp": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
+ },
+ "node_modules/glob/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
- "peer": true
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/glob/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
},
- "globals": {
+ "node_modules/globals": {
"version": "13.17.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
"integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
"dev": true,
- "requires": {
+ "dependencies": {
"type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "globby": {
+ "node_modules/globby": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"dev": true,
- "requires": {
+ "dependencies": {
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
"fast-glob": "^3.2.9",
"ignore": "^5.2.0",
"merge2": "^1.4.1",
"slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "graceful-fs": {
+ "node_modules/graceful-fs": {
"version": "4.2.10",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
- "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
- "dev": true,
- "peer": true
+ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
},
- "grapheme-splitter": {
+ "node_modules/grapheme-splitter": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
"integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
"dev": true
},
- "gray-matter": {
+ "node_modules/gray-matter": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
"integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
- "requires": {
+ "dependencies": {
"js-yaml": "^3.13.1",
"kind-of": "^6.0.2",
"section-matter": "^1.0.0",
"strip-bom-string": "^1.0.0"
},
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/gray-matter/node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dependencies": {
- "argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "requires": {
- "sprintf-js": "~1.0.2"
- }
- },
- "js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- }
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/gray-matter/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "has": {
+ "node_modules/has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "requires": {
+ "dependencies": {
"function-bind": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4.0"
}
},
- "has-bigints": {
+ "node_modules/has-bigints": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
"integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
- "dev": true
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "has-flag": {
+ "node_modules/has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
+ }
},
- "has-property-descriptors": {
+ "node_modules/has-property-descriptors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
"integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"get-intrinsic": "^1.1.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "has-symbols": {
+ "node_modules/has-symbols": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "has-tostringtag": {
+ "node_modules/has-tostringtag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
"integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "hast-util-has-property": {
+ "node_modules/hast-util-has-property": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.0.tgz",
- "integrity": "sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w=="
+ "integrity": "sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "hast-util-heading-rank": {
+ "node_modules/hast-util-heading-rank": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-2.1.0.tgz",
"integrity": "sha512-w+Rw20Q/iWp2Bcnr6uTrYU6/ftZLbHKhvc8nM26VIWpDqDMlku2iXUVTeOlsdoih/UKQhY7PHQ+vZ0Aqq8bxtQ==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "hast-util-is-element": {
+ "node_modules/hast-util-is-element": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz",
"integrity": "sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0",
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "hast-util-to-estree": {
+ "node_modules/hast-util-to-estree": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.1.0.tgz",
"integrity": "sha512-Vwch1etMRmm89xGgz+voWXvVHba2iiMdGMKmaMfYt35rbVtFDq8JNwwAIvi8zHMkO6Gvqo9oTMwJTmzVRfXh4g==",
- "requires": {
+ "dependencies": {
"@types/estree": "^1.0.0",
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^2.0.0",
@@ -13856,548 +6417,802 @@
"style-to-object": "^0.3.0",
"unist-util-position": "^4.0.0",
"zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "hast-util-to-string": {
+ "node_modules/hast-util-to-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz",
"integrity": "sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "hast-util-whitespace": {
+ "node_modules/hast-util-whitespace": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz",
- "integrity": "sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg=="
+ "integrity": "sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "hey-listen": {
+ "node_modules/hey-listen": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
"integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
},
- "http-errors": {
+ "node_modules/http-errors": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
- "requires": {
+ "dependencies": {
"depd": "2.0.0",
"inherits": "2.0.4",
"setprototypeof": "1.2.0",
"statuses": "2.0.1",
"toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
}
},
- "iconv-lite": {
+ "node_modules/iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "requires": {
+ "dependencies": {
"safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "ieee754": {
+ "node_modules/ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
- "ignore": {
+ "node_modules/ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
},
- "image-size": {
+ "node_modules/image-size": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz",
"integrity": "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==",
- "requires": {
+ "dependencies": {
"queue": "6.0.2"
+ },
+ "bin": {
+ "image-size": "bin/image-size.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
}
},
- "import-fresh": {
+ "node_modules/import-fresh": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "requires": {
+ "dependencies": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "imurmurhash": {
+ "node_modules/imurmurhash": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.19"
+ }
},
- "inflight": {
+ "node_modules/inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
"dev": true,
- "requires": {
+ "dependencies": {
"once": "^1.3.0",
"wrappy": "1"
}
},
- "inherits": {
+ "node_modules/inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
- "ini": {
+ "node_modules/ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
- "inline-style-parser": {
+ "node_modules/inline-style-parser": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
"integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
},
- "internal-slot": {
+ "node_modules/internal-slot": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
"integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
"dev": true,
- "requires": {
+ "dependencies": {
"get-intrinsic": "^1.1.0",
"has": "^1.0.3",
"side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
}
},
- "ipaddr.js": {
+ "node_modules/ipaddr.js": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "engines": {
+ "node": ">= 0.10"
+ }
},
- "is-alphabetical": {
+ "node_modules/is-alphabetical": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
- "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ=="
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "is-alphanumerical": {
+ "node_modules/is-alphanumerical": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
- "requires": {
+ "dependencies": {
"is-alphabetical": "^2.0.0",
"is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "is-arrayish": {
+ "node_modules/is-arrayish": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
},
- "is-bigint": {
+ "node_modules/is-bigint": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
"integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-bigints": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-binary-path": {
+ "node_modules/is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "requires": {
+ "dependencies": {
"binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "is-boolean-object": {
+ "node_modules/is-boolean-object": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
"integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-buffer": {
+ "node_modules/is-buffer": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
- "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "engines": {
+ "node": ">=4"
+ }
},
- "is-callable": {
+ "node_modules/is-callable": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "is-core-module": {
+ "node_modules/is-core-module": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
"integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
- "requires": {
+ "dependencies": {
"has": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-date-object": {
+ "node_modules/is-date-object": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
"integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-decimal": {
+ "node_modules/is-decimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
- "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A=="
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "is-extendable": {
+ "node_modules/is-extendable": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "is-extglob": {
+ "node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "is-fullwidth-code-point": {
+ "node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "engines": {
+ "node": ">=8"
+ }
},
- "is-glob": {
+ "node_modules/is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "requires": {
+ "dependencies": {
"is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-hexadecimal": {
+ "node_modules/is-hexadecimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
- "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg=="
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "is-negative-zero": {
+ "node_modules/is-negative-zero": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
"integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "is-number": {
+ "node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "engines": {
+ "node": ">=0.12.0"
+ }
},
- "is-number-object": {
+ "node_modules/is-number-object": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
"integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-path-inside": {
+ "node_modules/is-path-inside": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "is-plain-obj": {
+ "node_modules/is-plain-obj": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "is-reference": {
+ "node_modules/is-reference": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.0.tgz",
"integrity": "sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q==",
- "requires": {
+ "dependencies": {
"@types/estree": "*"
}
},
- "is-regex": {
+ "node_modules/is-regex": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
"integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-shared-array-buffer": {
+ "node_modules/is-shared-array-buffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
"integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-string": {
+ "node_modules/is-string": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
"integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-symbol": {
+ "node_modules/is-symbol": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
"integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
"dev": true,
- "requires": {
+ "dependencies": {
"has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-weakref": {
+ "node_modules/is-weakref": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
"integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "isexe": {
+ "node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
"dev": true
},
- "jest-worker": {
+ "node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "peer": true,
"dependencies": {
- "supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "js-sdsl": {
+ "node_modules/js-sdsl": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
"integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
"dev": true
},
- "js-tokens": {
+ "node_modules/js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
- "js-yaml": {
+ "node_modules/js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
- "requires": {
+ "dependencies": {
"argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "jsesc": {
+ "node_modules/jsesc": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "json-parse-even-better-errors": {
+ "node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
},
- "json-schema-traverse": {
+ "node_modules/json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true
},
- "json-stable-stringify-without-jsonify": {
+ "node_modules/json-stable-stringify-without-jsonify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
"dev": true
},
- "json5": {
+ "node_modules/json5": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
"integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
"dev": true,
- "requires": {
+ "dependencies": {
"minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
}
},
- "jsx-ast-utils": {
+ "node_modules/jsx-ast-utils": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
"integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
"dev": true,
- "requires": {
+ "dependencies": {
"array-includes": "^3.1.5",
"object.assign": "^4.1.3"
+ },
+ "engines": {
+ "node": ">=4.0"
}
},
- "jwt-decode": {
+ "node_modules/jwt-decode": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz",
"integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A=="
},
- "kind-of": {
+ "node_modules/kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "kleur": {
+ "node_modules/kleur": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
- "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/klona": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
+ "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
},
- "language-subtag-registry": {
+ "node_modules/language-subtag-registry": {
"version": "0.3.22",
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
"integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==",
"dev": true
},
- "language-tags": {
+ "node_modules/language-tags": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
"integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"language-subtag-registry": "~0.3.2"
}
},
- "levn": {
+ "node_modules/levn": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"prelude-ls": "^1.2.1",
"type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "lines-and-columns": {
+ "node_modules/lines-and-columns": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
},
- "loader-runner": {
+ "node_modules/loader-runner": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
"dev": true,
- "peer": true
+ "peer": true,
+ "engines": {
+ "node": ">=6.11.5"
+ }
},
- "locate-path": {
+ "node_modules/locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
- "requires": {
+ "dependencies": {
"p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "lodash.clonedeep": {
+ "node_modules/lodash.clonedeep": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
"integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ=="
},
- "lodash.debounce": {
+ "node_modules/lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
},
- "lodash.merge": {
+ "node_modules/lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true
},
- "long": {
+ "node_modules/long": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/long/-/long-5.2.1.tgz",
"integrity": "sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A=="
},
- "longest-streak": {
+ "node_modules/longest-streak": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz",
- "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg=="
+ "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "loose-envify": {
+ "node_modules/loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "requires": {
+ "dependencies": {
"js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
}
},
- "lru-cache": {
+ "node_modules/lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "requires": {
+ "dependencies": {
"yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "markdown-extensions": {
+ "node_modules/markdown-extensions": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz",
- "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q=="
+ "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "markdown-table": {
+ "node_modules/markdown-table": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz",
- "integrity": "sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA=="
+ "integrity": "sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "mdast-util-definitions": {
+ "node_modules/mdast-util-definitions": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.1.tgz",
"integrity": "sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
"unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-find-and-replace": {
+ "node_modules/mdast-util-find-and-replace": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.1.tgz",
"integrity": "sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==",
- "requires": {
+ "dependencies": {
"escape-string-regexp": "^5.0.0",
"unist-util-is": "^5.0.0",
"unist-util-visit-parents": "^5.0.0"
},
- "dependencies": {
- "escape-string-regexp": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
- "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
- }
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "mdast-util-from-markdown": {
+ "node_modules/mdast-util-from-markdown": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz",
"integrity": "sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
"decode-named-character-reference": "^1.0.0",
@@ -14410,13 +7225,17 @@
"micromark-util-types": "^1.0.0",
"unist-util-stringify-position": "^3.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm": {
+ "node_modules/mdast-util-gfm": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.1.tgz",
"integrity": "sha512-42yHBbfWIFisaAfV1eixlabbsa6q7vHeSPY+cg+BBjX51M8xhgMacqH9g6TftB/9+YkcI0ooV4ncfrJslzm/RQ==",
- "requires": {
+ "dependencies": {
"mdast-util-from-markdown": "^1.0.0",
"mdast-util-gfm-autolink-literal": "^1.0.0",
"mdast-util-gfm-footnote": "^1.0.0",
@@ -14424,85 +7243,117 @@
"mdast-util-gfm-table": "^1.0.0",
"mdast-util-gfm-task-list-item": "^1.0.0",
"mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm-autolink-literal": {
+ "node_modules/mdast-util-gfm-autolink-literal": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz",
"integrity": "sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"ccount": "^2.0.0",
"mdast-util-find-and-replace": "^2.0.0",
"micromark-util-character": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm-footnote": {
+ "node_modules/mdast-util-gfm-footnote": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.1.tgz",
"integrity": "sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-to-markdown": "^1.3.0",
"micromark-util-normalize-identifier": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm-strikethrough": {
+ "node_modules/mdast-util-gfm-strikethrough": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.2.tgz",
"integrity": "sha512-T/4DVHXcujH6jx1yqpcAYYwd+z5lAYMw4Ls6yhTfbMMtCt0PHY4gEfhW9+lKsLBtyhUGKRIzcUA2FATVqnvPDA==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-to-markdown": "^1.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm-table": {
+ "node_modules/mdast-util-gfm-table": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.6.tgz",
"integrity": "sha512-uHR+fqFq3IvB3Rd4+kzXW8dmpxUhvgCQZep6KdjsLK4O6meK5dYZEayLtIxNus1XO3gfjfcIFe8a7L0HZRGgag==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"markdown-table": "^3.0.0",
"mdast-util-from-markdown": "^1.0.0",
"mdast-util-to-markdown": "^1.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-gfm-task-list-item": {
+ "node_modules/mdast-util-gfm-task-list-item": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.1.tgz",
"integrity": "sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-to-markdown": "^1.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-mdx": {
+ "node_modules/mdast-util-mdx": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz",
"integrity": "sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==",
- "requires": {
+ "dependencies": {
"mdast-util-mdx-expression": "^1.0.0",
"mdast-util-mdx-jsx": "^2.0.0",
"mdast-util-mdxjs-esm": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-mdx-expression": {
+ "node_modules/mdast-util-mdx-expression": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.1.tgz",
"integrity": "sha512-TTb6cKyTA1RD+1su1iStZ5PAv3rFfOUKcoU5EstUpv/IZo63uDX03R8+jXjMEhcobXnNOiG6/ccekvVl4eV1zQ==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.0.0",
"mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-mdx-jsx": {
+ "node_modules/mdast-util-mdx-jsx": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.0.tgz",
"integrity": "sha512-KzgzfWMhdteDkrY4mQtyvTU5bc/W4ppxhe9SzelO6QUUiwLAM+Et2Dnjjprik74a336kHdo0zKm7Tp+n6FFeRg==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
@@ -14513,25 +7364,33 @@
"unist-util-remove-position": "^4.0.0",
"unist-util-stringify-position": "^3.0.0",
"vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-mdxjs-esm": {
+ "node_modules/mdast-util-mdxjs-esm": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.0.tgz",
"integrity": "sha512-7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g==",
- "requires": {
+ "dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.0.0",
"mdast-util-to-markdown": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-to-hast": {
+ "node_modules/mdast-util-to-hast": {
"version": "12.2.4",
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.2.4.tgz",
"integrity": "sha512-a21xoxSef1l8VhHxS1Dnyioz6grrJkoaCUgGzMD/7dWHvboYX3VW53esRUfB5tgTyz4Yos1n25SPcj35dJqmAg==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
"mdast-util-definitions": "^5.0.0",
@@ -14541,13 +7400,17 @@
"unist-util-generated": "^2.0.0",
"unist-util-position": "^4.0.0",
"unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-to-markdown": {
+ "node_modules/mdast-util-to-markdown": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz",
"integrity": "sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
"longest-streak": "^3.0.0",
@@ -14555,51 +7418,78 @@
"micromark-util-decode-string": "^1.0.0",
"unist-util-visit": "^4.0.0",
"zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "mdast-util-to-string": {
+ "node_modules/mdast-util-to-string": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz",
- "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA=="
+ "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "mdn-data": {
+ "node_modules/mdn-data": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
- "media-typer": {
+ "node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "merge-descriptors": {
+ "node_modules/merge-descriptors": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
"integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
},
- "merge-stream": {
+ "node_modules/merge-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true,
"peer": true
},
- "merge2": {
+ "node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
},
- "methods": {
+ "node_modules/methods": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "micromark": {
+ "node_modules/micromark": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz",
"integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"@types/debug": "^4.0.0",
"debug": "^4.0.0",
"decode-named-character-reference": "^1.0.0",
@@ -14619,11 +7509,21 @@
"uvu": "^0.5.0"
}
},
- "micromark-core-commonmark": {
+ "node_modules/micromark-core-commonmark": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
"integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"decode-named-character-reference": "^1.0.0",
"micromark-factory-destination": "^1.0.0",
"micromark-factory-label": "^1.0.0",
@@ -14642,11 +7542,11 @@
"uvu": "^0.5.0"
}
},
- "micromark-extension-gfm": {
+ "node_modules/micromark-extension-gfm": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz",
"integrity": "sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==",
- "requires": {
+ "dependencies": {
"micromark-extension-gfm-autolink-literal": "^1.0.0",
"micromark-extension-gfm-footnote": "^1.0.0",
"micromark-extension-gfm-strikethrough": "^1.0.0",
@@ -14655,25 +7555,33 @@
"micromark-extension-gfm-task-list-item": "^1.0.0",
"micromark-util-combine-extensions": "^1.0.0",
"micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-autolink-literal": {
+ "node_modules/micromark-extension-gfm-autolink-literal": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz",
"integrity": "sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==",
- "requires": {
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-sanitize-uri": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-footnote": {
+ "node_modules/micromark-extension-gfm-footnote": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.4.tgz",
"integrity": "sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==",
- "requires": {
+ "dependencies": {
"micromark-core-commonmark": "^1.0.0",
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
@@ -14682,58 +7590,88 @@
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-strikethrough": {
+ "node_modules/micromark-extension-gfm-strikethrough": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz",
"integrity": "sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==",
- "requires": {
+ "dependencies": {
"micromark-util-chunked": "^1.0.0",
"micromark-util-classify-character": "^1.0.0",
"micromark-util-resolve-all": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-table": {
+ "node_modules/micromark-extension-gfm-table": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz",
"integrity": "sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==",
- "requires": {
+ "dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-tagfilter": {
+ "node_modules/micromark-extension-gfm-tagfilter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz",
"integrity": "sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==",
- "requires": {
+ "dependencies": {
"micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-gfm-task-list-item": {
+ "node_modules/micromark-extension-gfm-task-list-item": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz",
"integrity": "sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==",
- "requires": {
+ "dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-mdx-expression": {
+ "node_modules/micromark-extension-mdx-expression": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz",
"integrity": "sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-factory-mdx-expression": "^1.0.0",
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
@@ -14743,11 +7681,11 @@
"uvu": "^0.5.0"
}
},
- "micromark-extension-mdx-jsx": {
+ "node_modules/micromark-extension-mdx-jsx": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz",
"integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==",
- "requires": {
+ "dependencies": {
"@types/acorn": "^4.0.0",
"estree-util-is-identifier-name": "^2.0.0",
"micromark-factory-mdx-expression": "^1.0.0",
@@ -14757,21 +7695,29 @@
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0",
"vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-mdx-md": {
+ "node_modules/micromark-extension-mdx-md": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz",
"integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==",
- "requires": {
+ "dependencies": {
"micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-mdxjs": {
+ "node_modules/micromark-extension-mdxjs": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz",
"integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==",
- "requires": {
+ "dependencies": {
"acorn": "^8.0.0",
"acorn-jsx": "^5.0.0",
"micromark-extension-mdx-expression": "^1.0.0",
@@ -14780,13 +7726,17 @@
"micromark-extension-mdxjs-esm": "^1.0.0",
"micromark-util-combine-extensions": "^1.0.0",
"micromark-util-types": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-extension-mdxjs-esm": {
+ "node_modules/micromark-extension-mdxjs-esm": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz",
"integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==",
- "requires": {
+ "dependencies": {
"micromark-core-commonmark": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-events-to-acorn": "^1.0.0",
@@ -14795,34 +7745,68 @@
"unist-util-position-from-estree": "^1.1.0",
"uvu": "^0.5.0",
"vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "micromark-factory-destination": {
+ "node_modules/micromark-factory-destination": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
"integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-factory-label": {
+ "node_modules/micromark-factory-label": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
"integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
}
},
- "micromark-factory-mdx-expression": {
+ "node_modules/micromark-factory-mdx-expression": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.6.tgz",
"integrity": "sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-events-to-acorn": "^1.0.0",
@@ -14833,20 +7817,40 @@
"vfile-message": "^3.0.0"
}
},
- "micromark-factory-space": {
+ "node_modules/micromark-factory-space": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
"integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-factory-title": {
+ "node_modules/micromark-factory-title": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
"integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
@@ -14854,82 +7858,172 @@
"uvu": "^0.5.0"
}
},
- "micromark-factory-whitespace": {
+ "node_modules/micromark-factory-whitespace": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
"integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-util-character": {
+ "node_modules/micromark-util-character": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
"integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-util-chunked": {
+ "node_modules/micromark-util-chunked": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
"integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
- "micromark-util-classify-character": {
+ "node_modules/micromark-util-classify-character": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
"integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-util-combine-extensions": {
+ "node_modules/micromark-util-combine-extensions": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
"integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-chunked": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
- "micromark-util-decode-numeric-character-reference": {
+ "node_modules/micromark-util-decode-numeric-character-reference": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
"integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
- "micromark-util-decode-string": {
+ "node_modules/micromark-util-decode-string": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
"integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"decode-named-character-reference": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-decode-numeric-character-reference": "^1.0.0",
"micromark-util-symbol": "^1.0.0"
}
},
- "micromark-util-encode": {
+ "node_modules/micromark-util-encode": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
- "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA=="
+ "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
},
- "micromark-util-events-to-acorn": {
+ "node_modules/micromark-util-events-to-acorn": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.0.tgz",
"integrity": "sha512-WWp3bf7xT9MppNuw3yPjpnOxa8cj5ACivEzXJKu0WwnjBYfzaBvIAT9KfeyI0Qkll+bfQtfftSwdgTH6QhTOKw==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"@types/acorn": "^4.0.0",
"@types/estree": "^1.0.0",
"estree-util-visit": "^1.0.0",
@@ -14939,376 +8033,600 @@
"vfile-message": "^3.0.0"
}
},
- "micromark-util-html-tag-name": {
+ "node_modules/micromark-util-html-tag-name": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz",
- "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA=="
+ "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
},
- "micromark-util-normalize-identifier": {
+ "node_modules/micromark-util-normalize-identifier": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
"integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
- "micromark-util-resolve-all": {
+ "node_modules/micromark-util-resolve-all": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
"integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-types": "^1.0.0"
}
},
- "micromark-util-sanitize-uri": {
+ "node_modules/micromark-util-sanitize-uri": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz",
"integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-encode": "^1.0.0",
"micromark-util-symbol": "^1.0.0"
}
},
- "micromark-util-subtokenize": {
+ "node_modules/micromark-util-subtokenize": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
"integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
- "requires": {
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "dependencies": {
"micromark-util-chunked": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
}
},
- "micromark-util-symbol": {
+ "node_modules/micromark-util-symbol": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
- "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ=="
+ "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
},
- "micromark-util-types": {
+ "node_modules/micromark-util-types": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
- "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w=="
+ "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ]
},
- "micromatch": {
+ "node_modules/micromatch": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
"dev": true,
- "requires": {
+ "dependencies": {
"braces": "^3.0.2",
"picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
}
},
- "mime": {
+ "node_modules/mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "mime-db": {
+ "node_modules/mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "mime-types": {
+ "node_modules/mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "requires": {
+ "dependencies": {
"mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
}
},
- "mimic-response": {
+ "node_modules/mimic-response": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
- "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "minimatch": {
+ "node_modules/minimatch": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.2.tgz",
"integrity": "sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==",
- "requires": {
+ "dependencies": {
"brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "minimist": {
+ "node_modules/minimist": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
- "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
+ "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "mkdirp-classic": {
+ "node_modules/mkdirp-classic": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
},
- "mri": {
+ "node_modules/mri": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
- "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "ms": {
+ "node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
},
- "nanoid": {
+ "node_modules/nanoid": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
- "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
+ "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
},
- "napi-build-utils": {
+ "node_modules/napi-build-utils": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
"integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg=="
},
- "natural-compare": {
+ "node_modules/natural-compare": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
"dev": true
},
- "negotiator": {
+ "node_modules/negotiator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
- "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "neo-async": {
+ "node_modules/neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"dev": true,
"peer": true
},
- "next": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/next/-/next-13.0.0.tgz",
- "integrity": "sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA==",
- "requires": {
- "@next/env": "13.0.0",
- "@next/swc-android-arm-eabi": "13.0.0",
- "@next/swc-android-arm64": "13.0.0",
- "@next/swc-darwin-arm64": "13.0.0",
- "@next/swc-darwin-x64": "13.0.0",
- "@next/swc-freebsd-x64": "13.0.0",
- "@next/swc-linux-arm-gnueabihf": "13.0.0",
- "@next/swc-linux-arm64-gnu": "13.0.0",
- "@next/swc-linux-arm64-musl": "13.0.0",
- "@next/swc-linux-x64-gnu": "13.0.0",
- "@next/swc-linux-x64-musl": "13.0.0",
- "@next/swc-win32-arm64-msvc": "13.0.0",
- "@next/swc-win32-ia32-msvc": "13.0.0",
- "@next/swc-win32-x64-msvc": "13.0.0",
- "@swc/helpers": "0.4.11",
+ "node_modules/next": {
+ "version": "13.4.7",
+ "resolved": "https://registry.npmjs.org/next/-/next-13.4.7.tgz",
+ "integrity": "sha512-M8z3k9VmG51SRT6v5uDKdJXcAqLzP3C+vaKfLIAM0Mhx1um1G7MDnO63+m52qPdZfrTFzMZNzfsgvm3ghuVHIQ==",
+ "dependencies": {
+ "@next/env": "13.4.7",
+ "@swc/helpers": "0.5.1",
+ "busboy": "1.6.0",
"caniuse-lite": "^1.0.30001406",
"postcss": "8.4.14",
- "styled-jsx": "5.1.0",
- "use-sync-external-store": "1.2.0"
+ "styled-jsx": "5.1.1",
+ "watchpack": "2.4.0",
+ "zod": "3.21.4"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": ">=16.8.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "13.4.7",
+ "@next/swc-darwin-x64": "13.4.7",
+ "@next/swc-linux-arm64-gnu": "13.4.7",
+ "@next/swc-linux-arm64-musl": "13.4.7",
+ "@next/swc-linux-x64-gnu": "13.4.7",
+ "@next/swc-linux-x64-musl": "13.4.7",
+ "@next/swc-win32-arm64-msvc": "13.4.7",
+ "@next/swc-win32-ia32-msvc": "13.4.7",
+ "@next/swc-win32-x64-msvc": "13.4.7"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "fibers": ">= 3.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "fibers": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
}
},
- "next-image-export-optimizer": {
+ "node_modules/next-image-export-optimizer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/next-image-export-optimizer/-/next-image-export-optimizer-1.0.1.tgz",
"integrity": "sha512-2+FCo7GXMdvMYcVgMZZj+NAopf4go+g/2v0OvB+uaW0jv7ZjZCYqBPski/CxsUvf1KW4UQu+Nedc5EmqzzlJGQ==",
- "requires": {
+ "dependencies": {
"cli-progress": "^3.10.0",
"sharp": "^0.31.0",
"typescript": "^4.7.2"
+ },
+ "bin": {
+ "next-image-export-optimizer": "src/optimizeImages.js"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ },
+ "peerDependencies": {
+ "next": "^13.0.0",
+ "react": "^18.0.0-0"
}
},
- "next-mdx-remote": {
+ "node_modules/next-mdx-remote": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/next-mdx-remote/-/next-mdx-remote-4.1.0.tgz",
"integrity": "sha512-ZdL5AFJcEqvInGkYYRKda930D6AJt1GOLX/OXFE/vTwaqV/Mw+l3/njZ4kWqvYSAkl89Z6W7WZrTtN0fd0XwPg==",
- "requires": {
+ "dependencies": {
"@mdx-js/mdx": "^2.0.0",
"@mdx-js/react": "^2.0.0",
"vfile": "^5.3.0",
"vfile-matter": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=14",
+ "npm": ">=7"
+ },
+ "peerDependencies": {
+ "react": ">=16.x <=18.x",
+ "react-dom": ">=16.x <=18.x"
}
},
- "next-remote-watch": {
+ "node_modules/next-remote-watch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/next-remote-watch/-/next-remote-watch-2.0.0.tgz",
"integrity": "sha512-FyKDFMwbjKCPdu8ypZ8WTkDBzuxnH6rgfR89vgQwsND4ErrfXnDFZcZJAmSpwND6QA7G9f0DRzYMSdspY6t8Uw==",
- "requires": {
+ "dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"commander": "^5.0.0",
"express": "^4.17.1"
},
- "dependencies": {
- "commander": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
- "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="
- }
+ "bin": {
+ "next-remote-watch": "bin/next-remote-watch"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "peerDependencies": {
+ "next": ">=10"
+ }
+ },
+ "node_modules/next-remote-watch/node_modules/commander": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
+ "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
+ "engines": {
+ "node": ">= 6"
}
},
- "node-abi": {
+ "node_modules/node-abi": {
"version": "3.28.0",
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.28.0.tgz",
"integrity": "sha512-fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A==",
- "requires": {
+ "dependencies": {
"semver": "^7.3.5"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node-addon-api": {
+ "node_modules/node-addon-api": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz",
"integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="
},
- "node-releases": {
+ "node_modules/node-releases": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz",
"integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="
},
- "normalize-path": {
+ "node_modules/normalize-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "nth-check": {
+ "node_modules/nth-check": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
- "requires": {
+ "dependencies": {
"boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
}
},
- "object-assign": {
+ "node_modules/object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "object-inspect": {
+ "node_modules/object-inspect": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
- "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
+ "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "object-keys": {
+ "node_modules/object-keys": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
},
- "object.assign": {
+ "node_modules/object.assign": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
"integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"has-symbols": "^1.0.3",
"object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "object.entries": {
+ "node_modules/object.entries": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
"integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
}
},
- "object.fromentries": {
+ "node_modules/object.fromentries": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
"integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "object.hasown": {
+ "node_modules/object.hasown": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz",
"integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==",
"dev": true,
- "requires": {
+ "dependencies": {
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "object.values": {
+ "node_modules/object.values": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
"integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "on-finished": {
+ "node_modules/on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "requires": {
+ "dependencies": {
"ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
}
},
- "once": {
+ "node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "requires": {
+ "dependencies": {
"wrappy": "1"
}
},
- "optionator": {
+ "node_modules/optionator": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
"integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
"dev": true,
- "requires": {
+ "dependencies": {
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
"levn": "^0.4.1",
"prelude-ls": "^1.2.1",
"type-check": "^0.4.0",
"word-wrap": "^1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "p-limit": {
+ "node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "p-locate": {
+ "node_modules/p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
- "requires": {
+ "dependencies": {
"p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "parent-module": {
+ "node_modules/parent-module": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "requires": {
+ "dependencies": {
"callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "parse-entities": {
+ "node_modules/parse-entities": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.0.tgz",
"integrity": "sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"character-entities": "^2.0.0",
"character-entities-legacy": "^3.0.0",
@@ -15317,180 +8635,249 @@
"is-alphanumerical": "^2.0.0",
"is-decimal": "^2.0.0",
"is-hexadecimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "parse-json": {
+ "node_modules/parse-json": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "requires": {
+ "dependencies": {
"@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
"json-parse-even-better-errors": "^2.3.0",
"lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "parseurl": {
+ "node_modules/parseurl": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "path-exists": {
+ "node_modules/path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "path-is-absolute": {
+ "node_modules/path-is-absolute": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "path-key": {
+ "node_modules/path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "path-parse": {
+ "node_modules/path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
- "path-to-regexp": {
+ "node_modules/path-to-regexp": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
"integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
},
- "path-type": {
+ "node_modules/path-type": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/perfect-freehand": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/perfect-freehand/-/perfect-freehand-1.2.2.tgz",
+ "integrity": "sha512-eh31l019WICQ03pkF3FSzHxB8n07ItqIQ++G5UV8JX0zVOXzgTGCqnRR0jJ2h9U8/2uW4W4mtGJELt9kEV0CFQ==",
+ "dev": true
},
- "periscopic": {
+ "node_modules/periscopic": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.0.4.tgz",
"integrity": "sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg==",
- "requires": {
+ "dependencies": {
"estree-walker": "^3.0.0",
"is-reference": "^3.0.0"
}
},
- "picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
- },
- "picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
+ "node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/popmotion": {
+ "version": "11.0.5",
+ "resolved": "https://registry.npmjs.org/popmotion/-/popmotion-11.0.5.tgz",
+ "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==",
+ "dependencies": {
+ "framesync": "6.1.2",
+ "hey-listen": "^1.0.8",
+ "style-value-types": "5.1.2",
+ "tslib": "2.4.0"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.4.14",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
+ "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.4",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-path-replace": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-path-replace/-/postcss-path-replace-1.0.4.tgz",
+ "integrity": "sha512-6ZvsOX9Ls6Wk1nUVNojhwthmuogwG+r1C24hi80KZEzJb3MijofjmKUrfdkOG/Lk7YUE31wxuQuvFAkHON16gg==",
+ "dev": true,
+ "dependencies": {
+ "postcss": "^6.0.21"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/postcss-path-replace/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-path-replace/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-path-replace/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/postcss-path-replace/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
},
- "popmotion": {
- "version": "11.0.5",
- "resolved": "https://registry.npmjs.org/popmotion/-/popmotion-11.0.5.tgz",
- "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==",
- "requires": {
- "framesync": "6.1.2",
- "hey-listen": "^1.0.8",
- "style-value-types": "5.1.2",
- "tslib": "2.4.0"
+ "node_modules/postcss-path-replace/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.0"
}
},
- "postcss": {
- "version": "8.4.14",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
- "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
- "requires": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "node_modules/postcss-path-replace/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
}
},
- "postcss-path-replace": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/postcss-path-replace/-/postcss-path-replace-1.0.4.tgz",
- "integrity": "sha512-6ZvsOX9Ls6Wk1nUVNojhwthmuogwG+r1C24hi80KZEzJb3MijofjmKUrfdkOG/Lk7YUE31wxuQuvFAkHON16gg==",
+ "node_modules/postcss-path-replace/node_modules/postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
"dev": true,
- "requires": {
- "postcss": "^6.0.21"
+ "dependencies": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
},
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/postcss-path-replace/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
"dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true
- },
- "postcss": {
- "version": "6.0.23",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
- "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
- "dev": true,
- "requires": {
- "chalk": "^2.4.1",
- "source-map": "^0.6.1",
- "supports-color": "^5.4.0"
- }
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "prebuild-install": {
+ "node_modules/prebuild-install": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz",
"integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==",
- "requires": {
+ "dependencies": {
"detect-libc": "^2.0.0",
"expand-template": "^2.0.3",
"github-from-package": "0.0.0",
@@ -15503,253 +8890,356 @@
"simple-get": "^4.0.0",
"tar-fs": "^2.0.0",
"tunnel-agent": "^0.6.0"
+ },
+ "bin": {
+ "prebuild-install": "bin.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "prelude-ls": {
+ "node_modules/prelude-ls": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
},
- "prism-react-renderer": {
+ "node_modules/prism-react-renderer": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz",
"integrity": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==",
- "requires": {}
+ "peerDependencies": {
+ "react": ">=0.14.9"
+ }
},
- "prismjs": {
+ "node_modules/prismjs": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
- "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q=="
+ "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
+ "engines": {
+ "node": ">=6"
+ }
},
- "prop-types": {
+ "node_modules/prop-types": {
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"dev": true,
- "requires": {
+ "dependencies": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.13.1"
}
},
- "property-information": {
+ "node_modules/property-information": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/property-information/-/property-information-6.1.1.tgz",
- "integrity": "sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w=="
+ "integrity": "sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "proxy-addr": {
+ "node_modules/proxy-addr": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "requires": {
+ "dependencies": {
"forwarded": "0.2.0",
"ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/proxy-compare": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/proxy-compare/-/proxy-compare-3.0.0.tgz",
+ "integrity": "sha512-y44MCkgtZUCT9tZGuE278fB7PWVf7fRYy0vbRXAts2o5F0EfC4fIQrvQQGBJo1WJbFcVLXzApOscyJuZqHQc1w==",
+ "dev": true
+ },
+ "node_modules/proxy-memoize": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/proxy-memoize/-/proxy-memoize-3.0.1.tgz",
+ "integrity": "sha512-VDdG/VYtOgdGkWJx7y0o7p+zArSf2383Isci8C+BP3YXgMYDoPd3cCBjw0JdWb6YBb9sFiOPbAADDVTPJnh+9g==",
+ "dev": true,
+ "dependencies": {
+ "proxy-compare": "^3.0.0"
}
},
- "pump": {
+ "node_modules/pump": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
- "requires": {
+ "dependencies": {
"end-of-stream": "^1.1.0",
"once": "^1.3.1"
}
},
- "punycode": {
+ "node_modules/punycode": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
},
- "qs": {
+ "node_modules/qs": {
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
- "requires": {
+ "dependencies": {
"side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "queue": {
+ "node_modules/queue": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
"integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
- "requires": {
+ "dependencies": {
"inherits": "~2.0.3"
}
},
- "queue-microtask": {
+ "node_modules/queue-microtask": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "dev": true
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
- "randombytes": {
+ "node_modules/randombytes": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"safe-buffer": "^5.1.0"
}
},
- "range-parser": {
+ "node_modules/range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
},
- "raw-body": {
+ "node_modules/raw-body": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
"integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
- "requires": {
+ "dependencies": {
"bytes": "3.1.2",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
}
},
- "rc": {
+ "node_modules/rc": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
- "requires": {
+ "dependencies": {
"deep-extend": "^0.6.0",
"ini": "~1.3.0",
"minimist": "^1.2.0",
"strip-json-comments": "~2.0.1"
},
- "dependencies": {
- "strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
- }
+ "bin": {
+ "rc": "cli.js"
+ }
+ },
+ "node_modules/rc/node_modules/strip-json-comments": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "react": {
+ "node_modules/react": {
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
"integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
- "requires": {
+ "dependencies": {
"loose-envify": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "react-dom": {
+ "node_modules/react-dom": {
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
"integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
- "requires": {
+ "dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.0"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0"
}
},
- "react-is": {
+ "node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
"dev": true
},
- "readable-stream": {
+ "node_modules/readable-stream": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "requires": {
+ "dependencies": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
}
},
- "readdirp": {
+ "node_modules/readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "requires": {
+ "dependencies": {
"picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
}
},
- "regenerate": {
+ "node_modules/regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
},
- "regenerate-unicode-properties": {
+ "node_modules/regenerate-unicode-properties": {
"version": "10.1.0",
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
"integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
- "requires": {
+ "dependencies": {
"regenerate": "^1.4.2"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "regenerator-runtime": {
+ "node_modules/regenerator-runtime": {
"version": "0.13.10",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz",
"integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
},
- "regenerator-transform": {
+ "node_modules/regenerator-transform": {
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz",
"integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==",
- "requires": {
+ "dependencies": {
"@babel/runtime": "^7.8.4"
}
},
- "regexp.prototype.flags": {
+ "node_modules/regexp.prototype.flags": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
"integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"functions-have-names": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "regexpp": {
+ "node_modules/regexpp": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
"integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ }
},
- "regexpu-core": {
+ "node_modules/regexpu-core": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz",
"integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==",
- "requires": {
+ "dependencies": {
"regenerate": "^1.4.2",
"regenerate-unicode-properties": "^10.1.0",
"regjsgen": "^0.7.1",
"regjsparser": "^0.9.1",
"unicode-match-property-ecmascript": "^2.0.0",
"unicode-match-property-value-ecmascript": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "regjsgen": {
+ "node_modules/regjsgen": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz",
"integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA=="
},
- "regjsparser": {
+ "node_modules/regjsparser": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz",
"integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==",
- "requires": {
+ "dependencies": {
"jsesc": "~0.5.0"
},
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="
- }
+ "bin": {
+ "regjsparser": "bin/parser"
+ }
+ },
+ "node_modules/regjsparser/node_modules/jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==",
+ "bin": {
+ "jsesc": "bin/jsesc"
}
},
- "rehype-autolink-headings": {
+ "node_modules/rehype-autolink-headings": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/rehype-autolink-headings/-/rehype-autolink-headings-6.1.1.tgz",
"integrity": "sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0",
"extend": "^3.0.0",
"hast-util-has-property": "^2.0.0",
@@ -15757,13 +9247,17 @@
"hast-util-is-element": "^2.0.0",
"unified": "^10.0.0",
"unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "rehype-slug": {
+ "node_modules/rehype-slug": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-5.1.0.tgz",
"integrity": "sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0",
"github-slugger": "^2.0.0",
"hast-util-has-property": "^2.0.0",
@@ -15771,159 +9265,248 @@
"hast-util-to-string": "^2.0.0",
"unified": "^10.0.0",
"unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "remark-gfm": {
+ "node_modules/remark-gfm": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz",
"integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-gfm": "^2.0.0",
"micromark-extension-gfm": "^2.0.0",
"unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "remark-mdx": {
+ "node_modules/remark-mdx": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.1.5.tgz",
"integrity": "sha512-A8vw5s+BgOa968Irt8BO7DfWJTE0Fe7Ge3hX8zzDB1DnwMZTNdK6qF2IcFao+/7nzk1vSysKcFp+3ku4vhMpaQ==",
- "requires": {
+ "dependencies": {
"mdast-util-mdx": "^2.0.0",
"micromark-extension-mdxjs": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "remark-parse": {
+ "node_modules/remark-parse": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
"integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
- "requires": {
+ "dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.0.0",
"unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "remark-rehype": {
+ "node_modules/remark-rehype": {
"version": "10.1.0",
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz",
"integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==",
- "requires": {
+ "dependencies": {
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
"mdast-util-to-hast": "^12.1.0",
"unified": "^10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "resolve": {
+ "node_modules/resolve": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
- "requires": {
+ "dependencies": {
"is-core-module": "^2.9.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "resolve-from": {
+ "node_modules/resolve-from": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "reusify": {
+ "node_modules/reusify": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
},
- "rimraf": {
+ "node_modules/rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"dev": true,
- "requires": {
+ "dependencies": {
"glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "run-parallel": {
+ "node_modules/run-parallel": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"dev": true,
- "requires": {
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
"queue-microtask": "^1.2.2"
}
},
- "sade": {
+ "node_modules/sade": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
"integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
- "requires": {
+ "dependencies": {
"mri": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "safe-buffer": {
+ "node_modules/safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
- "safe-regex-test": {
+ "node_modules/safe-regex-test": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
"integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"get-intrinsic": "^1.1.3",
"is-regex": "^1.1.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "safer-buffer": {
+ "node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
- "scheduler": {
+ "node_modules/scheduler": {
"version": "0.23.0",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
"integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
- "requires": {
+ "dependencies": {
"loose-envify": "^1.1.0"
}
},
- "schema-utils": {
+ "node_modules/schema-utils": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
- "section-matter": {
+ "node_modules/section-matter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
"integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "requires": {
+ "dependencies": {
"extend-shallow": "^2.0.1",
"kind-of": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "semver": {
+ "node_modules/semver": {
"version": "7.3.8",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
- "requires": {
+ "dependencies": {
"lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "send": {
+ "node_modules/send": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
- "requires": {
+ "dependencies": {
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
@@ -15938,60 +9521,63 @@
"range-parser": "~1.2.1",
"statuses": "2.0.1"
},
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- },
- "dependencies": {
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- }
- }
- },
- "ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
- }
+ "ms": "2.0.0"
}
},
- "serialize-javascript": {
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/serialize-javascript": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
"integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"randombytes": "^2.1.0"
}
},
- "serve-static": {
+ "node_modules/serve-static": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
"integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
- "requires": {
+ "dependencies": {
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
"parseurl": "~1.3.3",
"send": "0.18.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "setprototypeof": {
+ "node_modules/setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
},
- "sharp": {
+ "node_modules/sharp": {
"version": "0.31.2",
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.2.tgz",
"integrity": "sha512-DUdNVEXgS5A97cTagSLIIp8dUZ/lZtk78iNVZgHdHbx1qnQR7JAHY0BnXnwwH39Iw+VKhO08CTYhIg0p98vQ5Q==",
- "requires": {
+ "hasInstallScript": true,
+ "dependencies": {
"color": "^4.2.3",
"detect-libc": "^2.0.1",
"node-addon-api": "^5.0.0",
@@ -16000,141 +9586,208 @@
"simple-get": "^4.0.1",
"tar-fs": "^2.1.1",
"tunnel-agent": "^0.6.0"
+ },
+ "engines": {
+ "node": ">=14.15.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
}
},
- "shebang-command": {
+ "node_modules/shebang-command": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dev": true,
- "requires": {
+ "dependencies": {
"shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "shebang-regex": {
+ "node_modules/shebang-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "side-channel": {
+ "node_modules/side-channel": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.0",
"get-intrinsic": "^1.0.2",
"object-inspect": "^1.9.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "simple-concat": {
+ "node_modules/simple-concat": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
- "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="
+ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
- "simple-get": {
+ "node_modules/simple-get": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
- "requires": {
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
"decompress-response": "^6.0.0",
"once": "^1.3.1",
"simple-concat": "^1.0.0"
}
},
- "simple-swizzle": {
+ "node_modules/simple-swizzle": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
- "requires": {
- "is-arrayish": "^0.3.1"
- },
"dependencies": {
- "is-arrayish": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
- }
+ "is-arrayish": "^0.3.1"
}
},
- "slash": {
+ "node_modules/simple-swizzle/node_modules/is-arrayish": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ },
+ "node_modules/slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
},
- "source-map": {
+ "node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "source-map-js": {
+ "node_modules/source-map-js": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
+ "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "source-map-support": {
+ "node_modules/source-map-support": {
"version": "0.5.21",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
}
},
- "space-separated-tokens": {
+ "node_modules/space-separated-tokens": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz",
- "integrity": "sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw=="
+ "integrity": "sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "sprintf-js": {
+ "node_modules/sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
},
- "stable": {
+ "node_modules/stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
- "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility"
},
- "statuses": {
+ "node_modules/statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/streamsearch": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
+ "engines": {
+ "node": ">=10.0.0"
+ }
},
- "string_decoder": {
+ "node_modules/string_decoder": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "requires": {
+ "dependencies": {
"safe-buffer": "~5.2.0"
}
},
- "string-width": {
+ "node_modules/string-width": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "requires": {
+ "dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
- "dependencies": {
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- }
+ "engines": {
+ "node": ">=8"
}
},
- "string.prototype.matchall": {
+ "node_modules/string-width/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "node_modules/string.prototype.matchall": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz",
"integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.19.1",
@@ -16143,112 +9796,163 @@
"internal-slot": "^1.0.3",
"regexp.prototype.flags": "^1.4.1",
"side-channel": "^1.0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "string.prototype.trimend": {
+ "node_modules/string.prototype.trimend": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz",
"integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "string.prototype.trimstart": {
+ "node_modules/string.prototype.trimstart": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz",
"integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "stringify-entities": {
+ "node_modules/stringify-entities": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz",
"integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==",
- "requires": {
+ "dependencies": {
"character-entities-html4": "^2.0.0",
"character-entities-legacy": "^3.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "strip-ansi": {
+ "node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "requires": {
+ "dependencies": {
"ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "strip-bom": {
+ "node_modules/strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
},
- "strip-bom-string": {
+ "node_modules/strip-bom-string": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g=="
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "strip-json-comments": {
+ "node_modules/strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "style-to-object": {
+ "node_modules/style-to-object": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
"integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
- "requires": {
+ "dependencies": {
"inline-style-parser": "0.1.1"
}
},
- "style-value-types": {
+ "node_modules/style-value-types": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/style-value-types/-/style-value-types-5.1.2.tgz",
"integrity": "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==",
- "requires": {
+ "dependencies": {
"hey-listen": "^1.0.8",
"tslib": "2.4.0"
}
},
- "styled-jsx": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.0.tgz",
- "integrity": "sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==",
- "requires": {
+ "node_modules/styled-jsx": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
+ "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
+ "dependencies": {
"client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "babel-plugin-macros": {
+ "optional": true
+ }
}
},
- "supports-color": {
+ "node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "requires": {
+ "dependencies": {
"has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "supports-preserve-symlinks-flag": {
+ "node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
- "svg-parser": {
+ "node_modules/svg-parser": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
"integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
},
- "svgo": {
+ "node_modules/svgo": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
- "requires": {
+ "dependencies": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
"css-select": "^4.1.3",
@@ -16256,220 +9960,321 @@
"csso": "^4.2.0",
"picocolors": "^1.0.0",
"stable": "^0.1.8"
+ },
+ "bin": {
+ "svgo": "bin/svgo"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "tapable": {
+ "node_modules/tabbable": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz",
+ "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==",
+ "dev": true
+ },
+ "node_modules/tapable": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
"dev": true,
- "peer": true
+ "peer": true,
+ "engines": {
+ "node": ">=6"
+ }
},
- "tar-fs": {
+ "node_modules/tar-fs": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
"integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
- "requires": {
+ "dependencies": {
"chownr": "^1.1.1",
"mkdirp-classic": "^0.5.2",
"pump": "^3.0.0",
"tar-stream": "^2.1.4"
}
},
- "tar-stream": {
+ "node_modules/tar-stream": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
- "requires": {
+ "dependencies": {
"bl": "^4.0.3",
"end-of-stream": "^1.4.1",
"fs-constants": "^1.0.0",
"inherits": "^2.0.3",
"readable-stream": "^3.1.1"
+ },
+ "engines": {
+ "node": ">=6"
}
},
- "terser": {
+ "node_modules/terser": {
"version": "5.16.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz",
"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"@jridgewell/source-map": "^0.3.2",
"acorn": "^8.5.0",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
- "dependencies": {
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true,
- "peer": true
- }
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "terser-webpack-plugin": {
+ "node_modules/terser-webpack-plugin": {
"version": "5.3.6",
"resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz",
"integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"@jridgewell/trace-mapping": "^0.3.14",
"jest-worker": "^27.4.5",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.0",
"terser": "^5.14.1"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@swc/core": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "uglify-js": {
+ "optional": true
+ }
}
},
- "text-table": {
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true,
+ "peer": true
+ },
+ "node_modules/text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
"dev": true
},
- "to-fast-properties": {
+ "node_modules/to-fast-properties": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="
+ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "to-regex-range": {
+ "node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
+ "dependencies": {
"is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
}
},
- "toidentifier": {
+ "node_modules/toidentifier": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "engines": {
+ "node": ">=0.6"
+ }
},
- "trim-lines": {
+ "node_modules/trim-lines": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
- "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg=="
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "trough": {
+ "node_modules/trough": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
- "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g=="
+ "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
},
- "tsconfig-paths": {
+ "node_modules/tsconfig-paths": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
"integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
"dev": true,
- "requires": {
+ "dependencies": {
"@types/json5": "^0.0.29",
"json5": "^1.0.1",
"minimist": "^1.2.6",
"strip-bom": "^3.0.0"
}
},
- "tslib": {
+ "node_modules/tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
},
- "tsutils": {
+ "node_modules/tsutils": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
"dev": true,
- "requires": {
+ "dependencies": {
"tslib": "^1.8.1"
},
- "dependencies": {
- "tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
- "dev": true
- }
+ "engines": {
+ "node": ">= 6"
+ },
+ "peerDependencies": {
+ "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
}
},
- "tunnel-agent": {
+ "node_modules/tsutils/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ },
+ "node_modules/tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
- "requires": {
+ "dependencies": {
"safe-buffer": "^5.0.1"
+ },
+ "engines": {
+ "node": "*"
}
},
- "type-check": {
+ "node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"dev": true,
- "requires": {
+ "dependencies": {
"prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "type-fest": {
+ "node_modules/type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "type-is": {
+ "node_modules/type-is": {
"version": "1.6.18",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
- "requires": {
+ "dependencies": {
"media-typer": "0.3.0",
"mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
}
},
- "typescript": {
+ "node_modules/typescript": {
"version": "4.8.4",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz",
- "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="
+ "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=4.2.0"
+ }
},
- "unbox-primitive": {
+ "node_modules/unbox-primitive": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
"integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
"dev": true,
- "requires": {
+ "dependencies": {
"call-bind": "^1.0.2",
"has-bigints": "^1.0.2",
"has-symbols": "^1.0.3",
"which-boxed-primitive": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "unicode-canonical-property-names-ecmascript": {
+ "node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
- "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="
+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "unicode-match-property-ecmascript": {
+ "node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
"integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
- "requires": {
+ "dependencies": {
"unicode-canonical-property-names-ecmascript": "^2.0.0",
"unicode-property-aliases-ecmascript": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "unicode-match-property-value-ecmascript": {
+ "node_modules/unicode-match-property-value-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
- "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="
+ "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "unicode-property-aliases-ecmascript": {
+ "node_modules/unicode-property-aliases-ecmascript": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
- "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="
+ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
+ "engines": {
+ "node": ">=4"
+ }
},
- "unified": {
+ "node_modules/unified": {
"version": "10.1.2",
"resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
"integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"bail": "^2.0.0",
"extend": "^3.0.0",
@@ -16477,190 +10282,278 @@
"is-plain-obj": "^4.0.0",
"trough": "^2.0.0",
"vfile": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-builder": {
+ "node_modules/unist-builder": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.0.tgz",
"integrity": "sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-generated": {
+ "node_modules/unist-util-generated": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.0.tgz",
- "integrity": "sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw=="
+ "integrity": "sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "unist-util-is": {
+ "node_modules/unist-util-is": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz",
- "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ=="
+ "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
- "unist-util-position": {
+ "node_modules/unist-util-position": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.3.tgz",
"integrity": "sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-position-from-estree": {
+ "node_modules/unist-util-position-from-estree": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz",
"integrity": "sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-remove-position": {
+ "node_modules/unist-util-remove-position": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz",
"integrity": "sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"unist-util-visit": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-stringify-position": {
+ "node_modules/unist-util-stringify-position": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz",
"integrity": "sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-visit": {
+ "node_modules/unist-util-visit": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz",
"integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"unist-util-is": "^5.0.0",
"unist-util-visit-parents": "^5.1.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unist-util-visit-parents": {
+ "node_modules/unist-util-visit-parents": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz",
"integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"unist-util-is": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "unpipe": {
+ "node_modules/unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "update-browserslist-db": {
+ "node_modules/update-browserslist-db": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
"integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
- "requires": {
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ }
+ ],
+ "dependencies": {
"escalade": "^3.1.1",
"picocolors": "^1.0.0"
+ },
+ "bin": {
+ "browserslist-lint": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
}
},
- "uri-js": {
+ "node_modules/uqr": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz",
+ "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==",
+ "dev": true
+ },
+ "node_modules/uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dev": true,
- "requires": {
+ "dependencies": {
"punycode": "^2.1.0"
}
},
- "use-sync-external-store": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
- "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
- "requires": {}
- },
- "util-deprecate": {
+ "node_modules/util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
- "utils-merge": {
+ "node_modules/utils-merge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
},
- "uvu": {
+ "node_modules/uvu": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz",
"integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==",
- "requires": {
+ "dependencies": {
"dequal": "^2.0.0",
"diff": "^5.0.0",
"kleur": "^4.0.3",
"sade": "^1.7.3"
+ },
+ "bin": {
+ "uvu": "bin.js"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "vary": {
+ "node_modules/vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "engines": {
+ "node": ">= 0.8"
+ }
},
- "vfile": {
+ "node_modules/vfile": {
"version": "5.3.5",
"resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.5.tgz",
"integrity": "sha512-U1ho2ga33eZ8y8pkbQLH54uKqGhFJ6GYIHnnG5AhRpAh3OWjkrRHKa/KogbmQn8We+c0KVV3rTOgR9V/WowbXQ==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"is-buffer": "^2.0.0",
"unist-util-stringify-position": "^3.0.0",
"vfile-message": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "vfile-location": {
+ "node_modules/vfile-location": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.0.1.tgz",
"integrity": "sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"vfile": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "vfile-matter": {
+ "node_modules/vfile-matter": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/vfile-matter/-/vfile-matter-3.0.1.tgz",
"integrity": "sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==",
- "requires": {
+ "dependencies": {
"@types/js-yaml": "^4.0.0",
"is-buffer": "^2.0.0",
"js-yaml": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "vfile-message": {
+ "node_modules/vfile-message": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.2.tgz",
"integrity": "sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==",
- "requires": {
+ "dependencies": {
"@types/unist": "^2.0.0",
"unist-util-stringify-position": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "watchpack": {
+ "node_modules/watchpack": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
"integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "peer": true,
- "requires": {
+ "dependencies": {
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.1.2"
+ },
+ "engines": {
+ "node": ">=10.13.0"
}
},
- "webpack": {
+ "node_modules/webpack": {
"version": "5.75.0",
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz",
"integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==",
"dev": true,
"peer": true,
- "requires": {
+ "dependencies": {
"@types/eslint-scope": "^3.7.3",
"@types/estree": "^0.0.51",
"@webassemblyjs/ast": "1.11.1",
@@ -16686,105 +10579,177 @@
"watchpack": "^2.4.0",
"webpack-sources": "^3.2.3"
},
- "dependencies": {
- "@types/estree": {
- "version": "0.0.51",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
- "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
- "dev": true,
- "peer": true
- },
- "eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "peer": true,
- "requires": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- }
- },
- "estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true,
- "peer": true
+ "bin": {
+ "webpack": "bin/webpack.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
}
}
},
- "webpack-sources": {
+ "node_modules/webpack-sources": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
"integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
"dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/webpack/node_modules/@types/estree": {
+ "version": "0.0.51",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
+ "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
+ "dev": true,
"peer": true
},
- "which": {
+ "node_modules/webpack/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/webpack/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
- "requires": {
+ "dependencies": {
"isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "which-boxed-primitive": {
+ "node_modules/which-boxed-primitive": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
"integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
"dev": true,
- "requires": {
+ "dependencies": {
"is-bigint": "^1.0.1",
"is-boolean-object": "^1.1.0",
"is-number-object": "^1.0.4",
"is-string": "^1.0.5",
"is-symbol": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "word-wrap": {
+ "node_modules/word-wrap": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "wrappy": {
+ "node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
- "yallist": {
+ "node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
- "yaml": {
+ "node_modules/yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
- "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "engines": {
+ "node": ">= 6"
+ }
},
- "yocto-queue": {
+ "node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
},
- "yorkie-js-sdk": {
+ "node_modules/yorkie-js-sdk": {
"version": "0.4.28",
"resolved": "https://registry.npmjs.org/yorkie-js-sdk/-/yorkie-js-sdk-0.4.28.tgz",
"integrity": "sha512-laDG5LVXV1mW085F4BdagUgIgU4hd+QBD0kon8kAeVA086ZGwXRMlFSYhEZtY1bB+RTSDSe4i78vVGG2Kv6bcg==",
- "requires": {
+ "dependencies": {
"@bufbuild/protobuf": "^1.6.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"long": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=7.1.0"
+ }
+ },
+ "node_modules/yorkie-ui-test": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.4.tgz",
+ "integrity": "sha512-7oqWMqfWyEeYQ0JqXJXgDJgiJXUg2c3VycL0WDYw355b7ynMrMGVvZdObOfFZGSWGy8cqeLUOJOzOHe0EqMB5Q==",
+ "dev": true,
+ "dependencies": {
+ "@ark-ui/react": "^3.5.0"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
+ }
+ },
+ "node_modules/zod": {
+ "version": "3.21.4",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
+ "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
}
},
- "zwitch": {
+ "node_modules/zwitch": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz",
- "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA=="
+ "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
}
}
}
diff --git a/package.json b/package.json
index 864fb2c..7d47088 100644
--- a/package.json
+++ b/package.json
@@ -21,7 +21,7 @@
"jwt-decode": "^3.1.2",
"lodash.clonedeep": "^4.5.0",
"minimatch": "^5.1.2",
- "next": "13.0.0",
+ "next": "13.4.7",
"next-image-export-optimizer": "^1.0.1",
"next-mdx-remote": "^4.1.0",
"next-remote-watch": "^2.0.0",
@@ -45,6 +45,7 @@
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
- "typescript": "4.8.4"
+ "typescript": "4.8.4",
+ "yorkie-ui-test": "^0.0.4"
}
}
diff --git a/pages/_app.tsx b/pages/_app.tsx
index 93c68f2..d087131 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -3,6 +3,7 @@ import type { AppProps } from 'next/app';
import Head from 'next/head';
import Script from 'next/script';
import '@/styles/style.css';
+import 'yorkie-ui-test/styles.css';
import { prefix } from '@/utils/prefix';
import { ThemeOption, useTheme } from '@/hooks/useTheme';
diff --git a/styles/style.css b/styles/style.css
index cc6c358..75dba17 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -1,45 +1,13936 @@
-@charset "UTF-8";.accordion_list{padding:0 32px}@media screen and (max-width:1023px){.accordion_list{width:100%}}@media screen and (max-width:639px){.accordion_list{padding:0 16px}}.accordion_list .accordion_item{border-bottom:1px solid var(--gray-400)}.accordion_list .accordion_item:last-of-type{border-bottom:0}.accordion_list .accordion_btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:left;width:100%;padding:24px 16px;font-size:2.4rem;line-height:1.34;font-weight:500;color:var(--gray-800)}@media screen and (max-width:1023px){.accordion_list .accordion_btn{font-size:2rem;line-height:1.4}}.accordion_list .accordion_btn .icon{width:24px;height:24px;margin-right:16px;color:var(--gray-800)}.accordion_list .accordion_btn.is_active~.accordion_content{display:block}.accordion_list .accordion_content{display:none;margin-top:-8px;padding:0 16px 24px;font-size:1.6rem;line-height:1.5;font-weight:400;color:var(--gray-800)}@media screen and (max-width:1023px){.accordion_list .accordion_content{font-size:1.4rem;line-height:1.58}}
-@charset "UTF-8";.connect_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.connect_box+.connect_box{margin-top:16px}.connect_box .account{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-width:373px;padding:11px 23px;border:1px solid var(--gray-400);border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:var(--gray-50)}@media screen and (max-width:1023px){.connect_box .account{min-width:auto;width:100%}}.connect_box .account_title{min-width:96px;padding-right:10px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-600);word-break:break-all}@media screen and (max-width:1023px){.connect_box .account_title{min-width:87px}}@media screen and (max-width:639px){.connect_box .account_title{min-width:auto;padding-left:0}}.connect_box .account_id{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;font-size:1.4rem;line-height:1.15;font-weight:600;color:var(--gray-800);word-break:break-all}@media screen and (max-width:639px){.connect_box .account_id{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.connect_box .account_id.is_disabled{font-size:1.2rem;line-height:1.34;font-weight:300;color:var(--gray-400)}.connect_box .account_id:empty{font-size:1.2rem;line-height:1.34;font-weight:300;color:var(--gray-400)}.connect_box .account_id:empty::before{content:attr(data-placeholder)}.connect_box .btn_box{margin-left:16px}@media screen and (max-width:1023px){.connect_box .btn_box{min-width:100px}}.connect_box .btn_box .btn{margin-top:1px;padding:7px 13px 7px 11px}.connect_box .btn_box .icon{width:12px;height:12px}.connect_box .btn_box .text{font-size:1.2rem;line-height:1.34;font-weight:300}.connect_api_box{display:-webkit-box;display:-ms-flexbox;display:flex}.connect_api_box .api_box{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:16px;border:1px solid var(--gray-400);border-radius:8px}.connect_api_box .api{display:-webkit-box;display:-ms-flexbox;display:flex;overflow-x:overlay;position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.connect_api_box .value{padding:0 24px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-600)}.connect_api_box .btn_area{position:relative;-webkit-box-flex:0;-ms-flex:none;flex:none}.connect_api_box .btn_area .btn{height:40px;margin-left:0}.connect_api_box .btn_area .icon{margin-right:8px}.connect_api_box .btn_cover{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;height:100%;padding:0 26px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:6px;background:var(--gray-400);font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);z-index:1}.connect_api_box .btn_cover .icon{display:inline-block;margin-right:10px;vertical-align:top}.connect_api_box .btn_cover .icon svg{display:block}
-@charset "UTF-8";.banner{display:block;min-height:134px;padding:24px 32px;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.banner{min-height:112px;padding:27px 14px 27px 22px}}.banner_box{position:relative}@media screen and (max-width:1023px){.banner_box{padding:0 32px}}@media screen and (max-width:639px){.banner_box{padding:0 16px}}.banner_box .guide{display:block;margin-bottom:24px;padding-right:32px;font-size:2.4rem;line-height:1.34;font-weight:500;color:var(--gray-900)}.banner_box .btn_close{position:absolute;top:-2px;right:-7px;margin:0;padding:5px;color:var(--gray-900)}@media screen and (max-width:1023px){.banner_box .btn_close{right:25px}}@media screen and (max-width:639px){.banner_box .btn_close{right:7px}}.banner_box .btn_close .icon{width:22px;height:22px;margin:0}.banner_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:639px){.banner_list{display:block}}.banner_item{overflow:hidden;position:relative;-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:0 8px;border-radius:10px}@media screen and (max-width:639px){.banner_item{margin:16px 0 0}}.banner_item:first-child{margin-left:0}@media screen and (max-width:639px){.banner_item:first-child{margin-top:0}}.banner_item:last-child{margin-right:0}.banner_title{display:block;position:relative;z-index:1;margin-bottom:8px;font-size:2.4rem;line-height:1.34;font-weight:600}@media screen and (max-width:1023px){.banner_title{font-size:1.6rem;line-height:1.5}}.banner_desc{position:relative;z-index:1;font-size:1.4rem;line-height:1.58;font-weight:400}@media screen and (max-width:1023px){.banner_desc{font-size:1.2rem;line-height:1.34}}.banner .img_box{display:block;position:absolute;right:-4px;bottom:-8px}@media screen and (max-width:1023px){.banner .img_box{width:158px}}.banner .img_box img{display:block;width:100%}
-@charset "UTF-8";.btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 0 0 8px;padding:8px 16px;font-size:1.4rem;line-height:1.58;border:1px solid transparent;border-radius:4px;background-color:var(--gray-000);color:var(--gray-600);vertical-align:top;cursor:pointer;-webkit-transition:background-color .2s;transition:background-color .2s;-webkit-box-sizing:border-box;box-sizing:border-box}.btn:hover{background-color:var(--gray-100)}.btn:first-child{margin-left:0}.btn .text{margin-left:8px}.btn .text:only-child{margin-left:0}.btn .icon{width:16px;height:16px;margin-left:8px}.btn .icon:first-child{margin-left:0}.btn .icon svg{display:block;width:100%;height:100%}.btn .icon svg path{fill:currentColor}.btn_line{border-color:var(--gray-400)}.btn_line.is_disabled,.btn_line:disabled{border-color:var(--gray-300)}.btn_small{padding:7px 12px;font-size:1.2rem;line-height:1.34;font-weight:500}.btn_small .icon{width:12px;height:12px}.btn_large{padding:11px 16px;font-size:1.6rem;line-height:1.5;font-weight:600}.btn_large .icon{width:24px;height:24px}.btn_star{margin-left:8px;margin-right:-4px;padding:3px;color:var(--gray-500)}.btn_star .icon{display:block;width:24px;height:24px}.btn_star .icon path:first-child{color:transparent;-webkit-transition:color .2s;transition:color .2s}.btn_star .icon path:last-child{-webkit-transition:color .2s;transition:color .2s}.btn_star.is_active{color:var(--yellow-0)}.btn_star.is_active path:first-child{color:inherit}.btn.white{background-color:#fff;color:var(--gray-600)}.btn.white.is_disabled,.btn.white:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray900{background-color:var(--gray-900);color:var(--gray-000)}.btn.gray900.btn_line{border-color:transparent}.btn.gray900.is_disabled,.btn.gray900:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray800{background-color:var(--gray-800);color:var(--gray-000)}.btn.gray800.btn_line{border-color:transparent}.btn.gray800.is_disabled,.btn.gray800:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray700{background-color:var(--gray-700);color:var(--gray-000)}.btn.gray700.btn_line{border-color:transparent}.btn.gray700.is_disabled,.btn.gray700:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray600{background-color:var(--gray-600);color:var(--gray-000)}.btn.gray600.btn_line{border-color:transparent}.btn.gray600.is_disabled,.btn.gray600:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray500{background-color:var(--gray-500);color:var(--gray-000)}.btn.gray500.btn_line{border-color:transparent}.btn.gray500.is_disabled,.btn.gray500:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray400{background-color:var(--gray-400);color:var(--gray-600)}.btn.gray400.is_disabled,.btn.gray400:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray300{background-color:var(--gray-300);color:var(--gray-600)}.btn.gray300.is_disabled,.btn.gray300:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray200{background-color:var(--gray-200);color:var(--gray-600)}.btn.gray200.is_disabled,.btn.gray200:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray100{background-color:var(--gray-100);color:var(--gray-600)}.btn.gray100.is_disabled,.btn.gray100:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.gray50{background-color:var(--gray-50);color:var(--gray-600)}.btn.gray50.is_disabled,.btn.gray50:disabled{cursor:auto;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_dark{background-color:var(--orange-dark);color:var(--gray-000)}.btn.orange_dark.btn_line{border-color:var(--orange-0);background-color:var(--orange-alpha-0);color:var(--orange-dark)}.btn.orange_dark.btn_line.is_disabled,.btn.orange_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_dark.is_disabled,.btn.orange_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_0{background-color:var(--orange-0);color:var(--gray-000)}.btn.orange_0:hover{background-color:var(--orange-dark)}.btn.orange_0.btn_line{border-color:var(--orange-0);background-color:var(--orange-alpha-light);color:var(--orange-dark)}.btn.orange_0.btn_line:hover{background-color:var(--orange-alpha-0)}.btn.orange_0.btn_line.is_disabled,.btn.orange_0.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_0.is_disabled,.btn.orange_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_light{background-color:var(--orange-light);color:var(--gray-000)}.btn.orange_light.btn_line{border-color:var(--orange-alpha-dark);background-color:var(--orange-alpha-0);color:var(--orange-dark)}.btn.orange_light.btn_line.is_disabled,.btn.orange_light.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_light.is_disabled,.btn.orange_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_alpha_dark{background-color:var(--orange-alpha-dark);color:var(--orange-dark)}.btn.orange_alpha_dark.btn_line{border-color:var(--orange-alpha-dark)}.btn.orange_alpha_dark.btn_line.is_disabled,.btn.orange_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_alpha_dark.is_disabled,.btn.orange_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_alpha_0{background-color:var(--orange-alpha-0);color:var(--orange-dark)}.btn.orange_alpha_0.btn_line{border-color:var(--orange-alpha-0)}.btn.orange_alpha_0.btn_line.is_disabled,.btn.orange_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_alpha_0.is_disabled,.btn.orange_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.orange_alpha_light{background-color:var(--orange-alpha-light);color:var(--orange-0)}.btn.orange_alpha_light.btn_line{border-color:var(--orange-alpha-light)}.btn.orange_alpha_light.btn_line.is_disabled,.btn.orange_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.orange_alpha_light.is_disabled,.btn.orange_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_dark{background-color:var(--yellow-dark);color:var(--gray-000)}.btn.yellow_dark.btn_line{border-color:var(--yellow-0);background-color:var(--yellow-alpha-0);color:var(--yellow-dark)}.btn.yellow_dark.btn_line.is_disabled,.btn.yellow_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_dark.is_disabled,.btn.yellow_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_0{background-color:var(--yellow-0);color:var(--gray-000)}.btn.yellow_0:hover{background-color:var(--yellow-dark)}.btn.yellow_0.btn_line{border-color:var(--yellow-0);background-color:var(--yellow-alpha-light);color:var(--yellow-dark)}.btn.yellow_0.btn_line:hover{background-color:var(--yellow-alpha-0)}.btn.yellow_0.btn_line.is_disabled,.btn.yellow_0.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_0.is_disabled,.btn.yellow_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_light{background-color:var(--yellow-light);color:var(--gray-000)}.btn.yellow_light.btn_line{border-color:var(--yellow-alpha-dark);background-color:var(--yellow-alpha-0);color:var(--yellow-dark)}.btn.yellow_light.btn_line.is_disabled,.btn.yellow_light.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_light.is_disabled,.btn.yellow_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_alpha_dark{background-color:var(--yellow-alpha-dark);color:var(--yellow-dark)}.btn.yellow_alpha_dark.btn_line{border-color:var(--yellow-alpha-dark)}.btn.yellow_alpha_dark.btn_line.is_disabled,.btn.yellow_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_alpha_dark.is_disabled,.btn.yellow_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_alpha_0{background-color:var(--yellow-alpha-0);color:var(--yellow-dark)}.btn.yellow_alpha_0.btn_line{border-color:var(--yellow-alpha-0)}.btn.yellow_alpha_0.btn_line.is_disabled,.btn.yellow_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_alpha_0.is_disabled,.btn.yellow_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.yellow_alpha_light{background-color:var(--yellow-alpha-light);color:var(--yellow-0)}.btn.yellow_alpha_light.btn_line{border-color:var(--yellow-alpha-light)}.btn.yellow_alpha_light.btn_line.is_disabled,.btn.yellow_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.yellow_alpha_light.is_disabled,.btn.yellow_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_dark{background-color:var(--green-dark);color:var(--gray-000)}.btn.green_dark.btn_line{border-color:var(--green-0);background-color:var(--green-alpha-0);color:var(--green-dark)}.btn.green_dark.btn_line.is_disabled,.btn.green_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.green_dark.is_disabled,.btn.green_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_0{background-color:var(--green-0);color:var(--gray-000)}.btn.green_0:hover{background-color:var(--green-dark)}.btn.green_0.btn_line{border-color:var(--green-0);background-color:var(--green-alpha-light);color:var(--green-dark)}.btn.green_0.btn_line:hover{background-color:var(--green-alpha-0)}.btn.green_0.btn_line.is_disabled,.btn.green_0.btn_line:disabled{border-color:var(--gray-300)}.btn.green_0.is_disabled,.btn.green_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_light{background-color:var(--green-light);color:var(--gray-000)}.btn.green_light.btn_line{border-color:var(--green-alpha-dark);background-color:var(--green-alpha-0);color:var(--green-dark)}.btn.green_light.btn_line.is_disabled,.btn.green_light.btn_line:disabled{border-color:var(--gray-300)}.btn.green_light.is_disabled,.btn.green_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_alpha_dark{background-color:var(--green-alpha-dark);color:var(--green-dark)}.btn.green_alpha_dark.btn_line{border-color:var(--green-alpha-dark)}.btn.green_alpha_dark.btn_line.is_disabled,.btn.green_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.green_alpha_dark.is_disabled,.btn.green_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_alpha_0{background-color:var(--green-alpha-0);color:var(--green-dark)}.btn.green_alpha_0.btn_line{border-color:var(--green-alpha-0)}.btn.green_alpha_0.btn_line.is_disabled,.btn.green_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.green_alpha_0.is_disabled,.btn.green_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.green_alpha_light{background-color:var(--green-alpha-light);color:var(--green-0)}.btn.green_alpha_light.btn_line{border-color:var(--green-alpha-light)}.btn.green_alpha_light.btn_line.is_disabled,.btn.green_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.green_alpha_light.is_disabled,.btn.green_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_dark{background-color:var(--blue-dark);color:var(--gray-000)}.btn.blue_dark.btn_line{border-color:var(--blue-0);background-color:var(--blue-alpha-0);color:var(--blue-dark)}.btn.blue_dark.btn_line.is_disabled,.btn.blue_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_dark.is_disabled,.btn.blue_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_0{background-color:var(--blue-0);color:var(--gray-000)}.btn.blue_0:hover{background-color:var(--blue-dark)}.btn.blue_0.btn_line{border-color:var(--blue-0);background-color:var(--blue-alpha-light);color:var(--blue-dark)}.btn.blue_0.btn_line:hover{background-color:var(--blue-alpha-0)}.btn.blue_0.btn_line.is_disabled,.btn.blue_0.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_0.is_disabled,.btn.blue_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_light{background-color:var(--blue-light);color:var(--gray-000)}.btn.blue_light.btn_line{border-color:var(--blue-alpha-dark);background-color:var(--blue-alpha-0);color:var(--blue-dark)}.btn.blue_light.btn_line.is_disabled,.btn.blue_light.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_light.is_disabled,.btn.blue_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_alpha_dark{background-color:var(--blue-alpha-dark);color:var(--blue-dark)}.btn.blue_alpha_dark.btn_line{border-color:var(--blue-alpha-dark)}.btn.blue_alpha_dark.btn_line.is_disabled,.btn.blue_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_alpha_dark.is_disabled,.btn.blue_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_alpha_0{background-color:var(--blue-alpha-0);color:var(--blue-dark)}.btn.blue_alpha_0.btn_line{border-color:var(--blue-alpha-0)}.btn.blue_alpha_0.btn_line.is_disabled,.btn.blue_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_alpha_0.is_disabled,.btn.blue_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.blue_alpha_light{background-color:var(--blue-alpha-light);color:var(--blue-0)}.btn.blue_alpha_light.btn_line{border-color:var(--blue-alpha-light)}.btn.blue_alpha_light.btn_line.is_disabled,.btn.blue_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.blue_alpha_light.is_disabled,.btn.blue_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_dark{background-color:var(--red-dark);color:var(--gray-000)}.btn.red_dark.btn_line{border-color:var(--red-0);background-color:var(--red-alpha-0);color:var(--red-dark)}.btn.red_dark.btn_line.is_disabled,.btn.red_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.red_dark.is_disabled,.btn.red_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_0{background-color:var(--red-0);color:var(--gray-000)}.btn.red_0:hover{background-color:var(--red-dark)}.btn.red_0.btn_line{border-color:var(--red-0);background-color:var(--red-alpha-light);color:var(--red-dark)}.btn.red_0.btn_line:hover{background-color:var(--red-alpha-0)}.btn.red_0.btn_line.is_disabled,.btn.red_0.btn_line:disabled{border-color:var(--gray-300)}.btn.red_0.is_disabled,.btn.red_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_light{background-color:var(--red-light);color:var(--gray-000)}.btn.red_light.btn_line{border-color:var(--red-alpha-dark);background-color:var(--red-alpha-0);color:var(--red-dark)}.btn.red_light.btn_line.is_disabled,.btn.red_light.btn_line:disabled{border-color:var(--gray-300)}.btn.red_light.is_disabled,.btn.red_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_alpha_dark{background-color:var(--red-alpha-dark);color:var(--red-dark)}.btn.red_alpha_dark.btn_line{border-color:var(--red-alpha-dark)}.btn.red_alpha_dark.btn_line.is_disabled,.btn.red_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.red_alpha_dark.is_disabled,.btn.red_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_alpha_0{background-color:var(--red-alpha-0);color:var(--red-dark)}.btn.red_alpha_0.btn_line{border-color:var(--red-alpha-0)}.btn.red_alpha_0.btn_line.is_disabled,.btn.red_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.red_alpha_0.is_disabled,.btn.red_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.red_alpha_light{background-color:var(--red-alpha-light);color:var(--red-0)}.btn.red_alpha_light.btn_line{border-color:var(--red-alpha-light)}.btn.red_alpha_light.btn_line.is_disabled,.btn.red_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.red_alpha_light.is_disabled,.btn.red_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_dark{background-color:var(--purple-dark);color:var(--gray-000)}.btn.purple_dark.btn_line{border-color:var(--purple-0);background-color:var(--purple-alpha-0);color:var(--purple-dark)}.btn.purple_dark.btn_line.is_disabled,.btn.purple_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_dark.is_disabled,.btn.purple_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_0{background-color:var(--purple-0);color:var(--gray-000)}.btn.purple_0:hover{background-color:var(--purple-dark)}.btn.purple_0.btn_line{border-color:var(--purple-0);background-color:var(--purple-alpha-light);color:var(--purple-dark)}.btn.purple_0.btn_line:hover{background-color:var(--purple-alpha-0)}.btn.purple_0.btn_line.is_disabled,.btn.purple_0.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_0.is_disabled,.btn.purple_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_light{background-color:var(--purple-light);color:var(--gray-000)}.btn.purple_light.btn_line{border-color:var(--purple-alpha-dark);background-color:var(--purple-alpha-0);color:var(--purple-dark)}.btn.purple_light.btn_line.is_disabled,.btn.purple_light.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_light.is_disabled,.btn.purple_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_alpha_dark{background-color:var(--purple-alpha-dark);color:var(--purple-dark)}.btn.purple_alpha_dark.btn_line{border-color:var(--purple-alpha-dark)}.btn.purple_alpha_dark.btn_line.is_disabled,.btn.purple_alpha_dark.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_alpha_dark.is_disabled,.btn.purple_alpha_dark:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_alpha_0{background-color:var(--purple-alpha-0);color:var(--purple-dark)}.btn.purple_alpha_0.btn_line{border-color:var(--purple-alpha-0)}.btn.purple_alpha_0.btn_line.is_disabled,.btn.purple_alpha_0.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_alpha_0.is_disabled,.btn.purple_alpha_0:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn.purple_alpha_light{background-color:var(--purple-alpha-light);color:var(--purple-0)}.btn.purple_alpha_light.btn_line{border-color:var(--purple-alpha-light)}.btn.purple_alpha_light.btn_line.is_disabled,.btn.purple_alpha_light.btn_line:disabled{border-color:var(--gray-300)}.btn.purple_alpha_light.is_disabled,.btn.purple_alpha_light:disabled{pointer-events:none;background-color:var(--gray-50);color:var(--gray-300)}.btn_toggle{padding:7px 11px;color:var(--gray-500);background-color:var(--gray-000)}.btn_toggle:hover{background-color:var(--gray-100)}.btn_toggle.is_active{color:var(--blue-dark);background-color:var(--blue-alpha-light)}.btn_plus{margin-left:32px;padding:7px 11px 7px 10px;font-size:1.2rem;line-height:1.34;font-weight:500;background-color:var(--blue-0);color:var(--gray-000)}.btn_plus:hover{background-color:var(--blue-dark)}.btn_plus .icon{width:12px;height:12px}.btn_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn_box.full_width{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.btn_box.full_width .btn{-webkit-box-flex:1;-ms-flex:1;flex:1}.btn_top{display:none}@media screen and (max-width:1023px){.btn_top{display:block;position:fixed;bottom:72px;right:24px;margin:0;padding:0;border:none;background-color:transparent}}@media screen and (max-width:1023px){.btn_top .icon{width:32px;height:32px;margin:0}}.btn_top svg rect{fill:var(--gray-000)}
-@charset "UTF-8";.service_card_list .service_card_item{width:100%;border:1px solid var(--gray-400);border-radius:16px;-webkit-box-sizing:border-box;box-sizing:border-box}.service_card_list .service_card_item+.service_card_item{margin-top:16px}.service_card_list .service_card_item.is_active .img_box{height:99px;opacity:1}.service_card_list .service_card_item.is_active .img_box svg{height:auto;vertical-align:top}.service_card_list .service_card_item.is_active .service_card_title{padding-top:115px;margin-bottom:8px;opacity:1}.service_card_list .service_card_item.is_active .service_card_desc{height:88px;opacity:1}@media screen and (max-width:1023px){.service_card_list .service_card_item.is_active .service_card_desc{height:auto;max-height:100px}}@media screen and (max-width:639px){.service_card_list .service_card_item.is_active .service_card_desc{max-height:120px}}@media screen and (max-width:359px){.service_card_list .service_card_item.is_active .service_card_desc{max-height:130px}}.service_card_list .service_card_menu{position:relative;width:100%;padding:24px;text-align:left}.service_card_list .img_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:24px;left:0;width:100%;height:0;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;opacity:0;-webkit-transition:all .4s ease-out;transition:all .4s ease-out}.service_card_list .img_box svg{height:0;vertical-align:top}.service_card_list .service_card_title{display:block;color:var(--gray-900);font-size:2.4rem;line-height:1.34;font-weight:600;-webkit-transition:all .4s ease-out;transition:all .4s ease-out}@media screen and (max-width:1023px){.service_card_list .service_card_title{font-size:2rem;line-height:1.4}}.service_card_list .service_card_desc{display:block;overflow:hidden;height:0;color:var(--gray-900);font-size:1.4rem;line-height:1.58;font-weight:400;word-break:keep-all;-webkit-transition:all .4s ease-out;transition:all .4s ease-out;opacity:0}@media screen and (max-width:1023px){.service_card_list .service_card_desc{height:auto;max-height:0}}.horizon_list{width:100%}.horizon_list .horizon_item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media screen and (max-width:1023px){.horizon_list .horizon_item{display:block}}.horizon_list .horizon_item+.horizon_item{margin-top:80px}.horizon_list .text_box{max-width:400px;padding-left:40px}@media screen and (max-width:1023px){.horizon_list .text_box{max-width:none;margin-top:24px;padding-left:0;text-align:center}}.horizon_list .text_box .title{display:block;color:var(--gray-800);font-size:2.4rem;line-height:1.34;font-weight:600}@media screen and (max-width:1023px){.horizon_list .text_box .title{font-size:2rem;line-height:1.4;text-align:left}}.horizon_list .text_box .desc{margin-top:24px;color:var(--gray-800);font-size:1.6rem;line-height:1.5;font-weight:500;word-break:keep-all}@media screen and (max-width:1023px){.horizon_list .text_box .desc{font-size:1.4rem;line-height:22px;text-align:left}}.horizon_list .text_box .btn{margin-top:24px;margin-left:0}@media screen and (max-width:1023px){.horizon_list .text_box .btn{height:40px}}@media screen and (max-width:639px){.horizon_list .text_box .btn{width:100%}}.horizon_list .text_box .btn.gray800:hover{background-color:var(--gray-900)}
-@charset "UTF-8";.codeblock_box{position:relative}.codeblock_box.is_bash .codeblock{padding:12px 0}.codeblock_box .btn_area{position:absolute;right:8px;top:8px}.codeblock_box .btn_area .btn{padding:9px 11px}.codeblock_box .btn_area .icon{width:12px;height:12px}.codeblock{position:relative;overflow-x:auto;min-height:48px;padding:8px 0;border-radius:4px;border:1px solid var(--gray-400);background:var(--gray-000);-webkit-box-sizing:border-box;box-sizing:border-box}.prism-code{display:table;margin:0;font-family:RobotoMono,Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace}.prism-code .token{white-space:pre}.prism-code .token-line{display:table-row}.prism-code .token-line.is_removed{background:var(--red-alpha-light)}.prism-code .token-line.is_created{background:var(--green-alpha-light)}.prism-code .token-line.is_edited{background:var(--yellow-alpha-light)}.prism-code .string{word-break:break-all}.prism-code .class-name{color:var(--purple-dark)}.prism-code .parameter,.prism-code .plain,.prism-code .property{color:var(--gray-900)}.prism-code .line-content,.prism-code .line-number{display:table-cell;padding:0 16px}.prism-code .line-number{font-size:1.2rem;line-height:2;font-weight:400;color:var(--gray-500);text-align:right;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.prism-code .line-content{font-size:1.4rem;line-height:1.72;font-weight:400}.prism-code.language-json .token.property{color:var(--blue-dark)}.prism-code.language-json .token.number{color:var(--orange-dark)}.prism-code.language-bash{padding:0 24px}.codeblock_tree_box{padding:16px 24px;border:1px solid var(--gray-400);border-radius:0 0 4px 4px;background:var(--gray-000);color:var(--gray-600);word-break:break-all}.codeblock_tree_box .react-json-view{font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif !important}.codeblock_tree_box .react-json-view>.object-container>.object-content>.object-key-val>span:first-child .object-key::after{display:none}.codeblock_tree_box .object-key-val{padding:0 !important}.codeblock_tree_box .object-key-val span{position:relative;display:inline-block;opacity:1 !important}.codeblock_tree_box .object-key-val .object-content{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:start;-ms-flex-align:start;align-items:flex-start;margin-left:24px !important}.codeblock_tree_box .object-key-val .icon-container{position:absolute;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.codeblock_tree_box .object-key-val .icon-container .collapsed-icon,.codeblock_tree_box .object-key-val .icon-container .expanded-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.codeblock_tree_box .object-key-val .variable-row,.codeblock_tree_box .object-key-val>span:first-child{display:inline-block;padding:8px 12px;margin-bottom:16px;border-radius:4px;border:1px solid var(--gray-400);font-size:1.4rem;line-height:1.72;font-weight:500;letter-spacing:0 !important}.codeblock_tree_box .object-key-val .variable-row.is_edited,.codeblock_tree_box .object-key-val>span:first-child.is_edited{border-color:var(--yellow-0);background:var(--yellow-alpha-light);color:var(--yellow-dark)}.codeblock_tree_box .object-key-val .variable-row.is_created,.codeblock_tree_box .object-key-val>span:first-child.is_created{border-color:var(--green-0);background:var(--green-alpha-light);color:var(--green-dark)}.codeblock_tree_box .object-key-val .variable-row.is_removed,.codeblock_tree_box .object-key-val>span:first-child.is_removed{border-color:var(--red-0);background:var(--red-alpha-light);color:var(--red-dark)}.codeblock_tree_box .object-key-val .array-key,.codeblock_tree_box .object-key-val .object-key{position:relative;padding-left:20px;font-size:1.4rem;line-height:1.72;font-weight:500}.codeblock_tree_box .object-key-val .object-key-val,.codeblock_tree_box .object-key-val .variable-row{position:relative}.codeblock_tree_box .object-key-val .object-key-val:first-of-type::after,.codeblock_tree_box .object-key-val .variable-row:first-of-type::after{top:-16px;height:32px}.codeblock_tree_box .object-key-val .object-key-val::after,.codeblock_tree_box .object-key-val .variable-row::after{position:absolute;top:0;width:16px;height:16px;border:1px dashed var(--gray-400);border-width:0 0 1px 1px;border-radius:0 0 0 4px;content:""}.codeblock_tree_box .object-key-val .object-key-val:not(:last-of-type)::before,.codeblock_tree_box .object-key-val .variable-row:not(:last-of-type)::before{position:absolute;border:1px dashed var(--gray-400);border-width:0 0 0 1px;content:""}.codeblock_tree_box .object-key-val .object-key-val::after{left:-17px}.codeblock_tree_box .object-key-val .object-key-val:not(:last-of-type)::before{left:-17px;top:17px;bottom:0}.codeblock_tree_box .object-key-val .variable-row{padding:8px 12px !important}.codeblock_tree_box .object-key-val .variable-row::after{left:-18px}.codeblock_tree_box .object-key-val .variable-row:not(:last-of-type)::before{left:-18px;top:16px;bottom:-20px}.codeblock_tree_box .object-key-val .variable-row .object-key{padding:0;border:0;margin:0}.codeblock_tree_box .object-key-val .variable-row .object-key::after,.codeblock_tree_box .object-key-val .variable-row .object-key::before{display:none}.codeblock_tree_box .object-key-val .variable-row .variable-value{padding-right:0 !important}.codeblock_tree_box .object-key-val .brace-row{display:block;width:0;font-size:0}.codeblock_tree_box .object-key-val .object-meta-data{position:absolute}.codeblock_tree_box .node-ellipsis{margin-left:4px}
-@charset "UTF-8";.codeblock_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:48px;padding:8px 8px 8px 16px;background:var(--gray-50);border:1px solid var(--gray-400);border-radius:4px 4px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.codeblock_header{padding:10px 8px 6px;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media screen and (max-width:639px){.codeblock_header{-ms-flex-wrap:wrap;flex-wrap:wrap}}.codeblock_header .box_left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:1023px){.codeblock_header .box_left{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media screen and (max-width:639px){.codeblock_header .box_left{margin-right:10px}}.codeblock_header .box_left .btn{height:32px;margin-left:16px;padding:8px 12px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.codeblock_header .box_left .btn{margin:10px 0 0}}.codeblock_header .box_left .btn .icon{width:12px;height:12px}.codeblock_header .desc{padding-left:8px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-800)}.codeblock_header .info_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:none;flex:none;padding-left:56px;font-size:1.2rem;line-height:1.34;font-weight:600}@media screen and (max-width:1023px){.codeblock_header .info_list{padding-left:8px}}.codeblock_header .info_list .info_title{color:var(--gray-600)}.codeblock_header .info_list .info_title:not(:first-child){padding-left:40px}.codeblock_header .info_list .info_desc{padding-left:16px;font-weight:400;color:var(--gray-800)}.codeblock_header .box_right{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:639px){.codeblock_header .box_right{margin-top:8px}}.codeblock_header .box_right .btn_area{position:relative;margin-left:24px}.codeblock_header .box_right .btn_line{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px 12px;border-radius:4px;border:1px solid var(--gray-400);color:var(--gray-800)}.codeblock_header .box_right .btn_line .icon{width:12px;height:12px}.codeblock_header .btn_toggle{padding:8px}.codeblock_header .btn_toggle:not(.is_active){background:var(--gray-50)}
-@charset "UTF-8";.codeblock_navigator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:8px;border-bottom:1px solid var(--gray-400)}.codeblock_navigator .item{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:36px;padding:0 16px;border-radius:8px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-600)}.codeblock_navigator .item+.item{margin-left:8px}.codeblock_navigator .item.is_active{background:var(--gray-800);color:var(--gray-000)}
-@charset "UTF-8";.create_project{padding:32px 16px 40px;border:1px solid var(--gray-400);border-radius:16px}@media screen and (max-width:639px){.create_project{padding:0;border:none}}.create_project_area{margin-top:32px}@media screen and (max-width:639px){.create_project_area{margin-top:56px}}@media screen and (max-width:359px){.create_project_area{margin-top:24px}}.create_project+.btn_box{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:32px}@media screen and (max-width:639px){.create_project+.btn_box{position:absolute;right:0;left:0;bottom:0;margin-top:0;padding:32px 16px}}.create_project+.btn_box .btn{padding:12px 56px;font-size:1.6rem;line-height:1.5;font-weight:600}@media screen and (max-width:1023px){.create_project+.btn_box .btn{padding:12px 40px}}@media screen and (max-width:639px){.create_project+.btn_box .btn{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}.create_project .title_list{overflow-y:overlay;max-height:200px;margin-top:24px}@media screen and (max-width:639px){.create_project .title_list{max-height:310px}}.create_project .title_item.is_active .title_menu,.create_project .title_item:hover .title_menu{background-color:var(--gray-100)}.create_project .title_menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:100%;padding:12px 16px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:639px){.create_project .title_menu{-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.create_project .title_menu .thumbnail{-webkit-box-flex:0;-ms-flex:none;flex:none;width:32px;height:32px}.create_project .title_menu .thumbnail img{display:block;width:100%}.create_project .title_menu .text{font-size:2.4rem;line-height:1.34;font-weight:600;color:var(--gray-800);word-break:break-word;text-align:left}@media screen and (max-width:639px){.create_project .title_menu .text{font-size:1.6rem;line-height:1.5}}.create_project .thumbnail{margin-right:16px}.create_project .thumbnail .icon img{width:48px;height:48px}.create_project .thumbnail_box{position:relative}.create_project .breadcrumb{margin-bottom:24px;padding-left:24px}.create_project .breadcrumb_inner{position:relative;margin-left:16px;padding-left:16px}@media screen and (max-width:1023px){.create_project .breadcrumb_inner:first-child{display:block}.create_project .breadcrumb_inner:last-child{display:none}}.create_project .breadcrumb_inner::before{position:absolute;top:0;left:0;width:1px;height:100%;background-color:var(--gray-500);content:""}.create_project .breadcrumb_inner:first-child{margin-left:0;padding-left:0}.create_project .breadcrumb_inner:first-child::before{display:none}.create_project .breadcrumb .thumbnail{width:16px;height:16px;margin-right:8px;border:1px solid var(--gray-500);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.create_project .breadcrumb_item{padding:0}.create_project .breadcrumb_item .icon{display:block}.create_project .breadcrumb_item.is_undecided .breadcrumb_text,.create_project .breadcrumb_item.is_undecided .breadcrumb_thumb{color:var(--gray-500)}.create_project .project_depth{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px}@media screen and (max-width:359px){.create_project .project_depth{display:block}}.create_project .project_depth_item{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.create_project .project_depth_item+.project_depth_item{margin-left:16px;padding-left:16px;border-left:1px solid var(--gray-500)}@media screen and (max-width:359px){.create_project .project_depth_item+.project_depth_item{margin-top:10px;margin-left:0;padding-left:0;border-left:none}}.create_project .project_depth .btn_title{display:-webkit-box;display:-ms-flexbox;display:flex}.create_project .project_depth .img_box{display:block;overflow:hidden;position:relative;width:16px;height:16px;margin-right:8px;border-radius:4px}.create_project .project_depth .img_box:empty::before{display:block;width:100%;height:100%;border:1px solid var(--gray-500);border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;content:""}.create_project .project_depth .img_box.emoji{border:1px solid var(--gray-500);-webkit-box-sizing:border-box;box-sizing:border-box}.create_project .project_depth .img_box.emoji img{width:12px;height:12px;margin:1px}.create_project .project_depth .img_box img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.create_project .project_depth .tit{font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);word-break:break-all;text-align:left}.create_project .project_depth .tit:empty::before{color:var(--gray-500);content:attr(data-placeholder)}.create_project .setting_name{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin:64px 0 20px;padding-left:16px;padding-right:16px}@media screen and (max-width:639px){.create_project .setting_name{margin-top:40px;margin-bottom:0}}.create_project .setting_name .thumbnail{margin-right:0;padding:8px;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:16px}.create_project .setting_name .thumbnail_box{-ms-flex-preferred-size:64px;flex-basis:64px;margin-right:24px}.create_project .setting_name .thumbnail .icon{display:block;width:48px;height:48px}.create_project .setting_name .thumbnail .icon svg{display:block;width:100%;height:100%}.create_project .setting_name .btn{margin:4px 0 0;padding:2px;font-size:1rem;line-height:1;font-weight:500}.create_project .setting_name .input_field_box{margin-top:18px}.create_project .setting_name .input_field_box.is_error .input_guide{margin-top:14px}@media screen and (max-width:1023px){.create_project .setting_name .input_field_box_large .input{font-size:2rem;line-height:1.4;font-weight:600}}.create_project .btn_emoji{width:100%}.create_project .btn_emoji.is_active+.emoji_group{display:block}.create_project .emoji_group{position:absolute;top:100%;left:0;z-index:10;width:472px;margin-top:-13px;margin-left:-1px;background-color:var(--gray-000)}.create_project .emoji_group .btn_box{padding:14px 37px 13px 29px}.create_project .emoji_group .btn_box .btn{margin-top:0}.create_project .emoji_group .btn_box .icon{width:16px;height:16px}.create_project .emoji_group .btn_box .text{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-600)}.create_project .search .input_field_box{margin-top:0}
-@charset "UTF-8";.document_header .title_box{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:28px;padding:0 40px 0 8px}@media screen and (max-width:1023px){.document_header .title_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:0}}.document_header .dropdown{position:absolute;top:30px;right:0;z-index:1}.document_header .title_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;padding-left:16px}@media screen and (max-width:1023px){.document_header .title_inner{padding:16px 0 0}}.document_header .btn .icon{width:24px;height:24px}.document_header .btn_back{padding:0;color:var(--gray-800)}.document_header .btn_more{position:absolute;top:2px;right:8px;padding:0}@media screen and (max-width:1023px){.document_header .btn_more{top:0;right:0}}.document_header .btn_more .icon svg path{stroke:var(--gray-800)}.document_header .title{font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800);word-break:break-all}.document_header .date{padding:0 0 3px 16px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600);-webkit-box-flex:0;-ms-flex:none;flex:none}.document_header .info_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:54px;margin-top:8px;padding:0 16px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.document_header .info_list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;min-height:52px;padding:0}}@media screen and (max-width:1023px){.document_header .info_item+.info_item{padding-top:10px}}.document_header .info_desc,.document_header .info_title{display:inline-block}.document_header .info_title{margin-right:24px;font-size:1.2rem;line-height:1.34;font-weight:600;color:var(--gray-600)}.document_header .info_desc{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800)}
-@charset "UTF-8";.dropdown{padding:8px 0;border:1px solid var(--gray-400);border-radius:6px;background-color:var(--gray-000)}.dropdown_l{border-radius:10px}.dropdown_l .dropdown_text{font-size:1.4rem;line-height:1.58}.dropdown_title{display:block;padding:4px 16px 8px;font-size:.8rem;line-height:1.5;font-weight:400;color:var(--gray-500)}.dropdown_title:not(:first-of-type){padding:8px 16px;margin-top:4px;border-top:1px solid var(--gray-400)}.dropdown_list+.dropdown_list{margin:4px 0 0;padding-top:3px;border-top:1px solid var(--gray-400)}.dropdown_item.has_border{margin-top:4px;padding-top:3px;border-top:1px solid var(--gray-400)}.dropdown_menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:14px 16px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .2s;transition:background .2s;text-align:left}.dropdown_menu.is_active,.dropdown_menu:hover{background-color:var(--orange-alpha-light)}.dropdown_menu.is_active .dropdown_text,.dropdown_menu:hover .dropdown_text{color:var(--gray-800)}.dropdown_menu.is_active .highlight,.dropdown_menu:hover .highlight{color:var(--red-dark)}.dropdown_text{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:1.2rem;line-height:1.34;color:var(--gray-900);word-break:break-all}.dropdown .highlight{color:var(--red-dark)}.dropdown .icon{-webkit-box-flex:0;-ms-flex:none;flex:none;width:16px;height:16px}.dropdown .icon svg{display:block;width:100%;height:100%}.dropdown .icon svg path{fill:currentColor}.dropdown .icon+.dropdown_text{margin-left:10px}
-@charset "UTF-8";.emoji_group{border:1px solid var(--gray-400);border-radius:6px}.emoji_group .btn_box{padding:8px 25px 7px 15px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid var(--gray-400)}.emoji_group .search{margin-bottom:27px}.emoji_group .emoji_box{overflow-y:auto;max-height:365px;padding:16px 24px 24px;-webkit-box-sizing:border-box;box-sizing:border-box}
-@charset "UTF-8";.filter{-webkit-box-flex:0;-ms-flex:none;flex:none}@media screen and (max-width:1023px){.filter{padding-left:32px;padding-right:32px}}@media screen and (max-width:639px){.filter{width:100%;padding-left:16px;padding-right:16px;-webkit-box-sizing:border-box;box-sizing:border-box}}.filter_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid var(--gray-400)}@media screen and (max-width:639px){.filter_list{display:block}}.filter_item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.filter_item+.filter_item{margin-left:16px}@media screen and (max-width:639px){.filter_item+.filter_item{margin-left:0}}.filter_title{font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-500)}.filter_desc{padding:7px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-800)}.filter .btn{margin:0}.filter .btn .text{margin-left:16px}.filter .icon_arrow{width:12px;height:12px;margin-left:13px;color:var(--gray-800)}.filter .icon_check svg path{fill:currentColor}.filter .dropdown{position:absolute;top:100%;right:0;width:200px;margin-top:-5px;z-index:10}@media screen and (max-width:639px){.filter .dropdown{left:0;right:0;width:auto;margin-top:0;-webkit-box-shadow:0 8px 16px -8px rgba(0,0,0,.2);box-shadow:0 8px 16px -8px rgba(0,0,0,.2)}}.filter .dropdown_list{overflow-y:overlay;max-height:200px}.filter .dropdown_text:only-child{padding-left:26px}
-@charset "UTF-8";.footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:47px;border-top:1px solid var(--gray-300);background-color:var(--gray-000)}.footer svg path:nth-child(-n+6){fill:var(--gray-800)}.footer svg path:nth-child(7){fill:var(--gray-800)}.footer svg path:nth-child(8),.footer svg path:nth-child(9){fill:var(--gray-400)}
-@charset "UTF-8";.footer_service{background:var(--gray-50)}.footer_service .footer_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:1120px;margin:0 auto;padding:56px 40px}@supports (padding:env(safe-area-inset-right)){.footer_service .footer_inner{padding:56px calc(40px + env(safe-area-inset-right)) calc(56px + env(safe-area-inset-bottom)) calc(40px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.footer_service .footer_inner{padding:56px calc(40px + constant(safe-area-inset-right)) calc(56px + constant(safe-area-inset-bottom)) calc(40px + constant(safe-area-inset-left))}}@media screen and (max-width:1023px){.footer_service .footer_inner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.footer_service .link{display:inline-block}.footer_service .box_info{min-width:180px}.footer_service .box_info .filter{display:block}.footer_service .logo{display:block;width:154px;margin-left:-9px}.footer_service .logo svg{width:100%;height:100%}.footer_service .logo svg path:nth-child(-n+6){fill:var(--gray-800)}.footer_service .logo svg path:nth-child(8),.footer_service .logo svg path:nth-child(9){fill:var(--yellow-0)}.footer_service .copyright{padding:22px 24px 0 0;font-size:1.4rem;line-height:1.58;font-weight:400;color:var(--gray-800)}.footer_service .copyright:only-child{padding:24px 0;text-align:center}.footer_service .box_site{display:-webkit-box;display:-ms-flexbox;display:flex;padding:8px 0}@media screen and (max-width:1023px){.footer_service .box_site{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.footer_service .site{min-width:160px}@media screen and (max-width:1023px){.footer_service .site{-webkit-box-flex:1;-ms-flex:1;flex:1}}.footer_service .site+.site{margin-left:32px}@media screen and (max-width:1023px){.footer_service .site+.site{margin:24px 0 0 0}}.footer_service .site .title{display:block;font-size:1.6rem;line-height:1.5;font-weight:500;color:var(--gray-800)}.footer_service .site_list{padding-top:24px}.footer_service .site_item{font-size:1.4rem;line-height:1.58;font-weight:400;color:var(--gray-800)}.footer_service .site_item+.site_item{margin-top:16px}.footer_service .filter{margin:12px 0 32px -2px}@media screen and (max-width:1023px){.footer_service .filter{padding:0}}.footer_service .filter_list{border-bottom:none}.footer_service .filter .btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;border:1px solid var(--gray-400)}.footer_service .filter .dropdown{left:-1px;right:auto;margin-top:-2px;width:auto;min-width:100%}.footer_service .filter .dropdown_text:only-child{padding-left:0}.darkmode .footer_service .logo svg path:nth-child(7){fill:var(--gray-100)}
-@charset "UTF-8";.grid_list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-16px}@media screen and (max-width:1023px){.grid_list{margin-left:0}}.grid_item{-ms-flex-preferred-size:calc(50% - 16px);flex-basis:calc(50% - 16px);margin-left:16px;margin-bottom:24px}@media screen and (max-width:1023px){.grid_item{-ms-flex-preferred-size:calc(50% - 8px);flex-basis:calc(50% - 8px)}}@media screen and (max-width:639px){.grid_item{-ms-flex-preferred-size:100%;flex-basis:100%;margin-left:0}}@media screen and (max-width:1023px){.grid_item:nth-child(odd){margin-left:0}}@media screen and (max-width:639px){.grid_item:last-child{margin-bottom:0}}.grid_item:only-child{margin-bottom:0}@media screen and (max-width:1023px){.grid_item:only-child{-ms-flex-preferred-size:100%;flex-basis:100%}}.grid_card{display:block;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.grid_card_info{padding:6px 16px 17px 20px;border-top:1px solid var(--gray-400)}.grid_card_info .title{display:block;color:var(--gray-800);font-size:1.6rem;line-height:1.5;font-weight:600;word-break:break-word}.grid_card_info .desc{min-height:33px;margin-top:8px;color:var(--gray-800);font-size:1.2rem;line-height:1.34;font-weight:400;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-break:break-all}@media screen and (max-width:639px){.grid_card_info .desc{display:block;min-height:auto;-webkit-line-clamp:initial}}.grid_thumbnail{overflow:hidden}.grid_thumbnail svg{display:block;width:100%;height:auto}.grid_thumbnail svg>path{stroke:none}.grid_list2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width:1023px){.grid_list2{display:block}}.grid_list2 .grid_item{-ms-flex-preferred-size:calc(50% - 14px);flex-basis:calc(50% - 14px);margin:24px 0 0 24px;border:1px solid var(--gray-400);border-radius:4px}@media screen and (max-width:1023px){.grid_list2 .grid_item{height:calc(50% - 14px);margin-left:0}}.grid_list2 .grid_item:nth-child(-n+2){margin-top:0}@media screen and (max-width:1023px){.grid_list2 .grid_item:nth-child(-n+2){margin-top:24px}}.grid_list2 .grid_item:nth-child(odd){margin-left:0}@media screen and (max-width:1023px){.grid_list2 .grid_item:first-child{margin-top:0}}.grid_list2 .grid_item.is_active{border-color:var(--blue-0)}.grid_list2 .grid_item.add_screen{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;background-color:var(--gray-50);border:1px dashed var(--gray-400)}@media screen and (min-width:1024px){.grid_list2 .grid_item.add_screen{margin-top:0;margin-left:24px}}.grid_list2 .grid_item.add_screen .guide{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);text-align:center}.grid_list2 .grid_item .btn_add{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;width:100%;height:100%;min-height:222px;border-radius:4px;color:var(--gray-800)}.grid_list2 .icon_plus{position:absolute;top:50%;left:50%;color:var(--gray-900)}.grid_list2 .btn_add_screen{position:absolute;top:0;left:0;width:100%;height:100%}
-@charset "UTF-8";.header{position:-webkit-sticky;position:sticky;top:0;height:64px;z-index:100}.header_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;max-width:1920px;height:64px;margin:0 auto;background-color:var(--gray-000)}@media screen and (max-width:1023px){.header_inner{max-width:none;height:100%;padding:0 24px 0 32px;border-bottom:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transform:none;transform:none}@supports (padding:env(safe-area-inset-right)){.header_inner{padding:0 calc(24px + env(safe-area-inset-right)) 0 calc(32px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_inner{padding:0 calc(24px + constant(safe-area-inset-right)) 0 calc(32px + constant(safe-area-inset-left))}}}@media screen and (max-width:639px){.header_inner{padding:0 8px 0 16px}@supports (padding:env(safe-area-inset-right)){.header_inner{padding:0 calc(8px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_inner{padding:0 calc(8px + constant(safe-area-inset-right)) 0 calc(16px + constant(safe-area-inset-left))}}}.header .util_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:16px}@media screen and (max-width:1023px){.header .util_box{padding-right:0}}.header .util_box .util_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}@media screen and (max-width:1023px){.header .util_box .util_list{display:none}}.header .util_box .util_item{position:relative;height:100%;margin-left:8px}.header .util_box .util_item:first-child{margin-left:0}.header .util_box .util_menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;padding:8px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.4rem;line-height:1.58;font-weight:300;color:var(--gray-800)}.header .util_box .util_menu .profile{overflow:hidden;width:26px;height:26px;border-radius:50%}.header .util_box .util_menu .profile .img_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:100%}.header .util_box .util_menu .profile .name{font-size:1.2rem;line-height:1.34;font-weight:600;color:var(--gray-900)}.header .util_box .util_menu .profile img{display:block;width:100%}.header .util_box .input_toggle_box{display:none}@media screen and (max-width:1023px){.header .util_box .input_toggle_box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:16px}}.header .util_box .btn_menu{display:none}@media screen and (max-width:1023px){.header .util_box .btn_menu{display:block;width:100%;padding:0 8px;height:32px;-webkit-box-sizing:border-box;box-sizing:border-box}}.header .util_box .btn_menu .icon{width:16px;height:16px;color:var(--gray-500)}.header .util_box .btn_menu .icon svg{display:block;width:100%;height:100%}.header .util_box .icon_close,.header .util_box .icon_menu{display:none}.header .util_box .icon_close.is_active,.header .util_box .icon_menu.is_active{display:block}.header .user_account{padding:8px 16px 16px}@media screen and (max-width:1023px){.header .user_account{margin-top:4px;padding:16px 24px;border-top:1px solid var(--gray-400)}}@media screen and (max-width:639px){.header .user_account{padding:16px 16px}}.header .user_account_text{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-900);word-break:break-all}@media screen and (max-width:1023px){.header .user_account_text{font-size:1.6rem;line-height:1.5;color:var(--gray-500)}}.header .user_account_mail{display:block;margin-top:2px;font-size:1rem;line-height:1.2;color:var(--gray-600);word-break:break-all}@media screen and (max-width:1023px){.header .user_account_mail{font-size:1.4rem;line-height:1.58;font-weight:300;color:var(--gray-500)}}.header .dropdown{position:absolute;top:100%;right:0;width:256px}.header .dropdown_menu{width:100%;padding-left:16px;padding-right:16px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:left}.header .dropdown_menu.is_active,.header .dropdown_menu:hover{background-color:var(--gray-100)}.header .dropdown_text{font-size:1.4rem;line-height:1.58}@media screen and (max-width:1023px){.header .util_list_mo{overflow-y:auto;position:fixed;top:64px;left:0;right:0;bottom:0;width:100%;margin-top:0}}@media screen and (max-width:1023px){.header .util_list_mo.dropdown{border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none}}.header .util_list_mo.dropdown .dropdown_menu{padding-left:32px;padding-right:32px}@media screen and (max-width:639px){.header .util_list_mo.dropdown .dropdown_menu{padding-left:16px;padding-right:16px}}.header .util_list_mo.dropdown .dropdown_menu.is_active,.header .util_list_mo.dropdown .dropdown_menu:hover{background-color:var(--gray-100)}.header .util_list_mo.dropdown .dropdown_menu.is_active+.modal{display:block}.header .util_list_mo.dropdown .dropdown_text{font-size:1.6rem;line-height:1.5;color:var(--gray-800)}.header .util_list_mo.dropdown .highlight{color:var(--red-dark)}.header .user_profile.is_active+.dropdown{display:block;margin-top:-8px}.header .terms_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:4px;padding:5px 0 3px;border-top:1px solid var(--gray-400)}.header .terms_item{position:relative}.header .terms_item::before{position:absolute;top:11px;left:0;width:2px;height:2px;border-radius:50%;background-color:var(--gray-400);content:""}.header .terms_item:first-child::before{display:none}.header .terms_menu{display:block;padding:5px 8px;font-size:1rem;line-height:1;color:var(--gray-400)}.header_bar{display:none}@media screen and (max-width:1023px){.header_bar{display:block;margin:0 -32px}@supports (padding:env(safe-area-inset-right)){.header_bar{margin:0 calc(-32px - env(safe-area-inset-right)) 0 calc(-32px - env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_bar{margin:0 calc(-32px - constant(safe-area-inset-right)) 0 calc(-32px - constant(safe-area-inset-left))}}}@media screen and (max-width:639px){.header_bar{margin:0 -16px}@supports (padding:env(safe-area-inset-right)){.header_bar{margin:0 calc(-16px - env(safe-area-inset-right)) 0 calc(-16px - env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_bar{margin:0 calc(-16px - constant(safe-area-inset-right)) 0 calc(-16px - constant(safe-area-inset-left))}}}.header_bar .header_inner{position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px}@media screen and (max-width:1023px){.breadcrumb{padding-left:0}}.breadcrumb .logo{padding:8px}@media screen and (max-width:1023px){.breadcrumb .logo{width:24px;height:24px;margin-right:8px;padding:0}}.breadcrumb .logo_menu{display:block}@media screen and (max-width:1023px){.breadcrumb .logo_menu{height:100%}}.breadcrumb .logo svg{display:block;width:100%;height:100%}.breadcrumb .dropdown{position:absolute;top:43px;left:8px;z-index:20;width:327px;padding:8px 0;border:1px solid var(--gray-400);border-radius:4px;background-color:var(--gray-000)}@media screen and (max-width:1023px){.breadcrumb .dropdown{top:100%;left:-17px;margin-top:-6px}}@media screen and (max-width:639px){.breadcrumb .dropdown{left:-4px}}.breadcrumb .dropdown_menu{padding:12px 16px;color:var(--gray-800)}.breadcrumb .dropdown_menu.is_active,.breadcrumb .dropdown_menu:hover{background-color:var(--gray-100)}.breadcrumb .dropdown_list{-webkit-overflow-scrolling:touch;overflow-y:overlay;max-height:180px}.breadcrumb .dropdown ::-webkit-scrollbar{width:10px;height:4px}.breadcrumb .dropdown ::-webkit-scrollbar-thumb{background:var(--gray-400);border-radius:10px;border:3px solid var(--gray-000)}.breadcrumb .dropdown ::-webkit-scrollbar-track{background:0 0}.breadcrumb_inner{position:relative}@media screen and (max-width:1023px){.breadcrumb_inner{display:none}}@media screen and (max-width:1023px){.breadcrumb_inner:last-child{display:block}}@media screen and (max-width:1023px){.breadcrumb_inner.team_list{height:100%}}@media screen and (max-width:1023px){.breadcrumb_inner.team_list .breadcrumb_item{height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0}}@media screen and (max-width:1023px){.breadcrumb_inner.team_list .breadcrumb_item::before{display:none}}.breadcrumb_item{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;margin-left:16px;padding:8px}@media screen and (max-width:1023px){.breadcrumb_item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;padding:16px 0}.breadcrumb_item::before{display:none}}.breadcrumb_item::before{position:absolute;top:8px;left:-8px;width:1px;height:16px;background-color:var(--gray-400);content:""}.breadcrumb_item.is_active+.dropdown{display:block}.breadcrumb_item .icon{display:none}@media screen and (max-width:1023px){.breadcrumb_item .icon{display:block;height:16px;color:var(--gray-500)}}.breadcrumb_thumb{overflow:hidden;position:relative;width:16px;height:16px;margin-right:8px;border-radius:4px}.breadcrumb_thumb.emoji{border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.breadcrumb_thumb.emoji img{position:absolute;top:50%;left:50%;width:12px;height:12px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.breadcrumb_thumb.icon_square,.breadcrumb_thumb.icon_star_full{width:12px;height:12px;margin-top:1px;padding:0 2px}.breadcrumb_thumb img,.breadcrumb_thumb svg{position:absolute;top:0;left:0;width:100%;height:100%}.breadcrumb_thumb svg path{fill:currentColor}.breadcrumb_text{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;font-size:1.2rem;line-height:1.34;font-weight:500;word-break:break-all;color:var(--gray-800)}@media screen and (max-width:1023px){.breadcrumb_text{margin-right:8px;font-size:1.4rem;line-height:1.58}}.darkmode .breadcrumb .logo svg [fill="#514C49"]{fill:var(--gray-100)}
-@charset "UTF-8";.header_service{position:-webkit-sticky;position:sticky;height:64px;top:0;z-index:100;background:var(--gray-000)}.header_service .header_inner{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:100%;padding:12px 8px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.header_service .header_inner{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;border-bottom:1px solid var(--gray-400);padding:0 24px 0 32px}@supports (padding:env(safe-area-inset-right)){.header_service .header_inner{padding:0 calc(24px + env(safe-area-inset-right)) 0 calc(32px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_service .header_inner{padding:0 calc(24px + constant(safe-area-inset-right)) 0 calc(32px + constant(safe-area-inset-left))}}}@media screen and (max-width:639px){.header_service .header_inner{padding:0 8px 0 16px}@supports (padding:env(safe-area-inset-right)){.header_service .header_inner{padding:0 calc(8px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_service .header_inner{padding:0 calc(8px + constant(safe-area-inset-right)) 0 calc(16px + constant(safe-area-inset-left))}}}.header_service .logo{padding:0 16px}@media screen and (max-width:1023px){.header_service .logo{margin-right:8px;width:24px;height:24px}}.header_service .logo a{display:block;width:100%;height:100%}.header_service .logo svg{vertical-align:top}.header_service .logo svg path:nth-child(n+5){fill:var(--gray-800)}.header_service .logo svg [stroke="#FEFDFB"]{-webkit-mask:none;mask:none;stroke:none}@media screen and (min-width:1024px){.header_service .logo svg:last-of-type{display:none}}@media screen and (max-width:1023px){.header_service .logo svg{width:100%;height:100%}.header_service .logo svg:first-of-type{display:none}}@media screen and (max-width:1023px){.header_service .logo{padding:0}}.header_service .nav{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:0 44px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.header_service .nav{display:none}}.header_service .gnb{display:-webkit-box;display:-ms-flexbox;display:flex}.header_service .gnb_item+.gnb_item{margin-left:16px}.header_service .gnb_item.is_active .link{color:var(--orange-dark)}.header_service .gnb_item .link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:32px;padding:4px 8px;border-radius:4px;font-size:1.6rem;line-height:1.5;font-weight:500;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--gray-900)}.header_service .gnb_item .link:hover{background:var(--gray-100)}.header_service .header_util{-webkit-box-flex:0;-ms-flex:none;flex:none}@media screen and (max-width:1023px){.header_service .header_util .btn{display:none}}.header_service .header_util .btn_menu{display:none;position:absolute;right:24px;top:50%;padding:8px;color:var(--gray-500);-webkit-transform:translateY(-50%);transform:translateY(-50%)}@media screen and (max-width:1023px){.header_service .header_util .btn_menu{display:block}}@media screen and (max-width:639px){.header_service .header_util .btn_menu{right:8px}}@media screen and (orientation:landscape){@supports (right:env(safe-area-inset-right)){.header_service .header_util .btn_menu{right:calc(24px + env(safe-area-inset-right))}}@supports (right:constant(safe-area-inset-right)){.header_service .header_util .btn_menu{right:calc(24px + constant(safe-area-inset-right))}}}.header_service .header_util .btn_menu .icon_close,.header_service .header_util .btn_menu .icon_menu{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:16px;height:16px}.header_service .header_util .btn_menu .icon_close svg,.header_service .header_util .btn_menu .icon_menu svg{width:100%}.header_service .header_util .btn_menu .icon_close.is_active,.header_service .header_util .btn_menu .icon_menu.is_active{display:-webkit-box;display:-ms-flexbox;display:flex}.header_service .header_util .btn_line{color:var(--gray-900)}.header_service .header_util .orange_0{-webkit-transition:none;transition:none}.header_service .header_util .orange_0:hover{background:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background:linear-gradient(180deg,#ff9754 0,#f96767 100%)}.header_service .menu_list_mo{overflow-y:auto;position:fixed;top:64px;left:0;right:0;bottom:0;width:100%;margin-top:0;padding:40px 0;border:none}@media screen and (orientation:landscape){@supports (left:env(safe-area-inset-right)){.header_service .menu_list_mo{left:calc(0px + env(safe-area-inset-left))}}@supports (left:constant(safe-area-inset-right)){.header_service .menu_list_mo{left:calc(0px + constant(safe-area-inset-left))}}}.header_service .menu_list_mo .dropdown_item .navigator_list{max-width:none}.header_service .menu_list_mo .dropdown_item .navigator>.navigator_list{padding-top:8px}.header_service .menu_list_mo .dropdown_item .navigator_group>.navigator_menu{padding-left:12px}.header_service .menu_list_mo .dropdown_item .navigator_group .navigator_list{padding:0}.header_service .menu_list_mo .dropdown_item .navigator_group .navigator_list .navigator_item{margin-top:0;padding-left:44px;padding-right:44px}.header_service .menu_list_mo .dropdown_item .navigator_menu{-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:9px 40px;font-size:1.4rem;line-height:1.58;font-weight:500}.header_service .menu_list_mo .dropdown_item .navigator_menu .icon{width:16px;height:16px}.header_service .menu_list_mo .dropdown_item .navigator_menu.is_active+.navigator_list{display:block}.header_service .menu_list_mo .dropdown_item .navigator_menu.is_active svg{-webkit-transform:rotate(0);transform:rotate(0)}.header_service .menu_list_mo .dropdown_item .navigator_menu+.navigator_list{display:none}.header_service .menu_list_mo .dropdown_item .navigator_menu+.navigator_list .navigator_group+.navigator_group{margin-top:0}.header_service .menu_list_mo .dropdown_item .navigator_item{padding-left:36px;padding-right:36px}.header_service .menu_list_mo .dropdown_item .navigator_item:hover{color:var(--orange-0)}.header_service .menu_list_mo .dropdown_item .navigator_item.is_active{border:none;background:var(--gray-000);color:var(--orange-0)}.header_service .menu_list_mo .dropdown_menu{padding:12px 36px}.header_service .menu_list_mo .dropdown_menu:hover{background:var(--gray-100)}.header_service .menu_list_mo .dropdown_menu+.navigator{display:none}.header_service .menu_list_mo .dropdown_menu.is_show+.navigator{display:block}.header_service .menu_list_mo .dropdown_menu.is_show .icon_toggle{-webkit-transform:rotate(0);transform:rotate(0)}.header_service .menu_list_mo .dropdown_menu.btn_docs{padding:12px}.header_service .menu_list_mo .dropdown_menu.btn_docs.is_show{background-color:transparent}.header_service .menu_list_mo .dropdown_menu.btn_docs.is_show.is_active{background-color:var(--orange-alpha-light)}.header_service .menu_list_mo .dropdown_menu .dropdown_text{-webkit-box-flex:0;-ms-flex:none;flex:none}.header_service .menu_list_mo .dropdown_menu .icon{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;margin-left:6px}.header_service .menu_list_mo .dropdown_menu .icon_toggle{margin-left:0;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.header_service .menu_list_mo .dropdown_menu .icon_toggle svg path{fill:var(--gray-900)}.header_service .menu_list_mo .dropdown_menu .icon+.dropdown_text{margin-left:7px}.header_service .menu_list_mo .dropdown_text{font-size:1.6rem;line-height:1.5;font-weight:500}.darkmode .header_service .logo svg [fill="#514C49"]{fill:var(--gray-100)}
-@charset "UTF-8";.history_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:639px){.history_header{-ms-flex-wrap:wrap;flex-wrap:wrap}}.history_header .title_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.history_header .btn_back{padding:0;border:none}.history_header .btn_back .icon{width:24px;height:24px;color:var(--gray-800)}.history_header .title{margin-left:16px;font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}.history_header .btn_toggle{padding:8px}.history_header .input_toggle_box{margin-right:16px}.history_title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;padding:0 8px}@media screen and (max-width:639px){.history_title{display:block}}.history_title .title{font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}@media screen and (max-width:639px){.history_title .title{display:block;margin-bottom:4px}}.history_title .date{padding:0 0 3px 16px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}@media screen and (max-width:639px){.history_title .date{display:block;padding-bottom:0;padding-left:0}}.history_slider{position:relative}.history_slider_info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:absolute;width:100%;bottom:32px;padding-bottom:16px}.history_slider_info .date{font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}.history_slider_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;overflow-x:auto;position:relative;z-index:10;height:95px;-webkit-box-sizing:border-box;box-sizing:border-box}.history_slider_inner .rc-slider{height:32px;padding:0}.history_slider_inner .rc-slider-rail{height:100%;opacity:0}.history_slider_inner .rc-slider-step{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;pointer-events:all}.history_slider_inner .rc-slider-dot{display:block;-webkit-box-flex:0;-ms-flex:none;flex:none;position:relative;left:0 !important;bottom:0;width:24px;height:32px;border-radius:4px;border:0;background:var(--gray-200);-webkit-transform:translate(0) !important;transform:translate(0) !important;-webkit-box-sizing:border-box;box-sizing:border-box}.history_slider_inner .rc-slider-dot:hover::after{display:block}.history_slider_inner .rc-slider-dot:last-of-type{width:128px}.history_slider_inner .rc-slider-dot:last-of-type::after{content:none}.history_slider_inner .rc-slider-dot+.rc-slider-dot{margin-left:8px}.history_slider_inner .rc-slider-dot.rc-slider-dot-active{background:var(--orange-alpha-0)}.history_slider_inner .rc-slider-dot.is_end,.history_slider_inner .rc-slider-dot.is_first{background:var(--orange-0)}.history_slider_inner .rc-slider-dot.is_end::before,.history_slider_inner .rc-slider-dot.is_first::before{display:block;position:absolute;top:50%;left:50%;width:2px;height:16px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);content:""}.history_slider_inner .rc-slider-dot.is_first.is_end::before{width:8px}.history_slider_inner .rc-slider-dot:nth-child(-n+3) .layer_history{left:0;-webkit-transform:translate(0);transform:translate(0)}.history_slider_inner .rc-slider-dot::after{display:none;position:absolute;left:50%;top:-10px;width:4px;height:4px;border-radius:50%;border:1px solid var(--gray-400);-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-box-sizing:border-box;box-sizing:border-box;content:""}.history_slider_inner .rc-slider-handle{opacity:0}.history_slider_inner .rc-slider-track{opacity:0}.history_slider .layer_history{display:block;position:absolute;top:0;width:216px;height:44px;padding:4px 8px;margin-left:8px;margin-bottom:16px;border:1px solid var(--gray-400);border-radius:4px;-webkit-transform:translateX(calc(-50% + 12px));transform:translateX(calc(-50% + 12px));-webkit-box-sizing:border-box;box-sizing:border-box;background:var(--gray-000)}.history_slider .layer_history.is_active{display:block}.history_slider .layer_history.type_first{margin-left:0;-webkit-transform:translateX(0);transform:translateX(0)}.history_slider .layer_history.type_second{margin-left:0;-webkit-transform:translateX(-24px);transform:translateX(-24px)}.history_slider .layer_history.type_third{margin-left:0;-webkit-transform:translateX(-56px);transform:translateX(-56px)}.history_slider .layer_history .name{font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-800)}.history_slider .layer_history .info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.history_slider .layer_history .text{font-size:1.2rem;line-height:1.34;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--gray-800)}.history_slider .layer_history .date{-webkit-box-flex:0;-ms-flex:none;flex:none;padding-bottom:3px;font-size:.8rem;line-height:1;font-weight:400;color:var(--gray-600)}.history_changes{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:56px;border:1px solid var(--gray-400);border-radius:4px;background:var(--gray-50);-webkit-box-sizing:border-box;box-sizing:border-box}.history_changes.is_tree .btn_history.is_edited{border:1px solid var(--yellow-dark);background:var(--yellow-alpha-light);color:var(--yellow-dark)}.history_changes.is_tree .btn_history.is_removed{border:1px solid var(--red-dark);background:var(--red-alpha-light);color:var(--red-dark)}.history_changes.is_tree .btn_history.is_created{border:1px solid var(--green-dark);background:var(--green-alpha-light);color:var(--green-dark)}.history_changes .title{-webkit-box-flex:0;-ms-flex:none;flex:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;padding:0 16px;border-right:1px solid var(--gray-400);font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-800)}.history_changes .history_box{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-x:auto}.history_changes .history_list{height:100%;padding:12px 16px;font-size:0;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.history_changes .btn_history{display:inline-block;height:32px;padding:8px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.2rem;line-height:1.34;font-weight:600}.history_changes .btn_history:last-of-type{margin-right:16px}.history_changes .btn_history.is_edited{background:var(--yellow-alpha-0)}.history_changes .btn_history.is_removed{background:var(--red-alpha-0)}.history_changes .btn_history.is_created{background:var(--green-alpha-0)}.history_changes .btn_history+.btn_history{margin-left:8px}.history_codeblock_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;height:48px;padding:13px;border:1px solid var(--gray-400);border-radius:4px 4px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}
-@charset "UTF-8";.icon{display:inline-block;vertical-align:top}.icon svg{display:block}.icon svg path{fill:currentColor}.icon_logo svg{display:block}.icon_close_s{width:6px;height:6px}.icon_close_s svg{width:100%;height:100%}.icon_arrow_left{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icon_arrow_right{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.icon_arrow_up{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
-@charset "UTF-8";.image_area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:24px}.image_area .image_group{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.image_area .image_group+.image_group{padding-left:16px}.image_area .image_desc{color:var(--gray-800);font-size:1.2rem;line-height:1.34;font-weight:400}.image_area .image_box img{vertical-align:top;width:100%;height:auto}
-@charset "UTF-8";.setting_image{font-size:0;line-height:normal}.setting_image .link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:0}.setting_image .emoji{padding:6px 6px 7px 7px;border:1px solid var(--gray-400);border-radius:16px}.setting_image .text{margin-left:24px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}
-@charset "UTF-8";.input{display:inline-block;width:100%;padding:13px 15px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--gray-400);border-radius:4px;background-color:transparent;font-size:1.4rem;line-height:1.58;color:var(--gray-900);vertical-align:top}.input[type=search]{outline-offset:initial;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input::-webkit-input-placeholder{color:var(--gray-500)}.input::-moz-placeholder{color:var(--gray-500)}.input:-ms-input-placeholder{color:var(--gray-500)}.input::-ms-input-placeholder{color:var(--gray-500)}.input::placeholder{color:var(--gray-500)}.input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset;box-shadow:0 0 0 1000px #fff inset;-webkit-text-fill-color:var(--gray-900)}.input:focus,.input:focus-visible{border-color:var(--blue-0);caret-color:var(--blue-0);outline:0}.input_group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:639px){.input_group{display:block}}.input_group .input_guide_desc{font-weight:500}.input_group.is_success .input_guide{color:var(--green-dark)}.input_group.is_success .input_guide .icon path:first-child{display:none}.input_group.is_success .input_guide_desc{color:var(--green-dark)}.input_group.is_error .input_guide{color:var(--red-dark)}.input_group.is_error .input_guide .icon path:last-child{display:none}.input_group.is_error .input_guide_desc{color:var(--red-dark)}.input_box{display:inline-block;vertical-align:top;color:var(--gray-800)}.input_box .label{display:block;position:relative;font-size:1.2rem;line-height:1.34;color:var(--gray-800);word-break:break-all}.input_box .label~.input{margin-top:8px}.input_box .label_in{position:absolute;top:0;left:16px;right:40px;font-size:1.4rem;line-height:1.58;color:var(--gray-500);-webkit-transform:translateY(14px);transform:translateY(14px);-webkit-transition-duration:.3s;transition-duration:.3s}.input_box.is_disabled .label{color:var(--gray-300)}.input_box.is_disabled .label_in_box{border-color:var(--gray-300)}.input_box.is_disabled .input{border-color:var(--gray-300);color:var(--gray-300)}.input_box.is_disabled .input::-webkit-input-placeholder{color:var(--gray-300)}.input_box.is_disabled .input::-moz-placeholder{color:var(--gray-300)}.input_box.is_disabled .input:-ms-input-placeholder{color:var(--gray-300)}.input_box.is_disabled .input::-ms-input-placeholder{color:var(--gray-300)}.input_box.is_disabled .input::placeholder{color:var(--gray-300)}.input_box.is_disabled .icon{color:var(--gray-300)}.input_box.is_disabled .input_guide{color:var(--gray-300)}.input_box.is_error .input{border-color:var(--red-dark);caret-color:var(--red-dark)}.input_box.is_error .input_guide{color:var(--red-dark)}.input_box.is_error .input_guide .icon path:last-child{display:none}.input_box.is_success .input{border-color:var(--green-dark);caret-color:var(--green-dark)}.input_box.is_success .input_guide{color:var(--green-dark)}.input_box.is_success .input_guide .icon path:first-child{display:none}.input_guide{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-top:8px;color:var(--gray-800)}.input_guide .icon{width:16px;height:16px;margin-right:8px}.input_guide_desc{font-size:1.2rem;line-height:1.34;font-weight:300;color:currentColor;word-break:break-word}.input_inner_box{display:block;position:relative}.input_inner_box .icon{position:absolute;bottom:18px;right:16px}.input_inner_box .icon svg{display:block}.input_inner_box .icon svg path{fill:currentColor}.input_inner_box .icon~input{padding-right:40px}.input_inner_box .label_in_input{padding:19px 15px 7px}.input_inner_box .label_in_input::-webkit-input-placeholder{color:transparent}.input_inner_box .label_in_input::-moz-placeholder{color:transparent}.input_inner_box .label_in_input:-ms-input-placeholder{color:transparent}.input_inner_box .label_in_input::-ms-input-placeholder{color:transparent}.input_inner_box .label_in_input::placeholder{color:transparent}.input_inner_box .label_in_input:not(:-moz-placeholder-shown)+.label_in{font-size:8px;line-height:1.25em;color:var(--gray-800);transform:translateY(8px)}.input_inner_box .label_in_input:not(:-ms-input-placeholder)+.label_in{font-size:8px;line-height:1.25em;color:var(--gray-800);transform:translateY(8px)}.input_inner_box .label_in_input:not(:placeholder-shown)+.label_in{font-size:8px;line-height:1.25em;color:var(--gray-800);-webkit-transform:translateY(8px);transform:translateY(8px)}.input_inner_box .label_in_input:disabled{padding:13px 15px}.input_inner_box .label_in_input:disabled::-webkit-input-placeholder{color:transparent}.input_inner_box .label_in_input:disabled::-moz-placeholder{color:transparent}.input_inner_box .label_in_input:disabled:-ms-input-placeholder{color:transparent}.input_inner_box .label_in_input:disabled::-ms-input-placeholder{color:transparent}.input_inner_box .label_in_input:disabled::placeholder{color:transparent}.input_inner_box:focus-within .label_in{font-size:8px;line-height:1.25em;color:var(--gray-800);-webkit-transform:translateY(8px);transform:translateY(8px)}.input_field_box.is_error .input{border-color:var(--red-0);color:var(--red-0)}.input_field_box.is_error .input_guide{color:var(--red-dark)}.input_field_box.is_error .input_guide .icon path:last-child{display:none}.input_field_box.is_error .input_guide_desc{color:var(--red-dark)}.input_field_box.is_success .input{border-color:var(--green-0)}.input_field_box.is_success .input_guide{color:var(--green-0)}.input_field_box.is_success .input_guide .icon path:first-child{display:none}.input_field_box.is_success .input_guide_desc{color:var(--green-0)}.input_field_box.is_disabled .label{color:var(--gray-300)}.input_field_box.is_disabled .input{border-color:var(--gray-300);color:var(--gray-300)}.input_field_box.is_disabled .input::-webkit-input-placeholder{color:var(--gray-300)}.input_field_box.is_disabled .input::-moz-placeholder{color:var(--gray-300)}.input_field_box.is_disabled .input:-ms-input-placeholder{color:var(--gray-300)}.input_field_box.is_disabled .input::-ms-input-placeholder{color:var(--gray-300)}.input_field_box.is_disabled .input::placeholder{color:var(--gray-300)}.input_field_box.is_disabled .input_guide{color:var(--gray-300)}.input_field_box .input_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}@media screen and (max-width:639px){.input_field_box .input_inner{display:block}}@media screen and (max-width:1023px){.input_field_box .input_inner .btn_box{margin-left:12px}}@media screen and (max-width:639px){.input_field_box .input_inner .btn_box{margin-top:10px;margin-left:0}}.input_field_box .label{display:block;position:relative;padding-left:8px;font-size:14px;line-height:1.58em;font-weight:500;color:var(--gray-800);word-break:break-all}.input_field_box .label~.input{margin-top:8px}.input_field_box .label_in{position:absolute;top:0;left:16px;right:40px;font-size:1.4rem;line-height:1.58;color:var(--gray-500);-webkit-transform:translateY(14px);transform:translateY(14px);-webkit-transition-duration:.3s;transition-duration:.3s}.input_field_box .label~.input_inner{margin-top:16px}.input_field_box .input{width:511px;margin-right:12px;padding:0 0 7px 8px;border:none;border-radius:0;border-bottom:1px solid var(--gray-400);font-size:1.6rem;line-height:1.5;font-weight:600;color:var(--gray-800)}@media screen and (max-width:1023px){.input_field_box .input{width:100%;margin-right:0;padding-right:8px}}.input_field_box .input:focus{caret-color:initial}.input_field_box_large.is_success .input{color:var(--green-0)}.input_field_box_large .input{display:block;width:100%;margin-right:0;padding:0;border-bottom:none;font-size:2.4rem;line-height:1.34;font-weight:600;color:var(--gray-800)}.input_toggle_box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input_toggle_box+.input_guide{margin-top:0}.input_toggle_box+.input_guide .icon svg{width:100%;height:100%}.input_toggle_box.is_reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.input_toggle_box input:checked~.toggle_ui{border-color:var(--blue-0)}.input_toggle_box input:checked~.toggle_ui .track{left:0}.input_toggle_box input:checked~.toggle_ui .ball{-webkit-transform:translateX(16px);transform:translateX(16px);background-color:var(--blue-0)}.input_toggle_box input:checked~.toggle_ui .ball svg{width:12px;height:12px;-webkit-transform:scale(1);transform:scale(1);color:var(--gray-000)}.input_toggle_box input:checked~.label{color:var(--blue-dark)}.input_toggle_box input:disabled~.toggle_ui{border-color:var(--gray-300);background-color:var(--gray-100);cursor:default}.input_toggle_box input:disabled~.toggle_ui .track{display:none}.input_toggle_box input:disabled~.toggle_ui .ball{background-color:var(--gray-300)}.input_toggle_box input:disabled~.toggle_ui .ball svg{color:var(--gray-300)}.input_toggle_box input:disabled~.label{color:var(--gray-300);cursor:default}.input_toggle_box input:disabled:checked~.toggle_ui .ball svg{color:var(--gray-100)}.input_toggle_box .toggle_ui{display:inline-block;overflow:hidden;position:relative;width:38px;height:22px;border:1px solid var(--gray-600);border-radius:20px;vertical-align:top;-webkit-transition:border-color .2s .1s;transition:border-color .2s .1s;cursor:pointer}.input_toggle_box .track{position:absolute;top:0;left:-38px;width:76px;height:22px;border-radius:11px;background:-webkit-gradient(linear,left top,right top,from(var(--blue-alpha-light)),color-stop(45%,var(--blue-alpha-light)),color-stop(55%,var(--gray-300)),to(var(--gray-300)));background:linear-gradient(90deg,var(--blue-alpha-light) 0,var(--blue-alpha-light) 45%,var(--gray-300) 55%,var(--gray-300) 100%);-webkit-transition:left .2s .2s;transition:left .2s .2s}.input_toggle_box .ball{display:block;position:relative;width:16px;height:16px;margin:3px 0 0 3px;border-radius:50%;background-color:var(--gray-600);-webkit-transition:background-color .2s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s;transition:background-color .2s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s;transition:transform cubic-bezier(.98,.02,.3,1.52) .3s,background-color .2s;transition:transform cubic-bezier(.98,.02,.3,1.52) .3s,background-color .2s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s}.input_toggle_box .ball svg{display:block;width:12px;height:12px;padding:2px;color:var(--gray-600);-webkit-transform:scale(.5);transform:scale(.5);-webkit-transition:color .3s .2s,-webkit-transform .3s .1s;transition:color .3s .2s,-webkit-transform .3s .1s;transition:transform .3s .1s,color .3s .2s;transition:transform .3s .1s,color .3s .2s,-webkit-transform .3s .1s}.input_toggle_box .ball svg path{fill:currentColor}.input_toggle_box .label{display:block;position:relative;padding:0 16px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);-webkit-transition:color .2s;transition:color .2s;cursor:pointer;white-space:nowrap}.input_radio_box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input_radio_box input:checked~.radio_ui{border-color:var(--blue-0)}.input_radio_box input:checked~.radio_ui .ball{-webkit-transform:scale(1);transform:scale(1)}.input_radio_box input:checked~.label{color:var(--blue-0)}.input_radio_box input:disabled~.radio_ui{border-color:var(--gray-300);cursor:default}.input_radio_box input:disabled~.radio_ui .ball{background-color:var(--gray-300)}.input_radio_box input:disabled~.label{color:var(--gray-300);cursor:default}.input_radio_box .radio_ui{display:block;width:14px;height:14px;border:1px solid var(--gray-800);border-radius:50%;-webkit-transition:border .3s;transition:border .3s;cursor:pointer}.input_radio_box .ball{display:block;width:8px;height:8px;margin:3px 0 0 3px;border-radius:50%;background-color:var(--blue-0);-webkit-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s;transition:-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s;transition:transform cubic-bezier(.98,.02,.3,1.52) .3s;transition:transform cubic-bezier(.98,.02,.3,1.52) .3s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .3s}.input_radio_box .label{padding-left:8px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);-webkit-transition:color .3s;transition:color .3s;cursor:pointer}.input_check_box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input_check_box.is_large .checkbox_ui{width:18px;height:18px}.input_check_box.is_large .checkbox_ui .check svg{padding:3px}.input_check_box.is_large .label{padding-left:16px}.input_check_box input:checked~.checkbox_ui{border-color:var(--blue-0)}.input_check_box input:checked~.checkbox_ui .check{-webkit-transform:scale(1);transform:scale(1);opacity:1}.input_check_box input:checked~.label{color:var(--blue-0)}.input_check_box input:disabled~.checkbox_ui{border-color:var(--gray-300);cursor:default}.input_check_box input:disabled~.checkbox_ui .check{background-color:var(--gray-300)}.input_check_box input:disabled~.label{color:var(--gray-300);cursor:default}.input_check_box .checkbox_ui{display:block;width:14px;height:14px;border:1px solid var(--gray-800);border-radius:4px;-webkit-transition:border .3s;transition:border .3s;cursor:pointer}.input_check_box .checkbox_ui .check{display:block;width:100%;height:100%;background-color:var(--blue-0);-webkit-transform:scale(.7);transform:scale(.7);opacity:0;-webkit-transition:opacity cubic-bezier(.98,.02,.3,1.52) .2s .1s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .2s .1s;transition:opacity cubic-bezier(.98,.02,.3,1.52) .2s .1s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .2s .1s;transition:transform cubic-bezier(.98,.02,.3,1.52) .2s .1s,opacity cubic-bezier(.98,.02,.3,1.52) .2s .1s;transition:transform cubic-bezier(.98,.02,.3,1.52) .2s .1s,opacity cubic-bezier(.98,.02,.3,1.52) .2s .1s,-webkit-transform cubic-bezier(.98,.02,.3,1.52) .2s .1s}.input_check_box .checkbox_ui .check svg{display:block;width:12px;height:12px;padding:1px;color:var(--gray-000)}.input_check_box .checkbox_ui .check svg path{fill:currentColor}.input_check_box .label{display:block;position:relative;padding-left:8px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);cursor:pointer;-webkit-transition:color .3s;transition:color .3s;word-break:break-all}.darkmode .input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px var(--gray-000) inset;box-shadow:0 0 0 1000px var(--gray-000) inset}
-@charset "UTF-8";.document_table{padding:0 16px}@media screen and (max-width:1023px){.document_table{padding:0 8px}}.document_table .thead{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%;font-size:1.2rem;line-height:1.34;font-weight:600;color:var(--gray-600)}@media screen and (max-width:1023px){.document_table .thead{padding-right:0;padding-left:0;font-size:.8rem;line-height:1}}.document_table .tbody_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}.document_table .tbody_item{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;width:100%;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);word-break:break-all;border-radius:4px}@media screen and (max-width:1023px){.document_table .tbody_item:not(:first-of-type){margin-top:24px}}.document_table .tbody_item:hover{background-color:var(--gray-100)}.document_table .tbody_item .link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-wrap:wrap;flex-wrap:wrap}.document_table .tbody_item .link.is_active{background-color:var(--gray-100)}@media screen and (max-width:1023px){.document_table .tbody_item .link{display:grid;grid-template-areas:"item1 item1 item1 item1 item3" "item1 item1 item1 item1 item4" "item2 item2 item2 item2 item4"}}.document_table .td,.document_table .th{padding:16px;-webkit-box-sizing:border-box;box-sizing:border-box}.document_table .td+.td,.document_table .td+.th,.document_table .th+.td,.document_table .th+.th{margin-left:24px;text-align:right}@media screen and (max-width:1023px){.document_table .td+.td,.document_table .td+.th,.document_table .th+.td,.document_table .th+.th{margin-left:0}}.document_table .td:first-child,.document_table .th:first-child{-webkit-box-flex:1;-ms-flex:1;flex:1}@media screen and (max-width:1023px){.document_table .td:first-child,.document_table .th:first-child{padding-left:0}}@media screen and (max-width:1023px){.document_table .td.connections,.document_table .th.connections{padding-right:0}}@media screen and (max-width:1023px){.document_table .td.select,.document_table .th.select{width:34px;margin-left:16px;text-align:right}}@media screen and (max-width:1023px){.document_table .th:not(.select){width:50%}}@media screen and (max-width:1023px){.document_table .th.size,.document_table .th.updated{display:none}}.document_table .th.select{padding:16px 0}@media screen and (max-width:1023px){.document_table .td:not(.select){width:auto;padding:0}}@media screen and (max-width:1023px){.document_table .td.id{padding-right:16px;grid-area:item1}}@media screen and (max-width:1023px){.document_table .td.updated{grid-area:item2;text-align:left}}@media screen and (max-width:1023px){.document_table .td.connections{grid-area:item3}}@media screen and (max-width:1023px){.document_table .td.size{grid-area:item4}}@media screen and (max-width:1023px){.document_table .td.size,.document_table .td.updated{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;padding-top:3px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}}@media screen and (max-width:1023px){.document_table .td.select{padding-top:10px}}.document_table .size,.document_table .updated{padding-left:12px;width:120px}.document_table .connections{width:280px}.document_table .select{text-align:center;width:72px;margin-left:24px;padding:16px 0}@media screen and (max-width:1023px){.document_table .select{padding:0}}.document_table .select .count{display:none}.document_table .select .btn_all_check{display:block;width:100%;font-size:1.2rem;line-height:1.34;font-weight:600;color:var(--blue-dark)}@media screen and (max-width:1023px){.document_table .select .btn_all_check{font-size:.8rem;line-height:1;font-weight:500}}.is_edit .td:not(.id,.updated,.select),.is_edit .th:not(.id,.updated,.select){display:none}.box_skeleton{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:0}.box_skeleton .box_flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:54px}@media screen and (max-width:1023px){.box_skeleton .box_flex{-ms-flex-wrap:wrap;flex-wrap:wrap;height:41px}.box_skeleton .box_flex+.box_flex{margin-top:24px}}.box_skeleton .skeleton{padding:16px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.box_skeleton .skeleton{width:50%;padding:5px 0}}.box_skeleton .skeleton::before{display:inline-block;width:120px;height:12px;border-radius:16px;background:var(--gray-300);vertical-align:top;content:""}@media screen and (max-width:1023px){.box_skeleton .skeleton.is_small{padding:4px 0}.box_skeleton .skeleton.is_small::before{height:8px}}.box_skeleton .skeleton.is_small::before{width:80px}.box_skeleton .skeleton+.skeleton{margin-left:24px}@media screen and (max-width:1023px){.box_skeleton .skeleton+.skeleton{margin:0}}.box_skeleton .skeleton:last-of-type,.box_skeleton .skeleton:nth-of-type(2){width:120px}@media screen and (max-width:1023px){.box_skeleton .skeleton:last-of-type,.box_skeleton .skeleton:nth-of-type(2){width:50%}}.box_skeleton .skeleton:first-of-type{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:left}@media screen and (max-width:1023px){.box_skeleton .skeleton:first-of-type{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-flex:0;-ms-flex:none;flex:none}}@media screen and (max-width:1023px){.box_skeleton .skeleton:nth-of-type(2){text-align:left;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.box_skeleton .skeleton:nth-of-type(2)::before{width:66px}}.box_skeleton .skeleton:nth-of-type(3){width:280px}@media screen and (max-width:1023px){.box_skeleton .skeleton:nth-of-type(3){width:50%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.box_skeleton .skeleton:nth-of-type(3)::before{width:50px}}@media screen and (max-width:1023px){.box_skeleton .skeleton:last-of-type{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.box_skeleton .skeleton:last-of-type::before{width:40px}}.box_skeleton::before{position:absolute;top:0;right:0;left:0;bottom:0;background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(254,253,251,0)),color-stop(20%,rgba(254,253,251,0)),color-stop(37%,rgba(254,253,251,.6)),color-stop(47%,rgba(254,253,251,.8)),color-stop(50%,rgba(254,253,251,.8)),color-stop(53%,rgba(254,253,251,.8)),color-stop(65%,rgba(254,253,251,.6)),color-stop(80%,rgba(254,253,251,0)),to(rgba(254,253,251,0)));background-image:linear-gradient(0deg,rgba(254,253,251,0) 0,rgba(254,253,251,0) 20%,rgba(254,253,251,.6) 37%,rgba(254,253,251,.8) 47%,rgba(254,253,251,.8) 50%,rgba(254,253,251,.8) 53%,rgba(254,253,251,.6) 65%,rgba(254,253,251,0) 80%,rgba(254,253,251,0) 100%);background-size:100% 120%;-webkit-animation:skeleton 4s linear infinite;animation:skeleton 4s linear infinite;content:""}.darkmode .box_skeleton::before{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(51,46,43,0)),color-stop(20%,rgba(51,46,43,0)),color-stop(37%,rgba(51,46,43,.6)),color-stop(47%,rgba(51,46,43,.8)),color-stop(50%,rgba(51,46,43,.8)),color-stop(53%,rgba(51,46,43,.8)),color-stop(65%,rgba(51,46,43,.6)),color-stop(80%,rgba(51,46,43,0)),to(rgba(51,46,43,0)));background-image:linear-gradient(0deg,rgba(51,46,43,0) 0,rgba(51,46,43,0) 20%,rgba(51,46,43,.6) 37%,rgba(51,46,43,.8) 47%,rgba(51,46,43,.8) 50%,rgba(51,46,43,.8) 53%,rgba(51,46,43,.6) 65%,rgba(51,46,43,0) 80%,rgba(51,46,43,0) 100%)}@-webkit-keyframes skeleton{0%{background-position:0 300%}to{background-position:0 -300%}}@keyframes skeleton{0%{background-position:0 300%}to{background-position:0 -300%}}
-@charset "UTF-8";@media screen and (max-width:1023px){.member_list{padding:0 32px}}@media screen and (max-width:639px){.member_list{padding:0 16px}}.member_item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 10px 10px 16px}.member_item+.member_item{margin-top:6px}.member_item .member_info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:639px){.member_item .member_info{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.member_item .member_info .align_box{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:100%;flex-basis:100%}@media screen and (max-width:639px){.member_item .member_info .align_box{display:block}}.member_item .profile{-webkit-box-flex:0;-ms-flex:none;flex:none;width:26px;height:26px;border-radius:50%}.member_item .profile img{width:100%;vertical-align:top}.member_item .profile .icon{display:block;width:100%;height:100%;color:var(--gray-900)}.member_item .profile svg{display:block;width:100%;height:100%}.member_item .info_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;margin-left:16px}@media screen and (max-width:639px){.member_item .info_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.member_item .details{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:48%;padding-right:16px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:639px){.member_item .details{display:block;width:100%}}@media screen and (max-width:639px){.member_item .details+.authority,.member_item .details+.dropdown_box{padding-top:8px}}.member_item .details_desc{padding-right:16px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-900);word-break:break-all}.member_item .details_sub_desc{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:1.2rem;line-height:1.34;font-weight:300;color:var(--gray-800);word-break:break-all;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.member_item .authority{min-width:90px;margin-right:8px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-900);text-align:right;word-break:break-all}@media screen and (max-width:639px){.member_item .authority{min-width:0;text-align:left}}.member_item .dropdown{display:block;position:absolute;top:30px;z-index:20;width:200px}.member_item .dropdown_box{position:relative}@media screen and (max-width:639px){.member_item .dropdown_box{padding-left:0}}.member_item .dropdown_box .dropdown{right:0;width:100px}@media screen and (max-width:639px){.member_item .dropdown_box .dropdown{left:0}}.member_item .dropdown_title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;min-width:90px;padding:0}@media screen and (max-width:1023px){.member_item .dropdown_title{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}@media screen and (max-width:639px){.member_item .dropdown_title{padding:0}}.member_item .dropdown_title .icon{display:block;color:var(--gray-800)}.member_item .dropdown_title .icon svg{display:block;width:100%;height:100%}.member_item .dropdown_title.is_active .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.member_item .dropdown_list{overflow-y:auto;max-height:200px}.member_item .dropdown_list ::-webkit-scrollbar{width:3px;height:3px}.member_item .dropdown_list ::-webkit-scrollbar-thumb{background:var(--orange-alpha-dark);border-radius:2px}.member_item .dropdown_list ::-webkit-scrollbar-track{background:0 0}.member_item .guide_area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 8px}@media screen and (max-width:1023px){.member_item .guide_area{padding:0}}@media screen and (max-width:639px){.member_item .guide_area{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.member_item .guide_text{display:block;max-width:300px;font-size:1.2rem;line-height:1.34;font-weight:300;word-break:break-all}.member_item .add_view_area{-webkit-box-flex:0;-ms-flex:none;flex:none;margin-left:auto;position:relative}@media screen and (max-width:639px){.member_item .add_view_area{margin-bottom:auto}}.member_item .add_view_area .btn_add_view{display:block;margin:0;padding:5px;color:var(--gray-800);font-size:0;line-height:normal}.member_item .add_view_area .btn_add_view.is_active+.dropdown{display:block}.member_item .add_view_area .dropdown{left:-179px}.member_item .add_view_area .dropdown_menu{padding-top:12px;padding-bottom:12px}
-@charset "UTF-8";.project_table{padding:0 16px}@media screen and (max-width:1023px){.project_table{display:none}}.project_table .thead{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%;font-size:1.2rem;line-height:1.34;font-weight:600;color:var(--gray-600)}@media screen and (max-width:1023px){.project_table .thead{padding-right:0;padding-left:0;font-size:.8rem;line-height:1}}.project_table .tbody_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;margin-top:24px}.project_table .tbody_item{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);word-break:break-all}@media screen and (max-width:1023px){.project_table .tbody_item:not(:first-of-type){margin-top:24px}}.project_table .tbody_item:hover{background-color:var(--gray-100)}.project_table .tbody_item .link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width:1023px){.project_table .tbody_item .link{display:grid;grid-template-areas:"item1 item1 item1 item1 item3" "item1 item1 item1 item1 item4" "item2 item2 item2 item2 item4"}}.project_table .td,.project_table .th{padding:16px;-webkit-box-sizing:border-box;box-sizing:border-box}.project_table .td+.td,.project_table .td+.th,.project_table .th+.td,.project_table .th+.th{margin-left:24px;text-align:right}@media screen and (max-width:1023px){.project_table .td+.td,.project_table .td+.th,.project_table .th+.td,.project_table .th+.th{margin-left:0}}.project_table .td:first-child,.project_table .th:first-child{-webkit-box-flex:1;-ms-flex:1;flex:1}@media screen and (max-width:1023px){.project_table .td:first-child,.project_table .th:first-child{padding-left:0}}@media screen and (max-width:1023px){.project_table .td.storage,.project_table .th.storage{padding-right:0}}@media screen and (max-width:1023px){.project_table .th:not(.select){width:50%}}@media screen and (max-width:1023px){.project_table .th.connections,.project_table .th.load{display:none}}@media screen and (max-width:1023px){.project_table .td:not(.select){width:auto;padding:0}}@media screen and (max-width:1023px){.project_table .td.title{padding-right:16px;grid-area:item1}}@media screen and (max-width:1023px){.project_table .td.connections{grid-area:item2;text-align:left}}@media screen and (max-width:1023px){.project_table .td.storage{grid-area:item3}}@media screen and (max-width:1023px){.project_table .td.load{grid-area:item4}}@media screen and (max-width:1023px){.project_table .td.connections,.project_table .td.load{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;padding-top:3px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}}.project_table .load,.project_table .storage{padding-left:12px;width:160px}.project_table .connections{width:120px}
-@charset "UTF-8";.modal{position:fixed;top:50%;left:50%;z-index:300;width:454px;padding:40px;border:1px solid var(--gray-400);border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:var(--gray-000);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media screen and (max-width:1023px){.modal{width:calc(100% - 64px)}}@media screen and (max-width:639px){.modal{top:initial;bottom:0;left:0;right:0;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;-webkit-transform:none;transform:none;-webkit-box-shadow:0 -8px 16px -8px rgba(0,0,0,.2);box-shadow:0 -8px 16px -8px rgba(0,0,0,.2)}}.modal_l{width:687px}@media screen and (max-width:1023px){.modal_l{width:calc(100% - 64px)}}@media screen and (max-width:639px){.modal_l{top:initial;bottom:0;left:0;right:0;width:100%;-webkit-transform:none;transform:none;-webkit-box-shadow:0 -8px 16px -8px rgba(0,0,0,.2);box-shadow:0 -8px 16px -8px rgba(0,0,0,.2)}}.modal_top{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-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.modal_top .icon{display:block;width:48px;height:48px}.modal_top .icon svg{display:block;width:100%;height:100%}.modal_top+.modal_bottom{padding-top:64px}.modal_content{margin-top:24px}.modal_desc,.modal_title{display:block;color:var(--gray-900);word-break:break-all}.modal_title+.modal_desc{margin-top:16px}.modal_link{padding-left:16px}.modal_bottom{margin-top:64px}@media screen and (max-width:639px){.modal_bottom{margin-top:48px}}.modal_bottom .btn{margin:0 12px;padding-top:12px;padding-bottom:10px;font-size:16px;line-height:24px}.modal_bottom .btn:first-child{margin-left:0}.modal_bottom .btn:last-child{margin-right:0}.modal_in_header{position:fixed;top:72px;left:auto;right:24px;padding-bottom:15px;-webkit-transform:none;transform:none}@media screen and (max-width:1023px){.modal_in_header{overflow-y:auto;top:0;left:0;right:0;bottom:0;width:auto;padding:0 32px 32px;border:none;border-radius:0}@supports (padding:env(safe-area-inset-right)){.modal_in_header{padding:0 calc(32px + env(safe-area-inset-right)) calc(32px + env(safe-area-inset-bottom)) calc(32px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.modal_in_header{padding:0 calc(32px + constant(safe-area-inset-right)) calc(32px + constant(safe-area-inset-bottom)) calc(32px + constant(safe-area-inset-left))}}}@media screen and (max-width:639px){.modal_in_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;bottom:0;padding:0 16px 32px}@supports (padding:env(safe-area-inset-right)){.modal_in_header{padding:0 calc(16px + env(safe-area-inset-right)) calc(32px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.modal_in_header{padding:0 calc(16px + constant(safe-area-inset-right)) calc(32px + constant(safe-area-inset-bottom)) calc(16px + constant(safe-area-inset-left))}}}.modal_in_header .header .btn{position:static}.modal_in_header .header .btn_back{margin-left:-16px;color:var(--gray-800)}.modal_in_header .header .btn_close{padding:8px;color:var(--gray-500)}.modal_in_header .modal_content{margin-top:0}@media screen and (max-width:1023px){.modal_in_header .modal_content{margin-top:40px}}.modal_in_header .modal_bottom{margin-top:32px}@media screen and (max-width:639px){.modal_in_header .modal_bottom{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:639px){.modal_in_header .modal_bottom .btn_box{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}}.modal_in_header .modal_title{font-size:3rem;line-height:1.27;font-weight:600}.modal_in_header .modal_desc{font-size:1.4rem;line-height:1.58;color:var(--gray-600)}.modal_in_header .textarea_box{margin-top:24px}.modal .combine_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media screen and (max-width:639px){.modal .combine_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.modal .combine_box .input_box{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;position:relative}@media screen and (max-width:639px){.modal .combine_box .input_box{width:100%}}.modal .combine_box .input_box+.btn{padding-left:24px;padding-right:24px}@media screen and (max-width:639px){.modal .combine_box .input_box+.btn{width:100%;margin:16px 0 0}}.modal .combine_box .member_list{position:absolute;top:100%;left:0;right:0;margin-top:7px;padding:8px 0;border:1px solid var(--gray-400);border-radius:8px;background-color:var(--gray-000)}@media screen and (max-width:639px){.modal .combine_box .member_list{position:initial;max-height:200px;overflow-y:auto}}.modal .combine_box .member_list .member_item{padding:0}.modal .combine_box .member_list .member_item+.member_item{margin:0}.modal .combine_box .member_list .member_item.has_border{margin-top:4px;padding-top:4px;border-top:1px solid var(--gray-400)}.modal .combine_box .member_list .member_info{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:auto;flex-basis:auto;width:100%;padding:12px 16px;-webkit-box-sizing:border-box;box-sizing:border-box}.modal .combine_box .member_list .member_info .profile{padding-right:0}.modal .combine_box .member_list .member_info .icon{width:100%;height:100%;margin:0}.modal .combine_box .member_list .member_info .details{width:100%}@media screen and (max-width:639px){.modal .combine_box .member_list .member_info{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.modal .combine_box .member_list .member_info .details{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.modal .combine_box .member_list .member_info:hover{background-color:var(--gray-100)}.modal .member_tag{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;position:relative}@media screen and (max-width:639px){.modal .member_tag~.btn{width:100%;margin:16px 0 0}}.modal .member_tag_inner{padding:8px 6px;border:1px solid var(--gray-400);border-radius:4px}.modal .member_tag_list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:-10px;margin-right:-10px;-webkit-box-sizing:border-box;box-sizing:border-box}.modal .member_tag_item{margin-top:10px;margin-right:10px}.modal .member_tag_item:hover{background-color:var(--gray-100)}.modal .member_tag_item .btn_tag{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid var(--gray-400);border-radius:4px}.modal .member_tag_item .input{padding:6px 12px;border:none}.modal .member_tag_item .details_sub_desc{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-900)}.modal .member_tag .uninvited_user{padding:6px 12px}.modal .member_tag .uninvited_user .details{display:block}.modal .member_tag .invited_user{padding:4px 12px}.modal .member_tag .icon{width:12px;height:12px;margin-left:16px;color:var(--gray-600)}.modal .member_tag .icon svg{vertical-align:top}.modal .member_tag .profile{padding-right:8px}.modal .member_tag .profile img{vertical-align:top}.modal .sns_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:32px}@media screen and (max-width:639px){.modal .sns_list{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-top:0}}.modal .sns_list_item{margin:0 24px}@media screen and (max-width:639px){.modal .sns_list_item{margin:0;width:60%}}.modal .sns_list_item:first-child{margin-left:0}.modal .sns_list_item:last-child{margin-right:0}.modal .sns_list_menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:11px 12px}.modal .sns_list_text{display:inline-block;margin-left:7px;font-size:1.4rem;line-height:1.58;font-weight:500;vertical-align:top}.modal .btn_close{position:absolute;top:29px;right:29px;padding:10px}.modal .btn_close .icon{width:24px;height:24px}.modal .icon_alert{color:var(--red-0)}
-@charset "UTF-8";.mouse_effect{position:fixed;bottom:0;right:0;z-index:20;max-width:192px;padding:20px}@media screen and (max-width:1023px){.mouse_effect{display:none}}.mouse_effect_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mouse_effect_item+.mouse_effect_item{margin-left:16px}.mouse_effect_item.is_active .mouse_effect_menu{opacity:1}.mouse_effect_menu{display:block;width:36px;height:36px;opacity:.3}.mouse_effect_menu svg rect:first-child{fill:var(--gray-800)}.mouse_effect .btn_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial;margin-top:16px}.mouse_effect .btn_box .btn{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0;border-radius:8px}.mouse_effect .btn_box .btn.is_hide .icon svg:first-child{display:none}.mouse_effect .btn_box .btn.is_hide .icon svg:last-child{display:block}.mouse_effect .btn_box .btn .icon{width:20px;height:20px}.mouse_effect .btn_box .btn .icon svg:last-child{display:none}.mouse_effect .btn_box .btn:hover{background-color:var(--gray-900)}.mouse_effect .btn_box .btn:hover.is_hide .icon svg:first-child{display:block}.mouse_effect .btn_box .btn:hover.is_hide .icon svg:last-child{display:none}.mouse_effect .btn_box .btn:hover .icon svg:first-child{display:none}.mouse_effect .btn_box .btn:hover .icon svg:last-child{display:block}
-@charset "UTF-8";.navigator_list{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;max-width:244px;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-sizing:border-box;box-sizing:border-box}.navigator_list>.navigator_group .navigator_list{padding-right:16px}.navigator_list .navigator_list{padding:0 0 0 32px}.navigator_list .navigator_list .navigator_group:not(:first-of-type) .navigator_item,.navigator_list .navigator_list .navigator_group:not(:first-of-type) .navigator_menu{margin-top:8px}.navigator_list .navigator_list .navigator_menu{margin-top:8px;padding:12px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-800)}.navigator_group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.navigator_group+.navigator_group{margin-top:8px}.navigator_group .navigator_group:not(:first-of-type) .navigator_item{margin-top:24px}.navigator_item{padding:9px 16px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);text-align:start;word-break:break-all}.navigator_item.is_active{border:1px solid var(--orange-0);background:var(--orange-alpha-light)}.navigator_item.is_active .icon{margin-right:8px}.navigator_item.add_icon.is_active{color:var(--orange-0)}.navigator_item.add_icon.is_active .icon svg path{fill:var(--orange-0)}.navigator_item .icon{margin-right:8px}.navigator_menu{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:12px 16px;font-size:1.6rem;line-height:1.5;font-weight:600;color:var(--gray-900);word-break:break-all;-webkit-box-sizing:border-box;box-sizing:border-box}.navigator_menu.is_active .icon svg{-webkit-transform:rotate(0);transform:rotate(0)}.navigator_menu .icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:inline-block;width:24px;height:24px;margin-right:8px}.navigator_menu .icon svg{width:100%;height:100%;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
-@charset "UTF-8";.placeholder_box{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;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:56px 20px;border:1px dashed var(--gray-400);border-radius:4px;background-color:var(--gray-50)}@media screen and (max-width:1023px){.placeholder_box{margin:0 32px}}@media screen and (max-width:639px){.placeholder_box{margin:0 16px}}.placeholder_box.no_bg{border:none;background-color:transparent}.placeholder_box .desc{font-size:2rem;line-height:1.4;font-weight:500;text-align:center;word-break:break-all;color:var(--gray-800)}.placeholder_box .btn{margin-top:24px}.placeholder_box .btn:first-of-type{margin-left:0}.placeholder_box .btn .icon{width:12px;height:12px}
-@charset "UTF-8";.pagination .btn_box{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination .btn{min-width:90px;-webkit-transition:border-color .2s,color .2s;transition:border-color .2s,color .2s}.pagination .btn.is_disabled,.pagination .btn:disabled{pointer-events:none;background-color:var(--gray-100);color:var(--gray-400)}.pagination .btn:hover{border-color:var(--gray-800);background-color:var(--gray-000);color:var(--gray-800)}
-@charset "UTF-8";@media screen and (max-width:1023px){.card{padding:0 32px}}@media screen and (max-width:639px){.card{padding:0 16px}}.card_list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin:-16px 0 0 -16px}@media screen and (max-width:1023px){.card_list{margin:0}}.card_item{position:relative;width:100%;max-width:336px;margin:16px 0 0 16px;border:1px solid var(--gray-400);border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (min-width:1024px){.card_item{-ms-flex-preferred-size:calc(33.3333333333% - 16px);flex-basis:calc(33.3333333333% - 16px)}}@media screen and (max-width:1023px){.card_item{-ms-flex-preferred-size:calc(50% - 8px);flex-basis:calc(50% - 8px);min-width:auto;max-width:none;margin:8px}.card_item:nth-child(-n+2){margin-top:0}.card_item:nth-child(2n+1){margin-left:0}.card_item:nth-child(2n){margin-right:0}.card_item:nth-last-child(-n+2){margin-bottom:0}}@media screen and (max-width:639px){.card_item{-ms-flex-preferred-size:100%;flex-basis:100%;margin:16px 0 0}.card_item:nth-child(2){margin-top:16px}.card_item:nth-child(2n+1){margin-left:0}.card_item:nth-child(2n){margin-right:0}.card_item:nth-last-child(-n+2){margin-bottom:0}}.card_item .link{display:block;padding:16px 23px 15px}@media screen and (max-width:1023px){.card_item .link{padding-bottom:24px}}.card .title_thumbnail{display:block;width:40px;height:40px;margin-bottom:9px}.card .title_thumbnail img{display:block;width:100%}.card .title_thumbnail.emoji{padding:4px;border:1px solid var(--gray-400);border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.card .title_text{display:block;height:56px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-break:break-all;font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}@media screen and (max-width:1023px){.card .title_text{height:48px;font-size:1.6rem;line-height:1.5}}.card .team{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;padding:11px 30px 0 0}.card .team_thumb{overflow:hidden;position:relative;width:16px;height:16px;border-radius:4px}.card .team_thumb img{position:absolute;top:0;left:0;width:100%;height:100%}.card .team_text{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin-left:8px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800);word-break:break-all;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media screen and (max-width:1023px){.card .team_text{font-size:1.2rem;line-height:1.34}}.card .info_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column wrap;flex-flow:column wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:-webkit-min-content;width:-moz-min-content;width:min-content;height:46px;margin-top:15px}@media screen and (max-width:1023px){.card .info_list{margin-top:16px}}.card .info_item{margin:0 14px}.card .info_item:first-child{margin-left:0}.card .info_item:last-child{margin-right:0}.card .info_title{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:32px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-400);white-space:nowrap}.card .info_title:last-of-type{margin-right:0}.card .info_desc{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:32px;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-600);white-space:nowrap}.card .info_desc:last-of-type{margin-right:0}.card .btn_favorite,.card .btn_favorite_full{position:absolute;top:19px;right:19px;margin:0}@media screen and (max-width:1023px){.card .btn_favorite,.card .btn_favorite_full{top:21px;right:21px}}.card .btn_favorite .icon,.card .btn_favorite_full .icon{width:100%;height:100%}.card .btn_favorite{width:32px;height:32px;padding:0;color:var(--gray-500)}.card .btn_favorite_full{width:33px;height:33px;padding:5px;color:var(--yellow-0)}
-@charset "UTF-8";.search{font-size:0;line-height:normal}@media screen and (max-width:1023px){.search{padding-left:32px;padding-right:32px}}@media screen and (max-width:639px){.search{padding-left:16px;padding-right:16px}}.search .input{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%;padding:0 0 8px;border:none;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-800)}@media screen and (max-width:639px){.search .input{min-width:0;width:auto;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-bottom:1px solid var(--gray-400)}}.search .input_inner{border-bottom:1px solid var(--gray-400)}@media screen and (max-width:639px){.search .input_inner{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:none}}@media screen and (max-width:639px){.search .input_inner .btn_box{margin-top:0;border-bottom:1px solid var(--gray-400)}}.search .icon_search{margin:8px;color:var(--gray-800)}@media screen and (max-width:639px){.search .icon_search{margin:0;padding:0 8px 8px;border-bottom:1px solid var(--gray-400)}}.search .icon_search svg{display:block}.search .icon_close{width:12px;height:12px}.search_area{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:1023px){.search_area{padding-left:32px;padding-right:32px}}@media screen and (max-width:639px){.search_area{display:block;padding-left:16px;padding-right:16px}}.search_area .search{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}@media screen and (max-width:1023px){.search_area .search{padding:0;border-bottom:1px solid var(--gray-400)}}@media screen and (max-width:639px){.search_area .search{border-bottom:none}}@media screen and (max-width:1023px){.search_area .input_inner{border-bottom:none}}.search_area .filter{margin-left:auto}@media screen and (max-width:1023px){.search_area .filter{padding:0}}@media screen and (max-width:639px){.search_area .filter{margin-top:16px}}.search_area .filter_list{padding-right:8px}@media screen and (max-width:639px){.search_area .filter_list{padding-right:0;padding-bottom:12px}}.search_area .btn{min-width:88px;height:100%}@media screen and (max-width:1023px){.search_area .btn{min-width:64px}}.search_area .btn_del{color:var(--red-0)}.search_area .btn_box{margin-left:auto;border-bottom:1px solid var(--gray-400)}@media screen and (max-width:1023px){.search_area .btn_box{padding:0}}@media screen and (max-width:639px){.search_area .btn_box{margin-top:16px}}
-@charset "UTF-8";.box_tab{position:-webkit-sticky;position:sticky;top:64px;z-index:10;background-color:var(--gray-000)}@media screen and (max-width:1023px){.box_tab::before{position:absolute;bottom:0;left:0;right:0;height:1px;background-color:var(--gray-500);content:""}}@media screen and (max-width:1023px){.box_tab{overflow-x:auto;padding-top:16px;padding-bottom:2px;white-space:nowrap}.box_tab::-webkit-scrollbar{display:none}}.tab_list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}@media screen and (min-width:1024px){.tab_list{border-bottom:1px solid var(--gray-500)}}.tab_item{margin:0 4px}@media screen and (max-width:1023px){.tab_item{position:relative}}.tab_item:first-child{margin-left:0}.tab_item:last-child{margin-right:0}.tab_item:hover .tab_menu::before{background:var(--gray-400)}.tab_item:hover .tab_menu .icon{color:var(--gray-800)}.tab_item:hover .tab_menu.is_active::before{background:var(--orange-0)}.tab_item:hover .tab_text{color:var(--gray-800)}@media screen and (max-width:1023px){.tab_item::before{position:absolute;bottom:-2px;left:-4px;right:-4px;height:1px;background-color:var(--gray-500);content:""}}.tab_menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;padding:8px 16px 6px 12px;-webkit-transition:border .2s;transition:border .2s}.tab_menu::before{display:block;position:absolute;right:0;bottom:-1px;left:0;z-index:1;width:100%;height:2px;content:""}@media screen and (max-width:1023px){.tab_menu::before{bottom:-2px}}@media screen and (max-width:1023px){.tab_menu::after{display:block;position:absolute;right:0;bottom:-2px;left:0;width:100%;height:1px;background-color:var(--gray-500);content:""}}.tab_menu.is_active::before{background:var(--orange-0)}.tab_menu.is_active .icon{color:var(--gray-800)}.tab_menu.is_active .tab_text{color:var(--gray-800)}.tab_menu .icon{display:inline-block;width:12px;height:12px;margin-right:8px;color:var(--gray-500);-webkit-transition:color .2s;transition:color .2s;vertical-align:middle}.tab_menu .icon svg{display:block;width:100%}.tab_menu .icon svg path{fill:currentColor}.tab_text{font-size:1.4rem;line-height:1.58;color:var(--gray-500);-webkit-transition:color .2s;transition:color .2s}
-@charset "UTF-8";.textarea{display:block;width:100%;height:120px;margin-top:8px;padding:7px 15px;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:8px;background-color:var(--gray-000);font-size:1.4rem;line-height:1.58;font-weight:400;color:var(--gray-900);-webkit-transition:border .2s;transition:border .2s;caret-color:var(--blue-0);resize:none}.textarea::-webkit-input-placeholder{color:var(--gray-500)}.textarea::-moz-placeholder{color:var(--gray-500)}.textarea:-ms-input-placeholder{color:var(--gray-500)}.textarea::-ms-input-placeholder{color:var(--gray-500)}.textarea::placeholder{color:var(--gray-500)}.textarea:focus{border-color:var(--blue-0)}.textarea_box{display:block}.textarea_box .label{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800)}
-@charset "UTF-8";.api_title .title_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;padding-right:185px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:639px){.api_title .title_box{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:359px){.api_title .title_box{padding-right:120px}}.api_title .title{margin-right:24px;font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}@media screen and (max-width:639px){.api_title .input_toggle_box{margin:4px 0}}.api_title .btn_refresh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;right:0;top:50%;padding:0 12px;height:32px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600);-webkit-transform:translateY(-50%);transform:translateY(-50%)}@media screen and (max-width:359px){.api_title .btn_refresh{max-width:120px}}.api_title .icon{display:inline-block;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin-right:8px;vertical-align:top}.api_title .icon svg{display:block}.api_title .desc{margin-top:10px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}
-@charset "UTF-8";.init_box .title{font-size:2.4rem;line-height:1.34;font-weight:600;color:var(--gray-800)}.init_box .title_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.init_box .title_box .icon{margin-right:16px;color:var(--gray-800)}.init_box .title_box_s .title{font-size:1.6rem;line-height:1.5;font-weight:500}.init_box .title_box_s .icon{width:16px;height:16px;margin-right:8px}.init_box .title_box_s .icon svg{display:block;width:100%;height:100%}.init_box .title_desc{margin-top:16px;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}
-@charset "UTF-8";.setting_title .text{display:inline-block;padding:0 4px 7px 5px;border-bottom:1px solid var(--orange-0);font-size:2.4rem;line-height:1.34;font-weight:500;color:var(--gray-800);vertical-align:top}
-@charset "UTF-8";@media screen and (max-width:1023px){.project_area{padding:16px 32px 0}}@media screen and (max-width:639px){.project_area{padding-left:0;padding-right:0}}.project_area .title{display:block;-webkit-box-flex:0;-ms-flex:none;flex:none;margin-right:auto;font-size:2.4rem;line-height:1.34;font-weight:600;color:var(--gray-800)}@media screen and (max-width:639px){.project_area .title{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;padding-right:10px;word-break:break-all}}.project_area .title_group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}@media screen and (max-width:1023px){.project_area .title_group{display:none}}@media screen and (max-width:639px){.project_area .title_group{padding-left:16px;padding-right:16px}}.project_area .title_group+.search{margin-top:24px}.project_area .title_group .thumbnail{-webkit-box-flex:0;-ms-flex:none;flex:none;width:32px;height:32px;margin-right:16px}.project_area .title_group .thumbnail.emoji{padding:3px;border:1px solid var(--gray-300);border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.project_area .title_group .thumbnail.emoji img{width:24px;height:24px}.project_area .title_group .thumbnail img{display:block;width:100%}.project_area .title_group .thumbnail.icon{display:block;width:32px;height:32px;margin-left:0;color:var(--gray-800)}.project_area .title_group .thumbnail.icon svg{display:block;width:100%;height:100%}.project_area .title_group .dropdown{position:absolute;top:100%;left:-24px;z-index:20;width:640px;margin-top:16px;padding:12px 0;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.project_area .title_group .dropdown_list{overflow-y:overlay;max-height:252px}.project_area .title_group .dropdown_list+.dropdown_list{margin-top:8px;padding-top:7px}.project_area .title_group .dropdown_item.has_border{margin-top:8px;padding-top:7px}.project_area .title_group .dropdown_title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:-12px;padding:3px 8px 2px 24px;border-bottom:1px solid var(--gray-400)}.project_area .title_group .dropdown_title~.dropdown_list{margin:8px 0 0 0}.project_area .title_group .dropdown_title .title{font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800)}.project_area .title_group .dropdown_title .btn{padding-left:8px;padding-right:8px;color:var(--gray-800)}.project_area .title_group .dropdown_title .btn .icon{width:16px;height:16px}.project_area .title_group .dropdown_title .btn .text{font-size:1.2rem;line-height:1.34;font-weight:400}.project_area .title_group .dropdown_menu{padding:12px 24px}.project_area .title_group .dropdown_menu:hover{background-color:var(--gray-100)}.project_area .title_group .dropdown_text{font-size:2.4rem;line-height:1.34;font-weight:600}.project_area .title_group .dropdown .icon{width:32px;height:32px;color:var(--gray-900)}.project_area .title_group .dropdown .icon svg{width:100%;height:100%}.project_area .title_group .dropdown .icon+.dropdown_text{margin-left:16px}.project_area .title_group ::-webkit-scrollbar{width:10px;height:4px}.project_area .title_group ::-webkit-scrollbar-thumb{background:var(--gray-400);border-radius:10px;border:3px solid var(--gray-000)}.project_area .title_group ::-webkit-scrollbar-track{background:0 0}.project_area .btn_title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-ms-flex:none;flex:none;margin-right:auto}.project_area .btn_title .icon{height:16px;margin-left:16px;color:var(--gray-500)}.project_area .btn_box .btn_favorite{padding:0;color:var(--gray-500)}.project_area .btn_box .btn_favorite .icon{width:30px;height:30px}.project_area .btn_box .btn_favorite_full{padding:5px;color:var(--yellow-0)}.project_area .btn_box .btn_favorite_full .icon{width:20px;height:20px}.project_area .btn_box .btn_grid{color:var(--gray-500)}@media screen and (max-width:1023px){.project_area>.search{padding-left:0;padding-right:0}}@media screen and (max-width:639px){.project_area>.search{padding-left:16px;padding-right:16px}}.project_area .search_area{margin-top:24px}@media screen and (max-width:1023px){.project_area .search_area{padding-left:0;padding-right:0}}@media screen and (max-width:639px){.project_area .search_area{padding-left:16px;padding-right:16px}}
-@charset "UTF-8";.toast_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:0;left:50%;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:8px;border-radius:8px;background:var(--gray-800);font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-000);-webkit-transform:translate(-50%,calc(-100% - 16px));transform:translate(-50%,calc(-100% - 16px));opacity:1;-webkit-animation:toast .2s linear;animation:toast .2s linear}.toast_box .icon{display:inline-block;vertical-align:top;margin-right:8px}.toast_box svg{display:block}.toast_box svg path{fill:currentColor}@-webkit-keyframes toast{0%{opacity:0;-webkit-transform:translate(-50%,calc(-100% - 6px));transform:translate(-50%,calc(-100% - 6px))}100%{opacity:1;-webkit-transform:translate(-50%,calc(-100% - 16px));transform:translate(-50%,calc(-100% - 16px))}}@keyframes toast{0%{opacity:0;-webkit-transform:translate(-50%,calc(-100% - 6px));transform:translate(-50%,calc(-100% - 6px))}100%{opacity:1;-webkit-transform:translate(-50%,calc(-100% - 16px));transform:translate(-50%,calc(-100% - 16px))}}
-@charset "UTF-8";.tooltip{position:absolute;top:-20px;right:-13px;z-index:1;width:326px;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--gray-900);border-radius:8px;background-color:var(--gray-000);-webkit-box-shadow:0 8px 8px -8px rgba(0,0,0,.2);box-shadow:0 8px 8px -8px rgba(0,0,0,.2);-webkit-transform:translateX(326px);transform:translateX(326px)}@media screen and (max-width:1023px){.tooltip{top:38px;left:50%;right:0;width:100%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}.tooltip_area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;font-size:0;line-height:normal}@media screen and (max-width:1023px){.tooltip_area{position:relative}}.tooltip_area_title{margin-top:0;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-900)}.tooltip_inner{position:relative}@media screen and (max-width:1023px){.tooltip_inner{position:initial}}.tooltip_inner .btn_tooltip{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:3px}.tooltip_inner .btn_tooltip .icon{display:block}.tooltip_inner .btn_tooltip svg path{fill:inherit;stroke:var(--gray-900)}.tooltip_title_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tooltip_title_box .icon{width:24px;height:24px;color:var(--gray-800);vertical-align:top}.tooltip_title_box .icon svg{width:100%;height:100%}.tooltip_title_box .icon svg path{fill:inherit;stroke:currentColor}.tooltip_title{padding-left:8px;font-size:2rem;line-height:1.4;font-weight:500;color:var(--gray-800)}.tooltip_content{display:block;padding-top:16px}.tooltip_desc{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800)}
-@charset "UTF-8";@media screen and (max-width:1023px){.usage{padding:0 32px}}@media screen and (max-width:639px){.usage{padding:0 16px}}.usage_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:-16px 0 0 -16px}@media screen and (max-width:1023px){.usage_list{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:639px){.usage_list{display:block;margin:0}}.usage_item{margin:16px 0 0 16px}@media screen and (max-width:639px){.usage_item{margin:16px 0 0}}@media screen and (max-width:1023px){.usage_item:only-child{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (max-width:639px){.usage_item:first-child{margin-top:0}}.usage_item.bar_type{min-width:336px}@media screen and (max-width:1023px){.usage_item.bar_type{-ms-flex-preferred-size:calc(50% - 16px);flex-basis:calc(50% - 16px);min-width:auto}}@media screen and (max-width:639px){.usage_item.bar_type{-ms-flex-preferred-size:auto;flex-basis:auto}}.usage_item.bar_type .info_text{margin-left:0;color:var(--gray-600)}.usage_item.link_type{min-width:auto}.usage_item.link_type .title{margin-bottom:16px}.usage_item.link_type .info_text{font-size:2rem;line-height:1.4;font-weight:400}.usage_item.big_type .title{margin-bottom:10px;font-weight:600}.usage_item.big_type .icon{margin-top:-1px;width:24px;height:24px}.usage_item.big_type .info_text{font-size:2.4rem;line-height:1.34;font-weight:500}.usage_menu{display:block;position:relative}.usage .title{display:block;margin-bottom:19px;font-size:1.4rem;line-height:1.58;color:var(--gray-900)}@media screen and (max-width:639px){.usage .title{margin-bottom:8px}}.usage .title_box{display:-webkit-box;display:-ms-flexbox;display:flex}.usage .info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.usage .info_text{margin-left:6px;font-size:1.6rem;line-height:1.5;font-weight:500;color:var(--gray-900)}.usage .info_text:last-child{margin-left:0}.usage .info_text:first-of-type{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.usage .info_text.highlight{color:var(--orange-0)}.usage .icon{width:16px;height:16px;margin-top:3px;margin-left:9px;color:var(--gray-900);-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.usage .icon svg{width:100%;height:100%}.usage .icon svg path{fill:currentColor}.usage .progress_bar{display:block;position:relative;height:4px;margin-top:18px;background-color:var(--gray-300);border-radius:20px}.usage .progress_bar .now{position:absolute;top:0;left:0;height:100%;border-radius:20px;background-color:var(--orange-0)}
-code[class*=language-],pre[class*=language-]{background:0 0;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::-moz-selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box;--code-slategray:var(--gray-500);--code-gray:var(--gray-600);--code-purple:var(--purple-dark);--code-blue:var(--blue-dark);--code-orange:var(--orange-dark);--code-brown:#9a6e3a;--code-green:var(--green-dark)}.darkmode pre[class*=language-]{--code-slategray:var(--gray-300);--code-brown:#face9b;color:var(--code-gray)}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:var(--code-slategray)}.token.punctuation{color:var(--code-gray)}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.important,.token.number,.token.regex,.token.symbol,.token.tag,.token.variable{color:var(--code-orange)}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:var(--code-green)}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:var(--code-brown)}.token.atrule,.token.attr-value,.token.keyword{color:var(--code-blue)}.token.class-name,.token.function{color:var(--code-purple)}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}
-.rc-slider{position:relative;width:100%;height:14px;padding:5px 0;border-radius:6px;-ms-touch-action:none;touch-action:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.rc-slider *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.rc-slider-rail{position:absolute;width:100%;height:4px;background-color:#e9e9e9;border-radius:6px}.rc-slider-track{position:absolute;height:4px;background-color:#abe2fb;border-radius:6px}.rc-slider-handle{position:absolute;width:14px;height:14px;margin-top:-5px;background-color:#fff;border:solid 2px #bfdbfe;border-radius:50%;cursor:pointer;cursor:-webkit-grab;cursor:grab;opacity:.8;-ms-touch-action:pan-x;touch-action:pan-x}.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging{border-color:#57c5f7;-webkit-box-shadow:0 0 0 5px #bfdbfe;box-shadow:0 0 0 5px #bfdbfe}.rc-slider-handle:focus{outline:0;-webkit-box-shadow:none;box-shadow:none}.rc-slider-handle:focus-visible{border-color:#2db7f5;-webkit-box-shadow:0 0 0 3px #bfdbfe;box-shadow:0 0 0 3px #bfdbfe}.rc-slider-handle-click-focused:focus{border-color:#bfdbfe;-webkit-box-shadow:unset;box-shadow:unset}.rc-slider-handle:hover{border-color:#57c5f7}.rc-slider-handle:active{border-color:#57c5f7;-webkit-box-shadow:0 0 5px #57c5f7;box-shadow:0 0 5px #57c5f7;cursor:-webkit-grabbing;cursor:grabbing}.rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}.rc-slider-mark-text{position:absolute;display:inline-block;color:#999;text-align:center;vertical-align:middle;cursor:pointer}.rc-slider-mark-text-active{color:#666}.rc-slider-step{position:absolute;width:100%;height:4px;background:0 0;pointer-events:none}.rc-slider-dot{position:absolute;bottom:-2px;width:8px;height:8px;vertical-align:middle;background-color:#fff;border:2px solid #e9e9e9;border-radius:50%;cursor:pointer}.rc-slider-dot-active{border-color:#bfdbfe}.rc-slider-dot-reverse{margin-right:-4px}.rc-slider-disabled{background-color:#e9e9e9}.rc-slider-disabled .rc-slider-track{background-color:#ccc}.rc-slider-disabled .rc-slider-dot,.rc-slider-disabled .rc-slider-handle{background-color:#fff;border-color:#ccc;-webkit-box-shadow:none;box-shadow:none;cursor:not-allowed}.rc-slider-disabled .rc-slider-dot,.rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed !important}.history_slider_inner .rc-slider-dot.is_end::before,.history_slider_inner .rc-slider-dot.is_first::before{background:url(/assets/icons/icon_line.svg) left center;background-repeat:space no-repeat}
-@charset "UTF-8";/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.blind,legend{margin:-1px !important;padding:0 !important;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);position:absolute}:root{--gray-900:#332e2b;--gray-800:#514c49;--gray-700:#6e6966;--gray-600:#807b78;--gray-500:#a6a19e;--gray-400:#c2bdba;--gray-300:#e2dedb;--gray-200:#efeceb;--gray-100:#f5f3f1;--gray-50:#faf8f6;--gray-000:#fefdfb;--orange-dark:#f27b2f;--orange-0:#fc8539;--orange-light:#fda36a;--orange-alpha-dark:rgb(242 123 47 / 40%);--orange-alpha-0:rgb(252 133 57 / 32%);--orange-alpha-light:rgb(253 163 106 / 24%);--yellow-dark:#f5b103;--yellow-0:#fdc433;--yellow-light:#fed366;--yellow-alpha-dark:rgb(245 177 3 / 40%);--yellow-alpha-0:rgb(253 196 51 / 32%);--yellow-alpha-light:rgb(254 211 102 / 24%);--green-dark:#10b266;--green-0:#23c176;--green-light:#5ad198;--green-alpha-dark:rgb(16 178 102 / 40%);--green-alpha-0:rgb(35 193 118 / 32%);--green-alpha-light:rgb(90 209 152 / 24%);--blue-dark:#208aed;--blue-0:#3c9af1;--blue-light:#6db4f5;--blue-alpha-dark:rgb(26 133 232 / 40%);--blue-alpha-0:rgb(60 154 241 / 32%);--blue-alpha-light:rgb(109 180 245 / 24%);--red-dark:#e93d47;--red-0:#f44954;--red-light:#f7777e;--red-alpha-dark:rgb(233 61 71 / 40%);--red-alpha-0:rgb(244 73 84 / 32%);--red-alpha-light:rgb(247 119 126 / 24%);--purple-dark:#764af3;--purple-0:#855cf9;--purple-light:#a385fb;--purple-alpha-dark:rgb(118 74 243 / 40%);--purple-alpha-0:rgb(133 92 249 / 32%);--purple-alpha-light:rgb(163 133 251 / 24%)}.darkmode{--gray-900:#fefdfb;--gray-800:#faf8f6;--gray-700:#f5f3f1;--gray-600:#efeceb;--gray-500:#e2dedb;--gray-300:#a6a19e;--gray-200:#807b78;--gray-100:#6e6966;--gray-50:#514c49;--gray-000:#332e2b;--orange-dark:#fda36a;--orange-light:#f27b2f;--orange-alpha-dark:rgb(253 163 106 / 24%);--orange-alpha-light:rgb(242 123 47 / 40%);--yellow-dark:#fed366;--yellow-light:#f5b103;--yellow-alpha-dark:rgb(254 211 102 / 24%);--yellow-alpha-light:rgb(245 177 3 / 40%);--green-dark:#5ad198;--green-light:#10b266;--green-alpha-dark:rgb(90 209 152 / 24%);--green-alpha-light:rgb(16 178 102 / 40%);--blue-dark:#6db4f5;--blue-light:#208aed;--blue-alpha-dark:rgb(109 180 245 / 24%);--blue-alpha-light:rgb(26 133 232 / 40%);--red-dark:#f7777e;--red-light:#e93d47;--red-alpha-dark:rgb(247 119 126 / 24%);--red-alpha-light:rgb(233 61 71 / 40%);--purple-dark:#a385fb;--purple-light:#764af3;--purple-alpha-dark:rgb(163 133 251 / 24%);--purple-alpha-light:rgb(118 74 243 / 40%)}@font-face{font-family:Pretendard;font-weight:300;src:url(/assets/fonts/Pretendard-Light.woff) format("woff")}@font-face{font-family:Pretendard;font-weight:400;src:url(/assets/fonts/Pretendard-Regular.woff) format("woff")}@font-face{font-family:Pretendard;font-weight:500;src:url(/assets/fonts/Pretendard-Medium.woff) format("woff")}@font-face{font-family:Pretendard;font-weight:600;src:url(/assets/fonts/Pretendard-SemiBold.woff) format("woff")}@font-face{font-family:Pretendard;font-weight:800;src:url(/assets/fonts/Pretendard-ExtraBold.woff) format("woff")}@font-face{font-family:RobotoMono;font-weight:400;src:url(/assets/fonts/RobotoMono-Regular.woff) format("woff")}.font_Pretendard{font-family:Pretendard}.font_RobotoMono{font-family:RobotoMono}.font_monospace{font-family:monospace}.fontweight_800{font-weight:800}.fontweight_600{font-weight:600}.fontweight_500{font-weight:500}.fontweight_400{font-weight:400}.fontweight_300{font-weight:300}.fontsize_56{font-size:56px;line-height:64px}.fontsize_46{font-size:46px;line-height:54px}.fontsize_38{font-size:38px;line-height:46px}.fontsize_30{font-size:30px;line-height:38px}.fontsize_24{font-size:24px;line-height:32px}.fontsize_20{font-size:20px;line-height:28px}.fontsize_16{font-size:16px;line-height:24px}.fontsize_14{font-size:14px;line-height:22px}.fontsize_12{font-size:12px;line-height:16px}.fontsize_8{font-size:8px;line-height:8px}*{-webkit-tap-highlight-color:transparent;-webkit-focus-ring-color:transparent}:not(input):not(textarea){-webkit-touch-callout:none}body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,select,table,td,textarea,th,ul{margin:0;padding:0}body,html{height:100%}html{font-size:10px}body{-webkit-overflow-scrolling:touch;font-size:1.5rem;line-height:normal;font-weight:400;font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;overflow:overlay}body,code,html,kbd,pre,samp{font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}article,aside,dialog,figure,header,main,nav,section{display:block}pre{word-wrap:break-word}address,em{font-style:normal}fieldset,img{border:0}dl,ol,ul{list-style:none;padding-left:0}a{color:inherit;text-decoration:none}button,input,optgroup,select,textarea{color:inherit;line-height:normal}button{border:transparent;background-color:transparent;cursor:pointer}a:focus-visible,button:focus-visible{outline:1px solid var(--orange-0)}legend{display:block;max-width:none}.white{color:#fff}.white_bg{background-color:#fff}.gray900{color:var(--gray-900)}.gray900_bg{background-color:var(--gray-900)}.gray800{color:var(--gray-800)}.gray800_bg{background-color:var(--gray-800)}.gray700{color:var(--gray-700)}.gray700_bg{background-color:var(--gray-700)}.gray600{color:var(--gray-600)}.gray600_bg{background-color:var(--gray-600)}.gray500{color:var(--gray-500)}.gray500_bg{background-color:var(--gray-500)}.gray400{color:var(--gray-400)}.gray400_bg{background-color:var(--gray-400)}.gray300{color:var(--gray-300)}.gray300_bg{background-color:var(--gray-300)}.gray200{color:var(--gray-200)}.gray200_bg{background-color:var(--gray-200)}.gray50{color:var(--gray-50)}.gray50_bg{background-color:var(--gray-50)}.gray000{color:var(--gray-000)}.gray000_bg{background-color:var(--gray-000)}.orange_dark{color:var(--orange-dark)}.orange_dark_bg{background-color:var(--orange-dark)}.orange_0{color:var(--orange-0)}.orange_0_bg{background-color:var(--orange-0)}.orange_light{color:var(--orange-light)}.orange_light_bg{background-color:var(--orange-light)}.orange_alpha_dark{color:var(--orange-alpha-dark)}.orange_alpha_dark_bg{background-color:var(--orange-alpha-dark)}.orange_alpha_0{color:var(--orange-alpha-0)}.orange_alpha_0_bg{background-color:var(--orange-alpha-0)}.orange_alpha_light{color:var(--orange-alpha-light)}.orange_alpha_light_bg{background-color:var(--orange-alpha-light)}.yellow_dark{color:var(--yellow-dark)}.yellow_dark_bg{background-color:var(--yellow-dark)}.yellow_0{color:var(--yellow-0)}.yellow_0_bg{background-color:var(--yellow-0)}.yellow_light{color:var(--yellow-light)}.yellow_light_bg{background-color:var(--yellow-light)}.yellow_alpha_dark{color:var(--yellow-alpha-dark)}.yellow_alpha_dark_bg{background-color:var(--yellow-alpha-dark)}.yellow_alpha_0{color:var(--yellow-alpha-0)}.yellow_alpha_0_bg{background-color:var(--yellow-alpha-0)}.yellow_alpha_light{color:var(--yellow-alpha-light)}.yellow_alpha_light_bg{background-color:var(--yellow-alpha-light)}.green_dark{color:var(--green-dark)}.green_dark_bg{background-color:var(--green-dark)}.green_0{color:var(--green-0)}.green_0_bg{background-color:var(--green-0)}.green_light{color:var(--green-light)}.green_light_bg{background-color:var(--green-light)}.green_alpha_dark{color:var(--green-alpha-dark)}.green_alpha_dark_bg{background-color:var(--green-alpha-dark)}.green_alpha_0{color:var(--green-alpha-0)}.green_alpha_0_bg{background-color:var(--green-alpha-0)}.green_alpha_light{color:var(--green-alpha-light)}.green_alpha_light_bg{background-color:var(--green-alpha-light)}.blue_dark{color:var(--blue-dark)}.blue_dark_bg{background-color:var(--blue-dark)}.blue_0{color:var(--blue-0)}.blue_0_bg{background-color:var(--blue-0)}.blue_light{color:var(--blue-light)}.blue_light_bg{background-color:var(--blue-light)}.blue_alpha_dark{color:var(--blue-alpha-dark)}.blue_alpha_dark_bg{background-color:var(--blue-alpha-dark)}.blue_alpha_0{color:var(--blue-alpha-0)}.blue_alpha_0_bg{background-color:var(--blue-alpha-0)}.blue_alpha_light{color:var(--blue-alpha-light)}.blue_alpha_light_bg{background-color:var(--blue-alpha-light)}.red_dark{color:var(--red-dark)}.red_dark_bg{background-color:var(--red-dark)}.red_0{color:var(--red-0)}.red_0_bg{background-color:var(--red-0)}.red_light{color:var(--red-light)}.red_light_bg{background-color:var(--red-light)}.red_alpha_dark{color:var(--red-alpha-dark)}.red_alpha_dark_bg{background-color:var(--red-alpha-dark)}.red_alpha_0{color:var(--red-alpha-0)}.red_alpha_0_bg{background-color:var(--red-alpha-0)}.red_alpha_light{color:var(--red-alpha-light)}.red_alpha_light_bg{background-color:var(--red-alpha-light)}.purple_dark{color:var(--purple-dark)}.purple_dark_bg{background-color:var(--purple-dark)}.purple_0{color:var(--purple-0)}.purple_0_bg{background-color:var(--purple-0)}.purple_light{color:var(--purple-light)}.purple_light_bg{background-color:var(--purple-light)}.purple_alpha_dark{color:var(--purple-alpha-dark)}.purple_alpha_dark_bg{background-color:var(--purple-alpha-dark)}.purple_alpha_0{color:var(--purple-alpha-0)}.purple_alpha_0_bg{background-color:var(--purple-alpha-0)}.purple_alpha_light{color:var(--purple-alpha-light)}.purple_alpha_light_bg{background-color:var(--purple-alpha-light)}.gradient_90deg_yellow{background-image:-webkit-gradient(linear,left top,right top,from(#fe924d),to(#fdc433));background-image:linear-gradient(90deg,#fe924d 0,#fdc433 100%)}.gradient_90deg_orange{background-image:-webkit-gradient(linear,left top,right top,from(#f96767),to(#ff9754));background-image:linear-gradient(90deg,#f96767 0,#ff9754 100%)}.gradient_90deg_red{background-image:-webkit-gradient(linear,left top,right top,from(#fc94d8),to(#f44954));background-image:linear-gradient(90deg,#fc94d8 0,#f44954 100%)}.gradient_90deg_purple{background-image:-webkit-gradient(linear,left top,right top,from(#84b5ff),to(#855cf9));background-image:linear-gradient(90deg,#84b5ff 0,#855cf9 100%)}.gradient_90deg_blue{background-image:-webkit-gradient(linear,left top,right top,from(#8decec),to(#3c9af1));background-image:linear-gradient(90deg,#8decec 0,#3c9af1 100%)}.gradient_90deg_green{background-image:-webkit-gradient(linear,left top,right top,from(#d7e38b),to(#23c176));background-image:linear-gradient(90deg,#d7e38b 0,#23c176 100%)}.gradient_90deg_gray1{background-image:-webkit-gradient(linear,left top,right top,from(#212121),to(#616161));background-image:linear-gradient(90deg,#212121 0,#616161 100%)}.gradient_90deg_gray2{background-image:-webkit-gradient(linear,left top,right top,from(#616161),to(#9e9e9e));background-image:linear-gradient(90deg,#616161 0,#9e9e9e 100%)}.gradient_90deg_gray3{background-image:-webkit-gradient(linear,left top,right top,from(#9e9e9e),to(#e0e0e0));background-image:linear-gradient(90deg,#9e9e9e 0,#e0e0e0 100%)}.gradient_90deg_gray4{background-image:-webkit-gradient(linear,left top,right top,from(#e0e0e0),to(#f5f5f5));background-image:linear-gradient(90deg,#e0e0e0 0,#f5f5f5 100%)}.gradient_180deg_yellow{background-image:-webkit-gradient(linear,left top,left bottom,from(#fe924d),to(#fdc433));background-image:linear-gradient(180deg,#fe924d 0,#fdc433 100%)}.gradient_180deg_orange{background-image:-webkit-gradient(linear,left top,left bottom,from(#f96767),to(#ff9754));background-image:linear-gradient(180deg,#f96767 0,#ff9754 100%)}.gradient_180deg_red{background-image:-webkit-gradient(linear,left top,left bottom,from(#fc94d8),to(#f44954));background-image:linear-gradient(180deg,#fc94d8 0,#f44954 100%)}.gradient_180deg_purple{background-image:-webkit-gradient(linear,left top,left bottom,from(#84b5ff),to(#855cf9));background-image:linear-gradient(180deg,#84b5ff 0,#855cf9 100%)}.gradient_180deg_blue{background-image:-webkit-gradient(linear,left top,left bottom,from(#8decec),to(#3c9af1));background-image:linear-gradient(180deg,#8decec 0,#3c9af1 100%)}.gradient_180deg_green{background-image:-webkit-gradient(linear,left top,left bottom,from(#d7e38b),to(#23c176));background-image:linear-gradient(180deg,#d7e38b 0,#23c176 100%)}.gradient_180deg_gray1{background-image:-webkit-gradient(linear,left top,left bottom,from(#212121),to(#616161));background-image:linear-gradient(180deg,#212121 0,#616161 100%)}.gradient_180deg_gray2{background-image:-webkit-gradient(linear,left top,left bottom,from(#616161),to(#9e9e9e));background-image:linear-gradient(180deg,#616161 0,#9e9e9e 100%)}.gradient_180deg_gray3{background-image:-webkit-gradient(linear,left top,left bottom,from(#9e9e9e),to(#e0e0e0));background-image:linear-gradient(180deg,#9e9e9e 0,#e0e0e0 100%)}.gradient_180deg_gray4{background-image:-webkit-gradient(linear,left top,left bottom,from(#e0e0e0),to(#f5f5f5));background-image:linear-gradient(180deg,#e0e0e0 0,#f5f5f5 100%)}.shadow_xs{-webkit-box-shadow:0 8px 4px -8px rgba(0,0,0,.2);box-shadow:0 8px 4px -8px rgba(0,0,0,.2)}.shadow_s{-webkit-box-shadow:0 8px 8px -8px rgba(0,0,0,.2);box-shadow:0 8px 8px -8px rgba(0,0,0,.2)}.shadow_m{-webkit-box-shadow:0 8px 16px -8px rgba(0,0,0,.2);box-shadow:0 8px 16px -8px rgba(0,0,0,.2)}.shadow_l{-webkit-box-shadow:0 20px 24px -12px rgba(0,0,0,.2);box-shadow:0 20px 24px -12px rgba(0,0,0,.2)}#__next,#root{height:100%}.wrap{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-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:100%;min-width:320px;min-height:100%;background-color:var(--gray-000)}@media screen and (max-width:1023px){.wrap{overflow:initial}}.container{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-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative;width:100%}@media screen and (orientation:landscape){.container{-webkit-box-sizing:border-box;box-sizing:border-box}@supports (padding:env(safe-area-inset-right)){.container{padding:0 calc(env(safe-area-inset-right)) 0 calc(env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.container{padding:0 calc(constant(safe-area-inset-right)) 0 calc(constant(safe-area-inset-left))}}}::-webkit-scrollbar{width:3px;height:3px}::-webkit-scrollbar-thumb{background:var(--orange-alpha-dark);border-radius:2px}::-webkit-scrollbar-track{background:0 0}.dimmed{position:fixed;top:0;right:0;left:0;bottom:0;z-index:200;background-color:var(--gray-900);opacity:.24}.br_pc{display:block}@media screen and (max-width:1023px){.br_pc{display:none}}.br_tablet{display:none}@media screen and (max-width:1023px){.br_tablet{display:block}}@media screen and (max-width:639px){.br_tablet{display:none}}.br_mo{display:none}@media screen and (max-width:639px){.br_mo{display:block}}@media screen and (max-width:359px){.br_mo{display:none}}.br_mo_xs{display:none}@media screen and (max-width:359px){.br_mo_xs{display:block}}.community_page .container{max-width:1120px;margin:0 auto;padding:158px 40px 240px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.community_page .container{max-width:none;padding:0}}.community_page .container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.community_page .content{position:relative;padding-right:32.789%;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.community_page .content{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;max-width:640px;padding:72px 32px}}@media screen and (max-width:639px){.community_page .content{max-width:none;padding-left:16px;padding-right:16px}}.community_page .content .img_box{position:absolute;top:0;right:0}@media screen and (max-width:1023px){.community_page .content .img_box{position:static;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:32px}}.community_page .content .img_box svg{display:block;width:100%}.community_page .content .title{font-size:5.6rem;line-height:1.15;font-weight:600;color:var(--gray-800)}@media screen and (max-width:1023px){.community_page .content .title{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;font-size:3rem;line-height:1.27}}.community_page .content .desc{display:block;margin-top:32px;font-size:1.6rem;line-height:1.5;font-weight:500;color:var(--gray-800)}@media screen and (max-width:1023px){.community_page .content .desc{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;text-align:center}}.community_page .content .btn_box{margin-top:32px}@media screen and (max-width:1023px){.community_page .content .btn_box{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4;width:100%}}@media screen and (max-width:639px){.community_page .content .btn_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.community_page .content .btn_box .btn{margin:0 12px;padding:11px 15px;border-radius:8px}@media screen and (max-width:1023px){.community_page .content .btn_box .btn{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (max-width:639px){.community_page .content .btn_box .btn{-ms-flex-preferred-size:auto;flex-basis:auto;width:100%;margin:16px 0 0}}.community_page .content .btn_box .btn:first-child{margin-left:0}@media screen and (max-width:639px){.community_page .content .btn_box .btn:first-child{margin-top:0}}.community_page .content .btn_box .btn:last-child{margin-right:0}.community_page .content .btn_box .btn_github svg{padding:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.community_page .content .btn_box .btn_github svg path{fill:var(--gray-900)}.community_page .content .btn_box .btn_discord{color:#5865f2}.community_page .content .btn_box .btn_discord svg{padding:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.community_page .content .btn_box .icon{width:28px;height:28px}.community_page .content .btn_box .text{font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}.error_page .container{max-width:1120px;margin:0 auto;padding:72px 40px 72px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.error_page .container{max-width:none;padding:0}}.error_page .container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.error_page .content{position:relative;width:100%;max-width:990px;padding-left:32.405%;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.error_page .content{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;padding:64px 32px}}@media screen and (max-width:639px){.error_page .content{padding-left:16px;padding-right:16px}}.error_page .content.error_404{padding-left:40.577%}@media screen and (max-width:1023px){.error_page .content.error_404{padding-left:32px}}@media screen and (max-width:1023px){.error_page .content.error_404{padding-left:16px}}.error_page .content .img_box{position:absolute;top:0;left:0}@media screen and (max-width:1023px){.error_page .content .img_box{position:static;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:32px}}.error_page .content .img_box svg{display:block;width:100%}.error_page .title{color:var(--gray-800);font-size:4.6rem;line-height:1.18;font-weight:600}@media screen and (max-width:1023px){.error_page .title{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;font-size:3rem;line-height:1.27;text-align:center}}@media screen and (max-width:359px){.error_page .title{font-size:2.6rem;line-height:1.31}}.error_page .desc{display:block;margin-top:32px;color:var(--gray-800);font-size:1.6rem;line-height:1.5;font-weight:400}@media screen and (max-width:1023px){.error_page .desc{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;text-align:center}}.error_page .btn_box{margin-top:32px}@media screen and (max-width:1023px){.error_page .btn_box{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}}.error_page .btn_box .btn{margin:0 12px;padding:11px 15px;border-radius:8px}@media screen and (max-width:1023px){.error_page .btn_box .btn{-ms-flex-preferred-size:calc(50% - 12px);flex-basis:calc(50% - 12px);margin-top:24px}}.error_page .btn_box .btn:first-child{margin-left:0}@media screen and (max-width:1023px){.error_page .btn_box .btn:first-child{-ms-flex-preferred-size:100%;flex-basis:100%;margin-top:0;margin-right:0}}.error_page .btn_box .btn:first-child .icon{width:24px;height:24px}.error_page .btn_box .btn:first-child .text{color:var(--gray-000)}@media screen and (max-width:1023px){.error_page .btn_box .btn:nth-child(2){margin-left:0}}.error_page .btn_box .btn:last-child{margin-right:0}.error_page .btn_box .btn_github svg{padding:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.error_page .btn_box .btn_github svg path{fill:var(--gray-900)}.error_page .btn_box .icon{width:28px;height:28px}.error_page .btn_box .text{font-size:2rem;line-height:1.4;font-weight:600;color:var(--gray-800)}.btn_start.orange_0{overflow:hidden;position:relative;font-size:2rem;line-height:1.4;font-weight:600;height:52px;border-radius:8px;border:0;isolation:isolate}.btn_start.orange_0::after,.btn_start.orange_0::before{position:absolute;top:0;left:0;width:100%;height:100%;content:"";opacity:0}.btn_start.orange_0::before{background:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background:linear-gradient(180deg,#ff9754 0,#f96767 100%)}.btn_start.orange_0::after{background:-webkit-gradient(linear,left top,left bottom,from(#84b5ff),to(#855cf9));background:linear-gradient(180deg,#84b5ff 0,#855cf9 100%)}.btn_start.orange_0 .bg::after,.btn_start.orange_0 .bg::before{position:absolute;top:0;left:0;width:100%;height:100%;content:"";opacity:0;z-index:1}.btn_start.orange_0 .bg::before{background:-webkit-gradient(linear,left top,left bottom,from(#8decec),to(#3c9af1));background:linear-gradient(180deg,#8decec 0,#3c9af1 100%)}.btn_start.orange_0 .bg::after{background:-webkit-gradient(linear,left top,left bottom,from(#fc94d8),to(#f44954));background:linear-gradient(180deg,#fc94d8 0,#f44954 100%)}.btn_start.orange_0:hover{background-color:var(--orange-0);-webkit-animation:btn-bg 10s linear infinite 1.5s;animation:btn-bg 10s linear infinite 1.5s}.btn_start.orange_0:hover::before{-webkit-animation:gradient1 10s linear infinite;animation:gradient1 10s linear infinite}.btn_start.orange_0:hover::after{-webkit-animation:gradient2 10s linear infinite;animation:gradient2 10s linear infinite}.btn_start.orange_0:hover .bg::before{-webkit-animation:gradient3 10s linear infinite 5s;animation:gradient3 10s linear infinite 5s}.btn_start.orange_0:hover .bg::after{-webkit-animation:gradient4 10s linear infinite 5s;animation:gradient4 10s linear infinite 5s}.btn_start.orange_0 .icon{width:24px;height:24px;margin-left:0;z-index:1}.btn_start.orange_0 .text{z-index:1}.top_banner{border-bottom:1px solid var(--gray-400)}.top_banner_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:1120px;margin:0 auto;padding:0 40px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.top_banner_inner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 32px}}@media screen and (max-width:639px){.top_banner_inner{padding:0 16px}}.top_banner .title_group{color:var(--gray-800)}@media screen and (max-width:1023px){.top_banner .title_group{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;max-width:none;width:100%}}.top_banner .title_group .title{font-size:5.6rem;line-height:1.15;font-weight:600}@media screen and (max-width:1023px){.top_banner .title_group .title{font-size:3rem;line-height:1.27}}.top_banner .title_group .desc{margin-top:32px;font-size:1.6rem;line-height:1.5;font-weight:500}@media screen and (max-width:1023px){.top_banner .title_group .desc{font-size:1.4rem;line-height:1.58}}.top_banner .title_group .btn_box{margin-top:32px}@media screen and (max-width:1023px){.top_banner .title_group .btn_box .btn{width:100%}}.top_banner .title_group .btn_box .icon path{fill:var(--gray-000)}.top_banner .title_group .btn_box .text{color:var(--gray-000)}@media screen and (max-width:1023px){.top_banner .img_box{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.top_banner .img_box svg{display:block;width:100%;height:100%}.codeblock_header{padding:6px 8px}.codeblock_header .box_left{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}@media screen and (max-width:1023px){.codeblock_header .box_left{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.codeblock_header .btn_item{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:36px;padding:0 16px;border-radius:8px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-600)}.codeblock_header .btn_item+.btn_item{margin-left:8px}.codeblock_header .btn_item.is_active{background:var(--gray-800);color:var(--gray-000)}.codeblock_header+.codeblock_box{margin-top:0}.codeblock_header+.codeblock_box .codeblock{border-radius:0 0 4px 4px;border-top:0}.codeblock .language-bash{padding:0}.header_example{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:13px 16px 12px 24px;border-bottom:1px solid var(--gray-600);background:var(--gray-000)}@media screen and (max-width:1023px){.header_example{padding:20px 24px 19px 32px}@supports (padding:env(safe-area-inset-right)){.header_example{padding:20px calc(24px + env(safe-area-inset-right)) 19px calc(32px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_example{padding:20px calc(24px + constant(safe-area-inset-right)) 19px calc(32px + constant(safe-area-inset-left))}}}@media screen and (max-width:639px){.header_example{-ms-flex-wrap:wrap;flex-wrap:wrap;position:-webkit-sticky;position:sticky;top:0;z-index:10;padding:20px 24px 19px 16px}@supports (padding:env(safe-area-inset-right)){.header_example{padding:20px calc(24px + env(safe-area-inset-right)) 19px calc(16px + env(safe-area-inset-left))}}@supports (padding:constant(safe-area-inset-right)){.header_example{padding:20px calc(24px + constant(safe-area-inset-right)) 19px calc(16px + constant(safe-area-inset-left))}}}.header_example .nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header_example .nav_text{position:relative;margin-left:16px;padding-left:16px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800)}.header_example .nav_text::before{position:absolute;top:0;left:0;width:1px;height:16px;background-color:var(--gray-400);vertical-align:middle;content:""}.header_example .nav .btn,.header_example .nav .user{height:32px;padding:8px 12px;font-size:1.2rem;line-height:1.34;font-weight:500}.header_example .nav .btn:first-of-type,.header_example .nav .user:first-of-type{margin-left:24px}.header_example .nav .btn+.btn,.header_example .nav .user+.btn{margin-left:16px}@media screen and (max-width:639px){.header_example .nav .btn{display:none}}.header_example .nav .user{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--gray-000);border-radius:4px}@media screen and (max-width:639px){.header_example .nav .user{display:none}}.header_example .logo{width:40px;height:38px}@media screen and (max-width:1023px){.header_example .logo{width:24px;height:24px}}.header_example .logo a{display:block;width:100%;height:100%}.header_example .logo svg{display:block;width:100%;height:100%}@media screen and (max-width:639px){.header_example .btn_box{display:none}}.header_example .btn_box .btn{width:32px;height:32px;padding:0;border:none;-webkit-box-sizing:border-box;box-sizing:border-box}.header_example .btn_box .icon{width:100%;height:100%}.header_example .btn_box .btn_grid{padding:8px}.header_example .menu_user_list{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin:0 32px;color:var(--gray-000)}.header_example .menu_user_list .icon svg path{fill:#fff}.dashboard{border-radius:4px}.dashboard_top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:7px;border-bottom:1px solid var(--gray-400)}.dashboard_content{position:relative;height:260px}.dashboard .btn_box{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;position:absolute;left:0;right:0;bottom:0;padding:7px}.dashboard .btn_box .guide{padding-left:4px;padding-bottom:4px;font-size:1rem;line-height:1;font-weight:500;color:var(--gray-500)}.dashboard .btn_box .btn_expand{position:static;margin-left:auto;padding-left:8px;padding-right:8px;border:none}.dashboard .btn_box .btn_expand.is_disabled,.dashboard .btn_box .btn_expand:disabled{background-color:var(--gray-300);color:#fff}.dashboard .user{padding:5px 13px;border-radius:4px;font-size:1.2rem;line-height:1.34;font-weight:500;color:#fff}.dashboard .user_list{display:-webkit-box;display:-ms-flexbox;display:flex}.dashboard .user_list .user_item{margin-left:8px}.dashboard .user_list .user_item:first-child{margin-left:0}.dashboard .user_list .icon svg path{fill:#fff}.darkmode .header_example .logo svg [fill="#514C49"]{fill:var(--gray-100)}.main_page .key_visual{overflow:hidden;position:relative;width:100%;height:calc(100vh - 64px)}@media screen and (max-width:1023px) and (orientation:landscape){.main_page .key_visual{height:calc(100vh + 70px)}}.main_page .key_visual .kv_bg svg{--scale:1;position:absolute;top:0;left:50%;width:auto;height:100%;-webkit-transform:translateX(-50%) scale(var(--scale));transform:translateX(-50%) scale(var(--scale))}.main_page .key_visual .inner{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;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;z-index:1;height:100%}@media screen and (max-width:1023px){.main_page .key_visual .inner{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-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;padding:0 32px;-webkit-box-sizing:border-box;box-sizing:border-box}}@media screen and (max-width:639px){.main_page .key_visual .inner{padding-left:16px;padding-right:16px}}.main_page .key_visual .title{font-size:9.6rem;line-height:1.17;font-weight:800;text-align:center}@media screen and (max-width:1023px){.main_page .key_visual .title{font-size:5.6rem;line-height:1.15}}@media screen and (max-width:639px){.main_page .key_visual .title{font-size:3.8rem;line-height:1.22}}.main_page .key_visual .title .text{display:block;background:-webkit-gradient(linear,left top,left bottom,from(#212121),to(#616161));background:linear-gradient(180deg,#212121 0,#616161 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.main_page .key_visual .title .point{display:block;position:relative;height:113px;color:var(--orange-0)}@media screen and (max-width:1023px){.main_page .key_visual .title .point{height:auto}}.main_page .key_visual .title .point::after,.main_page .key_visual .title .point::before{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;content:"collaboration";font-size:9.6rem;line-height:1.17;font-weight:800;opacity:0;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}@media screen and (max-width:1023px){.main_page .key_visual .title .point::after,.main_page .key_visual .title .point::before{font-size:5.6rem;line-height:1.15}}@media screen and (max-width:639px){.main_page .key_visual .title .point::after,.main_page .key_visual .title .point::before{font-size:3.8rem;line-height:1.22}}.main_page .key_visual .title .point::before{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background-image:linear-gradient(180deg,#ff9754 0,#f96767 100%)}.main_page .key_visual .title .point::after{background-image:-webkit-gradient(linear,left top,left bottom,from(#84b5ff),to(#855cf9));background-image:linear-gradient(180deg,#84b5ff 0,#855cf9 100%)}.main_page .key_visual .title .point .bg::after,.main_page .key_visual .title .point .bg::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;font-size:9.6rem;line-height:1.17;font-weight:800;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;opacity:0;content:"collaboration"}@media screen and (max-width:1023px){.main_page .key_visual .title .point .bg::after,.main_page .key_visual .title .point .bg::before{font-size:5.6rem;line-height:1.15}}@media screen and (max-width:639px){.main_page .key_visual .title .point .bg::after,.main_page .key_visual .title .point .bg::before{font-size:3.8rem;line-height:1.22}}.main_page .key_visual .title .point .bg::before{background-image:-webkit-gradient(linear,left top,left bottom,from(#8decec),to(#3c9af1));background-image:linear-gradient(180deg,#8decec 0,#3c9af1 100%)}.main_page .key_visual .title .point .bg::after{background-image:-webkit-gradient(linear,left top,left bottom,from(#fc94d8),to(#f44954));background-image:linear-gradient(180deg,#fc94d8 0,#f44954 100%)}.main_page .key_visual .title .point.is_hover{-webkit-animation:point-text 10s linear infinite 1.5s;animation:point-text 10s linear infinite 1.5s}.main_page .key_visual .title .point.is_hover::before{-webkit-animation:gradient1 10s linear infinite;animation:gradient1 10s linear infinite}.main_page .key_visual .title .point.is_hover::after{-webkit-animation:gradient2 10s linear infinite;animation:gradient2 10s linear infinite}.main_page .key_visual .title .point.is_hover .bg::before{-webkit-animation:gradient3 10s linear infinite 5s;animation:gradient3 10s linear infinite 5s}.main_page .key_visual .title .point.is_hover .bg::after{-webkit-animation:gradient4 10s linear infinite 5s;animation:gradient4 10s linear infinite 5s}.main_page .key_visual .btn_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:40px}@media screen and (max-width:1023px){.main_page .key_visual .btn_box{margin-top:80px}}@media screen and (max-width:639px){.main_page .key_visual .btn_box{display:block;width:100%;margin-top:32px}}.main_page .key_visual .npm_box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:52px;padding:10px 16px;border-radius:8px;background:var(--gray-800);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.main_page .key_visual .npm_box{padding:0 32px}}@media screen and (max-width:639px){.main_page .key_visual .npm_box{padding:0 16px}}.main_page .key_visual .npm_box .input{width:228px;border:0;background:0 0;color:var(--gray-000);font-size:1.4rem;line-height:1.72;font-weight:400;font-family:RobotoMono,Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace}.main_page .key_visual .npm_box .btn_area{position:relative}@media screen and (max-width:639px){.main_page .key_visual .npm_box .btn_area{margin-left:auto}}.main_page .key_visual .npm_box .btn_area .toast_box{left:65%}.main_page .key_visual .npm_box .btn{margin-left:24px;padding:10px 12px;border-color:var(--gray-400)}.main_page .key_visual .npm_box .btn:hover{background:var(--gray-900)}.main_page .key_visual .npm_box .btn .icon{width:12px;height:12px}.main_page .key_visual .btn_start{margin-left:24px}@media screen and (max-width:1023px){.main_page .key_visual .btn_start{margin-left:16px}}@media screen and (max-width:639px){.main_page .key_visual .btn_start{width:100%;margin-top:16px;margin-left:0}}.main_page .key_visual .btn_start:only-child{margin-left:0}@media screen and (max-width:639px){.main_page .key_visual .btn_start:only-child{margin-top:0}}.main_page .key_visual .desc{width:100%;margin-top:40px;font-size:1.6rem;line-height:1.5;font-weight:500;color:var(--gray-800);text-align:center}@media screen and (max-width:1023px){.main_page .key_visual .desc{font-size:1.4rem;line-height:1.58}}@media screen and (max-width:639px){.main_page .key_visual .desc{margin-top:24px}}.main_page .section{max-width:1368px;margin:0 auto;padding:240px 40px 0;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.main_page .section{max-width:none;padding-left:32px;padding-right:32px}}@media screen and (max-width:639px){.main_page .section{padding:160px 16px 0}}.main_page .section:last-child{padding-bottom:240px}@media screen and (max-width:639px){.main_page .section:last-child{padding-bottom:160px}}.main_page .section_title{display:block;font-size:5.6rem;line-height:1.15;font-weight:600;color:var(--gray-900);text-align:center}@media screen and (max-width:1023px){.main_page .section_title{font-size:3rem;line-height:38px}}.main_page .section_desc{margin-top:32px;color:var(--gray-800);font-size:1.6rem;line-height:1.5;font-weight:500;text-align:center}@media screen and (max-width:1023px){.main_page .section_desc{font-size:1.4rem;line-height:1.58}}.main_page .section_content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:32px}.main_page .section_content.draw{padding:0 60px}@media screen and (max-width:1023px){.main_page .section_content.draw{padding:0}}.main_page .section_content .draw_box{width:640px;height:374px;border-radius:20px;background-color:pink}@media screen and (max-width:1023px){.main_page .section_content .draw_box{display:none}}.main_page .section_content .draw_box+.draw_box{margin-left:16px}.main_page .section .btn_box{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:48px}@media screen and (max-width:1023px){.main_page .section .btn_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:32px}}.main_page .section .btn_box .btn{padding-top:11px;padding-bottom:11px;border-radius:8px;font-size:2rem;line-height:1.4;font-weight:600}@media screen and (max-width:639px){.main_page .section .btn_box .btn{width:100%}}.main_page .section .btn_box .btn.btn_line{color:var(--gray-800)}.main_page .section .btn_box .btn.btn_start{-webkit-transition:none;transition:none}.main_page .section .btn_box .btn.btn_start:hover{background:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background:linear-gradient(180deg,#ff9754 0,#f96767 100%)}.main_page .section .btn_box .btn .icon{width:24px;height:24px}.main_page .section .btn_box .btn+.btn{margin-left:24px}@media screen and (max-width:1023px){.main_page .section .btn_box .btn+.btn{margin-top:20px;margin-left:0}}.main_page .section_app{max-width:1370px}@media screen and (max-width:1023px){.main_page .section_app{max-width:none}}.main_page .section_app .align_box{border:1px solid var(--gray-400);border-radius:23px}@media screen and (max-width:1023px){.main_page .section_app .align_box{border:0;border-radius:0}}.main_page .section_app .app_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:20px 32px 19px;border-bottom:1px solid var(--gray-400)}@media screen and (max-width:1023px){.main_page .section_app .app_header{display:none}}.main_page .section_app .app_header .tag_name{color:var(--gray-800);font-size:2rem;line-height:1.4;font-weight:600}.main_page .section_app .app_header .icon svg path{fill:#fff}.main_page .section_app .app_body{padding:83px 0 94px;position:relative}@media screen and (max-width:1023px){.main_page .section_app .app_body{padding:0}}.main_page .section_app .app_body::before{position:absolute;top:0;left:0;width:100%;height:100%;border-bottom-left-radius:23px;border-bottom-right-radius:23px;background-image:url(/assets/images/main_bg.png);background-repeat:repeat;content:""}@media screen and (max-width:1023px){.main_page .section_app .app_body::before{display:none}}.main_page .section_app .app_body .btn_box,.main_page .section_app .app_body .section_desc,.main_page .section_app .app_body .section_title{position:relative;z-index:1}.main_page .section_app .point{display:inline-block;position:relative;padding:0 8px;border:3px dashed var(--purple-0);border-radius:16px;line-height:53px}@media screen and (max-width:1023px){.main_page .section_app .point{padding:0;border:none;border-radius:0;line-height:normal}}.main_page .section_app .point::before{position:absolute;top:-4px;left:-35px;width:24px;height:24px;background-image:url(/assets/icons/icon_service_main_users_alone.svg);background-repeat:no-repeat;content:""}@media screen and (max-width:1023px){.main_page .section_app .point::before{display:none}}@media screen and (max-width:1023px){.main_page .section_app .btn{min-width:280px}}.main_page .service_card_list{margin-right:36px}@media screen and (max-width:1023px){.main_page .service_card_list{margin-right:0;padding:0 74px}}@media screen and (max-width:639px){.main_page .service_card_list{padding:0}}.main_page .service_card_list .service_card_item{width:398px}@media screen and (max-width:1023px){.main_page .service_card_list .service_card_item{width:100%}}.main_page .grid_list{display:none}@media screen and (max-width:1023px){.main_page .grid_list{display:-webkit-box;display:-ms-flexbox;display:flex}}@media screen and (max-width:1023px){.main_page .grid_item{margin-bottom:0}}@media screen and (max-width:1023px){.main_page .grid_item{margin-bottom:32px}}@media screen and (max-width:1023px){.main_page .grid_item:last-child{margin-bottom:0}}.main_page .horizon_list{max-width:1000px;margin-top:32px}@media screen and (max-width:1023px){.main_page .horizon_list{max-width:none;padding:0 74px}}@media screen and (max-width:639px){.main_page .horizon_list{padding:0}}.main_page .horizon_list .img_box{width:466px;height:216px}@media screen and (max-width:1023px){.main_page .horizon_list .img_box{width:100%;max-width:428px;height:auto;margin:0 auto}}@media screen and (max-width:639px){.main_page .horizon_list .img_box{max-width:none}}.main_page .horizon_list .img_box svg{display:block;width:100%}@media screen and (max-width:1023px){.main_page .horizon_list .img_box svg{height:100%}}.main_page .codeblock_content{width:854px;height:513px}@media screen and (max-width:1023px){.main_page .codeblock_content{display:none}}.main_page .codeblock_content .btn_item{height:40px;border-radius:4px;color:var(--gray-800)}.main_page .codeblock_content .btn_item+.btn_item{margin-left:16px}.main_page .codeblock_content .btn_item.is_active{background:var(--orange-0);color:var(--gray-000)}.main_page .codeblock_content .codeblock{overflow-y:overlay;height:100%;border-radius:0 0 16px 16px;border-top:0}.main_page .codeblock_content .codeblock_header{padding:16px;border-radius:16px 16px 0 0}.main_page .codeblock_content .codeblock_header .box_right .btn_line{width:40px;height:40px;padding:12px;color:var(--gray-800)}.main_page .codeblock_content .codeblock_header .box_right .btn_line .icon{-webkit-box-flex:0;-ms-flex:none;flex:none;width:16px;height:16px}.main_page .codeblock_content .prism-code .string{white-space:pre-wrap}@media screen and (max-width:1023px){.main_page .section_faq .btn{width:100%;max-width:280px}}@media screen and (max-width:639px){.main_page .section_faq .btn{max-width:none}}.main_page .accordion_list{width:800px}@media screen and (max-width:639px){.main_page .accordion_list{padding:0}}.darkmode .main_page .key_visual .title .text{background:-webkit-gradient(linear,left top,left bottom,from(#fefdfb),to(#a6a19e));background:linear-gradient(180deg,#fefdfb 0,#a6a19e 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.darkmode .main_page .kv_bg g[filter*=filter0]>rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter0] g rect:first-child{fill:var(--gray-100);stroke:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter0] [fill="#FAF8F6"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter0] [fill="#EFECEB"],.darkmode .main_page .kv_bg g[filter*=filter0] [fill="#F5F3F1"]{fill:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter0] [stroke="#E2DEDB"],.darkmode .main_page .kv_bg g[filter*=filter0] [stroke="#EFECEB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter2] rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter2] [fill="#F5F3F1"],.darkmode .main_page .kv_bg g[filter*=filter2] [fill="#FEFDFB"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter2] [fill="#C2BDBA"],.darkmode .main_page .kv_bg g[filter*=filter2] [fill="#E2DEDB"],.darkmode .main_page .kv_bg g[filter*=filter2] [fill="#EFECEB"]{fill:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter2] [stroke="#EFECEB"],.darkmode .main_page .kv_bg g[filter*=filter2] [stroke="#F5F3F1"]{stroke:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter2] [stroke="#E2DEDB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter3] rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter3] [fill="#EFECEB"],.darkmode .main_page .kv_bg g[filter*=filter3] [fill="#FEFDFB"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter3] [fill="#E2DEDB"]{fill:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter3] [stroke="#EFECEB"]{stroke:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter3] [stroke="#E2DEDB"],.darkmode .main_page .kv_bg g[filter*=filter3] [stroke="#F5F3F1"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter4] [fill="#FEFDFB"]{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter4] [fill="#FAF8F6"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter4] [fill="#C2BDBA"],.darkmode .main_page .kv_bg g[filter*=filter4] [fill="#F5F3F1"]{fill:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter4] [stroke="#E2DEDB"],.darkmode .main_page .kv_bg g[filter*=filter4] [stroke="#EFECEB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter5] rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter5] [fill="#E2DEDB"],.darkmode .main_page .kv_bg g[filter*=filter5] [fill="#F5F3F1"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter5] [stroke="#E2DEDB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter6] rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter6] [fill="#EFECEB"],.darkmode .main_page .kv_bg g[filter*=filter6] [fill="#F5F3F1"],.darkmode .main_page .kv_bg g[filter*=filter6] [fill="#FAF8F6"],.darkmode .main_page .kv_bg g[filter*=filter6] [fill="#FEFDFB"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter6] [fill="#E2DEDB"]{fill:var(--gray-200)}.darkmode .main_page .kv_bg g[filter*=filter6] [stroke="#E2DEDB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter7] rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter7] [fill="#EFECEB"],.darkmode .main_page .kv_bg g[filter*=filter7] [fill="#FEFDFB"]{fill:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter7] [fill="#E2DEDB"]{fill:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter7] [stroke="#F5F3F1"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter7] [stroke="#E2DEDB"]{stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter8]>rect:first-child{fill:var(--gray-000)}.darkmode .main_page .kv_bg g[filter*=filter8] g rect:first-child{fill:var(--gray-50);stroke:var(--gray-50)}.darkmode .main_page .kv_bg g[filter*=filter8] [stroke="#EFECEB"]{stroke:var(--gray-100)}.darkmode .main_page .kv_bg g[filter*=filter8] [stroke="#E2DEDB"]{stroke:var(--gray-50)}.darkmode .main_page .section_app .app_body::before{background-image:url(/assets/images/main_bg_dark.png)}.darkmode .main_page .grid_thumbnail [fill="#FEFDFB"],.darkmode .main_page .grid_thumbnail [fill="url(#pattern1)"],.darkmode .main_page .grid_thumbnail [fill=white]{fill:var(--gray-000)}.darkmode .main_page .horizon_item .img_box [fill="#FEFDFB"]{fill:var(--gray-000)}@-webkit-keyframes gradient1{0%{opacity:0}15%{opacity:1}100%{opacity:0}}@keyframes gradient1{0%{opacity:0}15%{opacity:1}100%{opacity:0}}@-webkit-keyframes gradient2{0%{opacity:0}15%{opacity:0}40%{opacity:1}100%{opacity:0}}@keyframes gradient2{0%{opacity:0}15%{opacity:0}40%{opacity:1}100%{opacity:0}}@-webkit-keyframes gradient3{0%{opacity:0}15%{opacity:1}65%{opacity:0}100%{opacity:0}}@keyframes gradient3{0%{opacity:0}15%{opacity:1}65%{opacity:0}100%{opacity:0}}@-webkit-keyframes gradient4{0%{opacity:0}15%{opacity:0}40%{opacity:1}65%{opacity:0}100%{opacity:0}}@keyframes gradient4{0%{opacity:0}15%{opacity:0}40%{opacity:1}65%{opacity:0}100%{opacity:0}}@-webkit-keyframes point-text{0%{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background-image:linear-gradient(180deg,#ff9754 0,#f96767 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}40%{background-image:-webkit-gradient(linear,left top,left bottom,from(#84b5ff),to(#855cf9));background-image:linear-gradient(180deg,#84b5ff 0,#855cf9 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}50%{background-image:-webkit-gradient(linear,left top,left bottom,from(#8decec),to(#3c9af1));background-image:linear-gradient(180deg,#8decec 0,#3c9af1 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}90%{background-image:-webkit-gradient(linear,left top,left bottom,from(#fc94d8),to(#f44954));background-image:linear-gradient(180deg,#fc94d8 0,#f44954 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}100%{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background-image:linear-gradient(180deg,#ff9754 0,#f96767 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}}@keyframes point-text{0%{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background-image:linear-gradient(180deg,#ff9754 0,#f96767 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}40%{background-image:-webkit-gradient(linear,left top,left bottom,from(#84b5ff),to(#855cf9));background-image:linear-gradient(180deg,#84b5ff 0,#855cf9 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}50%{background-image:-webkit-gradient(linear,left top,left bottom,from(#8decec),to(#3c9af1));background-image:linear-gradient(180deg,#8decec 0,#3c9af1 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}90%{background-image:-webkit-gradient(linear,left top,left bottom,from(#fc94d8),to(#f44954));background-image:linear-gradient(180deg,#fc94d8 0,#f44954 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}100%{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9754),to(#f96767));background-image:linear-gradient(180deg,#ff9754 0,#f96767 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}}html{scroll-padding-top:70px}.documentation_page .header_service{background-color:var(--gray-000)}.documentation_page .container{max-width:1920px;margin:0 auto}.documentation_page .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-height:calc(100vh - 134px)}.documentation_page .content .navigator{min-width:308px;padding:0 40px 175px 24px;border-right:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.documentation_page .content .navigator{display:none}}.documentation_page .content .navigator_group:hover>.navigator_item{color:var(--orange-dark)}.documentation_page .content .navigator_group .navigator_list{display:none;padding-right:0}.documentation_page .content .navigator_group .navigator_group{margin-top:0}.documentation_page .content .navigator_group .navigator_menu.is_active+.navigator_list{display:block}.documentation_page .content .navigator>.navigator_list{position:-webkit-sticky;position:sticky;top:0;padding-top:76px}.documentation_page .content .navigator>.navigator_list>.navigator_group>.navigator_item:only-child{padding-left:40px;font-size:1.6rem;line-height:1.5;font-weight:600}.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_item,.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_menu{margin-top:0}.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_item{font-size:1.4rem;line-height:1.43}.documentation_page .content .navigator_item{font-size:1.6rem}.documentation_page .content .navigator_item.is_active{border:transparent;background-color:transparent;color:var(--orange-dark)}.documentation_page .content .navigator_menu{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.documentation_page .content .navigator_menu .icon{width:16px;height:16px}.documentation_page .section{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0;max-width:100%;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:88px 52px 164px}@media screen and (max-width:1244px){.documentation_page .section{padding:88px 40px 88px 52px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}}@media screen and (max-width:1023px){.documentation_page .section{padding:72px 32px}}@media screen and (max-width:639px){.documentation_page .section{padding:72px 16px}}.documentation_page .pagination{display:none;-webkit-box-flex:0;-ms-flex:none;flex:none;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;position:-webkit-sticky;position:sticky;top:152px;right:0;z-index:1;width:220px;border:1px solid var(--gray-400);border-radius:16px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (min-width:1600px){.documentation_page .pagination{display:block}}.documentation_page .pagination_inner{padding:24px}.documentation_page .pagination_title{color:var(--gray-800);font-size:1.4rem;line-height:1.58;font-weight:600}.documentation_page .pagination .toc-level-1{padding-top:8px}.documentation_page .pagination .toc-item{padding-top:10px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-500);word-break:break-all}.documentation_page .pagination .toc-item.is_active{color:var(--orange-dark)}.documentation_page .pagination .toc-item .toc-item{padding-left:10px}.documentation_page .section_content_box{overflow-x:auto;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--gray-800);word-break:break-all}@media screen and (min-width:1600px){.documentation_page .section_content_box{padding-right:48px}}.documentation_page .section_content_box h2{margin-bottom:16px;font-size:4.6rem;line-height:1.18;font-weight:600}@media screen and (max-width:1023px){.documentation_page .section_content_box h2{font-size:2.4rem;line-height:1.34;font-weight:600}}.documentation_page .section_content_box h3{margin:56px 0 16px;font-size:2.4rem;line-height:1.34;font-weight:600}@media screen and (max-width:1023px){.documentation_page .section_content_box h3{font-size:2rem;line-height:1.4;font-weight:600}}.documentation_page .section_content_box h4{margin:56px 0 16px;font-size:2rem;line-height:1.4;font-weight:600}.documentation_page .section_content_box h5{margin:56px 0 16px;font-size:1.8rem;line-height:1.56;font-weight:600}.documentation_page .section_content_box h6{margin:56px 0 16px;font-size:1.6rem;line-height:1.75;font-weight:600}.documentation_page .section_content_box p{margin:16px 0;font-size:1.6rem;line-height:1.63;font-weight:400;word-break:break-word}.documentation_page .section_content_box ol,.documentation_page .section_content_box ul:not(.docs_breadcrumbs){margin:16px 0 24px 16px}.documentation_page .section_content_box ol li,.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li{position:relative;padding-left:20px;font-size:1.6rem;line-height:1.38;font-weight:400;word-break:break-word}.documentation_page .section_content_box ol li+li,.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li+li{margin-top:8px}.documentation_page .section_content_box ol li::before,.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li::before{display:block;position:absolute;top:10px;left:8px;width:3px;height:3px;border-radius:50%;background:var(--gray-800);content:""}.documentation_page .section_content_box ol{counter-reset:list}.documentation_page .section_content_box ol li::before{left:4px;top:0;width:20px;height:0;counter-increment:list;content:counter(list) "."}.documentation_page .section_content_box a:not(.btn,.docs_breadcrumbs_link){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--orange-0);border-bottom:1px solid var(--orange-0)}.documentation_page .section_content_box a:not(.btn,.docs_breadcrumbs_link).icon_link::after{display:block;width:13px;height:13px;margin-left:2px;background:url(/assets/icons/icon_link.svg) no-repeat center;content:""}.documentation_page .section_content_box .heading a{border:0;color:var(--gray-800)}.documentation_page .section_content_box .heading a:hover::after{margin-left:4px;color:var(--orange-0);content:"#"}.documentation_page .section_content_box img{width:100%;height:auto;margin-top:0;vertical-align:middle}.documentation_page .section_content_box img+img{margin-top:16px}.documentation_page .section_content_box video{width:100%}.documentation_page .section_content_box table{overflow:hidden;border:1px solid var(--gray-400);border-radius:4px;border-spacing:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.4rem;line-height:1.58;font-weight:400;text-align:left}.documentation_page .section_content_box table td,.documentation_page .section_content_box table th{min-width:143px;padding:4px 8px;border-right:1px solid var(--gray-400);border-bottom:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.documentation_page .section_content_box table td:last-of-type,.documentation_page .section_content_box table th:last-of-type{border-right:0}.documentation_page .section_content_box table tr:last-of-type td{border-bottom:0}.documentation_page .section_content_box table th{background:var(--gray-200);font-weight:600}.documentation_page .section_content_box code{padding:1px 5px 2px;border:1px solid var(--gray-400);border-radius:4px;background:var(--gray-100);font-family:RobotoMono,Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace;font-size:1.2rem;line-height:1.34;font-weight:500}.documentation_page .section_content_box .table_box{overflow-x:auto;width:100%;margin:24px 0 16px}@media screen and (max-width:639px){.documentation_page .section_content_box .table_box{margin:0;padding:0}}.documentation_page .section_content_box .img_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:24px;gap:16px}.documentation_page .section_content_box .img_wrap .img_box{-webkit-box-flex:1;-ms-flex:1;flex:1}.documentation_page .section_content_box .caption{margin-bottom:0;font-size:1.2rem;line-height:1.34;font-weight:400}.documentation_page .section_content_box .caption+.img_wrap,.documentation_page .section_content_box .caption+img,.documentation_page .section_content_box .caption+p{margin-top:24px}.documentation_page .section_content_box .codeblock_header{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:24px}.documentation_page .section_content_box .codeblock_header+.codeblock_box{margin-top:0}.documentation_page .section_content_box .codeblock_wrap{margin-bottom:24px;padding:16px;border-radius:0 0 4px 4px;border:1px solid var(--gray-400);border-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.documentation_page .section_content_box .codeblock_wrap .title{font-size:1.6rem;line-height:1.5;font-weight:600}.documentation_page .section_content_box .codeblock_wrap .desc{margin:24px 0;font-size:1.2rem;line-height:1.34;font-weight:400;color:var(--gray-600)}.documentation_page .section_content_box .codeblock_box{margin:24px 0}.documentation_page .section_content_box .codeblock_box .btn{margin:0}.documentation_page .section_content_box .codeblock_box .btn:hover{background:var(--gray-100)}.documentation_page .section_content_box .card_box{display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px;margin:24px 0}@media screen and (max-width:1023px){.documentation_page .section_content_box .card_box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.documentation_page .section_content_box .card{padding:16px 24px;border-radius:4px;border:1px solid var(--gray-400)}.documentation_page .section_content_box .card .title{display:block;font-size:1.6rem;line-height:1.5;font-weight:600}.documentation_page .section_content_box .card .desc{margin:24px 0 0;font-size:1.2rem;line-height:1.34;font-weight:400}.documentation_page .section_content_box .alert{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;display:inline-block;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;min-height:32px;margin:0;padding:11px 12px 11px 36px;border-radius:4px;font-size:1.6rem;line-height:1.38;font-weight:400;-webkit-box-sizing:border-box;box-sizing:border-box}.documentation_page .section_content_box .alert .title{display:block;margin-bottom:8px;font-weight:600;word-break:break-word}.documentation_page .section_content_box .alert p{margin:0;font-size:inherit;line-height:inherit;font-weight:inherit}.documentation_page .section_content_box .alert_box{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px;margin:24px 0}.documentation_page .section_content_box .alert_danger{background:var(--red-alpha-light)}.documentation_page .section_content_box .alert_success{background:var(--green-alpha-light)}.documentation_page .section_content_box .alert_warning{background:var(--yellow-alpha-light)}.documentation_page .section_content_box .alert_info{background:var(--blue-alpha-light)}.documentation_page .section_content_box .alert>.icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:14px;left:12px;width:15px;height:15px}.documentation_page .section_content_box .alert>.icon svg{width:100%;height:100%}.documentation_page .section_content_box .btn_box{margin:24px 0}.documentation_page .section_content_box .btn_box .btn:hover{background:var(--gray-900)}.documentation_page .section_content_box .docs_breadcrumbs{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:relative;margin-bottom:8px}.documentation_page .section_content_box .docs_breadcrumbs_link{display:inline-block;font-size:1.6rem;line-height:1.5;font-weight:600;color:var(--orange-dark)}.documentation_page .section_content_box .docs_breadcrumbs_link:not(:first-of-type)::before{display:inline-block;margin:0 4px;content:"-"}.documentation_page .toast_box{left:0}.examples_page .top_banner{padding-top:54px;padding-bottom:100px}@media screen and (max-width:1023px){.examples_page .top_banner{padding-top:50px;padding-bottom:32px}}@media screen and (max-width:1023px){.examples_page .top_banner .img_box{width:250px;height:298px}}.examples_page .title_group{padding-top:70px}@media screen and (max-width:1023px){.examples_page .title_group{padding-top:19px}}.examples_page .content{max-width:1120px;margin:0 auto;padding:120px 40px 240px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.examples_page .content{width:100%;max-width:none;padding:80px 32px 160px}}@media screen and (max-width:639px){.examples_page .content{padding:80px 16px 96px}}.examples_page .content_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media screen and (max-width:1023px){.examples_page .content_inner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.examples_page .navigator{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;position:-webkit-sticky;position:sticky;top:120px;-webkit-box-sizing:border-box;box-sizing:border-box}.examples_page .navigator_list{min-width:248px}@media screen and (max-width:1023px){.examples_page .navigator{display:none}}.examples_page .filter{display:none}@media screen and (max-width:1023px){.examples_page .filter{display:block;margin-bottom:16px;padding:0}}@media screen and (max-width:1023px){.examples_page .filter_list{border-bottom:none}}@media screen and (max-width:1023px){.examples_page .filter_desc{padding-left:0;padding-right:0}}@media screen and (max-width:1023px){.examples_page .filter .dropdown{right:auto;left:0;margin-top:0}}@media screen and (max-width:639px){.examples_page .filter .dropdown{right:0}}.examples_page .grid_list{margin-left:86px}@media screen and (max-width:1023px){.examples_page .grid_list{margin-left:0}}.examples_page .grid_item{max-width:336px}@media screen and (max-width:1023px){.examples_page .grid_item{max-width:none}}.examples_page .grid_item:only-child{min-width:694px}@media screen and (max-width:1023px){.examples_page .grid_item:only-child{min-width:auto}}.examples_page .grid_card{overflow:hidden}.examples_page .grid_thumbnail img{width:100%;height:auto;vertical-align:top;aspect-ratio:1200/750;-o-object-fit:cover;object-fit:cover}.darkmode .examples_page .grid_thumbnail [fill="#FEFDFB"],.darkmode .examples_page .grid_thumbnail [fill="url(#pattern0)"],.darkmode .examples_page .grid_thumbnail [fill="url(#pattern1)"],.darkmode .examples_page .grid_thumbnail [fill=white]{fill:var(--gray-000)}.darkmode .examples_page .grid_thumbnail [fill="#332E2B"]{fill:var(--gray-50)}.examples_view_page{max-width:2560px;margin:0 auto}@media screen and (max-width:1023px){.examples_view_page{max-width:none}}.examples_view_page .container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.examples_view_page .container .link{text-decoration:underline}.examples_view_page .sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;width:512px;max-height:calc(100vh - 64px);padding:24px 17px 24px 24px;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1px solid var(--gray-400);background:var(--gray-000)}@media screen and (max-width:1023px){.examples_view_page .sidebar{width:360px;padding-left:16px}}@media screen and (max-width:639px){.examples_view_page .sidebar{width:100%;max-height:none;padding-right:16px;border-right:none;-webkit-transition:none;transition:none}}.examples_view_page .sidebar.type_shadow{position:absolute;left:0;top:0;z-index:1;height:100%}.examples_view_page .sidebar.type_shadow:not(.is_hide){-webkit-box-shadow:8px 0 24px rgba(0,0,0,.16);box-shadow:8px 0 24px rgba(0,0,0,.16)}.examples_view_page .sidebar.type_shadow~.content{margin-left:64px}.examples_view_page .sidebar.is_hide{margin-left:-446px}@media screen and (max-width:1023px){.examples_view_page .sidebar.is_hide{margin-left:-294px}}@media screen and (max-width:639px){.examples_view_page .sidebar.is_hide{margin-left:0}}.examples_view_page .sidebar.is_hide .codeblock_box,.examples_view_page .sidebar.is_hide .codeblock_navigator,.examples_view_page .sidebar.is_hide .guide_box,.examples_view_page .sidebar.is_hide .sidebar_bottom{display:none}@media screen and (max-width:639px){.examples_view_page .sidebar.is_hide .codeblock_box,.examples_view_page .sidebar.is_hide .codeblock_navigator,.examples_view_page .sidebar.is_hide .guide_box,.examples_view_page .sidebar.is_hide .sidebar_bottom{display:block}}.examples_view_page .sidebar.is_hide .btn_toggle{margin-top:2px}.examples_view_page .sidebar.is_hide .btn_toggle .icon{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.examples_view_page .sidebar.type_wide{width:50%}@media screen and (max-width:639px){.examples_view_page .sidebar.type_wide{width:100%}}.examples_view_page .sidebar.type_wide.is_hide{width:74px;margin-left:0}.examples_view_page .sidebar.type_wide .codeblock_group{overflow-y:overlay;position:relative;height:calc(100% - 180px);margin-top:24px;padding:31px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--gray-400);border-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px}@media screen and (max-width:1023px){.examples_view_page .sidebar.type_wide .codeblock_group{height:calc(100% - 172px);padding:24px}}@media screen and (max-width:639px){.examples_view_page .sidebar.type_wide .codeblock_group{height:auto}}.examples_view_page .sidebar.type_wide .codeblock_group .codeblock_box{height:calc(100% - 152px);padding-bottom:0;border:none}@media screen and (max-width:1023px){.examples_view_page .sidebar.type_wide .codeblock_group .codeblock_box{height:calc(100% - 197px)}}.examples_view_page .sidebar.type_wide .codeblock_group .codeblock{border:1px solid var(--gray-400)}.examples_view_page .sidebar_top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.examples_view_page .sidebar .codeblock_navigator{padding-bottom:0;border-bottom:none}.examples_view_page .sidebar .btn_toggle{height:32px;margin-left:auto;padding:5px 7px;border:1px solid var(--gray-400)}@media screen and (max-width:639px){.examples_view_page .sidebar .btn_toggle{display:none}}.examples_view_page .sidebar .btn_toggle .icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);color:var(--gray-600)}.examples_view_page .sidebar .guide_box{overflow-y:overlay;position:relative;height:100%;margin-top:24px;padding:31px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--gray-400);border-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px}@media screen and (max-width:1023px){.examples_view_page .sidebar .guide_box{padding:24px}}.examples_view_page .sidebar .guide_title{margin-bottom:24px;font-size:3rem;line-height:1.27;font-weight:600;color:var(--gray-800);word-break:break-word}.examples_view_page .sidebar .guide_sub_title{display:block;margin-top:23px;padding-top:24px;border-top:1px solid var(--gray-400);font-size:1.6rem;line-height:1.5;font-weight:600;color:var(--gray-900)}.examples_view_page .sidebar .guide_desc{font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);word-break:break-word}.examples_view_page .sidebar .codeblock_box{height:100%;margin-top:24px;padding-bottom:24px;border:1px solid var(--gray-400);border-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .sidebar .codeblock_box:only-child{height:100%;margin-top:0;padding-bottom:0;border-bottom:1px solid var(--gray-400);border-radius:4px}@media screen and (max-width:1023px){.examples_view_page .sidebar .codeblock_box{height:calc(100% - 170px)}}.examples_view_page .sidebar .codeblock_box .codeblock{height:100%;border:0;background:var(--gray-000);word-break:break-all}.examples_view_page .sidebar_bottom{position:relative;z-index:10;margin-top:auto;padding:0 31px 35px;border:1px solid var(--gray-400);border-top:0;border-bottom-left-radius:4px;border-bottom-right-radius:4px;background-color:#fff}@media screen and (max-width:1023px){.examples_view_page .sidebar_bottom{padding:0 24px 24px}}.examples_view_page .sidebar_bottom::before{position:absolute;left:32px;right:32px;height:1px;background-color:var(--gray-400);content:""}@media screen and (max-width:1023px){.examples_view_page .sidebar_bottom::before{left:24px;right:24px}}@media screen and (max-width:639px){.examples_view_page .sidebar_bottom::before{display:none}}.examples_view_page .sidebar_bottom::after{content:"";position:absolute;top:0;left:20px;right:20px;z-index:10;height:30px;-webkit-box-shadow:0 15px 14px 0 #fff;box-shadow:0 15px 14px 0 #fff;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media screen and (max-width:639px){.examples_view_page .sidebar_bottom::after{display:none}}.examples_view_page .sidebar_bottom .btn_box{position:relative;z-index:20;margin-top:16px}@media screen and (max-width:1023px){.examples_view_page .sidebar_bottom .btn_box{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:639px){.examples_view_page .sidebar_bottom .btn_box{margin-top:0;padding-top:16px;border-top:1px solid var(--gray-400)}}.examples_view_page .sidebar_bottom .btn_share{-ms-flex-preferred-size:271px;flex-basis:271px}@media screen and (max-width:1023px){.examples_view_page .sidebar_bottom .btn_share{-ms-flex-preferred-size:100%;flex-basis:100%;margin-top:8px;margin-left:0}}@media screen and (max-width:1023px){.examples_view_page .sidebar_bottom .btn_share:only-child{margin-top:0}}.examples_view_page .sidebar_bottom .guide_desc{margin-top:8px;color:var(--gray-400)}.examples_view_page .sidebar .video_box{display:none}@media screen and (max-width:639px){.examples_view_page .sidebar .video_box{background-color:pink;display:block;margin-top:24px}}.examples_view_page .sidebar .video_box video{display:block;width:100%}.examples_view_page .sidebar .folder_box{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;max-height:calc(100% - 124px);margin-top:16px;border:1px solid var(--gray-400);border-radius:4px}@media screen and (max-width:639px){.examples_view_page .sidebar .folder_box{display:none}}.examples_view_page .sidebar .folder_box .folder_list{overflow-y:auto;-ms-flex-preferred-size:30%;flex-basis:30%;min-width:150px;padding-top:10px;padding-bottom:10px;border-right:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .sidebar .folder_box .folder_item{margin-top:4px}.examples_view_page .sidebar .folder_box .folder_item:first-child{margin-top:0}.examples_view_page .sidebar .folder_box .folder_item.is_active .name{font-weight:600;color:var(--orange-dark)}.examples_view_page .sidebar .folder_box .folder_sub_list{padding-top:4px;padding-left:24px}.examples_view_page .sidebar .folder_box .folder_sub_list .btn_folder{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.examples_view_page .sidebar .folder_box .btn_folder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:3px 14px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1.4rem;line-height:1.58;font-weight:400;text-align:left}.examples_view_page .sidebar .folder_box .btn_folder:hover .name{font-weight:600}.examples_view_page .sidebar .folder_box .btn_folder .icon{margin-right:4px;width:16px}.examples_view_page .sidebar .folder_box .btn_folder .icon svg{width:100%;height:100%}.examples_view_page .sidebar .folder_box .btn_folder .icon svg path{fill:var(--gray-800)}.examples_view_page .sidebar .folder_box .btn_folder .name{-ms-flex-preferred-size:calc(100% - 22px);flex-basis:calc(100% - 22px);word-break:break-all;color:var(--gray-800);font-size:1.2rem;line-height:1.5;font-weight:400}.examples_view_page .sidebar .folder_box .file_title{display:block;height:32px;border-bottom:1px solid var(--gray-400);border-top-right-radius:4px;background-color:var(--gray-000);color:var(--gray-800);font-size:1.4rem;line-height:2.29;font-weight:600;text-align:center}.examples_view_page .sidebar .folder_box .codeblock_area{overflow-x:auto;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-preferred-size:70%;flex-basis:70%}.examples_view_page .sidebar .folder_box .codeblock_box{height:calc(100% - 33px);margin-top:0;padding-bottom:0;border:none;border-radius:0}.examples_view_page .sidebar .folder_box .codeblock{border-radius:0}.examples_view_page .accordion_list{margin-top:23px;padding:0}.examples_view_page .accordion_list .accordion_item{margin-top:8px;border:1px solid var(--gray-400);border-radius:4px}.examples_view_page .accordion_list .accordion_item:first-child{margin-top:0}.examples_view_page .accordion_list .accordion_btn{padding:15px;font-size:1.4rem;line-height:1.58;font-weight:600;color:var(--gray-800)}.examples_view_page .accordion_list .accordion_btn .icon{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:16px;height:16px;margin-left:auto;margin-right:0;color:var(--gray-600)}.examples_view_page .accordion_list .accordion_btn .icon svg{width:100%;height:100%}.examples_view_page .accordion_list .accordion_btn.is_active .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.examples_view_page .accordion_list .accordion_btn.is_active~.accordion_content{padding-top:9px}.examples_view_page .accordion_list .accordion_content{padding-bottom:15px;font-size:1.4rem;line-height:1.58;font-weight:500}.examples_view_page .content{overflow-y:auto;-webkit-box-flex:1;-ms-flex:1;flex:1;max-height:calc(100vh - 112px);padding:24px}@media screen and (max-width:639px){.examples_view_page .content{display:none}}.examples_view_page .content.dual_view{max-height:calc(100vh - 64px);padding:0}.examples_view_page .content.show_view{overflow:hidden;max-height:calc(100vh - 64px);padding:0}.examples_view_page .content.content_view{max-height:calc(100vh - 64px);padding:0}.examples_view_page .content.content_view .accordion_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px;margin-top:0;padding:64px}@media screen and (max-width:1023px){.examples_view_page .content.content_view .accordion_list{padding:40px;-webkit-box-sizing:border-box;box-sizing:border-box}}.examples_view_page .content.content_view .accordion_list .accordion_item{width:calc(50% - 8px);margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.examples_view_page .content.content_view .accordion_list .accordion_item{width:100%}}.examples_view_page .dual_view .grid_list2{height:calc(100% - 113px);padding:23px;-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .dual_view .dashboard{height:100%}.examples_view_page .dual_view .dashboard_content{height:calc(100% - 42px)}.examples_view_page .grid_view .dashboard_top{-ms-flex-wrap:wrap;flex-wrap:wrap;padding-top:0}.examples_view_page .grid_view .user{margin-top:8px}.examples_view_page .grid_view .user_list{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-8px}.examples_view_page .grid_view .user_item{margin:8px 0 0 8px}.examples_view_page .grid_view .user_item:first-child{margin-left:8px}.examples_view_page .full_view .comment_view{min-width:300px}.examples_view_page .pin_box{overflow:hidden;position:relative;width:100%;height:113px;padding-right:48px;border-bottom:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .pin_box::before{position:absolute;top:0;right:48px;bottom:3px;z-index:1;width:25px;background:-webkit-gradient(linear,right top,left top,from(var(--gray-000)),to(transparent));background:linear-gradient(270deg,var(--gray-000),transparent);content:""}.examples_view_page .pin_list{overflow-x:overlay;position:relative;height:100%;padding:32px 24px 32px 22px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:0;line-height:normal;white-space:nowrap}.examples_view_page .pin_item{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;height:100%;padding:8px 47px 8px 15px;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.examples_view_page .pin_item.is_active{border-color:var(--blue-0)}.examples_view_page .pin_item+.pin_item{margin-left:16px}.examples_view_page .pin_item .user{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.examples_view_page .pin_item .user .icon{width:9px;height:9px;margin-right:8px;border-radius:50%}.examples_view_page .pin_item .user .text{font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800)}.examples_view_page .pin_item .btn_box{margin-left:16px}.examples_view_page .pin_item .btn{padding:7px}.examples_view_page .system_view{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;height:206px;padding-right:48px;border-bottom:1px solid var(--gray-400)}.examples_view_page .system_view::before{position:absolute;top:0;right:48px;bottom:3px;z-index:1;width:25px;background:-webkit-gradient(linear,right top,left top,from(var(--gray-000)),to(transparent));background:linear-gradient(270deg,var(--gray-000),transparent);content:""}.examples_view_page .system_view .system_view_list{overflow-x:overlay;padding:32px 24px 24px;text-align:center;font-size:0;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.examples_view_page .system_view .system_view_item{display:inline-block;position:relative;text-align:center}.examples_view_page .system_view .system_view_item .icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.examples_view_page .system_view .system_view_item:hover .btn_close{display:-webkit-box;display:-ms-flexbox;display:flex}.examples_view_page .system_view .system_view_item+.system_view_item{margin-left:24px}.examples_view_page .system_view .system_link .img_box{width:192px;height:126px;border-radius:4px;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .system_view .system_link .img_box svg{display:block;width:100%;height:100%}.examples_view_page .system_view .system_link.is_active .img_box{border-color:var(--blue-0)}.examples_view_page .system_view .system_name{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:8px;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-800)}.examples_view_page .system_view .system_name .icon{margin-right:8px}.examples_view_page .system_view .btn_close{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:-8px;left:-8px;width:26px;height:26px;border-radius:50%;border:1px solid var(--gray-400);background:var(--gray-000);-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .system_view .btn_close .icon{width:10px;height:10px}.examples_view_page .system_view .btn_expand{border:1px solid var(--blue-0);background:rgba(109,180,245,.24);color:var(--blue-0)}.examples_view_page .show_view_inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:calc(100% - 207px);padding:48px 24px 24px;-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .show_view_inner .dashboard{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;max-width:1200px;width:100%;height:100%;border:1px solid var(--gray-400)}.examples_view_page .show_view_inner .dashboard_content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .dashboard_content{overflow-x:auto;height:100%}}.examples_view_page .show_view_inner .dashboard .user{padding:5px 12px}.examples_view_page .show_view_inner .comment_view{min-width:240px}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .comment_view{position:relative;border-right:none}}.examples_view_page .show_view_inner .comment_view .comment_box{padding:10px 16px 24px}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .comment_view .comment_box{overflow-y:initial;position:relative}}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .comment_view .comment_box::before{position:absolute;top:0;right:-1px;bottom:0;z-index:1;width:1px;background-color:var(--gray-400);content:""}}.examples_view_page .show_view_inner .comment_view .toggle_box{padding:10px 16px}.examples_view_page .show_view_inner .comment_view .comment_item{margin:0 35px 0 29px}.examples_view_page .show_view_inner .comment_view .comment_item::before{left:-30px}.examples_view_page .show_view_inner .comment_view .user_list{right:-36px}.examples_view_page .show_view_inner .comment_view .btn_add{margin:10px 35px 0 29px}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .view_box{overflow:initial}}@media screen and (max-width:1023px){.examples_view_page .show_view_inner .view_box .view_list{overflow-y:initial;min-width:300px;height:auto;padding-bottom:161px;border-left:1px solid var(--gray-400)}}.examples_view_page .show_view_inner .mini_map{top:50px;right:10px;width:121px;height:236px}.examples_view_page .full_view_inner{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;width:auto;height:calc(100% + 48px);margin:-24px}.examples_view_page .mini_map{position:absolute;width:192px;height:373px;top:16px;right:16px;padding:8px 16px;border-radius:4px;border:1px solid var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box;background:var(--gray-000)}.examples_view_page .mini_map_header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:8px;border-bottom:1px solid var(--gray-400)}.examples_view_page .mini_map_header .title{padding:4px 0;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800)}.examples_view_page .mini_map_header .btn_minimize{color:var(--gray-500)}.examples_view_page .palette{position:absolute;left:50%;bottom:40px;z-index:1;width:608px;height:48px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:#9acd32}@media screen and (max-width:1023px){.examples_view_page .palette{width:300px}}.examples_view_page .menu_user_list{display:-webkit-box;display:-ms-flexbox;display:flex;gap:8px}@media screen and (max-width:639px){.examples_view_page .menu_user_list{display:none}}.examples_view_page .comment_view{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:33.17%;height:100%;border-right:1px solid var(--gray-400);background:var(--gray-000)}.examples_view_page .comment_view .toggle_box{padding:16px 24px;border-bottom:1px solid var(--gray-400)}.examples_view_page .comment_view .toggle_box .input_toggle_box{vertical-align:top}.examples_view_page .comment_view .comment_box{overflow-y:overlay;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:16px 24px}.examples_view_page .comment_view .comment_list{counter-reset:comment}.examples_view_page .comment_view .comment_item{position:relative;margin:0 46px 0 34px;padding:10px;border-radius:2px;border:1px solid var(--gray-400);font-size:1.4rem;line-height:1.58;font-weight:400;color:var(--gray-800);counter-increment:comment}.examples_view_page .comment_view .comment_item::before{position:absolute;top:0;left:-34px;font-size:1.4rem;line-height:.93;font-weight:600;content:"#" counter(comment)}.examples_view_page .comment_view .comment_item+.comment_item{margin-top:16px}.examples_view_page .comment_view .dialog_list{margin-top:10px;padding-top:10px;border-top:1px solid var(--gray-400)}.examples_view_page .comment_view .dialog_list .dialog{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.examples_view_page .comment_view .dialog_list .dialog+.dialog{margin-top:8px}.examples_view_page .comment_view .dialog_list .name{padding:0 5px;border-radius:2px;border:1px solid var(--blue-0);background:var(--blue-alpha-0);-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:none;flex:none}.examples_view_page .comment_view .dialog_list .name.green{background:var(--green-alpha-0);border-color:var(--green-0)}.examples_view_page .comment_view .dialog_list .name.red{background:var(--red-alpha-0);border-color:var(--red-0)}.examples_view_page .comment_view .dialog_list .chat{display:-webkit-box;display:-ms-flexbox;display:flex}.examples_view_page .comment_view .dialog_list .chat::before{margin:0 4px;content:":"}.examples_view_page .comment_view .user_list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:absolute;right:-46px;top:0;color:var(--gray-000);gap:8px}.examples_view_page .comment_view .user_list .user_item{margin:0}.examples_view_page .comment_view .user_list .icon svg path{fill:#fff}.examples_view_page .comment_view .btn_add{position:static;width:-webkit-fill-available;height:48px;margin:16px 46px 0 34px;border:1px solid var(--gray-400);border-radius:4px;color:var(--gray-400);-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .view_box{position:relative;overflow:hidden;width:100%}.examples_view_page .view_box .view_list{padding:24px 24px 157px;overflow-y:overlay;height:100%;counter-reset:view;-webkit-box-sizing:border-box;box-sizing:border-box}.examples_view_page .view_box .view_item{position:relative;padding:24px;text-align:center;border:1px dashed var(--gray-600);counter-increment:view}.examples_view_page .view_box .view_item::before{position:absolute;top:8px;left:16px;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800);content:"#" counter(view)}.examples_view_page .view_box .view_item+.view_item{margin-top:16px}.examples_view_page .view_box .view_item.is_active{border-color:var(--blue-dark)}.examples_view_page .view_box .view_item.is_active::before{color:var(--blue-dark)}.examples_view_page .view_box .view_item img{display:block;width:100%}.examples_view_page .btn_add{position:absolute;top:0;right:0;width:48px;height:100%;margin-left:0;border-radius:0}.examples_view_page .btn_expand{overflow:hidden;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:absolute;top:7px;right:7px;max-width:32px;height:32px;padding:7px;-webkit-transition:all .5s linear;transition:all .5s linear}.examples_view_page .btn_expand .text{display:block;overflow:hidden;margin-left:0;font-size:1.2rem;line-height:1.34;font-weight:500;color:var(--gray-000);white-space:nowrap}.examples_view_page .btn_expand .icon{-webkit-box-flex:0;-ms-flex:none;flex:none}.examples_view_page .btn_expand:hover:not(.is_disabled){max-width:100%;background:var(--blue-0);color:var(--gray-000)}.examples_view_page .btn_expand.is_disabled{cursor:auto;border-color:var(--gray-300);background-color:var(--gray-300);color:var(--gray-000)}.examples_view_page .code_view{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:none;padding:0}@media screen and (max-width:639px){.examples_view_page .code_view{display:none}}.examples_view_page .code_view .pin_box{height:81px}.examples_view_page .code_view .pin_list{padding:16px 23px}.examples_view_page .code_view .pin_item{padding-right:8px}.examples_view_page .code_view .pin_item .btn_box{margin-left:24px}.examples_view_page .code_view .grid_list2{overflow-y:auto;-webkit-box-flex:1;-ms-flex:1;flex:1;max-height:calc(100vh - 352px);padding:23px}.examples_view_page .code_view .grid_list2 .grid_item:only-child{-ms-flex-preferred-size:100%;flex-basis:100%;margin:0}@media screen and (max-width:1023px){.examples_view_page .code_view .grid_list2 .grid_item:only-child{height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}}.examples_view_page .code_view .grid_list2 .grid_item:nth-last-child(n+2):nth-last-child(-n+2):first-child,.examples_view_page .code_view .grid_list2 .grid_item:nth-last-child(n+2):nth-last-child(-n+2):first-child~.grid_item{-ms-flex-preferred-size:100%;flex-basis:100%;margin-top:23px;margin-left:0}.examples_view_page .code_view .grid_list2 .grid_item:nth-last-child(n+2):nth-last-child(-n+2):first-child{margin-top:0}.examples_view_page .code_view .dashboard{height:100%}.examples_view_page .code_view .dashboard_content{height:calc(100% - 41px);min-height:226px}.examples_view_page .log_box{position:relative;margin-top:auto;padding:0 23px 23px}.examples_view_page .log_box:before{position:absolute;top:-10px;left:0;right:0;z-index:1;background-color:var(--gray-000);height:10px;content:""}.examples_view_page .log_inner{overflow-y:auto;height:137px;padding:10px 12px;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:var(--gray-800);border-radius:4px}.examples_view_page .log_title{display:block;margin-bottom:4px;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-000)}.examples_view_page .log_desc{font-size:1.2rem;line-height:1.5;font-weight:400;color:var(--gray-000);word-break:break-word}.darkmode .sidebar_bottom{background-color:var(--gray-000)}.darkmode .sidebar_bottom::after{-webkit-box-shadow:0 15px 14px 0 var(--gray-000);box-shadow:0 15px 14px 0 var(--gray-000)}.product_page .top_banner{padding-top:108px;padding-bottom:110px}@media screen and (max-width:1023px){.product_page .top_banner{padding-top:24px;padding-bottom:32px}}.product_page .top_banner_inner{overflow:hidden;position:relative}.product_page .top_banner .title_group{position:relative;z-index:1;padding-top:50px}@media screen and (max-width:1023px){.product_page .top_banner .title_group{padding-top:0}}.product_page .top_banner .img_box{position:absolute;top:50%;right:-130px;width:748px;height:380px;margin-top:-168px}@media screen and (max-width:1023px){.product_page .top_banner .img_box{position:static;width:auto;height:auto;margin-top:0}}.product_page .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:1120px;margin:0 auto;padding:240px 40px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.product_page .content{padding:120px 32px}}@media screen and (max-width:639px){.product_page .content{padding-left:16px;padding-right:16px}}.product_page .content .link{text-decoration:underline}.product_page .section+.section{padding-top:240px}@media screen and (max-width:1023px){.product_page .section+.section{padding-top:160px}}.product_page .section_title_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:64px;padding-bottom:40px;border-bottom:2px solid var(--gray-600);color:var(--gray-800);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.product_page .section_title_wrap{display:block}}.product_page .section_title{width:50%;font-size:4.6rem;line-height:1.18;font-weight:600}@media screen and (max-width:1023px){.product_page .section_title{width:auto;font-size:2.4rem;line-height:1.34}}.product_page .section_desc{width:50%;padding-left:16px;font-size:1.6rem;line-height:1.5;font-weight:500;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.product_page .section_desc{width:auto;margin-top:16px;padding-left:0;font-size:1.4rem;line-height:1.58}}.product_page .section_content+.section_content{padding-top:120px}.product_page .sub_title{display:block;margin-bottom:32px;font-size:3rem;line-height:1.27;font-weight:600;color:var(--gray-800)}@media screen and (max-width:1023px){.product_page .sub_title{font-size:2rem;line-height:1.4}}.product_page .sub_desc{margin-bottom:32px;font-size:1.4rem;line-height:1.58;font-weight:500;color:var(--gray-800)}.product_page .sub_title_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.product_page .sub_title_wrap .btn{max-height:40px}.product_page .sub_title_wrap .btn:hover{background:var(--gray-900)}.product_page .sub_big_title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:3.8rem;line-height:1.22;font-weight:600;color:var(--gray-800)}@media screen and (max-width:1023px){.product_page .sub_big_title{font-size:2rem;line-height:1.4}}.product_page .sub_big_title>.icon{width:44px;height:44px;margin-right:16px;color:var(--orange-dark);-webkit-box-flex:0;-ms-flex:none;flex:none}@media screen and (max-width:1023px){.product_page .sub_big_title>.icon{width:24px;height:24px}}.product_page .sub_big_title>.icon svg{width:100%;height:100%}.product_page .sub_big_desc{margin-top:32px;font-size:1.6rem;line-height:1.5;font-weight:500;color:var(--gray-800)}.product_page .db_content{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:1023px){.product_page .db_content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.product_page .db_content .codeblock_content{width:66%;height:280px;padding-right:16px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.product_page .db_content .codeblock_content{width:100%;padding-right:0}}.product_page .db_content .codeblock_content .codeblock{overflow-y:auto;height:calc(100% - 50px);border-radius:0 0 4px 4px;border-top:0}@media screen and (max-width:1023px){.product_page .db_content .codeblock_content .codeblock{-ms-flex-preferred-size:100%;flex-basis:100%;margin-right:0}}.product_page .db_content .img_box{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:280px;-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1023px){.product_page .db_content .img_box{display:block;margin-top:16px}}@media screen and (max-width:639px){.product_page .db_content .img_box{height:auto}}@media screen and (max-width:1023px){.product_page .db_content .img_box img{height:100%}}@media screen and (max-width:639px){.product_page .db_content .img_box img{height:auto}}.product_page .db_content .img_box [fill=black]{fill:var(--gray-900)}.product_page .product_card_list{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:1023px){.product_page .product_card_list{display:block}}.product_page .product_card_list .product_card_item{-ms-flex-preferred-size:calc(100% - 8px);flex-basis:calc(100% - 8px);margin:0 8px;padding:16px 24px;border:1px solid var(--gray-400);border-radius:4px;color:var(--gray-800)}@media screen and (max-width:1023px){.product_page .product_card_list .product_card_item{-ms-flex-preferred-size:100%;flex-basis:100%;margin:16px 0 0}}.product_page .product_card_list .product_card_item:first-child{margin-left:0}@media screen and (max-width:1023px){.product_page .product_card_list .product_card_item:first-child{margin-top:0}}.product_page .product_card_list .product_card_item:last-child{margin-right:0}.product_page .product_card_list .product_card_title{display:block;font-size:1.6rem;line-height:1.5;font-weight:600}.product_page .product_card_list .product_card_desc{margin-top:24px;font-size:1.2rem;line-height:1.34;font-weight:400}.product_page .house_content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;max-width:1007px;padding-top:32px}.product_page .house_content .img_box{overflow:hidden;border:1px solid var(--gray-400);border-radius:8px}.product_page .house_content .img_box img{width:100%}.product_page .house_content .img_box [fill="#514C49"]{fill:var(--gray-800)}.product_page .house_content .img_box [fill="#807B78"]{fill:var(--gray-600)}.product_page .house_content .img_box [fill="#A6A19E"]{fill:var(--gray-500)}.product_page .house_content .img_box [fill="#E2DEDB"]{fill:var(--gray-200)}.product_page .house_content .img_box [stroke="#A6A19E"],.product_page .house_content .img_box [stroke="#C2BDBA"]{stroke:var(--gray-300);stroke-width:1}.product_page .house_content .img_pc{width:75%;padding-bottom:37px}.product_page .house_content .img_mobile{width:21%;padding:11px 0 16px}.product_page .package_group{position:relative}@media screen and (max-width:1023px){.product_page .package_group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.product_page .package_group .sub_title_wrap{padding-right:230px}@media screen and (max-width:1023px){.product_page .package_group .sub_title_wrap{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;padding-right:0}}.product_page .package_group .btn{position:absolute;top:0;right:0}@media screen and (max-width:1023px){.product_page .package_group .btn{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4;display:-webkit-box;display:-ms-flexbox;display:flex;position:static;width:100%;margin:32px 0 0}}@media screen and (max-width:1023px){.product_page .package_group .sub_big_desc{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.product_page .package_group .img_box{margin-top:32px}@media screen and (max-width:1023px){.product_page .package_group .img_box{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}.product_page .package_group .img_box [fill="#514C49"]{fill:var(--gray-800)}.product_page .package_group .img_box [fill="#855CF9"]{fill:var(--purple-dark)}.product_page .package_group .img_box [stroke="#332E2B"]{stroke:var(--gray-800)}.product_page .img_group{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:1023px){.product_page .img_group{display:block}}.product_page .img_group .img_box{-ms-flex-preferred-size:calc(50% - 8px);flex-basis:calc(50% - 8px);margin:0 8px}@media screen and (max-width:1023px){.product_page .img_group .img_box{-ms-flex-preferred-size:100%;flex-basis:100%;height:257px;margin:16px 0 0}}@media screen and (max-width:639px){.product_page .img_group .img_box{height:auto}}.product_page .img_group .img_box:first-child{margin-left:0}@media screen and (max-width:1023px){.product_page .img_group .img_box:first-child{margin-top:0}}.product_page .img_group .img_box:last-child{margin-right:0}@media screen and (max-width:1023px){.product_page .img_group svg{height:100%}}@media screen and (max-width:639px){.product_page .img_group svg{height:auto}}.product_page .img_box{display:block}.product_page .img_box svg{display:block;width:100%;height:100%}.product_page .prism-code .token{white-space:pre-wrap}.product_page .conflict_free .img_box [fill="#514C49"]{fill:var(--gray-800)}.product_page .conflict_free .img_box [fill=white]{fill:var(--gray-000)}.product_page .collaboration .img_box [stroke="#FEFDFB"]{stroke:var(--gray-000)}.darkmode .product_page .top_banner .img_box [fill="#FEFDFB"]{fill:var(--gray-000)}.darkmode .product_page .top_banner .img_box [fill="#FAF8F6"]{fill:var(--gray-50)}.darkmode .product_page .top_banner .img_box [fill="#E2DEDB"],.darkmode .product_page .top_banner .img_box [fill="#EFECEB"],.darkmode .product_page .top_banner .img_box [fill="#F5F3F1"]{fill:var(--gray-100)}.darkmode .product_page .top_banner .img_box [stroke="#EFECEB"]{stroke:var(--gray-50)}.darkmode .product_page .top_banner .img_box [stroke="#514C49"],.darkmode .product_page .top_banner .img_box [stroke="#E2DEDB"]{stroke:var(--gray-100)}.darkmode .product_page .top_banner .img_box [fill=black]{fill:var(--gray-900)}.darkmode .product_page .img_box [fill="#FEFDFB"]{fill:var(--gray-000)}.darkmode .product_page .house_content .img_box [fill="#332E2B"]+[fill="#514C49"]{fill:var(--gray-100)}
\ No newline at end of file
+@charset "UTF-8";
+.accordion_list {
+ padding: 0 32px;
+}
+@media screen and (max-width: 1023px) {
+ .accordion_list {
+ width: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .accordion_list {
+ padding: 0 16px;
+ }
+}
+.accordion_list .accordion_item {
+ border-bottom: 1px solid var(--gray-400);
+}
+.accordion_list .accordion_item:last-of-type {
+ border-bottom: 0;
+}
+.accordion_list .accordion_btn {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ text-align: left;
+ width: 100%;
+ padding: 24px 16px;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .accordion_list .accordion_btn {
+ font-size: 2rem;
+ line-height: 1.4;
+ }
+}
+.accordion_list .accordion_btn .icon {
+ width: 24px;
+ height: 24px;
+ margin-right: 16px;
+ color: var(--gray-800);
+}
+.accordion_list .accordion_btn.is_active ~ .accordion_content {
+ display: block;
+}
+.accordion_list .accordion_content {
+ display: none;
+ margin-top: -8px;
+ padding: 0 16px 24px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .accordion_list .accordion_content {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+@charset "UTF-8";
+.connect_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.connect_box + .connect_box {
+ margin-top: 16px;
+}
+.connect_box .account {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-width: 373px;
+ padding: 11px 23px;
+ border: 1px solid var(--gray-400);
+ border-radius: 8px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: var(--gray-50);
+}
+@media screen and (max-width: 1023px) {
+ .connect_box .account {
+ min-width: auto;
+ width: 100%;
+ }
+}
+.connect_box .account_title {
+ min-width: 96px;
+ padding-right: 10px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-600);
+ word-break: break-all;
+}
+@media screen and (max-width: 1023px) {
+ .connect_box .account_title {
+ min-width: 87px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .connect_box .account_title {
+ min-width: auto;
+ padding-left: 0;
+ }
+}
+.connect_box .account_id {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ font-size: 1.4rem;
+ line-height: 1.15;
+ font-weight: 600;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+@media screen and (max-width: 639px) {
+ .connect_box .account_id {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+}
+.connect_box .account_id.is_disabled {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+ color: var(--gray-400);
+}
+.connect_box .account_id:empty {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+ color: var(--gray-400);
+}
+.connect_box .account_id:empty::before {
+ content: attr(data-placeholder);
+}
+.connect_box .btn_box {
+ margin-left: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .connect_box .btn_box {
+ min-width: 100px;
+ }
+}
+.connect_box .btn_box .btn {
+ margin-top: 1px;
+ padding: 7px 13px 7px 11px;
+}
+.connect_box .btn_box .icon {
+ width: 12px;
+ height: 12px;
+}
+.connect_box .btn_box .text {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+}
+.connect_api_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.connect_api_box .api_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ overflow: hidden;
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-right: 16px;
+ border: 1px solid var(--gray-400);
+ border-radius: 8px;
+}
+.connect_api_box .api {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ overflow-x: overlay;
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ height: 100%;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.connect_api_box .value {
+ padding: 0 24px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-600);
+}
+.connect_api_box .btn_area {
+ position: relative;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+.connect_api_box .btn_area .btn {
+ height: 40px;
+ margin-left: 0;
+}
+.connect_api_box .btn_area .icon {
+ margin-right: 8px;
+}
+.connect_api_box .btn_cover {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: absolute;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ width: 100%;
+ height: 100%;
+ padding: 0 26px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 6px;
+ background: var(--gray-400);
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ z-index: 1;
+}
+.connect_api_box .btn_cover .icon {
+ display: inline-block;
+ margin-right: 10px;
+ vertical-align: top;
+}
+.connect_api_box .btn_cover .icon svg {
+ display: block;
+}
+@charset "UTF-8";
+.banner {
+ display: block;
+ min-height: 134px;
+ padding: 24px 32px;
+ border-radius: 10px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .banner {
+ min-height: 112px;
+ padding: 27px 14px 27px 22px;
+ }
+}
+.banner_box {
+ position: relative;
+}
+@media screen and (max-width: 1023px) {
+ .banner_box {
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .banner_box {
+ padding: 0 16px;
+ }
+}
+.banner_box .guide {
+ display: block;
+ margin-bottom: 24px;
+ padding-right: 32px;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-900);
+}
+.banner_box .btn_close {
+ position: absolute;
+ top: -2px;
+ right: -7px;
+ margin: 0;
+ padding: 5px;
+ color: var(--gray-900);
+}
+@media screen and (max-width: 1023px) {
+ .banner_box .btn_close {
+ right: 25px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .banner_box .btn_close {
+ right: 7px;
+ }
+}
+.banner_box .btn_close .icon {
+ width: 22px;
+ height: 22px;
+ margin: 0;
+}
+.banner_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+@media screen and (max-width: 639px) {
+ .banner_list {
+ display: block;
+ }
+}
+.banner_item {
+ overflow: hidden;
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ margin: 0 8px;
+ border-radius: 10px;
+}
+@media screen and (max-width: 639px) {
+ .banner_item {
+ margin: 16px 0 0;
+ }
+}
+.banner_item:first-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 639px) {
+ .banner_item:first-child {
+ margin-top: 0;
+ }
+}
+.banner_item:last-child {
+ margin-right: 0;
+}
+.banner_title {
+ display: block;
+ position: relative;
+ z-index: 1;
+ margin-bottom: 8px;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .banner_title {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+}
+.banner_desc {
+ position: relative;
+ z-index: 1;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+}
+@media screen and (max-width: 1023px) {
+ .banner_desc {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ }
+}
+.banner .img_box {
+ display: block;
+ position: absolute;
+ right: -4px;
+ bottom: -8px;
+}
+@media screen and (max-width: 1023px) {
+ .banner .img_box {
+ width: 158px;
+ }
+}
+.banner .img_box img {
+ display: block;
+ width: 100%;
+}
+@charset "UTF-8";
+.btn {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin: 0 0 0 8px;
+ padding: 8px 16px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ border: 1px solid transparent;
+ border-radius: 4px;
+ background-color: var(--gray-000);
+ color: var(--gray-600);
+ vertical-align: top;
+ cursor: pointer;
+ -webkit-transition: background-color 0.2s;
+ transition: background-color 0.2s;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.btn:hover {
+ background-color: var(--gray-100);
+}
+.btn:first-child {
+ margin-left: 0;
+}
+.btn .text {
+ margin-left: 8px;
+}
+.btn .text:only-child {
+ margin-left: 0;
+}
+.btn .icon {
+ width: 16px;
+ height: 16px;
+ margin-left: 8px;
+}
+.btn .icon:first-child {
+ margin-left: 0;
+}
+.btn .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.btn .icon svg path {
+ fill: currentColor;
+}
+.btn_line {
+ border-color: var(--gray-400);
+}
+.btn_line.is_disabled,
+.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn_small {
+ padding: 7px 12px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+}
+.btn_small .icon {
+ width: 12px;
+ height: 12px;
+}
+.btn_large {
+ padding: 11px 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+.btn_large .icon {
+ width: 24px;
+ height: 24px;
+}
+.btn_star {
+ margin-left: 8px;
+ margin-right: -4px;
+ padding: 3px;
+ color: var(--gray-500);
+}
+.btn_star .icon {
+ display: block;
+ width: 24px;
+ height: 24px;
+}
+.btn_star .icon path:first-child {
+ color: transparent;
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+}
+.btn_star .icon path:last-child {
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+}
+.btn_star.is_active {
+ color: var(--yellow-0);
+}
+.btn_star.is_active path:first-child {
+ color: inherit;
+}
+.btn.white {
+ background-color: #fff;
+ color: var(--gray-600);
+}
+.btn.white.is_disabled,
+.btn.white:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray900 {
+ background-color: var(--gray-900);
+ color: var(--gray-000);
+}
+.btn.gray900.btn_line {
+ border-color: transparent;
+}
+.btn.gray900.is_disabled,
+.btn.gray900:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray800 {
+ background-color: var(--gray-800);
+ color: var(--gray-000);
+}
+.btn.gray800.btn_line {
+ border-color: transparent;
+}
+.btn.gray800.is_disabled,
+.btn.gray800:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray700 {
+ background-color: var(--gray-700);
+ color: var(--gray-000);
+}
+.btn.gray700.btn_line {
+ border-color: transparent;
+}
+.btn.gray700.is_disabled,
+.btn.gray700:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray600 {
+ background-color: var(--gray-600);
+ color: var(--gray-000);
+}
+.btn.gray600.btn_line {
+ border-color: transparent;
+}
+.btn.gray600.is_disabled,
+.btn.gray600:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray500 {
+ background-color: var(--gray-500);
+ color: var(--gray-000);
+}
+.btn.gray500.btn_line {
+ border-color: transparent;
+}
+.btn.gray500.is_disabled,
+.btn.gray500:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray400 {
+ background-color: var(--gray-400);
+ color: var(--gray-600);
+}
+.btn.gray400.is_disabled,
+.btn.gray400:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray300 {
+ background-color: var(--gray-300);
+ color: var(--gray-600);
+}
+.btn.gray300.is_disabled,
+.btn.gray300:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray200 {
+ background-color: var(--gray-200);
+ color: var(--gray-600);
+}
+.btn.gray200.is_disabled,
+.btn.gray200:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray100 {
+ background-color: var(--gray-100);
+ color: var(--gray-600);
+}
+.btn.gray100.is_disabled,
+.btn.gray100:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.gray50 {
+ background-color: var(--gray-50);
+ color: var(--gray-600);
+}
+.btn.gray50.is_disabled,
+.btn.gray50:disabled {
+ cursor: auto;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_dark {
+ background-color: var(--orange-dark);
+ color: var(--gray-000);
+}
+.btn.orange_dark.btn_line {
+ border-color: var(--orange-0);
+ background-color: var(--orange-alpha-0);
+ color: var(--orange-dark);
+}
+.btn.orange_dark.btn_line.is_disabled,
+.btn.orange_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_dark.is_disabled,
+.btn.orange_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_0 {
+ background-color: var(--orange-0);
+ color: var(--gray-000);
+}
+.btn.orange_0:hover {
+ background-color: var(--orange-dark);
+}
+.btn.orange_0.btn_line {
+ border-color: var(--orange-0);
+ background-color: var(--orange-alpha-light);
+ color: var(--orange-dark);
+}
+.btn.orange_0.btn_line:hover {
+ background-color: var(--orange-alpha-0);
+}
+.btn.orange_0.btn_line.is_disabled,
+.btn.orange_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_0.is_disabled,
+.btn.orange_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_light {
+ background-color: var(--orange-light);
+ color: var(--gray-000);
+}
+.btn.orange_light.btn_line {
+ border-color: var(--orange-alpha-dark);
+ background-color: var(--orange-alpha-0);
+ color: var(--orange-dark);
+}
+.btn.orange_light.btn_line.is_disabled,
+.btn.orange_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_light.is_disabled,
+.btn.orange_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_alpha_dark {
+ background-color: var(--orange-alpha-dark);
+ color: var(--orange-dark);
+}
+.btn.orange_alpha_dark.btn_line {
+ border-color: var(--orange-alpha-dark);
+}
+.btn.orange_alpha_dark.btn_line.is_disabled,
+.btn.orange_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_alpha_dark.is_disabled,
+.btn.orange_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_alpha_0 {
+ background-color: var(--orange-alpha-0);
+ color: var(--orange-dark);
+}
+.btn.orange_alpha_0.btn_line {
+ border-color: var(--orange-alpha-0);
+}
+.btn.orange_alpha_0.btn_line.is_disabled,
+.btn.orange_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_alpha_0.is_disabled,
+.btn.orange_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.orange_alpha_light {
+ background-color: var(--orange-alpha-light);
+ color: var(--orange-0);
+}
+.btn.orange_alpha_light.btn_line {
+ border-color: var(--orange-alpha-light);
+}
+.btn.orange_alpha_light.btn_line.is_disabled,
+.btn.orange_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.orange_alpha_light.is_disabled,
+.btn.orange_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_dark {
+ background-color: var(--yellow-dark);
+ color: var(--gray-000);
+}
+.btn.yellow_dark.btn_line {
+ border-color: var(--yellow-0);
+ background-color: var(--yellow-alpha-0);
+ color: var(--yellow-dark);
+}
+.btn.yellow_dark.btn_line.is_disabled,
+.btn.yellow_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_dark.is_disabled,
+.btn.yellow_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_0 {
+ background-color: var(--yellow-0);
+ color: var(--gray-000);
+}
+.btn.yellow_0:hover {
+ background-color: var(--yellow-dark);
+}
+.btn.yellow_0.btn_line {
+ border-color: var(--yellow-0);
+ background-color: var(--yellow-alpha-light);
+ color: var(--yellow-dark);
+}
+.btn.yellow_0.btn_line:hover {
+ background-color: var(--yellow-alpha-0);
+}
+.btn.yellow_0.btn_line.is_disabled,
+.btn.yellow_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_0.is_disabled,
+.btn.yellow_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_light {
+ background-color: var(--yellow-light);
+ color: var(--gray-000);
+}
+.btn.yellow_light.btn_line {
+ border-color: var(--yellow-alpha-dark);
+ background-color: var(--yellow-alpha-0);
+ color: var(--yellow-dark);
+}
+.btn.yellow_light.btn_line.is_disabled,
+.btn.yellow_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_light.is_disabled,
+.btn.yellow_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_alpha_dark {
+ background-color: var(--yellow-alpha-dark);
+ color: var(--yellow-dark);
+}
+.btn.yellow_alpha_dark.btn_line {
+ border-color: var(--yellow-alpha-dark);
+}
+.btn.yellow_alpha_dark.btn_line.is_disabled,
+.btn.yellow_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_alpha_dark.is_disabled,
+.btn.yellow_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_alpha_0 {
+ background-color: var(--yellow-alpha-0);
+ color: var(--yellow-dark);
+}
+.btn.yellow_alpha_0.btn_line {
+ border-color: var(--yellow-alpha-0);
+}
+.btn.yellow_alpha_0.btn_line.is_disabled,
+.btn.yellow_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_alpha_0.is_disabled,
+.btn.yellow_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.yellow_alpha_light {
+ background-color: var(--yellow-alpha-light);
+ color: var(--yellow-0);
+}
+.btn.yellow_alpha_light.btn_line {
+ border-color: var(--yellow-alpha-light);
+}
+.btn.yellow_alpha_light.btn_line.is_disabled,
+.btn.yellow_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.yellow_alpha_light.is_disabled,
+.btn.yellow_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_dark {
+ background-color: var(--green-dark);
+ color: var(--gray-000);
+}
+.btn.green_dark.btn_line {
+ border-color: var(--green-0);
+ background-color: var(--green-alpha-0);
+ color: var(--green-dark);
+}
+.btn.green_dark.btn_line.is_disabled,
+.btn.green_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_dark.is_disabled,
+.btn.green_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_0 {
+ background-color: var(--green-0);
+ color: var(--gray-000);
+}
+.btn.green_0:hover {
+ background-color: var(--green-dark);
+}
+.btn.green_0.btn_line {
+ border-color: var(--green-0);
+ background-color: var(--green-alpha-light);
+ color: var(--green-dark);
+}
+.btn.green_0.btn_line:hover {
+ background-color: var(--green-alpha-0);
+}
+.btn.green_0.btn_line.is_disabled,
+.btn.green_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_0.is_disabled,
+.btn.green_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_light {
+ background-color: var(--green-light);
+ color: var(--gray-000);
+}
+.btn.green_light.btn_line {
+ border-color: var(--green-alpha-dark);
+ background-color: var(--green-alpha-0);
+ color: var(--green-dark);
+}
+.btn.green_light.btn_line.is_disabled,
+.btn.green_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_light.is_disabled,
+.btn.green_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_alpha_dark {
+ background-color: var(--green-alpha-dark);
+ color: var(--green-dark);
+}
+.btn.green_alpha_dark.btn_line {
+ border-color: var(--green-alpha-dark);
+}
+.btn.green_alpha_dark.btn_line.is_disabled,
+.btn.green_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_alpha_dark.is_disabled,
+.btn.green_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_alpha_0 {
+ background-color: var(--green-alpha-0);
+ color: var(--green-dark);
+}
+.btn.green_alpha_0.btn_line {
+ border-color: var(--green-alpha-0);
+}
+.btn.green_alpha_0.btn_line.is_disabled,
+.btn.green_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_alpha_0.is_disabled,
+.btn.green_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.green_alpha_light {
+ background-color: var(--green-alpha-light);
+ color: var(--green-0);
+}
+.btn.green_alpha_light.btn_line {
+ border-color: var(--green-alpha-light);
+}
+.btn.green_alpha_light.btn_line.is_disabled,
+.btn.green_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.green_alpha_light.is_disabled,
+.btn.green_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_dark {
+ background-color: var(--blue-dark);
+ color: var(--gray-000);
+}
+.btn.blue_dark.btn_line {
+ border-color: var(--blue-0);
+ background-color: var(--blue-alpha-0);
+ color: var(--blue-dark);
+}
+.btn.blue_dark.btn_line.is_disabled,
+.btn.blue_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_dark.is_disabled,
+.btn.blue_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_0 {
+ background-color: var(--blue-0);
+ color: var(--gray-000);
+}
+.btn.blue_0:hover {
+ background-color: var(--blue-dark);
+}
+.btn.blue_0.btn_line {
+ border-color: var(--blue-0);
+ background-color: var(--blue-alpha-light);
+ color: var(--blue-dark);
+}
+.btn.blue_0.btn_line:hover {
+ background-color: var(--blue-alpha-0);
+}
+.btn.blue_0.btn_line.is_disabled,
+.btn.blue_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_0.is_disabled,
+.btn.blue_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_light {
+ background-color: var(--blue-light);
+ color: var(--gray-000);
+}
+.btn.blue_light.btn_line {
+ border-color: var(--blue-alpha-dark);
+ background-color: var(--blue-alpha-0);
+ color: var(--blue-dark);
+}
+.btn.blue_light.btn_line.is_disabled,
+.btn.blue_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_light.is_disabled,
+.btn.blue_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_alpha_dark {
+ background-color: var(--blue-alpha-dark);
+ color: var(--blue-dark);
+}
+.btn.blue_alpha_dark.btn_line {
+ border-color: var(--blue-alpha-dark);
+}
+.btn.blue_alpha_dark.btn_line.is_disabled,
+.btn.blue_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_alpha_dark.is_disabled,
+.btn.blue_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_alpha_0 {
+ background-color: var(--blue-alpha-0);
+ color: var(--blue-dark);
+}
+.btn.blue_alpha_0.btn_line {
+ border-color: var(--blue-alpha-0);
+}
+.btn.blue_alpha_0.btn_line.is_disabled,
+.btn.blue_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_alpha_0.is_disabled,
+.btn.blue_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.blue_alpha_light {
+ background-color: var(--blue-alpha-light);
+ color: var(--blue-0);
+}
+.btn.blue_alpha_light.btn_line {
+ border-color: var(--blue-alpha-light);
+}
+.btn.blue_alpha_light.btn_line.is_disabled,
+.btn.blue_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.blue_alpha_light.is_disabled,
+.btn.blue_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_dark {
+ background-color: var(--red-dark);
+ color: var(--gray-000);
+}
+.btn.red_dark.btn_line {
+ border-color: var(--red-0);
+ background-color: var(--red-alpha-0);
+ color: var(--red-dark);
+}
+.btn.red_dark.btn_line.is_disabled,
+.btn.red_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_dark.is_disabled,
+.btn.red_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_0 {
+ background-color: var(--red-0);
+ color: var(--gray-000);
+}
+.btn.red_0:hover {
+ background-color: var(--red-dark);
+}
+.btn.red_0.btn_line {
+ border-color: var(--red-0);
+ background-color: var(--red-alpha-light);
+ color: var(--red-dark);
+}
+.btn.red_0.btn_line:hover {
+ background-color: var(--red-alpha-0);
+}
+.btn.red_0.btn_line.is_disabled,
+.btn.red_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_0.is_disabled,
+.btn.red_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_light {
+ background-color: var(--red-light);
+ color: var(--gray-000);
+}
+.btn.red_light.btn_line {
+ border-color: var(--red-alpha-dark);
+ background-color: var(--red-alpha-0);
+ color: var(--red-dark);
+}
+.btn.red_light.btn_line.is_disabled,
+.btn.red_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_light.is_disabled,
+.btn.red_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_alpha_dark {
+ background-color: var(--red-alpha-dark);
+ color: var(--red-dark);
+}
+.btn.red_alpha_dark.btn_line {
+ border-color: var(--red-alpha-dark);
+}
+.btn.red_alpha_dark.btn_line.is_disabled,
+.btn.red_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_alpha_dark.is_disabled,
+.btn.red_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_alpha_0 {
+ background-color: var(--red-alpha-0);
+ color: var(--red-dark);
+}
+.btn.red_alpha_0.btn_line {
+ border-color: var(--red-alpha-0);
+}
+.btn.red_alpha_0.btn_line.is_disabled,
+.btn.red_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_alpha_0.is_disabled,
+.btn.red_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.red_alpha_light {
+ background-color: var(--red-alpha-light);
+ color: var(--red-0);
+}
+.btn.red_alpha_light.btn_line {
+ border-color: var(--red-alpha-light);
+}
+.btn.red_alpha_light.btn_line.is_disabled,
+.btn.red_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.red_alpha_light.is_disabled,
+.btn.red_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_dark {
+ background-color: var(--purple-dark);
+ color: var(--gray-000);
+}
+.btn.purple_dark.btn_line {
+ border-color: var(--purple-0);
+ background-color: var(--purple-alpha-0);
+ color: var(--purple-dark);
+}
+.btn.purple_dark.btn_line.is_disabled,
+.btn.purple_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_dark.is_disabled,
+.btn.purple_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_0 {
+ background-color: var(--purple-0);
+ color: var(--gray-000);
+}
+.btn.purple_0:hover {
+ background-color: var(--purple-dark);
+}
+.btn.purple_0.btn_line {
+ border-color: var(--purple-0);
+ background-color: var(--purple-alpha-light);
+ color: var(--purple-dark);
+}
+.btn.purple_0.btn_line:hover {
+ background-color: var(--purple-alpha-0);
+}
+.btn.purple_0.btn_line.is_disabled,
+.btn.purple_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_0.is_disabled,
+.btn.purple_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_light {
+ background-color: var(--purple-light);
+ color: var(--gray-000);
+}
+.btn.purple_light.btn_line {
+ border-color: var(--purple-alpha-dark);
+ background-color: var(--purple-alpha-0);
+ color: var(--purple-dark);
+}
+.btn.purple_light.btn_line.is_disabled,
+.btn.purple_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_light.is_disabled,
+.btn.purple_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_alpha_dark {
+ background-color: var(--purple-alpha-dark);
+ color: var(--purple-dark);
+}
+.btn.purple_alpha_dark.btn_line {
+ border-color: var(--purple-alpha-dark);
+}
+.btn.purple_alpha_dark.btn_line.is_disabled,
+.btn.purple_alpha_dark.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_alpha_dark.is_disabled,
+.btn.purple_alpha_dark:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_alpha_0 {
+ background-color: var(--purple-alpha-0);
+ color: var(--purple-dark);
+}
+.btn.purple_alpha_0.btn_line {
+ border-color: var(--purple-alpha-0);
+}
+.btn.purple_alpha_0.btn_line.is_disabled,
+.btn.purple_alpha_0.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_alpha_0.is_disabled,
+.btn.purple_alpha_0:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn.purple_alpha_light {
+ background-color: var(--purple-alpha-light);
+ color: var(--purple-0);
+}
+.btn.purple_alpha_light.btn_line {
+ border-color: var(--purple-alpha-light);
+}
+.btn.purple_alpha_light.btn_line.is_disabled,
+.btn.purple_alpha_light.btn_line:disabled {
+ border-color: var(--gray-300);
+}
+.btn.purple_alpha_light.is_disabled,
+.btn.purple_alpha_light:disabled {
+ pointer-events: none;
+ background-color: var(--gray-50);
+ color: var(--gray-300);
+}
+.btn_toggle {
+ padding: 7px 11px;
+ color: var(--gray-500);
+ background-color: var(--gray-000);
+}
+.btn_toggle:hover {
+ background-color: var(--gray-100);
+}
+.btn_toggle.is_active {
+ color: var(--blue-dark);
+ background-color: var(--blue-alpha-light);
+}
+.btn_plus {
+ margin-left: 32px;
+ padding: 7px 11px 7px 10px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ background-color: var(--blue-0);
+ color: var(--gray-000);
+}
+.btn_plus:hover {
+ background-color: var(--blue-dark);
+}
+.btn_plus .icon {
+ width: 12px;
+ height: 12px;
+}
+.btn_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.btn_box.full_width {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 100%;
+ flex: 1 1 100%;
+}
+.btn_box.full_width .btn {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+}
+.btn_top {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .btn_top {
+ display: block;
+ position: fixed;
+ bottom: 72px;
+ right: 24px;
+ margin: 0;
+ padding: 0;
+ border: none;
+ background-color: transparent;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .btn_top .icon {
+ width: 32px;
+ height: 32px;
+ margin: 0;
+ }
+}
+.btn_top svg rect {
+ fill: var(--gray-000);
+}
+@charset "UTF-8";
+.service_card_list .service_card_item {
+ width: 100%;
+ border: 1px solid var(--gray-400);
+ border-radius: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.service_card_list .service_card_item + .service_card_item {
+ margin-top: 16px;
+}
+.service_card_list .service_card_item.is_active .img_box {
+ height: 99px;
+ opacity: 1;
+}
+.service_card_list .service_card_item.is_active .img_box svg {
+ height: auto;
+ vertical-align: top;
+}
+.service_card_list .service_card_item.is_active .service_card_title {
+ padding-top: 115px;
+ margin-bottom: 8px;
+ opacity: 1;
+}
+.service_card_list .service_card_item.is_active .service_card_desc {
+ height: 88px;
+ opacity: 1;
+}
+@media screen and (max-width: 1023px) {
+ .service_card_list .service_card_item.is_active .service_card_desc {
+ height: auto;
+ max-height: 100px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .service_card_list .service_card_item.is_active .service_card_desc {
+ max-height: 120px;
+ }
+}
+@media screen and (max-width: 359px) {
+ .service_card_list .service_card_item.is_active .service_card_desc {
+ max-height: 130px;
+ }
+}
+.service_card_list .service_card_menu {
+ position: relative;
+ width: 100%;
+ padding: 24px;
+ text-align: left;
+}
+.service_card_list .img_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ position: absolute;
+ top: 24px;
+ left: 0;
+ width: 100%;
+ height: 0;
+ text-align: center;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ opacity: 0;
+ -webkit-transition: all 0.4s ease-out;
+ transition: all 0.4s ease-out;
+}
+.service_card_list .img_box svg {
+ height: 0;
+ vertical-align: top;
+}
+.service_card_list .service_card_title {
+ display: block;
+ color: var(--gray-900);
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ -webkit-transition: all 0.4s ease-out;
+ transition: all 0.4s ease-out;
+}
+@media screen and (max-width: 1023px) {
+ .service_card_list .service_card_title {
+ font-size: 2rem;
+ line-height: 1.4;
+ }
+}
+.service_card_list .service_card_desc {
+ display: block;
+ overflow: hidden;
+ height: 0;
+ color: var(--gray-900);
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ word-break: keep-all;
+ -webkit-transition: all 0.4s ease-out;
+ transition: all 0.4s ease-out;
+ opacity: 0;
+}
+@media screen and (max-width: 1023px) {
+ .service_card_list .service_card_desc {
+ height: auto;
+ max-height: 0;
+ }
+}
+.horizon_list {
+ width: 100%;
+}
+.horizon_list .horizon_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+@media screen and (max-width: 1023px) {
+ .horizon_list .horizon_item {
+ display: block;
+ }
+}
+.horizon_list .horizon_item + .horizon_item {
+ margin-top: 80px;
+}
+.horizon_list .text_box {
+ max-width: 400px;
+ padding-left: 40px;
+}
+@media screen and (max-width: 1023px) {
+ .horizon_list .text_box {
+ max-width: none;
+ margin-top: 24px;
+ padding-left: 0;
+ text-align: center;
+ }
+}
+.horizon_list .text_box .title {
+ display: block;
+ color: var(--gray-800);
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .horizon_list .text_box .title {
+ font-size: 2rem;
+ line-height: 1.4;
+ text-align: left;
+ }
+}
+.horizon_list .text_box .desc {
+ margin-top: 24px;
+ color: var(--gray-800);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ word-break: keep-all;
+}
+@media screen and (max-width: 1023px) {
+ .horizon_list .text_box .desc {
+ font-size: 1.4rem;
+ line-height: 22px;
+ text-align: left;
+ }
+}
+.horizon_list .text_box .btn {
+ margin-top: 24px;
+ margin-left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .horizon_list .text_box .btn {
+ height: 40px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .horizon_list .text_box .btn {
+ width: 100%;
+ }
+}
+.horizon_list .text_box .btn.gray800:hover {
+ background-color: var(--gray-900);
+}
+@charset "UTF-8";
+.codeblock_box {
+ position: relative;
+}
+.codeblock_box.is_bash .codeblock {
+ padding: 12px 0;
+}
+.codeblock_box .btn_area {
+ position: absolute;
+ right: 8px;
+ top: 8px;
+}
+.codeblock_box .btn_area .btn {
+ padding: 9px 11px;
+}
+.codeblock_box .btn_area .icon {
+ width: 12px;
+ height: 12px;
+}
+.codeblock {
+ position: relative;
+ overflow-x: auto;
+ min-height: 48px;
+ padding: 8px 0;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+ background: var(--gray-000);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.prism-code {
+ display: table;
+ margin: 0;
+ font-family: RobotoMono, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
+}
+.prism-code .token {
+ white-space: pre;
+}
+.prism-code .token-line {
+ display: table-row;
+}
+.prism-code .token-line.is_removed {
+ background: var(--red-alpha-light);
+}
+.prism-code .token-line.is_created {
+ background: var(--green-alpha-light);
+}
+.prism-code .token-line.is_edited {
+ background: var(--yellow-alpha-light);
+}
+.prism-code .string {
+ word-break: break-all;
+}
+.prism-code .class-name {
+ color: var(--purple-dark);
+}
+.prism-code .parameter,
+.prism-code .plain,
+.prism-code .property {
+ color: var(--gray-900);
+}
+.prism-code .line-content,
+.prism-code .line-number {
+ display: table-cell;
+ padding: 0 16px;
+}
+.prism-code .line-number {
+ font-size: 1.2rem;
+ line-height: 2;
+ font-weight: 400;
+ color: var(--gray-500);
+ text-align: right;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.prism-code .line-content {
+ font-size: 1.4rem;
+ line-height: 1.72;
+ font-weight: 400;
+}
+.prism-code.language-json .token.property {
+ color: var(--blue-dark);
+}
+.prism-code.language-json .token.number {
+ color: var(--orange-dark);
+}
+.prism-code.language-bash {
+ padding: 0 24px;
+}
+.codeblock_tree_box {
+ padding: 16px 24px;
+ border: 1px solid var(--gray-400);
+ border-radius: 0 0 4px 4px;
+ background: var(--gray-000);
+ color: var(--gray-600);
+ word-break: break-all;
+}
+.codeblock_tree_box .react-json-view {
+ font-family:
+ Pretendard,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ Roboto,
+ 'Helvetica Neue',
+ Arial,
+ sans-serif !important;
+}
+.codeblock_tree_box
+ .react-json-view
+ > .object-container
+ > .object-content
+ > .object-key-val
+ > span:first-child
+ .object-key::after {
+ display: none;
+}
+.codeblock_tree_box .object-key-val {
+ padding: 0 !important;
+}
+.codeblock_tree_box .object-key-val span {
+ position: relative;
+ display: inline-block;
+ opacity: 1 !important;
+}
+.codeblock_tree_box .object-key-val .object-content {
+ 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: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ margin-left: 24px !important;
+}
+.codeblock_tree_box .object-key-val .icon-container {
+ position: absolute;
+ left: 0;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+.codeblock_tree_box .object-key-val .icon-container .collapsed-icon,
+.codeblock_tree_box .object-key-val .icon-container .expanded-icon {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.codeblock_tree_box .object-key-val .variable-row,
+.codeblock_tree_box .object-key-val > span:first-child {
+ display: inline-block;
+ padding: 8px 12px;
+ margin-bottom: 16px;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+ font-size: 1.4rem;
+ line-height: 1.72;
+ font-weight: 500;
+ letter-spacing: 0 !important;
+}
+.codeblock_tree_box .object-key-val .variable-row.is_edited,
+.codeblock_tree_box .object-key-val > span:first-child.is_edited {
+ border-color: var(--yellow-0);
+ background: var(--yellow-alpha-light);
+ color: var(--yellow-dark);
+}
+.codeblock_tree_box .object-key-val .variable-row.is_created,
+.codeblock_tree_box .object-key-val > span:first-child.is_created {
+ border-color: var(--green-0);
+ background: var(--green-alpha-light);
+ color: var(--green-dark);
+}
+.codeblock_tree_box .object-key-val .variable-row.is_removed,
+.codeblock_tree_box .object-key-val > span:first-child.is_removed {
+ border-color: var(--red-0);
+ background: var(--red-alpha-light);
+ color: var(--red-dark);
+}
+.codeblock_tree_box .object-key-val .array-key,
+.codeblock_tree_box .object-key-val .object-key {
+ position: relative;
+ padding-left: 20px;
+ font-size: 1.4rem;
+ line-height: 1.72;
+ font-weight: 500;
+}
+.codeblock_tree_box .object-key-val .object-key-val,
+.codeblock_tree_box .object-key-val .variable-row {
+ position: relative;
+}
+.codeblock_tree_box .object-key-val .object-key-val:first-of-type::after,
+.codeblock_tree_box .object-key-val .variable-row:first-of-type::after {
+ top: -16px;
+ height: 32px;
+}
+.codeblock_tree_box .object-key-val .object-key-val::after,
+.codeblock_tree_box .object-key-val .variable-row::after {
+ position: absolute;
+ top: 0;
+ width: 16px;
+ height: 16px;
+ border: 1px dashed var(--gray-400);
+ border-width: 0 0 1px 1px;
+ border-radius: 0 0 0 4px;
+ content: '';
+}
+.codeblock_tree_box .object-key-val .object-key-val:not(:last-of-type)::before,
+.codeblock_tree_box .object-key-val .variable-row:not(:last-of-type)::before {
+ position: absolute;
+ border: 1px dashed var(--gray-400);
+ border-width: 0 0 0 1px;
+ content: '';
+}
+.codeblock_tree_box .object-key-val .object-key-val::after {
+ left: -17px;
+}
+.codeblock_tree_box .object-key-val .object-key-val:not(:last-of-type)::before {
+ left: -17px;
+ top: 17px;
+ bottom: 0;
+}
+.codeblock_tree_box .object-key-val .variable-row {
+ padding: 8px 12px !important;
+}
+.codeblock_tree_box .object-key-val .variable-row::after {
+ left: -18px;
+}
+.codeblock_tree_box .object-key-val .variable-row:not(:last-of-type)::before {
+ left: -18px;
+ top: 16px;
+ bottom: -20px;
+}
+.codeblock_tree_box .object-key-val .variable-row .object-key {
+ padding: 0;
+ border: 0;
+ margin: 0;
+}
+.codeblock_tree_box .object-key-val .variable-row .object-key::after,
+.codeblock_tree_box .object-key-val .variable-row .object-key::before {
+ display: none;
+}
+.codeblock_tree_box .object-key-val .variable-row .variable-value {
+ padding-right: 0 !important;
+}
+.codeblock_tree_box .object-key-val .brace-row {
+ display: block;
+ width: 0;
+ font-size: 0;
+}
+.codeblock_tree_box .object-key-val .object-meta-data {
+ position: absolute;
+}
+.codeblock_tree_box .node-ellipsis {
+ margin-left: 4px;
+}
+@charset "UTF-8";
+.codeblock_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ min-height: 48px;
+ padding: 8px 8px 8px 16px;
+ background: var(--gray-50);
+ border: 1px solid var(--gray-400);
+ border-radius: 4px 4px 0 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .codeblock_header {
+ padding: 10px 8px 6px;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ }
+}
+@media screen and (max-width: 639px) {
+ .codeblock_header {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+}
+.codeblock_header .box_left {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+@media screen and (max-width: 1023px) {
+ .codeblock_header .box_left {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+}
+@media screen and (max-width: 639px) {
+ .codeblock_header .box_left {
+ margin-right: 10px;
+ }
+}
+.codeblock_header .box_left .btn {
+ height: 32px;
+ margin-left: 16px;
+ padding: 8px 12px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .codeblock_header .box_left .btn {
+ margin: 10px 0 0;
+ }
+}
+.codeblock_header .box_left .btn .icon {
+ width: 12px;
+ height: 12px;
+}
+.codeblock_header .desc {
+ padding-left: 8px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.codeblock_header .info_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ padding-left: 56px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .codeblock_header .info_list {
+ padding-left: 8px;
+ }
+}
+.codeblock_header .info_list .info_title {
+ color: var(--gray-600);
+}
+.codeblock_header .info_list .info_title:not(:first-child) {
+ padding-left: 40px;
+}
+.codeblock_header .info_list .info_desc {
+ padding-left: 16px;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+.codeblock_header .box_right {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+@media screen and (max-width: 639px) {
+ .codeblock_header .box_right {
+ margin-top: 8px;
+ }
+}
+.codeblock_header .box_right .btn_area {
+ position: relative;
+ margin-left: 24px;
+}
+.codeblock_header .box_right .btn_line {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding: 10px 12px;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+ color: var(--gray-800);
+}
+.codeblock_header .box_right .btn_line .icon {
+ width: 12px;
+ height: 12px;
+}
+.codeblock_header .btn_toggle {
+ padding: 8px;
+}
+.codeblock_header .btn_toggle:not(.is_active) {
+ background: var(--gray-50);
+}
+@charset "UTF-8";
+.codeblock_navigator {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-bottom: 8px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.codeblock_navigator .item {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 36px;
+ padding: 0 16px;
+ border-radius: 8px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-600);
+}
+.codeblock_navigator .item + .item {
+ margin-left: 8px;
+}
+.codeblock_navigator .item.is_active {
+ background: var(--gray-800);
+ color: var(--gray-000);
+}
+@charset "UTF-8";
+.create_project {
+ padding: 32px 16px 40px;
+ border: 1px solid var(--gray-400);
+ border-radius: 16px;
+}
+@media screen and (max-width: 639px) {
+ .create_project {
+ padding: 0;
+ border: none;
+ }
+}
+.create_project_area {
+ margin-top: 32px;
+}
+@media screen and (max-width: 639px) {
+ .create_project_area {
+ margin-top: 56px;
+ }
+}
+@media screen and (max-width: 359px) {
+ .create_project_area {
+ margin-top: 24px;
+ }
+}
+.create_project + .btn_box {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ margin-top: 32px;
+}
+@media screen and (max-width: 639px) {
+ .create_project + .btn_box {
+ position: absolute;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ margin-top: 0;
+ padding: 32px 16px;
+ }
+}
+.create_project + .btn_box .btn {
+ padding: 12px 56px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .create_project + .btn_box .btn {
+ padding: 12px 40px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .create_project + .btn_box .btn {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 100%;
+ flex: 1 1 100%;
+ }
+}
+.create_project .title_list {
+ overflow-y: overlay;
+ max-height: 200px;
+ margin-top: 24px;
+}
+@media screen and (max-width: 639px) {
+ .create_project .title_list {
+ max-height: 310px;
+ }
+}
+.create_project .title_item.is_active .title_menu,
+.create_project .title_item:hover .title_menu {
+ background-color: var(--gray-100);
+}
+.create_project .title_menu {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ width: 100%;
+ padding: 12px 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 639px) {
+ .create_project .title_menu {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+}
+.create_project .title_menu .thumbnail {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ width: 32px;
+ height: 32px;
+}
+.create_project .title_menu .thumbnail img {
+ display: block;
+ width: 100%;
+}
+.create_project .title_menu .text {
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-800);
+ word-break: break-word;
+ text-align: left;
+}
+@media screen and (max-width: 639px) {
+ .create_project .title_menu .text {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+}
+.create_project .thumbnail {
+ margin-right: 16px;
+}
+.create_project .thumbnail .icon img {
+ width: 48px;
+ height: 48px;
+}
+.create_project .thumbnail_box {
+ position: relative;
+}
+.create_project .breadcrumb {
+ margin-bottom: 24px;
+ padding-left: 24px;
+}
+.create_project .breadcrumb_inner {
+ position: relative;
+ margin-left: 16px;
+ padding-left: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .create_project .breadcrumb_inner:first-child {
+ display: block;
+ }
+ .create_project .breadcrumb_inner:last-child {
+ display: none;
+ }
+}
+.create_project .breadcrumb_inner::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 1px;
+ height: 100%;
+ background-color: var(--gray-500);
+ content: '';
+}
+.create_project .breadcrumb_inner:first-child {
+ margin-left: 0;
+ padding-left: 0;
+}
+.create_project .breadcrumb_inner:first-child::before {
+ display: none;
+}
+.create_project .breadcrumb .thumbnail {
+ width: 16px;
+ height: 16px;
+ margin-right: 8px;
+ border: 1px solid var(--gray-500);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 4px;
+}
+.create_project .breadcrumb_item {
+ padding: 0;
+}
+.create_project .breadcrumb_item .icon {
+ display: block;
+}
+.create_project .breadcrumb_item.is_undecided .breadcrumb_text,
+.create_project .breadcrumb_item.is_undecided .breadcrumb_thumb {
+ color: var(--gray-500);
+}
+.create_project .project_depth {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-left: 16px;
+}
+@media screen and (max-width: 359px) {
+ .create_project .project_depth {
+ display: block;
+ }
+}
+.create_project .project_depth_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+.create_project .project_depth_item + .project_depth_item {
+ margin-left: 16px;
+ padding-left: 16px;
+ border-left: 1px solid var(--gray-500);
+}
+@media screen and (max-width: 359px) {
+ .create_project .project_depth_item + .project_depth_item {
+ margin-top: 10px;
+ margin-left: 0;
+ padding-left: 0;
+ border-left: none;
+ }
+}
+.create_project .project_depth .btn_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.create_project .project_depth .img_box {
+ display: block;
+ overflow: hidden;
+ position: relative;
+ width: 16px;
+ height: 16px;
+ margin-right: 8px;
+ border-radius: 4px;
+}
+.create_project .project_depth .img_box:empty::before {
+ display: block;
+ width: 100%;
+ height: 100%;
+ border: 1px solid var(--gray-500);
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ content: '';
+}
+.create_project .project_depth .img_box.emoji {
+ border: 1px solid var(--gray-500);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.create_project .project_depth .img_box.emoji img {
+ width: 12px;
+ height: 12px;
+ margin: 1px;
+}
+.create_project .project_depth .img_box img {
+ display: block;
+ width: 100%;
+ height: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.create_project .project_depth .tit {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-all;
+ text-align: left;
+}
+.create_project .project_depth .tit:empty::before {
+ color: var(--gray-500);
+ content: attr(data-placeholder);
+}
+.create_project .setting_name {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ margin: 64px 0 20px;
+ padding-left: 16px;
+ padding-right: 16px;
+}
+@media screen and (max-width: 639px) {
+ .create_project .setting_name {
+ margin-top: 40px;
+ margin-bottom: 0;
+ }
+}
+.create_project .setting_name .thumbnail {
+ margin-right: 0;
+ padding: 8px;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 16px;
+}
+.create_project .setting_name .thumbnail_box {
+ -ms-flex-preferred-size: 64px;
+ flex-basis: 64px;
+ margin-right: 24px;
+}
+.create_project .setting_name .thumbnail .icon {
+ display: block;
+ width: 48px;
+ height: 48px;
+}
+.create_project .setting_name .thumbnail .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.create_project .setting_name .btn {
+ margin: 4px 0 0;
+ padding: 2px;
+ font-size: 1rem;
+ line-height: 1;
+ font-weight: 500;
+}
+.create_project .setting_name .input_field_box {
+ margin-top: 18px;
+}
+.create_project .setting_name .input_field_box.is_error .input_guide {
+ margin-top: 14px;
+}
+@media screen and (max-width: 1023px) {
+ .create_project .setting_name .input_field_box_large .input {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ }
+}
+.create_project .btn_emoji {
+ width: 100%;
+}
+.create_project .btn_emoji.is_active + .emoji_group {
+ display: block;
+}
+.create_project .emoji_group {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 10;
+ width: 472px;
+ margin-top: -13px;
+ margin-left: -1px;
+ background-color: var(--gray-000);
+}
+.create_project .emoji_group .btn_box {
+ padding: 14px 37px 13px 29px;
+}
+.create_project .emoji_group .btn_box .btn {
+ margin-top: 0;
+}
+.create_project .emoji_group .btn_box .icon {
+ width: 16px;
+ height: 16px;
+}
+.create_project .emoji_group .btn_box .text {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-600);
+}
+.create_project .search .input_field_box {
+ margin-top: 0;
+}
+@charset "UTF-8";
+.document_header .title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: 28px;
+ padding: 0 40px 0 8px;
+}
+@media screen and (max-width: 1023px) {
+ .document_header .title_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ padding: 0;
+ }
+}
+.document_header .dropdown {
+ position: absolute;
+ top: 30px;
+ right: 0;
+ z-index: 1;
+}
+.document_header .title_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ padding-left: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .document_header .title_inner {
+ padding: 16px 0 0;
+ }
+}
+.document_header .btn .icon {
+ width: 24px;
+ height: 24px;
+}
+.document_header .btn_back {
+ padding: 0;
+ color: var(--gray-800);
+}
+.document_header .btn_more {
+ position: absolute;
+ top: 2px;
+ right: 8px;
+ padding: 0;
+}
+@media screen and (max-width: 1023px) {
+ .document_header .btn_more {
+ top: 0;
+ right: 0;
+ }
+}
+.document_header .btn_more .icon svg path {
+ stroke: var(--gray-800);
+}
+.document_header .title {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+.document_header .date {
+ padding: 0 0 3px 16px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+.document_header .info_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: 54px;
+ margin-top: 8px;
+ padding: 0 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .document_header .info_list {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ min-height: 52px;
+ padding: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_header .info_item + .info_item {
+ padding-top: 10px;
+ }
+}
+.document_header .info_desc,
+.document_header .info_title {
+ display: inline-block;
+}
+.document_header .info_title {
+ margin-right: 24px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-600);
+}
+.document_header .info_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+@charset "UTF-8";
+.dropdown {
+ padding: 8px 0;
+ border: 1px solid var(--gray-400);
+ border-radius: 6px;
+ background-color: var(--gray-000);
+}
+.dropdown_l {
+ border-radius: 10px;
+}
+.dropdown_l .dropdown_text {
+ font-size: 1.4rem;
+ line-height: 1.58;
+}
+.dropdown_title {
+ display: block;
+ padding: 4px 16px 8px;
+ font-size: 0.8rem;
+ line-height: 1.5;
+ font-weight: 400;
+ color: var(--gray-500);
+}
+.dropdown_title:not(:first-of-type) {
+ padding: 8px 16px;
+ margin-top: 4px;
+ border-top: 1px solid var(--gray-400);
+}
+.dropdown_list + .dropdown_list {
+ margin: 4px 0 0;
+ padding-top: 3px;
+ border-top: 1px solid var(--gray-400);
+}
+.dropdown_item.has_border {
+ margin-top: 4px;
+ padding-top: 3px;
+ border-top: 1px solid var(--gray-400);
+}
+.dropdown_menu {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ padding: 14px 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-transition: background 0.2s;
+ transition: background 0.2s;
+ text-align: left;
+}
+.dropdown_menu.is_active,
+.dropdown_menu:hover {
+ background-color: var(--orange-alpha-light);
+}
+.dropdown_menu.is_active .dropdown_text,
+.dropdown_menu:hover .dropdown_text {
+ color: var(--gray-800);
+}
+.dropdown_menu.is_active .highlight,
+.dropdown_menu:hover .highlight {
+ color: var(--red-dark);
+}
+.dropdown_text {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ color: var(--gray-900);
+ word-break: break-all;
+}
+.dropdown .highlight {
+ color: var(--red-dark);
+}
+.dropdown .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ width: 16px;
+ height: 16px;
+}
+.dropdown .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.dropdown .icon svg path {
+ fill: currentColor;
+}
+.dropdown .icon + .dropdown_text {
+ margin-left: 10px;
+}
+@charset "UTF-8";
+.emoji_group {
+ border: 1px solid var(--gray-400);
+ border-radius: 6px;
+}
+.emoji_group .btn_box {
+ padding: 8px 25px 7px 15px;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ border-bottom: 1px solid var(--gray-400);
+}
+.emoji_group .search {
+ margin-bottom: 27px;
+}
+.emoji_group .emoji_box {
+ overflow-y: auto;
+ max-height: 365px;
+ padding: 16px 24px 24px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@charset "UTF-8";
+.filter {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+@media screen and (max-width: 1023px) {
+ .filter {
+ padding-left: 32px;
+ padding-right: 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .filter {
+ width: 100%;
+ padding-left: 16px;
+ padding-right: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+.filter_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-bottom: 1px solid var(--gray-400);
+}
+@media screen and (max-width: 639px) {
+ .filter_list {
+ display: block;
+ }
+}
+.filter_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+}
+.filter_item + .filter_item {
+ margin-left: 16px;
+}
+@media screen and (max-width: 639px) {
+ .filter_item + .filter_item {
+ margin-left: 0;
+ }
+}
+.filter_title {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-500);
+}
+.filter_desc {
+ padding: 7px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+.filter .btn {
+ margin: 0;
+}
+.filter .btn .text {
+ margin-left: 16px;
+}
+.filter .icon_arrow {
+ width: 12px;
+ height: 12px;
+ margin-left: 13px;
+ color: var(--gray-800);
+}
+.filter .icon_check svg path {
+ fill: currentColor;
+}
+.filter .dropdown {
+ position: absolute;
+ top: 100%;
+ right: 0;
+ width: 200px;
+ margin-top: -5px;
+ z-index: 10;
+}
+@media screen and (max-width: 639px) {
+ .filter .dropdown {
+ left: 0;
+ right: 0;
+ width: auto;
+ margin-top: 0;
+ -webkit-box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
+ }
+}
+.filter .dropdown_list {
+ overflow-y: overlay;
+ max-height: 200px;
+}
+.filter .dropdown_text:only-child {
+ padding-left: 26px;
+}
+@charset "UTF-8";
+.footer {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 47px;
+ border-top: 1px solid var(--gray-300);
+ background-color: var(--gray-000);
+}
+.footer svg path:nth-child(-n + 6) {
+ fill: var(--gray-800);
+}
+.footer svg path:nth-child(7) {
+ fill: var(--gray-800);
+}
+.footer svg path:nth-child(8),
+.footer svg path:nth-child(9) {
+ fill: var(--gray-400);
+}
+@charset "UTF-8";
+.footer_service {
+ background: var(--gray-50);
+}
+.footer_service .footer_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 56px 40px;
+}
+@supports (padding: env(safe-area-inset-right)) {
+ .footer_service .footer_inner {
+ padding: 56px calc(40px + env(safe-area-inset-right)) calc(56px + env(safe-area-inset-bottom))
+ calc(40px + env(safe-area-inset-left));
+ }
+}
+@supports (padding: constant(safe-area-inset-right)) {
+ .footer_service .footer_inner {
+ padding: 56px calc(40px + constant(safe-area-inset-right)) calc(56px + constant(safe-area-inset-bottom))
+ calc(40px + constant(safe-area-inset-left));
+ }
+}
+@media screen and (max-width: 1023px) {
+ .footer_service .footer_inner {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.footer_service .link {
+ display: inline-block;
+}
+.footer_service .box_info {
+ min-width: 180px;
+}
+.footer_service .box_info .filter {
+ display: block;
+}
+.footer_service .logo {
+ display: block;
+ width: 154px;
+ margin-left: -9px;
+}
+.footer_service .logo svg {
+ width: 100%;
+ height: 100%;
+}
+.footer_service .logo svg path:nth-child(-n + 6) {
+ fill: var(--gray-800);
+}
+.footer_service .logo svg path:nth-child(8),
+.footer_service .logo svg path:nth-child(9) {
+ fill: var(--yellow-0);
+}
+.footer_service .copyright {
+ padding: 22px 24px 0 0;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+.footer_service .copyright:only-child {
+ padding: 24px 0;
+ text-align: center;
+}
+.footer_service .box_site {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ padding: 8px 0;
+}
+@media screen and (max-width: 1023px) {
+ .footer_service .box_site {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.footer_service .site {
+ min-width: 160px;
+}
+@media screen and (max-width: 1023px) {
+ .footer_service .site {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ }
+}
+.footer_service .site + .site {
+ margin-left: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .footer_service .site + .site {
+ margin: 24px 0 0 0;
+ }
+}
+.footer_service .site .title {
+ display: block;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.footer_service .site_list {
+ padding-top: 24px;
+}
+.footer_service .site_item {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+.footer_service .site_item + .site_item {
+ margin-top: 16px;
+}
+.footer_service .filter {
+ margin: 12px 0 32px -2px;
+}
+@media screen and (max-width: 1023px) {
+ .footer_service .filter {
+ padding: 0;
+ }
+}
+.footer_service .filter_list {
+ border-bottom: none;
+}
+.footer_service .filter .btn {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ border: 1px solid var(--gray-400);
+}
+.footer_service .filter .dropdown {
+ left: -1px;
+ right: auto;
+ margin-top: -2px;
+ width: auto;
+ min-width: 100%;
+}
+.footer_service .filter .dropdown_text:only-child {
+ padding-left: 0;
+}
+.darkmode .footer_service .logo svg path:nth-child(7) {
+ fill: var(--gray-100);
+}
+@charset "UTF-8";
+.grid_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -16px;
+}
+@media screen and (max-width: 1023px) {
+ .grid_list {
+ margin-left: 0;
+ }
+}
+.grid_item {
+ -ms-flex-preferred-size: calc(50% - 16px);
+ flex-basis: calc(50% - 16px);
+ margin-left: 16px;
+ margin-bottom: 24px;
+}
+@media screen and (max-width: 1023px) {
+ .grid_item {
+ -ms-flex-preferred-size: calc(50% - 8px);
+ flex-basis: calc(50% - 8px);
+ }
+}
+@media screen and (max-width: 639px) {
+ .grid_item {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin-left: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .grid_item:nth-child(odd) {
+ margin-left: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .grid_item:last-child {
+ margin-bottom: 0;
+ }
+}
+.grid_item:only-child {
+ margin-bottom: 0;
+}
+@media screen and (max-width: 1023px) {
+ .grid_item:only-child {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ }
+}
+.grid_card {
+ display: block;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 4px;
+}
+.grid_card_info {
+ padding: 6px 16px 17px 20px;
+ border-top: 1px solid var(--gray-400);
+}
+.grid_card_info .title {
+ display: block;
+ color: var(--gray-800);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+ word-break: break-word;
+}
+.grid_card_info .desc {
+ min-height: 33px;
+ margin-top: 8px;
+ color: var(--gray-800);
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ word-break: break-all;
+}
+@media screen and (max-width: 639px) {
+ .grid_card_info .desc {
+ display: block;
+ min-height: auto;
+ -webkit-line-clamp: initial;
+ }
+}
+.grid_thumbnail {
+ overflow: hidden;
+}
+.grid_thumbnail svg {
+ display: block;
+ width: 100%;
+ height: auto;
+}
+.grid_thumbnail svg > path {
+ stroke: none;
+}
+.grid_list2 {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+@media screen and (max-width: 1023px) {
+ .grid_list2 {
+ display: block;
+ }
+}
+.grid_list2 .grid_item {
+ -ms-flex-preferred-size: calc(50% - 14px);
+ flex-basis: calc(50% - 14px);
+ margin: 24px 0 0 24px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+@media screen and (max-width: 1023px) {
+ .grid_list2 .grid_item {
+ height: calc(50% - 14px);
+ margin-left: 0;
+ }
+}
+.grid_list2 .grid_item:nth-child(-n + 2) {
+ margin-top: 0;
+}
+@media screen and (max-width: 1023px) {
+ .grid_list2 .grid_item:nth-child(-n + 2) {
+ margin-top: 24px;
+ }
+}
+.grid_list2 .grid_item:nth-child(odd) {
+ margin-left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .grid_list2 .grid_item:first-child {
+ margin-top: 0;
+ }
+}
+.grid_list2 .grid_item.is_active {
+ border-color: var(--blue-0);
+}
+.grid_list2 .grid_item.add_screen {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ position: relative;
+ background-color: var(--gray-50);
+ border: 1px dashed var(--gray-400);
+}
+@media screen and (min-width: 1024px) {
+ .grid_list2 .grid_item.add_screen {
+ margin-top: 0;
+ margin-left: 24px;
+ }
+}
+.grid_list2 .grid_item.add_screen .guide {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ text-align: center;
+}
+.grid_list2 .grid_item .btn_add {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+ width: 100%;
+ height: 100%;
+ min-height: 222px;
+ border-radius: 4px;
+ color: var(--gray-800);
+}
+.grid_list2 .icon_plus {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ color: var(--gray-900);
+}
+.grid_list2 .btn_add_screen {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+@charset "UTF-8";
+.header {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ height: 64px;
+ z-index: 100;
+}
+.header_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ width: 100%;
+ max-width: 1920px;
+ height: 64px;
+ margin: 0 auto;
+ background-color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .header_inner {
+ max-width: none;
+ height: 100%;
+ padding: 0 24px 0 32px;
+ border-bottom: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-transform: none;
+ transform: none;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_inner {
+ padding: 0 calc(24px + env(safe-area-inset-right)) 0 calc(32px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_inner {
+ padding: 0 calc(24px + constant(safe-area-inset-right)) 0 calc(32px + constant(safe-area-inset-left));
+ }
+ }
+}
+@media screen and (max-width: 639px) {
+ .header_inner {
+ padding: 0 8px 0 16px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_inner {
+ padding: 0 calc(8px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_inner {
+ padding: 0 calc(8px + constant(safe-area-inset-right)) 0 calc(16px + constant(safe-area-inset-left));
+ }
+ }
+}
+.header .util_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-right: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .header .util_box {
+ padding-right: 0;
+ }
+}
+.header .util_box .util_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 100%;
+}
+@media screen and (max-width: 1023px) {
+ .header .util_box .util_list {
+ display: none;
+ }
+}
+.header .util_box .util_item {
+ position: relative;
+ height: 100%;
+ margin-left: 8px;
+}
+.header .util_box .util_item:first-child {
+ margin-left: 0;
+}
+.header .util_box .util_menu {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 100%;
+ padding: 8px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 300;
+ color: var(--gray-800);
+}
+.header .util_box .util_menu .profile {
+ overflow: hidden;
+ width: 26px;
+ height: 26px;
+ border-radius: 50%;
+}
+.header .util_box .util_menu .profile .img_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ height: 100%;
+}
+.header .util_box .util_menu .profile .name {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-900);
+}
+.header .util_box .util_menu .profile img {
+ display: block;
+ width: 100%;
+}
+.header .util_box .input_toggle_box {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .header .util_box .input_toggle_box {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ margin-right: 16px;
+ }
+}
+.header .util_box .btn_menu {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .header .util_box .btn_menu {
+ display: block;
+ width: 100%;
+ padding: 0 8px;
+ height: 32px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+.header .util_box .btn_menu .icon {
+ width: 16px;
+ height: 16px;
+ color: var(--gray-500);
+}
+.header .util_box .btn_menu .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.header .util_box .icon_close,
+.header .util_box .icon_menu {
+ display: none;
+}
+.header .util_box .icon_close.is_active,
+.header .util_box .icon_menu.is_active {
+ display: block;
+}
+.header .user_account {
+ padding: 8px 16px 16px;
+}
+@media screen and (max-width: 1023px) {
+ .header .user_account {
+ margin-top: 4px;
+ padding: 16px 24px;
+ border-top: 1px solid var(--gray-400);
+ }
+}
+@media screen and (max-width: 639px) {
+ .header .user_account {
+ padding: 16px 16px;
+ }
+}
+.header .user_account_text {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-900);
+ word-break: break-all;
+}
+@media screen and (max-width: 1023px) {
+ .header .user_account_text {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ color: var(--gray-500);
+ }
+}
+.header .user_account_mail {
+ display: block;
+ margin-top: 2px;
+ font-size: 1rem;
+ line-height: 1.2;
+ color: var(--gray-600);
+ word-break: break-all;
+}
+@media screen and (max-width: 1023px) {
+ .header .user_account_mail {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 300;
+ color: var(--gray-500);
+ }
+}
+.header .dropdown {
+ position: absolute;
+ top: 100%;
+ right: 0;
+ width: 256px;
+}
+.header .dropdown_menu {
+ width: 100%;
+ padding-left: 16px;
+ padding-right: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ text-align: left;
+}
+.header .dropdown_menu.is_active,
+.header .dropdown_menu:hover {
+ background-color: var(--gray-100);
+}
+.header .dropdown_text {
+ font-size: 1.4rem;
+ line-height: 1.58;
+}
+@media screen and (max-width: 1023px) {
+ .header .util_list_mo {
+ overflow-y: auto;
+ position: fixed;
+ top: 64px;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ margin-top: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .header .util_list_mo.dropdown {
+ border: none;
+ border-radius: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+}
+.header .util_list_mo.dropdown .dropdown_menu {
+ padding-left: 32px;
+ padding-right: 32px;
+}
+@media screen and (max-width: 639px) {
+ .header .util_list_mo.dropdown .dropdown_menu {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.header .util_list_mo.dropdown .dropdown_menu.is_active,
+.header .util_list_mo.dropdown .dropdown_menu:hover {
+ background-color: var(--gray-100);
+}
+.header .util_list_mo.dropdown .dropdown_menu.is_active + .modal {
+ display: block;
+}
+.header .util_list_mo.dropdown .dropdown_text {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ color: var(--gray-800);
+}
+.header .util_list_mo.dropdown .highlight {
+ color: var(--red-dark);
+}
+.header .user_profile.is_active + .dropdown {
+ display: block;
+ margin-top: -8px;
+}
+.header .terms_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-top: 4px;
+ padding: 5px 0 3px;
+ border-top: 1px solid var(--gray-400);
+}
+.header .terms_item {
+ position: relative;
+}
+.header .terms_item::before {
+ position: absolute;
+ top: 11px;
+ left: 0;
+ width: 2px;
+ height: 2px;
+ border-radius: 50%;
+ background-color: var(--gray-400);
+ content: '';
+}
+.header .terms_item:first-child::before {
+ display: none;
+}
+.header .terms_menu {
+ display: block;
+ padding: 5px 8px;
+ font-size: 1rem;
+ line-height: 1;
+ color: var(--gray-400);
+}
+.header_bar {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .header_bar {
+ display: block;
+ margin: 0 -32px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_bar {
+ margin: 0 calc(-32px - env(safe-area-inset-right)) 0 calc(-32px - env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_bar {
+ margin: 0 calc(-32px - constant(safe-area-inset-right)) 0 calc(-32px - constant(safe-area-inset-left));
+ }
+ }
+}
+@media screen and (max-width: 639px) {
+ .header_bar {
+ margin: 0 -16px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_bar {
+ margin: 0 calc(-16px - env(safe-area-inset-right)) 0 calc(-16px - env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_bar {
+ margin: 0 calc(-16px - constant(safe-area-inset-right)) 0 calc(-16px - constant(safe-area-inset-left));
+ }
+ }
+}
+.header_bar .header_inner {
+ position: relative;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.breadcrumb {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-left: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb {
+ padding-left: 0;
+ }
+}
+.breadcrumb .logo {
+ padding: 8px;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb .logo {
+ width: 24px;
+ height: 24px;
+ margin-right: 8px;
+ padding: 0;
+ }
+}
+.breadcrumb .logo_menu {
+ display: block;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb .logo_menu {
+ height: 100%;
+ }
+}
+.breadcrumb .logo svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.breadcrumb .dropdown {
+ position: absolute;
+ top: 43px;
+ left: 8px;
+ z-index: 20;
+ width: 327px;
+ padding: 8px 0;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ background-color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb .dropdown {
+ top: 100%;
+ left: -17px;
+ margin-top: -6px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .breadcrumb .dropdown {
+ left: -4px;
+ }
+}
+.breadcrumb .dropdown_menu {
+ padding: 12px 16px;
+ color: var(--gray-800);
+}
+.breadcrumb .dropdown_menu.is_active,
+.breadcrumb .dropdown_menu:hover {
+ background-color: var(--gray-100);
+}
+.breadcrumb .dropdown_list {
+ -webkit-overflow-scrolling: touch;
+ overflow-y: overlay;
+ max-height: 180px;
+}
+.breadcrumb .dropdown ::-webkit-scrollbar {
+ width: 10px;
+ height: 4px;
+}
+.breadcrumb .dropdown ::-webkit-scrollbar-thumb {
+ background: var(--gray-400);
+ border-radius: 10px;
+ border: 3px solid var(--gray-000);
+}
+.breadcrumb .dropdown ::-webkit-scrollbar-track {
+ background: 0 0;
+}
+.breadcrumb_inner {
+ position: relative;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_inner {
+ display: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_inner:last-child {
+ display: block;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_inner.team_list {
+ height: 100%;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_inner.team_list .breadcrumb_item {
+ height: 100%;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-left: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_inner.team_list .breadcrumb_item::before {
+ display: none;
+ }
+}
+.breadcrumb_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+ margin-left: 16px;
+ padding: 8px;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_item {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-left: 0;
+ padding: 16px 0;
+ }
+ .breadcrumb_item::before {
+ display: none;
+ }
+}
+.breadcrumb_item::before {
+ position: absolute;
+ top: 8px;
+ left: -8px;
+ width: 1px;
+ height: 16px;
+ background-color: var(--gray-400);
+ content: '';
+}
+.breadcrumb_item.is_active + .dropdown {
+ display: block;
+}
+.breadcrumb_item .icon {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_item .icon {
+ display: block;
+ height: 16px;
+ color: var(--gray-500);
+ }
+}
+.breadcrumb_thumb {
+ overflow: hidden;
+ position: relative;
+ width: 16px;
+ height: 16px;
+ margin-right: 8px;
+ border-radius: 4px;
+}
+.breadcrumb_thumb.emoji {
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.breadcrumb_thumb.emoji img {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 12px;
+ height: 12px;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+}
+.breadcrumb_thumb.icon_square,
+.breadcrumb_thumb.icon_star_full {
+ width: 12px;
+ height: 12px;
+ margin-top: 1px;
+ padding: 0 2px;
+}
+.breadcrumb_thumb img,
+.breadcrumb_thumb svg {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+.breadcrumb_thumb svg path {
+ fill: currentColor;
+}
+.breadcrumb_text {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ word-break: break-all;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .breadcrumb_text {
+ margin-right: 8px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+.darkmode .breadcrumb .logo svg [fill='#514C49'] {
+ fill: var(--gray-100);
+}
+@charset "UTF-8";
+.header_service {
+ position: -webkit-sticky;
+ position: sticky;
+ height: 64px;
+ top: 0;
+ z-index: 100;
+ background: var(--gray-000);
+}
+.header_service .header_inner {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ height: 100%;
+ padding: 12px 8px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .header_service .header_inner {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ border-bottom: 1px solid var(--gray-400);
+ padding: 0 24px 0 32px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_service .header_inner {
+ padding: 0 calc(24px + env(safe-area-inset-right)) 0 calc(32px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_service .header_inner {
+ padding: 0 calc(24px + constant(safe-area-inset-right)) 0 calc(32px + constant(safe-area-inset-left));
+ }
+ }
+}
+@media screen and (max-width: 639px) {
+ .header_service .header_inner {
+ padding: 0 8px 0 16px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_service .header_inner {
+ padding: 0 calc(8px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_service .header_inner {
+ padding: 0 calc(8px + constant(safe-area-inset-right)) 0 calc(16px + constant(safe-area-inset-left));
+ }
+ }
+}
+.header_service .logo {
+ padding: 0 16px;
+}
+@media screen and (max-width: 1023px) {
+ .header_service .logo {
+ margin-right: 8px;
+ width: 24px;
+ height: 24px;
+ }
+}
+.header_service .logo a {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.header_service .logo svg {
+ vertical-align: top;
+}
+.header_service .logo svg path:nth-child(n + 5) {
+ fill: var(--gray-800);
+}
+.header_service .logo svg [stroke='#FEFDFB'] {
+ -webkit-mask: none;
+ mask: none;
+ stroke: none;
+}
+@media screen and (min-width: 1024px) {
+ .header_service .logo svg:last-of-type {
+ display: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .header_service .logo svg {
+ width: 100%;
+ height: 100%;
+ }
+ .header_service .logo svg:first-of-type {
+ display: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .header_service .logo {
+ padding: 0;
+ }
+}
+.header_service .nav {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ padding: 0 44px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .header_service .nav {
+ display: none;
+ }
+}
+.header_service .gnb {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.header_service .gnb_item + .gnb_item {
+ margin-left: 16px;
+}
+.header_service .gnb_item.is_active .link {
+ color: var(--orange-dark);
+}
+.header_service .gnb_item .link {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 32px;
+ padding: 4px 8px;
+ border-radius: 4px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: var(--gray-900);
+}
+.header_service .gnb_item .link:hover {
+ background: var(--gray-100);
+}
+.header_service .header_util {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+@media screen and (max-width: 1023px) {
+ .header_service .header_util .btn {
+ display: none;
+ }
+}
+.header_service .header_util .btn_menu {
+ display: none;
+ position: absolute;
+ right: 24px;
+ top: 50%;
+ padding: 8px;
+ color: var(--gray-500);
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+@media screen and (max-width: 1023px) {
+ .header_service .header_util .btn_menu {
+ display: block;
+ }
+}
+@media screen and (max-width: 639px) {
+ .header_service .header_util .btn_menu {
+ right: 8px;
+ }
+}
+@media screen and (orientation: landscape) {
+ @supports (right: env(safe-area-inset-right)) {
+ .header_service .header_util .btn_menu {
+ right: calc(24px + env(safe-area-inset-right));
+ }
+ }
+ @supports (right: constant(safe-area-inset-right)) {
+ .header_service .header_util .btn_menu {
+ right: calc(24px + constant(safe-area-inset-right));
+ }
+ }
+}
+.header_service .header_util .btn_menu .icon_close,
+.header_service .header_util .btn_menu .icon_menu {
+ display: none;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 16px;
+ height: 16px;
+}
+.header_service .header_util .btn_menu .icon_close svg,
+.header_service .header_util .btn_menu .icon_menu svg {
+ width: 100%;
+}
+.header_service .header_util .btn_menu .icon_close.is_active,
+.header_service .header_util .btn_menu .icon_menu.is_active {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.header_service .header_util .btn_line {
+ color: var(--gray-900);
+}
+.header_service .header_util .orange_0 {
+ -webkit-transition: none;
+ transition: none;
+}
+.header_service .header_util .orange_0:hover {
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+}
+.header_service .menu_list_mo {
+ overflow-y: auto;
+ position: fixed;
+ top: 64px;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ margin-top: 0;
+ padding: 40px 0;
+ border: none;
+}
+@media screen and (orientation: landscape) {
+ @supports (left: env(safe-area-inset-right)) {
+ .header_service .menu_list_mo {
+ left: calc(0px + env(safe-area-inset-left));
+ }
+ }
+ @supports (left: constant(safe-area-inset-right)) {
+ .header_service .menu_list_mo {
+ left: calc(0px + constant(safe-area-inset-left));
+ }
+ }
+}
+.header_service .menu_list_mo .dropdown_item .navigator_list {
+ max-width: none;
+}
+.header_service .menu_list_mo .dropdown_item .navigator > .navigator_list {
+ padding-top: 8px;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_group > .navigator_menu {
+ padding-left: 12px;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_group .navigator_list {
+ padding: 0;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_group .navigator_list .navigator_item {
+ margin-top: 0;
+ padding-left: 44px;
+ padding-right: 44px;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 9px 40px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu .icon {
+ width: 16px;
+ height: 16px;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu.is_active + .navigator_list {
+ display: block;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu.is_active svg {
+ -webkit-transform: rotate(0);
+ transform: rotate(0);
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu + .navigator_list {
+ display: none;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_menu + .navigator_list .navigator_group + .navigator_group {
+ margin-top: 0;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_item {
+ padding-left: 36px;
+ padding-right: 36px;
+}
+.header_service .menu_list_mo .dropdown_item .navigator_item:hover {
+ color: var(--orange-0);
+}
+.header_service .menu_list_mo .dropdown_item .navigator_item.is_active {
+ border: none;
+ background: var(--gray-000);
+ color: var(--orange-0);
+}
+.header_service .menu_list_mo .dropdown_menu {
+ padding: 12px 36px;
+}
+.header_service .menu_list_mo .dropdown_menu:hover {
+ background: var(--gray-100);
+}
+.header_service .menu_list_mo .dropdown_menu + .navigator {
+ display: none;
+}
+.header_service .menu_list_mo .dropdown_menu.is_show + .navigator {
+ display: block;
+}
+.header_service .menu_list_mo .dropdown_menu.is_show .icon_toggle {
+ -webkit-transform: rotate(0);
+ transform: rotate(0);
+}
+.header_service .menu_list_mo .dropdown_menu.btn_docs {
+ padding: 12px;
+}
+.header_service .menu_list_mo .dropdown_menu.btn_docs.is_show {
+ background-color: transparent;
+}
+.header_service .menu_list_mo .dropdown_menu.btn_docs.is_show.is_active {
+ background-color: var(--orange-alpha-light);
+}
+.header_service .menu_list_mo .dropdown_menu .dropdown_text {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+.header_service .menu_list_mo .dropdown_menu .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ margin-left: 6px;
+}
+.header_service .menu_list_mo .dropdown_menu .icon_toggle {
+ margin-left: 0;
+ -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+}
+.header_service .menu_list_mo .dropdown_menu .icon_toggle svg path {
+ fill: var(--gray-900);
+}
+.header_service .menu_list_mo .dropdown_menu .icon + .dropdown_text {
+ margin-left: 7px;
+}
+.header_service .menu_list_mo .dropdown_text {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+}
+.darkmode .header_service .logo svg [fill='#514C49'] {
+ fill: var(--gray-100);
+}
+@charset "UTF-8";
+.history_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+@media screen and (max-width: 639px) {
+ .history_header {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+}
+.history_header .title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.history_header .btn_back {
+ padding: 0;
+ border: none;
+}
+.history_header .btn_back .icon {
+ width: 24px;
+ height: 24px;
+ color: var(--gray-800);
+}
+.history_header .title {
+ margin-left: 16px;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.history_header .btn_toggle {
+ padding: 8px;
+}
+.history_header .input_toggle_box {
+ margin-right: 16px;
+}
+.history_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ padding: 0 8px;
+}
+@media screen and (max-width: 639px) {
+ .history_title {
+ display: block;
+ }
+}
+.history_title .title {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 639px) {
+ .history_title .title {
+ display: block;
+ margin-bottom: 4px;
+ }
+}
+.history_title .date {
+ padding: 0 0 3px 16px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+@media screen and (max-width: 639px) {
+ .history_title .date {
+ display: block;
+ padding-bottom: 0;
+ padding-left: 0;
+ }
+}
+.history_slider {
+ position: relative;
+}
+.history_slider_info {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ position: absolute;
+ width: 100%;
+ bottom: 32px;
+ padding-bottom: 16px;
+}
+.history_slider_info .date {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+.history_slider_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ overflow-x: auto;
+ position: relative;
+ z-index: 10;
+ height: 95px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.history_slider_inner .rc-slider {
+ height: 32px;
+ padding: 0;
+}
+.history_slider_inner .rc-slider-rail {
+ height: 100%;
+ opacity: 0;
+}
+.history_slider_inner .rc-slider-step {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ height: 100%;
+ pointer-events: all;
+}
+.history_slider_inner .rc-slider-dot {
+ display: block;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ position: relative;
+ left: 0 !important;
+ bottom: 0;
+ width: 24px;
+ height: 32px;
+ border-radius: 4px;
+ border: 0;
+ background: var(--gray-200);
+ -webkit-transform: translate(0) !important;
+ transform: translate(0) !important;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.history_slider_inner .rc-slider-dot:hover::after {
+ display: block;
+}
+.history_slider_inner .rc-slider-dot:last-of-type {
+ width: 128px;
+}
+.history_slider_inner .rc-slider-dot:last-of-type::after {
+ content: none;
+}
+.history_slider_inner .rc-slider-dot + .rc-slider-dot {
+ margin-left: 8px;
+}
+.history_slider_inner .rc-slider-dot.rc-slider-dot-active {
+ background: var(--orange-alpha-0);
+}
+.history_slider_inner .rc-slider-dot.is_end,
+.history_slider_inner .rc-slider-dot.is_first {
+ background: var(--orange-0);
+}
+.history_slider_inner .rc-slider-dot.is_end::before,
+.history_slider_inner .rc-slider-dot.is_first::before {
+ display: block;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 2px;
+ height: 16px;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ content: '';
+}
+.history_slider_inner .rc-slider-dot.is_first.is_end::before {
+ width: 8px;
+}
+.history_slider_inner .rc-slider-dot:nth-child(-n + 3) .layer_history {
+ left: 0;
+ -webkit-transform: translate(0);
+ transform: translate(0);
+}
+.history_slider_inner .rc-slider-dot::after {
+ display: none;
+ position: absolute;
+ left: 50%;
+ top: -10px;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ border: 1px solid var(--gray-400);
+ -webkit-transform: translateX(-50%);
+ transform: translateX(-50%);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ content: '';
+}
+.history_slider_inner .rc-slider-handle {
+ opacity: 0;
+}
+.history_slider_inner .rc-slider-track {
+ opacity: 0;
+}
+.history_slider .layer_history {
+ display: block;
+ position: absolute;
+ top: 0;
+ width: 216px;
+ height: 44px;
+ padding: 4px 8px;
+ margin-left: 8px;
+ margin-bottom: 16px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ -webkit-transform: translateX(calc(-50% + 12px));
+ transform: translateX(calc(-50% + 12px));
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background: var(--gray-000);
+}
+.history_slider .layer_history.is_active {
+ display: block;
+}
+.history_slider .layer_history.type_first {
+ margin-left: 0;
+ -webkit-transform: translateX(0);
+ transform: translateX(0);
+}
+.history_slider .layer_history.type_second {
+ margin-left: 0;
+ -webkit-transform: translateX(-24px);
+ transform: translateX(-24px);
+}
+.history_slider .layer_history.type_third {
+ margin-left: 0;
+ -webkit-transform: translateX(-56px);
+ transform: translateX(-56px);
+}
+.history_slider .layer_history .name {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+.history_slider .layer_history .info {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+}
+.history_slider .layer_history .text {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ color: var(--gray-800);
+}
+.history_slider .layer_history .date {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ padding-bottom: 3px;
+ font-size: 0.8rem;
+ line-height: 1;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+.history_changes {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: 100%;
+ height: 56px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ background: var(--gray-50);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.history_changes.is_tree .btn_history.is_edited {
+ border: 1px solid var(--yellow-dark);
+ background: var(--yellow-alpha-light);
+ color: var(--yellow-dark);
+}
+.history_changes.is_tree .btn_history.is_removed {
+ border: 1px solid var(--red-dark);
+ background: var(--red-alpha-light);
+ color: var(--red-dark);
+}
+.history_changes.is_tree .btn_history.is_created {
+ border: 1px solid var(--green-dark);
+ background: var(--green-alpha-light);
+ color: var(--green-dark);
+}
+.history_changes .title {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 100%;
+ padding: 0 16px;
+ border-right: 1px solid var(--gray-400);
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.history_changes .history_box {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ overflow-x: auto;
+}
+.history_changes .history_list {
+ height: 100%;
+ padding: 12px 16px;
+ font-size: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ white-space: nowrap;
+}
+.history_changes .btn_history {
+ display: inline-block;
+ height: 32px;
+ padding: 8px;
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+.history_changes .btn_history:last-of-type {
+ margin-right: 16px;
+}
+.history_changes .btn_history.is_edited {
+ background: var(--yellow-alpha-0);
+}
+.history_changes .btn_history.is_removed {
+ background: var(--red-alpha-0);
+}
+.history_changes .btn_history.is_created {
+ background: var(--green-alpha-0);
+}
+.history_changes .btn_history + .btn_history {
+ margin-left: 8px;
+}
+.history_codeblock_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ height: 48px;
+ padding: 13px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px 4px 0 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@charset "UTF-8";
+.icon {
+ display: inline-block;
+ vertical-align: top;
+}
+.icon svg {
+ display: block;
+}
+.icon svg path {
+ fill: currentColor;
+}
+.icon_logo svg {
+ display: block;
+}
+.icon_close_s {
+ width: 6px;
+ height: 6px;
+}
+.icon_close_s svg {
+ width: 100%;
+ height: 100%;
+}
+.icon_arrow_left {
+ -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
+}
+.icon_arrow_right {
+ -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+}
+.icon_arrow_up {
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+@charset "UTF-8";
+.image_area {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-top: 24px;
+}
+.image_area .image_group {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+}
+.image_area .image_group + .image_group {
+ padding-left: 16px;
+}
+.image_area .image_desc {
+ color: var(--gray-800);
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+}
+.image_area .image_box img {
+ vertical-align: top;
+ width: 100%;
+ height: auto;
+}
+@charset "UTF-8";
+.setting_image {
+ font-size: 0;
+ line-height: normal;
+}
+.setting_image .link {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ font-size: 0;
+}
+.setting_image .emoji {
+ padding: 6px 6px 7px 7px;
+ border: 1px solid var(--gray-400);
+ border-radius: 16px;
+}
+.setting_image .text {
+ margin-left: 24px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+@charset "UTF-8";
+.input {
+ display: inline-block;
+ width: 100%;
+ padding: 13px 15px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ background-color: transparent;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-900);
+ vertical-align: top;
+}
+.input[type='search'] {
+ outline-offset: initial;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+}
+.input::-webkit-input-placeholder {
+ color: var(--gray-500);
+}
+.input::-moz-placeholder {
+ color: var(--gray-500);
+}
+.input:-ms-input-placeholder {
+ color: var(--gray-500);
+}
+.input::-ms-input-placeholder {
+ color: var(--gray-500);
+}
+.input::placeholder {
+ color: var(--gray-500);
+}
+.input:-webkit-autofill {
+ -webkit-box-shadow: 0 0 0 1000px #fff inset;
+ box-shadow: 0 0 0 1000px #fff inset;
+ -webkit-text-fill-color: var(--gray-900);
+}
+.input:focus,
+.input:focus-visible {
+ border-color: var(--blue-0);
+ caret-color: var(--blue-0);
+ outline: 0;
+}
+.input_group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+@media screen and (max-width: 639px) {
+ .input_group {
+ display: block;
+ }
+}
+.input_group .input_guide_desc {
+ font-weight: 500;
+}
+.input_group.is_success .input_guide {
+ color: var(--green-dark);
+}
+.input_group.is_success .input_guide .icon path:first-child {
+ display: none;
+}
+.input_group.is_success .input_guide_desc {
+ color: var(--green-dark);
+}
+.input_group.is_error .input_guide {
+ color: var(--red-dark);
+}
+.input_group.is_error .input_guide .icon path:last-child {
+ display: none;
+}
+.input_group.is_error .input_guide_desc {
+ color: var(--red-dark);
+}
+.input_box {
+ display: inline-block;
+ vertical-align: top;
+ color: var(--gray-800);
+}
+.input_box .label {
+ display: block;
+ position: relative;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+.input_box .label ~ .input {
+ margin-top: 8px;
+}
+.input_box .label_in {
+ position: absolute;
+ top: 0;
+ left: 16px;
+ right: 40px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-500);
+ -webkit-transform: translateY(14px);
+ transform: translateY(14px);
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+}
+.input_box.is_disabled .label {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .label_in_box {
+ border-color: var(--gray-300);
+}
+.input_box.is_disabled .input {
+ border-color: var(--gray-300);
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input::-webkit-input-placeholder {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input::-moz-placeholder {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input:-ms-input-placeholder {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input::-ms-input-placeholder {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input::placeholder {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .icon {
+ color: var(--gray-300);
+}
+.input_box.is_disabled .input_guide {
+ color: var(--gray-300);
+}
+.input_box.is_error .input {
+ border-color: var(--red-dark);
+ caret-color: var(--red-dark);
+}
+.input_box.is_error .input_guide {
+ color: var(--red-dark);
+}
+.input_box.is_error .input_guide .icon path:last-child {
+ display: none;
+}
+.input_box.is_success .input {
+ border-color: var(--green-dark);
+ caret-color: var(--green-dark);
+}
+.input_box.is_success .input_guide {
+ color: var(--green-dark);
+}
+.input_box.is_success .input_guide .icon path:first-child {
+ display: none;
+}
+.input_guide {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ margin-top: 8px;
+ color: var(--gray-800);
+}
+.input_guide .icon {
+ width: 16px;
+ height: 16px;
+ margin-right: 8px;
+}
+.input_guide_desc {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+ color: currentColor;
+ word-break: break-word;
+}
+.input_inner_box {
+ display: block;
+ position: relative;
+}
+.input_inner_box .icon {
+ position: absolute;
+ bottom: 18px;
+ right: 16px;
+}
+.input_inner_box .icon svg {
+ display: block;
+}
+.input_inner_box .icon svg path {
+ fill: currentColor;
+}
+.input_inner_box .icon ~ input {
+ padding-right: 40px;
+}
+.input_inner_box .label_in_input {
+ padding: 19px 15px 7px;
+}
+.input_inner_box .label_in_input::-webkit-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input::-moz-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:-ms-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input::-ms-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input::placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:not(:-moz-placeholder-shown) + .label_in {
+ font-size: 8px;
+ line-height: 1.25em;
+ color: var(--gray-800);
+ transform: translateY(8px);
+}
+.input_inner_box .label_in_input:not(:-ms-input-placeholder) + .label_in {
+ font-size: 8px;
+ line-height: 1.25em;
+ color: var(--gray-800);
+ transform: translateY(8px);
+}
+.input_inner_box .label_in_input:not(:placeholder-shown) + .label_in {
+ font-size: 8px;
+ line-height: 1.25em;
+ color: var(--gray-800);
+ -webkit-transform: translateY(8px);
+ transform: translateY(8px);
+}
+.input_inner_box .label_in_input:disabled {
+ padding: 13px 15px;
+}
+.input_inner_box .label_in_input:disabled::-webkit-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:disabled::-moz-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:disabled:-ms-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:disabled::-ms-input-placeholder {
+ color: transparent;
+}
+.input_inner_box .label_in_input:disabled::placeholder {
+ color: transparent;
+}
+.input_inner_box:focus-within .label_in {
+ font-size: 8px;
+ line-height: 1.25em;
+ color: var(--gray-800);
+ -webkit-transform: translateY(8px);
+ transform: translateY(8px);
+}
+.input_field_box.is_error .input {
+ border-color: var(--red-0);
+ color: var(--red-0);
+}
+.input_field_box.is_error .input_guide {
+ color: var(--red-dark);
+}
+.input_field_box.is_error .input_guide .icon path:last-child {
+ display: none;
+}
+.input_field_box.is_error .input_guide_desc {
+ color: var(--red-dark);
+}
+.input_field_box.is_success .input {
+ border-color: var(--green-0);
+}
+.input_field_box.is_success .input_guide {
+ color: var(--green-0);
+}
+.input_field_box.is_success .input_guide .icon path:first-child {
+ display: none;
+}
+.input_field_box.is_success .input_guide_desc {
+ color: var(--green-0);
+}
+.input_field_box.is_disabled .label {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input {
+ border-color: var(--gray-300);
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input::-webkit-input-placeholder {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input::-moz-placeholder {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input:-ms-input-placeholder {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input::-ms-input-placeholder {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input::placeholder {
+ color: var(--gray-300);
+}
+.input_field_box.is_disabled .input_guide {
+ color: var(--gray-300);
+}
+.input_field_box .input_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+}
+@media screen and (max-width: 639px) {
+ .input_field_box .input_inner {
+ display: block;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .input_field_box .input_inner .btn_box {
+ margin-left: 12px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .input_field_box .input_inner .btn_box {
+ margin-top: 10px;
+ margin-left: 0;
+ }
+}
+.input_field_box .label {
+ display: block;
+ position: relative;
+ padding-left: 8px;
+ font-size: 14px;
+ line-height: 1.58em;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+.input_field_box .label ~ .input {
+ margin-top: 8px;
+}
+.input_field_box .label_in {
+ position: absolute;
+ top: 0;
+ left: 16px;
+ right: 40px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-500);
+ -webkit-transform: translateY(14px);
+ transform: translateY(14px);
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+}
+.input_field_box .label ~ .input_inner {
+ margin-top: 16px;
+}
+.input_field_box .input {
+ width: 511px;
+ margin-right: 12px;
+ padding: 0 0 7px 8px;
+ border: none;
+ border-radius: 0;
+ border-bottom: 1px solid var(--gray-400);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .input_field_box .input {
+ width: 100%;
+ margin-right: 0;
+ padding-right: 8px;
+ }
+}
+.input_field_box .input:focus {
+ caret-color: initial;
+}
+.input_field_box_large.is_success .input {
+ color: var(--green-0);
+}
+.input_field_box_large .input {
+ display: block;
+ width: 100%;
+ margin-right: 0;
+ padding: 0;
+ border-bottom: none;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.input_toggle_box {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.input_toggle_box + .input_guide {
+ margin-top: 0;
+}
+.input_toggle_box + .input_guide .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.input_toggle_box.is_reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+}
+.input_toggle_box input:checked ~ .toggle_ui {
+ border-color: var(--blue-0);
+}
+.input_toggle_box input:checked ~ .toggle_ui .track {
+ left: 0;
+}
+.input_toggle_box input:checked ~ .toggle_ui .ball {
+ -webkit-transform: translateX(16px);
+ transform: translateX(16px);
+ background-color: var(--blue-0);
+}
+.input_toggle_box input:checked ~ .toggle_ui .ball svg {
+ width: 12px;
+ height: 12px;
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ color: var(--gray-000);
+}
+.input_toggle_box input:checked ~ .label {
+ color: var(--blue-dark);
+}
+.input_toggle_box input:disabled ~ .toggle_ui {
+ border-color: var(--gray-300);
+ background-color: var(--gray-100);
+ cursor: default;
+}
+.input_toggle_box input:disabled ~ .toggle_ui .track {
+ display: none;
+}
+.input_toggle_box input:disabled ~ .toggle_ui .ball {
+ background-color: var(--gray-300);
+}
+.input_toggle_box input:disabled ~ .toggle_ui .ball svg {
+ color: var(--gray-300);
+}
+.input_toggle_box input:disabled ~ .label {
+ color: var(--gray-300);
+ cursor: default;
+}
+.input_toggle_box input:disabled:checked ~ .toggle_ui .ball svg {
+ color: var(--gray-100);
+}
+.input_toggle_box .toggle_ui {
+ display: inline-block;
+ overflow: hidden;
+ position: relative;
+ width: 38px;
+ height: 22px;
+ border: 1px solid var(--gray-600);
+ border-radius: 20px;
+ vertical-align: top;
+ -webkit-transition: border-color 0.2s 0.1s;
+ transition: border-color 0.2s 0.1s;
+ cursor: pointer;
+}
+.input_toggle_box .track {
+ position: absolute;
+ top: 0;
+ left: -38px;
+ width: 76px;
+ height: 22px;
+ border-radius: 11px;
+ background: -webkit-gradient(
+ linear,
+ left top,
+ right top,
+ from(var(--blue-alpha-light)),
+ color-stop(45%, var(--blue-alpha-light)),
+ color-stop(55%, var(--gray-300)),
+ to(var(--gray-300))
+ );
+ background: linear-gradient(
+ 90deg,
+ var(--blue-alpha-light) 0,
+ var(--blue-alpha-light) 45%,
+ var(--gray-300) 55%,
+ var(--gray-300) 100%
+ );
+ -webkit-transition: left 0.2s 0.2s;
+ transition: left 0.2s 0.2s;
+}
+.input_toggle_box .ball {
+ display: block;
+ position: relative;
+ width: 16px;
+ height: 16px;
+ margin: 3px 0 0 3px;
+ border-radius: 50%;
+ background-color: var(--gray-600);
+ -webkit-transition:
+ background-color 0.2s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+ transition:
+ background-color 0.2s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+ transition:
+ transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s,
+ background-color 0.2s;
+ transition:
+ transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s,
+ background-color 0.2s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+}
+.input_toggle_box .ball svg {
+ display: block;
+ width: 12px;
+ height: 12px;
+ padding: 2px;
+ color: var(--gray-600);
+ -webkit-transform: scale(0.5);
+ transform: scale(0.5);
+ -webkit-transition:
+ color 0.3s 0.2s,
+ -webkit-transform 0.3s 0.1s;
+ transition:
+ color 0.3s 0.2s,
+ -webkit-transform 0.3s 0.1s;
+ transition:
+ transform 0.3s 0.1s,
+ color 0.3s 0.2s;
+ transition:
+ transform 0.3s 0.1s,
+ color 0.3s 0.2s,
+ -webkit-transform 0.3s 0.1s;
+}
+.input_toggle_box .ball svg path {
+ fill: currentColor;
+}
+.input_toggle_box .label {
+ display: block;
+ position: relative;
+ padding: 0 16px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+ cursor: pointer;
+ white-space: nowrap;
+}
+.input_radio_box {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.input_radio_box input:checked ~ .radio_ui {
+ border-color: var(--blue-0);
+}
+.input_radio_box input:checked ~ .radio_ui .ball {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+}
+.input_radio_box input:checked ~ .label {
+ color: var(--blue-0);
+}
+.input_radio_box input:disabled ~ .radio_ui {
+ border-color: var(--gray-300);
+ cursor: default;
+}
+.input_radio_box input:disabled ~ .radio_ui .ball {
+ background-color: var(--gray-300);
+}
+.input_radio_box input:disabled ~ .label {
+ color: var(--gray-300);
+ cursor: default;
+}
+.input_radio_box .radio_ui {
+ display: block;
+ width: 14px;
+ height: 14px;
+ border: 1px solid var(--gray-800);
+ border-radius: 50%;
+ -webkit-transition: border 0.3s;
+ transition: border 0.3s;
+ cursor: pointer;
+}
+.input_radio_box .ball {
+ display: block;
+ width: 8px;
+ height: 8px;
+ margin: 3px 0 0 3px;
+ border-radius: 50%;
+ background-color: var(--blue-0);
+ -webkit-transform: scale(0);
+ transform: scale(0);
+ -webkit-transition: -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+ transition: -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+ transition: transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+ transition:
+ transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.3s;
+}
+.input_radio_box .label {
+ padding-left: 8px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ -webkit-transition: color 0.3s;
+ transition: color 0.3s;
+ cursor: pointer;
+}
+.input_check_box {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.input_check_box.is_large .checkbox_ui {
+ width: 18px;
+ height: 18px;
+}
+.input_check_box.is_large .checkbox_ui .check svg {
+ padding: 3px;
+}
+.input_check_box.is_large .label {
+ padding-left: 16px;
+}
+.input_check_box input:checked ~ .checkbox_ui {
+ border-color: var(--blue-0);
+}
+.input_check_box input:checked ~ .checkbox_ui .check {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ opacity: 1;
+}
+.input_check_box input:checked ~ .label {
+ color: var(--blue-0);
+}
+.input_check_box input:disabled ~ .checkbox_ui {
+ border-color: var(--gray-300);
+ cursor: default;
+}
+.input_check_box input:disabled ~ .checkbox_ui .check {
+ background-color: var(--gray-300);
+}
+.input_check_box input:disabled ~ .label {
+ color: var(--gray-300);
+ cursor: default;
+}
+.input_check_box .checkbox_ui {
+ display: block;
+ width: 14px;
+ height: 14px;
+ border: 1px solid var(--gray-800);
+ border-radius: 4px;
+ -webkit-transition: border 0.3s;
+ transition: border 0.3s;
+ cursor: pointer;
+}
+.input_check_box .checkbox_ui .check {
+ display: block;
+ width: 100%;
+ height: 100%;
+ background-color: var(--blue-0);
+ -webkit-transform: scale(0.7);
+ transform: scale(0.7);
+ opacity: 0;
+ -webkit-transition:
+ opacity cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s;
+ transition:
+ opacity cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s;
+ transition:
+ transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s,
+ opacity cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s;
+ transition:
+ transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s,
+ opacity cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s,
+ -webkit-transform cubic-bezier(0.98, 0.02, 0.3, 1.52) 0.2s 0.1s;
+}
+.input_check_box .checkbox_ui .check svg {
+ display: block;
+ width: 12px;
+ height: 12px;
+ padding: 1px;
+ color: var(--gray-000);
+}
+.input_check_box .checkbox_ui .check svg path {
+ fill: currentColor;
+}
+.input_check_box .label {
+ display: block;
+ position: relative;
+ padding-left: 8px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ cursor: pointer;
+ -webkit-transition: color 0.3s;
+ transition: color 0.3s;
+ word-break: break-all;
+}
+.darkmode .input:-webkit-autofill {
+ -webkit-box-shadow: 0 0 0 1000px var(--gray-000) inset;
+ box-shadow: 0 0 0 1000px var(--gray-000) inset;
+}
+@charset "UTF-8";
+.document_table {
+ padding: 0 16px;
+}
+@media screen and (max-width: 1023px) {
+ .document_table {
+ padding: 0 8px;
+ }
+}
+.document_table .thead {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ width: 100%;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-600);
+}
+@media screen and (max-width: 1023px) {
+ .document_table .thead {
+ padding-right: 0;
+ padding-left: 0;
+ font-size: 0.8rem;
+ line-height: 1;
+ }
+}
+.document_table .tbody_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+}
+.document_table .tbody_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ overflow: hidden;
+ width: 100%;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-all;
+ border-radius: 4px;
+}
+@media screen and (max-width: 1023px) {
+ .document_table .tbody_item:not(:first-of-type) {
+ margin-top: 24px;
+ }
+}
+.document_table .tbody_item:hover {
+ background-color: var(--gray-100);
+}
+.document_table .tbody_item .link {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+.document_table .tbody_item .link.is_active {
+ background-color: var(--gray-100);
+}
+@media screen and (max-width: 1023px) {
+ .document_table .tbody_item .link {
+ display: grid;
+ grid-template-areas: 'item1 item1 item1 item1 item3' 'item1 item1 item1 item1 item4' 'item2 item2 item2 item2 item4';
+ }
+}
+.document_table .td,
+.document_table .th {
+ padding: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.document_table .td + .td,
+.document_table .td + .th,
+.document_table .th + .td,
+.document_table .th + .th {
+ margin-left: 24px;
+ text-align: right;
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td + .td,
+ .document_table .td + .th,
+ .document_table .th + .td,
+ .document_table .th + .th {
+ margin-left: 0;
+ }
+}
+.document_table .td:first-child,
+.document_table .th:first-child {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td:first-child,
+ .document_table .th:first-child {
+ padding-left: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.connections,
+ .document_table .th.connections {
+ padding-right: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.select,
+ .document_table .th.select {
+ width: 34px;
+ margin-left: 16px;
+ text-align: right;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .th:not(.select) {
+ width: 50%;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .th.size,
+ .document_table .th.updated {
+ display: none;
+ }
+}
+.document_table .th.select {
+ padding: 16px 0;
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td:not(.select) {
+ width: auto;
+ padding: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.id {
+ padding-right: 16px;
+ grid-area: item1;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.updated {
+ grid-area: item2;
+ text-align: left;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.connections {
+ grid-area: item3;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.size {
+ grid-area: item4;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.size,
+ .document_table .td.updated {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ padding-top: 3px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+ }
+}
+@media screen and (max-width: 1023px) {
+ .document_table .td.select {
+ padding-top: 10px;
+ }
+}
+.document_table .size,
+.document_table .updated {
+ padding-left: 12px;
+ width: 120px;
+}
+.document_table .connections {
+ width: 280px;
+}
+.document_table .select {
+ text-align: center;
+ width: 72px;
+ margin-left: 24px;
+ padding: 16px 0;
+}
+@media screen and (max-width: 1023px) {
+ .document_table .select {
+ padding: 0;
+ }
+}
+.document_table .select .count {
+ display: none;
+}
+.document_table .select .btn_all_check {
+ display: block;
+ width: 100%;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--blue-dark);
+}
+@media screen and (max-width: 1023px) {
+ .document_table .select .btn_all_check {
+ font-size: 0.8rem;
+ line-height: 1;
+ font-weight: 500;
+ }
+}
+.is_edit .td:not(.id, .updated, .select),
+.is_edit .th:not(.id, .updated, .select) {
+ display: none;
+}
+.box_skeleton {
+ position: relative;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 0;
+}
+.box_skeleton .box_flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ height: 54px;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .box_flex {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ height: 41px;
+ }
+ .box_skeleton .box_flex + .box_flex {
+ margin-top: 24px;
+ }
+}
+.box_skeleton .skeleton {
+ padding: 16px;
+ text-align: right;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton {
+ width: 50%;
+ padding: 5px 0;
+ }
+}
+.box_skeleton .skeleton::before {
+ display: inline-block;
+ width: 120px;
+ height: 12px;
+ border-radius: 16px;
+ background: var(--gray-300);
+ vertical-align: top;
+ content: '';
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton.is_small {
+ padding: 4px 0;
+ }
+ .box_skeleton .skeleton.is_small::before {
+ height: 8px;
+ }
+}
+.box_skeleton .skeleton.is_small::before {
+ width: 80px;
+}
+.box_skeleton .skeleton + .skeleton {
+ margin-left: 24px;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton + .skeleton {
+ margin: 0;
+ }
+}
+.box_skeleton .skeleton:last-of-type,
+.box_skeleton .skeleton:nth-of-type(2) {
+ width: 120px;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton:last-of-type,
+ .box_skeleton .skeleton:nth-of-type(2) {
+ width: 50%;
+ }
+}
+.box_skeleton .skeleton:first-of-type {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ text-align: left;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton:first-of-type {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton:nth-of-type(2) {
+ text-align: left;
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .box_skeleton .skeleton:nth-of-type(2)::before {
+ width: 66px;
+ }
+}
+.box_skeleton .skeleton:nth-of-type(3) {
+ width: 280px;
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton:nth-of-type(3) {
+ width: 50%;
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .box_skeleton .skeleton:nth-of-type(3)::before {
+ width: 50px;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .box_skeleton .skeleton:last-of-type {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .box_skeleton .skeleton:last-of-type::before {
+ width: 40px;
+ }
+}
+.box_skeleton::before {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ background-image: -webkit-gradient(
+ linear,
+ left bottom,
+ left top,
+ from(rgba(254, 253, 251, 0)),
+ color-stop(20%, rgba(254, 253, 251, 0)),
+ color-stop(37%, rgba(254, 253, 251, 0.6)),
+ color-stop(47%, rgba(254, 253, 251, 0.8)),
+ color-stop(50%, rgba(254, 253, 251, 0.8)),
+ color-stop(53%, rgba(254, 253, 251, 0.8)),
+ color-stop(65%, rgba(254, 253, 251, 0.6)),
+ color-stop(80%, rgba(254, 253, 251, 0)),
+ to(rgba(254, 253, 251, 0))
+ );
+ background-image: linear-gradient(
+ 0deg,
+ rgba(254, 253, 251, 0) 0,
+ rgba(254, 253, 251, 0) 20%,
+ rgba(254, 253, 251, 0.6) 37%,
+ rgba(254, 253, 251, 0.8) 47%,
+ rgba(254, 253, 251, 0.8) 50%,
+ rgba(254, 253, 251, 0.8) 53%,
+ rgba(254, 253, 251, 0.6) 65%,
+ rgba(254, 253, 251, 0) 80%,
+ rgba(254, 253, 251, 0) 100%
+ );
+ background-size: 100% 120%;
+ -webkit-animation: skeleton 4s linear infinite;
+ animation: skeleton 4s linear infinite;
+ content: '';
+}
+.darkmode .box_skeleton::before {
+ background-image: -webkit-gradient(
+ linear,
+ left bottom,
+ left top,
+ from(rgba(51, 46, 43, 0)),
+ color-stop(20%, rgba(51, 46, 43, 0)),
+ color-stop(37%, rgba(51, 46, 43, 0.6)),
+ color-stop(47%, rgba(51, 46, 43, 0.8)),
+ color-stop(50%, rgba(51, 46, 43, 0.8)),
+ color-stop(53%, rgba(51, 46, 43, 0.8)),
+ color-stop(65%, rgba(51, 46, 43, 0.6)),
+ color-stop(80%, rgba(51, 46, 43, 0)),
+ to(rgba(51, 46, 43, 0))
+ );
+ background-image: linear-gradient(
+ 0deg,
+ rgba(51, 46, 43, 0) 0,
+ rgba(51, 46, 43, 0) 20%,
+ rgba(51, 46, 43, 0.6) 37%,
+ rgba(51, 46, 43, 0.8) 47%,
+ rgba(51, 46, 43, 0.8) 50%,
+ rgba(51, 46, 43, 0.8) 53%,
+ rgba(51, 46, 43, 0.6) 65%,
+ rgba(51, 46, 43, 0) 80%,
+ rgba(51, 46, 43, 0) 100%
+ );
+}
+@-webkit-keyframes skeleton {
+ 0% {
+ background-position: 0 300%;
+ }
+ to {
+ background-position: 0 -300%;
+ }
+}
+@keyframes skeleton {
+ 0% {
+ background-position: 0 300%;
+ }
+ to {
+ background-position: 0 -300%;
+ }
+}
+@charset "UTF-8";
+@media screen and (max-width: 1023px) {
+ .member_list {
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .member_list {
+ padding: 0 16px;
+ }
+}
+.member_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 10px 10px 10px 16px;
+}
+.member_item + .member_item {
+ margin-top: 6px;
+}
+.member_item .member_info {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+@media screen and (max-width: 639px) {
+ .member_item .member_info {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+}
+.member_item .member_info .align_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+}
+@media screen and (max-width: 639px) {
+ .member_item .member_info .align_box {
+ display: block;
+ }
+}
+.member_item .profile {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ width: 26px;
+ height: 26px;
+ border-radius: 50%;
+}
+.member_item .profile img {
+ width: 100%;
+ vertical-align: top;
+}
+.member_item .profile .icon {
+ display: block;
+ width: 100%;
+ height: 100%;
+ color: var(--gray-900);
+}
+.member_item .profile svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.member_item .info_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ margin-left: 16px;
+}
+@media screen and (max-width: 639px) {
+ .member_item .info_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+}
+.member_item .details {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 48%;
+ padding-right: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 639px) {
+ .member_item .details {
+ display: block;
+ width: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .member_item .details + .authority,
+ .member_item .details + .dropdown_box {
+ padding-top: 8px;
+ }
+}
+.member_item .details_desc {
+ padding-right: 16px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-900);
+ word-break: break-all;
+}
+.member_item .details_sub_desc {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+ color: var(--gray-800);
+ word-break: break-all;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+.member_item .authority {
+ min-width: 90px;
+ margin-right: 8px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-900);
+ text-align: right;
+ word-break: break-all;
+}
+@media screen and (max-width: 639px) {
+ .member_item .authority {
+ min-width: 0;
+ text-align: left;
+ }
+}
+.member_item .dropdown {
+ display: block;
+ position: absolute;
+ top: 30px;
+ z-index: 20;
+ width: 200px;
+}
+.member_item .dropdown_box {
+ position: relative;
+}
+@media screen and (max-width: 639px) {
+ .member_item .dropdown_box {
+ padding-left: 0;
+ }
+}
+.member_item .dropdown_box .dropdown {
+ right: 0;
+ width: 100px;
+}
+@media screen and (max-width: 639px) {
+ .member_item .dropdown_box .dropdown {
+ left: 0;
+ }
+}
+.member_item .dropdown_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ min-width: 90px;
+ padding: 0;
+}
+@media screen and (max-width: 1023px) {
+ .member_item .dropdown_title {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+}
+@media screen and (max-width: 639px) {
+ .member_item .dropdown_title {
+ padding: 0;
+ }
+}
+.member_item .dropdown_title .icon {
+ display: block;
+ color: var(--gray-800);
+}
+.member_item .dropdown_title .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.member_item .dropdown_title.is_active .icon {
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+.member_item .dropdown_list {
+ overflow-y: auto;
+ max-height: 200px;
+}
+.member_item .dropdown_list ::-webkit-scrollbar {
+ width: 3px;
+ height: 3px;
+}
+.member_item .dropdown_list ::-webkit-scrollbar-thumb {
+ background: var(--orange-alpha-dark);
+ border-radius: 2px;
+}
+.member_item .dropdown_list ::-webkit-scrollbar-track {
+ background: 0 0;
+}
+.member_item .guide_area {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 auto;
+ flex: 1 0 auto;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding: 0 8px;
+}
+@media screen and (max-width: 1023px) {
+ .member_item .guide_area {
+ padding: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .member_item .guide_area {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+}
+.member_item .guide_text {
+ display: block;
+ max-width: 300px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 300;
+ word-break: break-all;
+}
+.member_item .add_view_area {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ margin-left: auto;
+ position: relative;
+}
+@media screen and (max-width: 639px) {
+ .member_item .add_view_area {
+ margin-bottom: auto;
+ }
+}
+.member_item .add_view_area .btn_add_view {
+ display: block;
+ margin: 0;
+ padding: 5px;
+ color: var(--gray-800);
+ font-size: 0;
+ line-height: normal;
+}
+.member_item .add_view_area .btn_add_view.is_active + .dropdown {
+ display: block;
+}
+.member_item .add_view_area .dropdown {
+ left: -179px;
+}
+.member_item .add_view_area .dropdown_menu {
+ padding-top: 12px;
+ padding-bottom: 12px;
+}
+@charset "UTF-8";
+.project_table {
+ padding: 0 16px;
+}
+@media screen and (max-width: 1023px) {
+ .project_table {
+ display: none;
+ }
+}
+.project_table .thead {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ width: 100%;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-600);
+}
+@media screen and (max-width: 1023px) {
+ .project_table .thead {
+ padding-right: 0;
+ padding-left: 0;
+ font-size: 0.8rem;
+ line-height: 1;
+ }
+}
+.project_table .tbody_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+ margin-top: 24px;
+}
+.project_table .tbody_item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: 100%;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+@media screen and (max-width: 1023px) {
+ .project_table .tbody_item:not(:first-of-type) {
+ margin-top: 24px;
+ }
+}
+.project_table .tbody_item:hover {
+ background-color: var(--gray-100);
+}
+.project_table .tbody_item .link {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+@media screen and (max-width: 1023px) {
+ .project_table .tbody_item .link {
+ display: grid;
+ grid-template-areas: 'item1 item1 item1 item1 item3' 'item1 item1 item1 item1 item4' 'item2 item2 item2 item2 item4';
+ }
+}
+.project_table .td,
+.project_table .th {
+ padding: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.project_table .td + .td,
+.project_table .td + .th,
+.project_table .th + .td,
+.project_table .th + .th {
+ margin-left: 24px;
+ text-align: right;
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td + .td,
+ .project_table .td + .th,
+ .project_table .th + .td,
+ .project_table .th + .th {
+ margin-left: 0;
+ }
+}
+.project_table .td:first-child,
+.project_table .th:first-child {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td:first-child,
+ .project_table .th:first-child {
+ padding-left: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.storage,
+ .project_table .th.storage {
+ padding-right: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .th:not(.select) {
+ width: 50%;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .th.connections,
+ .project_table .th.load {
+ display: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td:not(.select) {
+ width: auto;
+ padding: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.title {
+ padding-right: 16px;
+ grid-area: item1;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.connections {
+ grid-area: item2;
+ text-align: left;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.storage {
+ grid-area: item3;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.load {
+ grid-area: item4;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .project_table .td.connections,
+ .project_table .td.load {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ padding-top: 3px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+ }
+}
+.project_table .load,
+.project_table .storage {
+ padding-left: 12px;
+ width: 160px;
+}
+.project_table .connections {
+ width: 120px;
+}
+@charset "UTF-8";
+.modal {
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ z-index: 300;
+ width: 454px;
+ padding: 40px;
+ border: 1px solid var(--gray-400);
+ border-radius: 8px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: var(--gray-000);
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+}
+@media screen and (max-width: 1023px) {
+ .modal {
+ width: calc(100% - 64px);
+ }
+}
+@media screen and (max-width: 639px) {
+ .modal {
+ top: initial;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ width: 100%;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+ -webkit-transform: none;
+ transform: none;
+ -webkit-box-shadow: 0 -8px 16px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 -8px 16px -8px rgba(0, 0, 0, 0.2);
+ }
+}
+.modal_l {
+ width: 687px;
+}
+@media screen and (max-width: 1023px) {
+ .modal_l {
+ width: calc(100% - 64px);
+ }
+}
+@media screen and (max-width: 639px) {
+ .modal_l {
+ top: initial;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ width: 100%;
+ -webkit-transform: none;
+ transform: none;
+ -webkit-box-shadow: 0 -8px 16px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 -8px 16px -8px rgba(0, 0, 0, 0.2);
+ }
+}
+.modal_top {
+ 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-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+.modal_top .icon {
+ display: block;
+ width: 48px;
+ height: 48px;
+}
+.modal_top .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.modal_top + .modal_bottom {
+ padding-top: 64px;
+}
+.modal_content {
+ margin-top: 24px;
+}
+.modal_desc,
+.modal_title {
+ display: block;
+ color: var(--gray-900);
+ word-break: break-all;
+}
+.modal_title + .modal_desc {
+ margin-top: 16px;
+}
+.modal_link {
+ padding-left: 16px;
+}
+.modal_bottom {
+ margin-top: 64px;
+}
+@media screen and (max-width: 639px) {
+ .modal_bottom {
+ margin-top: 48px;
+ }
+}
+.modal_bottom .btn {
+ margin: 0 12px;
+ padding-top: 12px;
+ padding-bottom: 10px;
+ font-size: 16px;
+ line-height: 24px;
+}
+.modal_bottom .btn:first-child {
+ margin-left: 0;
+}
+.modal_bottom .btn:last-child {
+ margin-right: 0;
+}
+.modal_in_header {
+ position: fixed;
+ top: 72px;
+ left: auto;
+ right: 24px;
+ padding-bottom: 15px;
+ -webkit-transform: none;
+ transform: none;
+}
+@media screen and (max-width: 1023px) {
+ .modal_in_header {
+ overflow-y: auto;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: auto;
+ padding: 0 32px 32px;
+ border: none;
+ border-radius: 0;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .modal_in_header {
+ padding: 0 calc(32px + env(safe-area-inset-right)) calc(32px + env(safe-area-inset-bottom))
+ calc(32px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .modal_in_header {
+ padding: 0 calc(32px + constant(safe-area-inset-right)) calc(32px + constant(safe-area-inset-bottom))
+ calc(32px + constant(safe-area-inset-left));
+ }
+ }
+}
+@media screen and (max-width: 639px) {
+ .modal_in_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ bottom: 0;
+ padding: 0 16px 32px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .modal_in_header {
+ padding: 0 calc(16px + env(safe-area-inset-right)) calc(32px + env(safe-area-inset-bottom))
+ calc(16px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .modal_in_header {
+ padding: 0 calc(16px + constant(safe-area-inset-right)) calc(32px + constant(safe-area-inset-bottom))
+ calc(16px + constant(safe-area-inset-left));
+ }
+ }
+}
+.modal_in_header .header .btn {
+ position: static;
+}
+.modal_in_header .header .btn_back {
+ margin-left: -16px;
+ color: var(--gray-800);
+}
+.modal_in_header .header .btn_close {
+ padding: 8px;
+ color: var(--gray-500);
+}
+.modal_in_header .modal_content {
+ margin-top: 0;
+}
+@media screen and (max-width: 1023px) {
+ .modal_in_header .modal_content {
+ margin-top: 40px;
+ }
+}
+.modal_in_header .modal_bottom {
+ margin-top: 32px;
+}
+@media screen and (max-width: 639px) {
+ .modal_in_header .modal_bottom {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+}
+@media screen and (max-width: 639px) {
+ .modal_in_header .modal_bottom .btn_box {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ }
+}
+.modal_in_header .modal_title {
+ font-size: 3rem;
+ line-height: 1.27;
+ font-weight: 600;
+}
+.modal_in_header .modal_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-600);
+}
+.modal_in_header .textarea_box {
+ margin-top: 24px;
+}
+.modal .combine_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+@media screen and (max-width: 639px) {
+ .modal .combine_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.modal .combine_box .input_box {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ position: relative;
+}
+@media screen and (max-width: 639px) {
+ .modal .combine_box .input_box {
+ width: 100%;
+ }
+}
+.modal .combine_box .input_box + .btn {
+ padding-left: 24px;
+ padding-right: 24px;
+}
+@media screen and (max-width: 639px) {
+ .modal .combine_box .input_box + .btn {
+ width: 100%;
+ margin: 16px 0 0;
+ }
+}
+.modal .combine_box .member_list {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ margin-top: 7px;
+ padding: 8px 0;
+ border: 1px solid var(--gray-400);
+ border-radius: 8px;
+ background-color: var(--gray-000);
+}
+@media screen and (max-width: 639px) {
+ .modal .combine_box .member_list {
+ position: initial;
+ max-height: 200px;
+ overflow-y: auto;
+ }
+}
+.modal .combine_box .member_list .member_item {
+ padding: 0;
+}
+.modal .combine_box .member_list .member_item + .member_item {
+ margin: 0;
+}
+.modal .combine_box .member_list .member_item.has_border {
+ margin-top: 4px;
+ padding-top: 4px;
+ border-top: 1px solid var(--gray-400);
+}
+.modal .combine_box .member_list .member_info {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ width: 100%;
+ padding: 12px 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.modal .combine_box .member_list .member_info .profile {
+ padding-right: 0;
+}
+.modal .combine_box .member_list .member_info .icon {
+ width: 100%;
+ height: 100%;
+ margin: 0;
+}
+.modal .combine_box .member_list .member_info .details {
+ width: 100%;
+}
+@media screen and (max-width: 639px) {
+ .modal .combine_box .member_list .member_info {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+ .modal .combine_box .member_list .member_info .details {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+}
+.modal .combine_box .member_list .member_info:hover {
+ background-color: var(--gray-100);
+}
+.modal .member_tag {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ position: relative;
+}
+@media screen and (max-width: 639px) {
+ .modal .member_tag ~ .btn {
+ width: 100%;
+ margin: 16px 0 0;
+ }
+}
+.modal .member_tag_inner {
+ padding: 8px 6px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+.modal .member_tag_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-top: -10px;
+ margin-right: -10px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.modal .member_tag_item {
+ margin-top: 10px;
+ margin-right: 10px;
+}
+.modal .member_tag_item:hover {
+ background-color: var(--gray-100);
+}
+.modal .member_tag_item .btn_tag {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+.modal .member_tag_item .input {
+ padding: 6px 12px;
+ border: none;
+}
+.modal .member_tag_item .details_sub_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-900);
+}
+.modal .member_tag .uninvited_user {
+ padding: 6px 12px;
+}
+.modal .member_tag .uninvited_user .details {
+ display: block;
+}
+.modal .member_tag .invited_user {
+ padding: 4px 12px;
+}
+.modal .member_tag .icon {
+ width: 12px;
+ height: 12px;
+ margin-left: 16px;
+ color: var(--gray-600);
+}
+.modal .member_tag .icon svg {
+ vertical-align: top;
+}
+.modal .member_tag .profile {
+ padding-right: 8px;
+}
+.modal .member_tag .profile img {
+ vertical-align: top;
+}
+.modal .sns_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding-top: 32px;
+}
+@media screen and (max-width: 639px) {
+ .modal .sns_list {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-top: 0;
+ }
+}
+.modal .sns_list_item {
+ margin: 0 24px;
+}
+@media screen and (max-width: 639px) {
+ .modal .sns_list_item {
+ margin: 0;
+ width: 60%;
+ }
+}
+.modal .sns_list_item:first-child {
+ margin-left: 0;
+}
+.modal .sns_list_item:last-child {
+ margin-right: 0;
+}
+.modal .sns_list_menu {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 11px 12px;
+}
+.modal .sns_list_text {
+ display: inline-block;
+ margin-left: 7px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ vertical-align: top;
+}
+.modal .btn_close {
+ position: absolute;
+ top: 29px;
+ right: 29px;
+ padding: 10px;
+}
+.modal .btn_close .icon {
+ width: 24px;
+ height: 24px;
+}
+.modal .icon_alert {
+ color: var(--red-0);
+}
+@charset "UTF-8";
+.mouse_effect {
+ position: fixed;
+ bottom: 0;
+ right: 0;
+ z-index: 20;
+ max-width: 192px;
+ padding: 20px;
+}
+@media screen and (max-width: 1023px) {
+ .mouse_effect {
+ display: none;
+ }
+}
+.mouse_effect_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.mouse_effect_item + .mouse_effect_item {
+ margin-left: 16px;
+}
+.mouse_effect_item.is_active .mouse_effect_menu {
+ opacity: 1;
+}
+.mouse_effect_menu {
+ display: block;
+ width: 36px;
+ height: 36px;
+ opacity: 0.3;
+}
+.mouse_effect_menu svg rect:first-child {
+ fill: var(--gray-800);
+}
+.mouse_effect .btn_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: initial;
+ -ms-flex-align: initial;
+ align-items: initial;
+ margin-top: 16px;
+}
+.mouse_effect .btn_box .btn {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ margin: 0;
+ border-radius: 8px;
+}
+.mouse_effect .btn_box .btn.is_hide .icon svg:first-child {
+ display: none;
+}
+.mouse_effect .btn_box .btn.is_hide .icon svg:last-child {
+ display: block;
+}
+.mouse_effect .btn_box .btn .icon {
+ width: 20px;
+ height: 20px;
+}
+.mouse_effect .btn_box .btn .icon svg:last-child {
+ display: none;
+}
+.mouse_effect .btn_box .btn:hover {
+ background-color: var(--gray-900);
+}
+.mouse_effect .btn_box .btn:hover.is_hide .icon svg:first-child {
+ display: block;
+}
+.mouse_effect .btn_box .btn:hover.is_hide .icon svg:last-child {
+ display: none;
+}
+.mouse_effect .btn_box .btn:hover .icon svg:first-child {
+ display: none;
+}
+.mouse_effect .btn_box .btn:hover .icon svg:last-child {
+ display: block;
+}
+@charset "UTF-8";
+.navigator_list {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ max-width: 244px;
+ width: 100%;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.navigator_list > .navigator_group .navigator_list {
+ padding-right: 16px;
+}
+.navigator_list .navigator_list {
+ padding: 0 0 0 32px;
+}
+.navigator_list .navigator_list .navigator_group:not(:first-of-type) .navigator_item,
+.navigator_list .navigator_list .navigator_group:not(:first-of-type) .navigator_menu {
+ margin-top: 8px;
+}
+.navigator_list .navigator_list .navigator_menu {
+ margin-top: 8px;
+ padding: 12px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.navigator_group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+.navigator_group + .navigator_group {
+ margin-top: 8px;
+}
+.navigator_group .navigator_group:not(:first-of-type) .navigator_item {
+ margin-top: 24px;
+}
+.navigator_item {
+ padding: 9px 16px;
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ text-align: start;
+ word-break: break-all;
+}
+.navigator_item.is_active {
+ border: 1px solid var(--orange-0);
+ background: var(--orange-alpha-light);
+}
+.navigator_item.is_active .icon {
+ margin-right: 8px;
+}
+.navigator_item.add_icon.is_active {
+ color: var(--orange-0);
+}
+.navigator_item.add_icon.is_active .icon svg path {
+ fill: var(--orange-0);
+}
+.navigator_item .icon {
+ margin-right: 8px;
+}
+.navigator_menu {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ padding: 12px 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+ color: var(--gray-900);
+ word-break: break-all;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.navigator_menu.is_active .icon svg {
+ -webkit-transform: rotate(0);
+ transform: rotate(0);
+}
+.navigator_menu .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ display: inline-block;
+ width: 24px;
+ height: 24px;
+ margin-right: 8px;
+}
+.navigator_menu .icon svg {
+ width: 100%;
+ height: 100%;
+ -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+}
+@charset "UTF-8";
+.placeholder_box {
+ 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;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding: 56px 20px;
+ border: 1px dashed var(--gray-400);
+ border-radius: 4px;
+ background-color: var(--gray-50);
+}
+@media screen and (max-width: 1023px) {
+ .placeholder_box {
+ margin: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .placeholder_box {
+ margin: 0 16px;
+ }
+}
+.placeholder_box.no_bg {
+ border: none;
+ background-color: transparent;
+}
+.placeholder_box .desc {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 500;
+ text-align: center;
+ word-break: break-all;
+ color: var(--gray-800);
+}
+.placeholder_box .btn {
+ margin-top: 24px;
+}
+.placeholder_box .btn:first-of-type {
+ margin-left: 0;
+}
+.placeholder_box .btn .icon {
+ width: 12px;
+ height: 12px;
+}
+@charset "UTF-8";
+.pagination .btn_box {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+.pagination .btn {
+ min-width: 90px;
+ -webkit-transition:
+ border-color 0.2s,
+ color 0.2s;
+ transition:
+ border-color 0.2s,
+ color 0.2s;
+}
+.pagination .btn.is_disabled,
+.pagination .btn:disabled {
+ pointer-events: none;
+ background-color: var(--gray-100);
+ color: var(--gray-400);
+}
+.pagination .btn:hover {
+ border-color: var(--gray-800);
+ background-color: var(--gray-000);
+ color: var(--gray-800);
+}
+@charset "UTF-8";
+@media screen and (max-width: 1023px) {
+ .card {
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .card {
+ padding: 0 16px;
+ }
+}
+.card_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ margin: -16px 0 0 -16px;
+}
+@media screen and (max-width: 1023px) {
+ .card_list {
+ margin: 0;
+ }
+}
+.card_item {
+ position: relative;
+ width: 100%;
+ max-width: 336px;
+ margin: 16px 0 0 16px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (min-width: 1024px) {
+ .card_item {
+ -ms-flex-preferred-size: calc(33.3333333333% - 16px);
+ flex-basis: calc(33.3333333333% - 16px);
+ }
+}
+@media screen and (max-width: 1023px) {
+ .card_item {
+ -ms-flex-preferred-size: calc(50% - 8px);
+ flex-basis: calc(50% - 8px);
+ min-width: auto;
+ max-width: none;
+ margin: 8px;
+ }
+ .card_item:nth-child(-n + 2) {
+ margin-top: 0;
+ }
+ .card_item:nth-child(2n + 1) {
+ margin-left: 0;
+ }
+ .card_item:nth-child(2n) {
+ margin-right: 0;
+ }
+ .card_item:nth-last-child(-n + 2) {
+ margin-bottom: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .card_item {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin: 16px 0 0;
+ }
+ .card_item:nth-child(2) {
+ margin-top: 16px;
+ }
+ .card_item:nth-child(2n + 1) {
+ margin-left: 0;
+ }
+ .card_item:nth-child(2n) {
+ margin-right: 0;
+ }
+ .card_item:nth-last-child(-n + 2) {
+ margin-bottom: 0;
+ }
+}
+.card_item .link {
+ display: block;
+ padding: 16px 23px 15px;
+}
+@media screen and (max-width: 1023px) {
+ .card_item .link {
+ padding-bottom: 24px;
+ }
+}
+.card .title_thumbnail {
+ display: block;
+ width: 40px;
+ height: 40px;
+ margin-bottom: 9px;
+}
+.card .title_thumbnail img {
+ display: block;
+ width: 100%;
+}
+.card .title_thumbnail.emoji {
+ padding: 4px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.card .title_text {
+ display: block;
+ height: 56px;
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ word-break: break-all;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .card .title_text {
+ height: 48px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+}
+.card .team {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-bottom: 20px;
+ padding: 11px 30px 0 0;
+}
+.card .team_thumb {
+ overflow: hidden;
+ position: relative;
+ width: 16px;
+ height: 16px;
+ border-radius: 4px;
+}
+.card .team_thumb img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+.card .team_text {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ margin-left: 8px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-all;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+@media screen and (max-width: 1023px) {
+ .card .team_text {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ }
+}
+.card .info_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: column wrap;
+ flex-flow: column wrap;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ width: -webkit-min-content;
+ width: -moz-min-content;
+ width: min-content;
+ height: 46px;
+ margin-top: 15px;
+}
+@media screen and (max-width: 1023px) {
+ .card .info_list {
+ margin-top: 16px;
+ }
+}
+.card .info_item {
+ margin: 0 14px;
+}
+.card .info_item:first-child {
+ margin-left: 0;
+}
+.card .info_item:last-child {
+ margin-right: 0;
+}
+.card .info_title {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ margin-right: 32px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-400);
+ white-space: nowrap;
+}
+.card .info_title:last-of-type {
+ margin-right: 0;
+}
+.card .info_desc {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ margin-right: 32px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-600);
+ white-space: nowrap;
+}
+.card .info_desc:last-of-type {
+ margin-right: 0;
+}
+.card .btn_favorite,
+.card .btn_favorite_full {
+ position: absolute;
+ top: 19px;
+ right: 19px;
+ margin: 0;
+}
+@media screen and (max-width: 1023px) {
+ .card .btn_favorite,
+ .card .btn_favorite_full {
+ top: 21px;
+ right: 21px;
+ }
+}
+.card .btn_favorite .icon,
+.card .btn_favorite_full .icon {
+ width: 100%;
+ height: 100%;
+}
+.card .btn_favorite {
+ width: 32px;
+ height: 32px;
+ padding: 0;
+ color: var(--gray-500);
+}
+.card .btn_favorite_full {
+ width: 33px;
+ height: 33px;
+ padding: 5px;
+ color: var(--yellow-0);
+}
+@charset "UTF-8";
+.search {
+ font-size: 0;
+ line-height: normal;
+}
+@media screen and (max-width: 1023px) {
+ .search {
+ padding-left: 32px;
+ padding-right: 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .search {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.search .input {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ width: 100%;
+ padding: 0 0 8px;
+ border: none;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 639px) {
+ .search .input {
+ min-width: 0;
+ width: auto;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ border-bottom: 1px solid var(--gray-400);
+ }
+}
+.search .input_inner {
+ border-bottom: 1px solid var(--gray-400);
+}
+@media screen and (max-width: 639px) {
+ .search .input_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ border-bottom: none;
+ }
+}
+@media screen and (max-width: 639px) {
+ .search .input_inner .btn_box {
+ margin-top: 0;
+ border-bottom: 1px solid var(--gray-400);
+ }
+}
+.search .icon_search {
+ margin: 8px;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 639px) {
+ .search .icon_search {
+ margin: 0;
+ padding: 0 8px 8px;
+ border-bottom: 1px solid var(--gray-400);
+ }
+}
+.search .icon_search svg {
+ display: block;
+}
+.search .icon_close {
+ width: 12px;
+ height: 12px;
+}
+.search_area {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+@media screen and (max-width: 1023px) {
+ .search_area {
+ padding-left: 32px;
+ padding-right: 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .search_area {
+ display: block;
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.search_area .search {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+@media screen and (max-width: 1023px) {
+ .search_area .search {
+ padding: 0;
+ border-bottom: 1px solid var(--gray-400);
+ }
+}
+@media screen and (max-width: 639px) {
+ .search_area .search {
+ border-bottom: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .search_area .input_inner {
+ border-bottom: none;
+ }
+}
+.search_area .filter {
+ margin-left: auto;
+}
+@media screen and (max-width: 1023px) {
+ .search_area .filter {
+ padding: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .search_area .filter {
+ margin-top: 16px;
+ }
+}
+.search_area .filter_list {
+ padding-right: 8px;
+}
+@media screen and (max-width: 639px) {
+ .search_area .filter_list {
+ padding-right: 0;
+ padding-bottom: 12px;
+ }
+}
+.search_area .btn {
+ min-width: 88px;
+ height: 100%;
+}
+@media screen and (max-width: 1023px) {
+ .search_area .btn {
+ min-width: 64px;
+ }
+}
+.search_area .btn_del {
+ color: var(--red-0);
+}
+.search_area .btn_box {
+ margin-left: auto;
+ border-bottom: 1px solid var(--gray-400);
+}
+@media screen and (max-width: 1023px) {
+ .search_area .btn_box {
+ padding: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .search_area .btn_box {
+ margin-top: 16px;
+ }
+}
+@charset "UTF-8";
+.box_tab {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 64px;
+ z-index: 10;
+ background-color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .box_tab::before {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 1px;
+ background-color: var(--gray-500);
+ content: '';
+ }
+}
+@media screen and (max-width: 1023px) {
+ .box_tab {
+ overflow-x: auto;
+ padding-top: 16px;
+ padding-bottom: 2px;
+ white-space: nowrap;
+ }
+ .box_tab::-webkit-scrollbar {
+ display: none;
+ }
+}
+.tab_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+}
+@media screen and (min-width: 1024px) {
+ .tab_list {
+ border-bottom: 1px solid var(--gray-500);
+ }
+}
+.tab_item {
+ margin: 0 4px;
+}
+@media screen and (max-width: 1023px) {
+ .tab_item {
+ position: relative;
+ }
+}
+.tab_item:first-child {
+ margin-left: 0;
+}
+.tab_item:last-child {
+ margin-right: 0;
+}
+.tab_item:hover .tab_menu::before {
+ background: var(--gray-400);
+}
+.tab_item:hover .tab_menu .icon {
+ color: var(--gray-800);
+}
+.tab_item:hover .tab_menu.is_active::before {
+ background: var(--orange-0);
+}
+.tab_item:hover .tab_text {
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .tab_item::before {
+ position: absolute;
+ bottom: -2px;
+ left: -4px;
+ right: -4px;
+ height: 1px;
+ background-color: var(--gray-500);
+ content: '';
+ }
+}
+.tab_menu {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ padding: 8px 16px 6px 12px;
+ -webkit-transition: border 0.2s;
+ transition: border 0.2s;
+}
+.tab_menu::before {
+ display: block;
+ position: absolute;
+ right: 0;
+ bottom: -1px;
+ left: 0;
+ z-index: 1;
+ width: 100%;
+ height: 2px;
+ content: '';
+}
+@media screen and (max-width: 1023px) {
+ .tab_menu::before {
+ bottom: -2px;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .tab_menu::after {
+ display: block;
+ position: absolute;
+ right: 0;
+ bottom: -2px;
+ left: 0;
+ width: 100%;
+ height: 1px;
+ background-color: var(--gray-500);
+ content: '';
+ }
+}
+.tab_menu.is_active::before {
+ background: var(--orange-0);
+}
+.tab_menu.is_active .icon {
+ color: var(--gray-800);
+}
+.tab_menu.is_active .tab_text {
+ color: var(--gray-800);
+}
+.tab_menu .icon {
+ display: inline-block;
+ width: 12px;
+ height: 12px;
+ margin-right: 8px;
+ color: var(--gray-500);
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+ vertical-align: middle;
+}
+.tab_menu .icon svg {
+ display: block;
+ width: 100%;
+}
+.tab_menu .icon svg path {
+ fill: currentColor;
+}
+.tab_text {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-500);
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+}
+@charset "UTF-8";
+.textarea {
+ display: block;
+ width: 100%;
+ height: 120px;
+ margin-top: 8px;
+ padding: 7px 15px;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 8px;
+ background-color: var(--gray-000);
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ color: var(--gray-900);
+ -webkit-transition: border 0.2s;
+ transition: border 0.2s;
+ caret-color: var(--blue-0);
+ resize: none;
+}
+.textarea::-webkit-input-placeholder {
+ color: var(--gray-500);
+}
+.textarea::-moz-placeholder {
+ color: var(--gray-500);
+}
+.textarea:-ms-input-placeholder {
+ color: var(--gray-500);
+}
+.textarea::-ms-input-placeholder {
+ color: var(--gray-500);
+}
+.textarea::placeholder {
+ color: var(--gray-500);
+}
+.textarea:focus {
+ border-color: var(--blue-0);
+}
+.textarea_box {
+ display: block;
+}
+.textarea_box .label {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+@charset "UTF-8";
+.api_title .title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ padding-right: 185px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 639px) {
+ .api_title .title_box {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+}
+@media screen and (max-width: 359px) {
+ .api_title .title_box {
+ padding-right: 120px;
+ }
+}
+.api_title .title {
+ margin-right: 24px;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 639px) {
+ .api_title .input_toggle_box {
+ margin: 4px 0;
+ }
+}
+.api_title .btn_refresh {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ padding: 0 12px;
+ height: 32px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+@media screen and (max-width: 359px) {
+ .api_title .btn_refresh {
+ max-width: 120px;
+ }
+}
+.api_title .icon {
+ display: inline-block;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 auto;
+ flex: 1 0 auto;
+ margin-right: 8px;
+ vertical-align: top;
+}
+.api_title .icon svg {
+ display: block;
+}
+.api_title .desc {
+ margin-top: 10px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+@charset "UTF-8";
+.init_box .title {
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.init_box .title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.init_box .title_box .icon {
+ margin-right: 16px;
+ color: var(--gray-800);
+}
+.init_box .title_box_s .title {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+}
+.init_box .title_box_s .icon {
+ width: 16px;
+ height: 16px;
+ margin-right: 8px;
+}
+.init_box .title_box_s .icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.init_box .title_desc {
+ margin-top: 16px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+@charset "UTF-8";
+.setting_title .text {
+ display: inline-block;
+ padding: 0 4px 7px 5px;
+ border-bottom: 1px solid var(--orange-0);
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+ vertical-align: top;
+}
+@charset "UTF-8";
+@media screen and (max-width: 1023px) {
+ .project_area {
+ padding: 16px 32px 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .project_area {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+.project_area .title {
+ display: block;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ margin-right: auto;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 639px) {
+ .project_area .title {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0px;
+ flex: 1 1 0;
+ padding-right: 10px;
+ word-break: break-all;
+ }
+}
+.project_area .title_group {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+}
+@media screen and (max-width: 1023px) {
+ .project_area .title_group {
+ display: none;
+ }
+}
+@media screen and (max-width: 639px) {
+ .project_area .title_group {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.project_area .title_group + .search {
+ margin-top: 24px;
+}
+.project_area .title_group .thumbnail {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ width: 32px;
+ height: 32px;
+ margin-right: 16px;
+}
+.project_area .title_group .thumbnail.emoji {
+ padding: 3px;
+ border: 1px solid var(--gray-300);
+ border-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.project_area .title_group .thumbnail.emoji img {
+ width: 24px;
+ height: 24px;
+}
+.project_area .title_group .thumbnail img {
+ display: block;
+ width: 100%;
+}
+.project_area .title_group .thumbnail.icon {
+ display: block;
+ width: 32px;
+ height: 32px;
+ margin-left: 0;
+ color: var(--gray-800);
+}
+.project_area .title_group .thumbnail.icon svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.project_area .title_group .dropdown {
+ position: absolute;
+ top: 100%;
+ left: -24px;
+ z-index: 20;
+ width: 640px;
+ margin-top: 16px;
+ padding: 12px 0;
+ border-radius: 10px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.project_area .title_group .dropdown_list {
+ overflow-y: overlay;
+ max-height: 252px;
+}
+.project_area .title_group .dropdown_list + .dropdown_list {
+ margin-top: 8px;
+ padding-top: 7px;
+}
+.project_area .title_group .dropdown_item.has_border {
+ margin-top: 8px;
+ padding-top: 7px;
+}
+.project_area .title_group .dropdown_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-top: -12px;
+ padding: 3px 8px 2px 24px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.project_area .title_group .dropdown_title ~ .dropdown_list {
+ margin: 8px 0 0 0;
+}
+.project_area .title_group .dropdown_title .title {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.project_area .title_group .dropdown_title .btn {
+ padding-left: 8px;
+ padding-right: 8px;
+ color: var(--gray-800);
+}
+.project_area .title_group .dropdown_title .btn .icon {
+ width: 16px;
+ height: 16px;
+}
+.project_area .title_group .dropdown_title .btn .text {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+}
+.project_area .title_group .dropdown_menu {
+ padding: 12px 24px;
+}
+.project_area .title_group .dropdown_menu:hover {
+ background-color: var(--gray-100);
+}
+.project_area .title_group .dropdown_text {
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+.project_area .title_group .dropdown .icon {
+ width: 32px;
+ height: 32px;
+ color: var(--gray-900);
+}
+.project_area .title_group .dropdown .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.project_area .title_group .dropdown .icon + .dropdown_text {
+ margin-left: 16px;
+}
+.project_area .title_group ::-webkit-scrollbar {
+ width: 10px;
+ height: 4px;
+}
+.project_area .title_group ::-webkit-scrollbar-thumb {
+ background: var(--gray-400);
+ border-radius: 10px;
+ border: 3px solid var(--gray-000);
+}
+.project_area .title_group ::-webkit-scrollbar-track {
+ background: 0 0;
+}
+.project_area .btn_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ margin-right: auto;
+}
+.project_area .btn_title .icon {
+ height: 16px;
+ margin-left: 16px;
+ color: var(--gray-500);
+}
+.project_area .btn_box .btn_favorite {
+ padding: 0;
+ color: var(--gray-500);
+}
+.project_area .btn_box .btn_favorite .icon {
+ width: 30px;
+ height: 30px;
+}
+.project_area .btn_box .btn_favorite_full {
+ padding: 5px;
+ color: var(--yellow-0);
+}
+.project_area .btn_box .btn_favorite_full .icon {
+ width: 20px;
+ height: 20px;
+}
+.project_area .btn_box .btn_grid {
+ color: var(--gray-500);
+}
+@media screen and (max-width: 1023px) {
+ .project_area > .search {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .project_area > .search {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.project_area .search_area {
+ margin-top: 24px;
+}
+@media screen and (max-width: 1023px) {
+ .project_area .search_area {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .project_area .search_area {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+@charset "UTF-8";
+.toast_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: absolute;
+ top: 0;
+ left: 50%;
+ width: -webkit-max-content;
+ width: -moz-max-content;
+ width: max-content;
+ padding: 8px;
+ border-radius: 8px;
+ background: var(--gray-800);
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-000);
+ -webkit-transform: translate(-50%, calc(-100% - 16px));
+ transform: translate(-50%, calc(-100% - 16px));
+ opacity: 1;
+ -webkit-animation: toast 0.2s linear;
+ animation: toast 0.2s linear;
+}
+.toast_box .icon {
+ display: inline-block;
+ vertical-align: top;
+ margin-right: 8px;
+}
+.toast_box svg {
+ display: block;
+}
+.toast_box svg path {
+ fill: currentColor;
+}
+@-webkit-keyframes toast {
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate(-50%, calc(-100% - 6px));
+ transform: translate(-50%, calc(-100% - 6px));
+ }
+ 100% {
+ opacity: 1;
+ -webkit-transform: translate(-50%, calc(-100% - 16px));
+ transform: translate(-50%, calc(-100% - 16px));
+ }
+}
+@keyframes toast {
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate(-50%, calc(-100% - 6px));
+ transform: translate(-50%, calc(-100% - 6px));
+ }
+ 100% {
+ opacity: 1;
+ -webkit-transform: translate(-50%, calc(-100% - 16px));
+ transform: translate(-50%, calc(-100% - 16px));
+ }
+}
+@charset "UTF-8";
+.tooltip {
+ position: absolute;
+ top: -20px;
+ right: -13px;
+ z-index: 1;
+ width: 326px;
+ padding: 15px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border: 1px solid var(--gray-900);
+ border-radius: 8px;
+ background-color: var(--gray-000);
+ -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.2);
+ -webkit-transform: translateX(326px);
+ transform: translateX(326px);
+}
+@media screen and (max-width: 1023px) {
+ .tooltip {
+ top: 38px;
+ left: 50%;
+ right: 0;
+ width: 100%;
+ -webkit-transform: translateX(-50%);
+ transform: translateX(-50%);
+ }
+}
+.tooltip_area {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: 100%;
+ font-size: 0;
+ line-height: normal;
+}
+@media screen and (max-width: 1023px) {
+ .tooltip_area {
+ position: relative;
+ }
+}
+.tooltip_area_title {
+ margin-top: 0;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-900);
+}
+.tooltip_inner {
+ position: relative;
+}
+@media screen and (max-width: 1023px) {
+ .tooltip_inner {
+ position: initial;
+ }
+}
+.tooltip_inner .btn_tooltip {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 3px;
+}
+.tooltip_inner .btn_tooltip .icon {
+ display: block;
+}
+.tooltip_inner .btn_tooltip svg path {
+ fill: inherit;
+ stroke: var(--gray-900);
+}
+.tooltip_title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.tooltip_title_box .icon {
+ width: 24px;
+ height: 24px;
+ color: var(--gray-800);
+ vertical-align: top;
+}
+.tooltip_title_box .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.tooltip_title_box .icon svg path {
+ fill: inherit;
+ stroke: currentColor;
+}
+.tooltip_title {
+ padding-left: 8px;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.tooltip_content {
+ display: block;
+ padding-top: 16px;
+}
+.tooltip_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+@charset "UTF-8";
+@media screen and (max-width: 1023px) {
+ .usage {
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .usage {
+ padding: 0 16px;
+ }
+}
+.usage_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin: -16px 0 0 -16px;
+}
+@media screen and (max-width: 1023px) {
+ .usage_list {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+}
+@media screen and (max-width: 639px) {
+ .usage_list {
+ display: block;
+ margin: 0;
+ }
+}
+.usage_item {
+ margin: 16px 0 0 16px;
+}
+@media screen and (max-width: 639px) {
+ .usage_item {
+ margin: 16px 0 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .usage_item:only-child {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .usage_item:first-child {
+ margin-top: 0;
+ }
+}
+.usage_item.bar_type {
+ min-width: 336px;
+}
+@media screen and (max-width: 1023px) {
+ .usage_item.bar_type {
+ -ms-flex-preferred-size: calc(50% - 16px);
+ flex-basis: calc(50% - 16px);
+ min-width: auto;
+ }
+}
+@media screen and (max-width: 639px) {
+ .usage_item.bar_type {
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+}
+.usage_item.bar_type .info_text {
+ margin-left: 0;
+ color: var(--gray-600);
+}
+.usage_item.link_type {
+ min-width: auto;
+}
+.usage_item.link_type .title {
+ margin-bottom: 16px;
+}
+.usage_item.link_type .info_text {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 400;
+}
+.usage_item.big_type .title {
+ margin-bottom: 10px;
+ font-weight: 600;
+}
+.usage_item.big_type .icon {
+ margin-top: -1px;
+ width: 24px;
+ height: 24px;
+}
+.usage_item.big_type .info_text {
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 500;
+}
+.usage_menu {
+ display: block;
+ position: relative;
+}
+.usage .title {
+ display: block;
+ margin-bottom: 19px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ color: var(--gray-900);
+}
+@media screen and (max-width: 639px) {
+ .usage .title {
+ margin-bottom: 8px;
+ }
+}
+.usage .title_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.usage .info {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.usage .info_text {
+ margin-left: 6px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ color: var(--gray-900);
+}
+.usage .info_text:last-child {
+ margin-left: 0;
+}
+.usage .info_text:first-of-type {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+}
+.usage .info_text.highlight {
+ color: var(--orange-0);
+}
+.usage .icon {
+ width: 16px;
+ height: 16px;
+ margin-top: 3px;
+ margin-left: 9px;
+ color: var(--gray-900);
+ -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+}
+.usage .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.usage .icon svg path {
+ fill: currentColor;
+}
+.usage .progress_bar {
+ display: block;
+ position: relative;
+ height: 4px;
+ margin-top: 18px;
+ background-color: var(--gray-300);
+ border-radius: 20px;
+}
+.usage .progress_bar .now {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ border-radius: 20px;
+ background-color: var(--orange-0);
+}
+code[class*='language-'],
+pre[class*='language-'] {
+ background: 0 0;
+ font-size: 1em;
+ text-align: left;
+ white-space: pre;
+ word-spacing: normal;
+ word-break: normal;
+ word-wrap: normal;
+ line-height: 1.5;
+ -moz-tab-size: 4;
+ -o-tab-size: 4;
+ tab-size: 4;
+ -webkit-hyphens: none;
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
+}
+code[class*='language-']::-moz-selection,
+pre[class*='language-'] ::-moz-selection,
+pre[class*='language-']::-moz-selection {
+ text-shadow: none;
+ background: #b3d4fc;
+}
+code[class*='language-'] ::-moz-selection,
+code[class*='language-']::selection,
+pre[class*='language-'] ::selection,
+pre[class*='language-']::selection {
+ text-shadow: none;
+ background: #b3d4fc;
+}
+code[class*='language-'] ::-moz-selection,
+code[class*='language-']::-moz-selection,
+pre[class*='language-'] ::-moz-selection,
+pre[class*='language-']::-moz-selection {
+ text-shadow: none;
+ background: #b3d4fc;
+}
+code[class*='language-'] ::selection,
+code[class*='language-']::selection,
+pre[class*='language-'] ::selection,
+pre[class*='language-']::selection {
+ text-shadow: none;
+ background: #b3d4fc;
+}
+@media print {
+ code[class*='language-'],
+ pre[class*='language-'] {
+ text-shadow: none;
+ }
+}
+pre[class*='language-'] {
+ overflow: auto;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ --code-slategray: var(--gray-500);
+ --code-gray: var(--gray-600);
+ --code-purple: var(--purple-dark);
+ --code-blue: var(--blue-dark);
+ --code-orange: var(--orange-dark);
+ --code-brown: #9a6e3a;
+ --code-green: var(--green-dark);
+}
+.darkmode pre[class*='language-'] {
+ --code-slategray: var(--gray-300);
+ --code-brown: #face9b;
+ color: var(--code-gray);
+}
+.token.cdata,
+.token.comment,
+.token.doctype,
+.token.prolog {
+ color: var(--code-slategray);
+}
+.token.punctuation {
+ color: var(--code-gray);
+}
+.token.namespace {
+ opacity: 0.7;
+}
+.token.boolean,
+.token.constant,
+.token.deleted,
+.token.important,
+.token.number,
+.token.regex,
+.token.symbol,
+.token.tag,
+.token.variable {
+ color: var(--code-orange);
+}
+.token.attr-name,
+.token.builtin,
+.token.char,
+.token.inserted,
+.token.selector,
+.token.string {
+ color: var(--code-green);
+}
+.language-css .token.string,
+.style .token.string,
+.token.entity,
+.token.operator,
+.token.url {
+ color: var(--code-brown);
+}
+.token.atrule,
+.token.attr-value,
+.token.keyword {
+ color: var(--code-blue);
+}
+.token.class-name,
+.token.function {
+ color: var(--code-purple);
+}
+.token.bold,
+.token.important {
+ font-weight: 700;
+}
+.token.italic {
+ font-style: italic;
+}
+.token.entity {
+ cursor: help;
+}
+.rc-slider {
+ position: relative;
+ width: 100%;
+ height: 14px;
+ padding: 5px 0;
+ border-radius: 6px;
+ -ms-touch-action: none;
+ touch-action: none;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-tap-highlight-color: transparent;
+}
+.rc-slider * {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-tap-highlight-color: transparent;
+}
+.rc-slider-rail {
+ position: absolute;
+ width: 100%;
+ height: 4px;
+ background-color: #e9e9e9;
+ border-radius: 6px;
+}
+.rc-slider-track {
+ position: absolute;
+ height: 4px;
+ background-color: #abe2fb;
+ border-radius: 6px;
+}
+.rc-slider-handle {
+ position: absolute;
+ width: 14px;
+ height: 14px;
+ margin-top: -5px;
+ background-color: #fff;
+ border: solid 2px #bfdbfe;
+ border-radius: 50%;
+ cursor: pointer;
+ cursor: -webkit-grab;
+ cursor: grab;
+ opacity: 0.8;
+ -ms-touch-action: pan-x;
+ touch-action: pan-x;
+}
+.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
+ border-color: #57c5f7;
+ -webkit-box-shadow: 0 0 0 5px #bfdbfe;
+ box-shadow: 0 0 0 5px #bfdbfe;
+}
+.rc-slider-handle:focus {
+ outline: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.rc-slider-handle:focus-visible {
+ border-color: #2db7f5;
+ -webkit-box-shadow: 0 0 0 3px #bfdbfe;
+ box-shadow: 0 0 0 3px #bfdbfe;
+}
+.rc-slider-handle-click-focused:focus {
+ border-color: #bfdbfe;
+ -webkit-box-shadow: unset;
+ box-shadow: unset;
+}
+.rc-slider-handle:hover {
+ border-color: #57c5f7;
+}
+.rc-slider-handle:active {
+ border-color: #57c5f7;
+ -webkit-box-shadow: 0 0 5px #57c5f7;
+ box-shadow: 0 0 5px #57c5f7;
+ cursor: -webkit-grabbing;
+ cursor: grabbing;
+}
+.rc-slider-mark {
+ position: absolute;
+ top: 18px;
+ left: 0;
+ width: 100%;
+ font-size: 12px;
+}
+.rc-slider-mark-text {
+ position: absolute;
+ display: inline-block;
+ color: #999;
+ text-align: center;
+ vertical-align: middle;
+ cursor: pointer;
+}
+.rc-slider-mark-text-active {
+ color: #666;
+}
+.rc-slider-step {
+ position: absolute;
+ width: 100%;
+ height: 4px;
+ background: 0 0;
+ pointer-events: none;
+}
+.rc-slider-dot {
+ position: absolute;
+ bottom: -2px;
+ width: 8px;
+ height: 8px;
+ vertical-align: middle;
+ background-color: #fff;
+ border: 2px solid #e9e9e9;
+ border-radius: 50%;
+ cursor: pointer;
+}
+.rc-slider-dot-active {
+ border-color: #bfdbfe;
+}
+.rc-slider-dot-reverse {
+ margin-right: -4px;
+}
+.rc-slider-disabled {
+ background-color: #e9e9e9;
+}
+.rc-slider-disabled .rc-slider-track {
+ background-color: #ccc;
+}
+.rc-slider-disabled .rc-slider-dot,
+.rc-slider-disabled .rc-slider-handle {
+ background-color: #fff;
+ border-color: #ccc;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ cursor: not-allowed;
+}
+.rc-slider-disabled .rc-slider-dot,
+.rc-slider-disabled .rc-slider-mark-text {
+ cursor: not-allowed !important;
+}
+.history_slider_inner .rc-slider-dot.is_end::before,
+.history_slider_inner .rc-slider-dot.is_first::before {
+ background: url(/assets/icons/icon_line.svg) left center;
+ background-repeat: space no-repeat;
+}
+@charset "UTF-8"; /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
+html {
+ line-height: 1.15;
+ -webkit-text-size-adjust: 100%;
+}
+body {
+ margin: 0;
+}
+main {
+ display: block;
+}
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+hr {
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible;
+}
+pre {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+abbr[title] {
+ border-bottom: none;
+ text-decoration: underline;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+}
+b,
+strong {
+ font-weight: bolder;
+}
+code,
+kbd,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+small {
+ font-size: 80%;
+}
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+sub {
+ bottom: -0.25em;
+}
+sup {
+ top: -0.5em;
+}
+img {
+ border-style: none;
+}
+input,
+optgroup,
+select,
+textarea {
+ font-family: inherit;
+ font-size: 100%;
+ line-height: 1.15;
+ margin: 0;
+}
+input {
+ overflow: visible;
+}
+select {
+ text-transform: none;
+}
+fieldset {
+ padding: 0.35em 0.75em 0.625em;
+}
+legend {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: inherit;
+ display: table;
+ max-width: 100%;
+ padding: 0;
+ white-space: normal;
+}
+progress {
+ vertical-align: baseline;
+}
+textarea {
+ overflow: auto;
+}
+[type='checkbox'],
+[type='radio'] {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+}
+[type='search'] {
+ -webkit-appearance: textfield;
+ outline-offset: -2px;
+}
+[type='search']::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+details {
+ display: block;
+}
+summary {
+ display: list-item;
+}
+template {
+ display: none;
+}
+[hidden] {
+ display: none;
+}
+.blind,
+legend {
+ margin: -1px !important;
+ padding: 0 !important;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ position: absolute;
+}
+:root {
+ --gray-900: #332e2b;
+ --gray-800: #514c49;
+ --gray-700: #6e6966;
+ --gray-600: #807b78;
+ --gray-500: #a6a19e;
+ --gray-400: #c2bdba;
+ --gray-300: #e2dedb;
+ --gray-200: #efeceb;
+ --gray-100: #f5f3f1;
+ --gray-50: #faf8f6;
+ --gray-000: #fefdfb;
+ --orange-dark: #f27b2f;
+ --orange-0: #fc8539;
+ --orange-light: #fda36a;
+ --orange-alpha-dark: rgb(242 123 47 / 40%);
+ --orange-alpha-0: rgb(252 133 57 / 32%);
+ --orange-alpha-light: rgb(253 163 106 / 24%);
+ --yellow-dark: #f5b103;
+ --yellow-0: #fdc433;
+ --yellow-light: #fed366;
+ --yellow-alpha-dark: rgb(245 177 3 / 40%);
+ --yellow-alpha-0: rgb(253 196 51 / 32%);
+ --yellow-alpha-light: rgb(254 211 102 / 24%);
+ --green-dark: #10b266;
+ --green-0: #23c176;
+ --green-light: #5ad198;
+ --green-alpha-dark: rgb(16 178 102 / 40%);
+ --green-alpha-0: rgb(35 193 118 / 32%);
+ --green-alpha-light: rgb(90 209 152 / 24%);
+ --blue-dark: #208aed;
+ --blue-0: #3c9af1;
+ --blue-light: #6db4f5;
+ --blue-alpha-dark: rgb(26 133 232 / 40%);
+ --blue-alpha-0: rgb(60 154 241 / 32%);
+ --blue-alpha-light: rgb(109 180 245 / 24%);
+ --red-dark: #e93d47;
+ --red-0: #f44954;
+ --red-light: #f7777e;
+ --red-alpha-dark: rgb(233 61 71 / 40%);
+ --red-alpha-0: rgb(244 73 84 / 32%);
+ --red-alpha-light: rgb(247 119 126 / 24%);
+ --purple-dark: #764af3;
+ --purple-0: #855cf9;
+ --purple-light: #a385fb;
+ --purple-alpha-dark: rgb(118 74 243 / 40%);
+ --purple-alpha-0: rgb(133 92 249 / 32%);
+ --purple-alpha-light: rgb(163 133 251 / 24%);
+}
+.darkmode {
+ --gray-900: #fefdfb;
+ --gray-800: #faf8f6;
+ --gray-700: #f5f3f1;
+ --gray-600: #efeceb;
+ --gray-500: #e2dedb;
+ --gray-300: #a6a19e;
+ --gray-200: #807b78;
+ --gray-100: #6e6966;
+ --gray-50: #514c49;
+ --gray-000: #332e2b;
+ --orange-dark: #fda36a;
+ --orange-light: #f27b2f;
+ --orange-alpha-dark: rgb(253 163 106 / 24%);
+ --orange-alpha-light: rgb(242 123 47 / 40%);
+ --yellow-dark: #fed366;
+ --yellow-light: #f5b103;
+ --yellow-alpha-dark: rgb(254 211 102 / 24%);
+ --yellow-alpha-light: rgb(245 177 3 / 40%);
+ --green-dark: #5ad198;
+ --green-light: #10b266;
+ --green-alpha-dark: rgb(90 209 152 / 24%);
+ --green-alpha-light: rgb(16 178 102 / 40%);
+ --blue-dark: #6db4f5;
+ --blue-light: #208aed;
+ --blue-alpha-dark: rgb(109 180 245 / 24%);
+ --blue-alpha-light: rgb(26 133 232 / 40%);
+ --red-dark: #f7777e;
+ --red-light: #e93d47;
+ --red-alpha-dark: rgb(247 119 126 / 24%);
+ --red-alpha-light: rgb(233 61 71 / 40%);
+ --purple-dark: #a385fb;
+ --purple-light: #764af3;
+ --purple-alpha-dark: rgb(163 133 251 / 24%);
+ --purple-alpha-light: rgb(118 74 243 / 40%);
+}
+@font-face {
+ font-family: Pretendard;
+ font-weight: 300;
+ src: url(/assets/fonts/Pretendard-Light.woff) format('woff');
+}
+@font-face {
+ font-family: Pretendard;
+ font-weight: 400;
+ src: url(/assets/fonts/Pretendard-Regular.woff) format('woff');
+}
+@font-face {
+ font-family: Pretendard;
+ font-weight: 500;
+ src: url(/assets/fonts/Pretendard-Medium.woff) format('woff');
+}
+@font-face {
+ font-family: Pretendard;
+ font-weight: 600;
+ src: url(/assets/fonts/Pretendard-SemiBold.woff) format('woff');
+}
+@font-face {
+ font-family: Pretendard;
+ font-weight: 800;
+ src: url(/assets/fonts/Pretendard-ExtraBold.woff) format('woff');
+}
+@font-face {
+ font-family: RobotoMono;
+ font-weight: 400;
+ src: url(/assets/fonts/RobotoMono-Regular.woff) format('woff');
+}
+.font_Pretendard {
+ font-family: Pretendard;
+}
+.font_RobotoMono {
+ font-family: RobotoMono;
+}
+.font_monospace {
+ font-family: monospace;
+}
+.fontweight_800 {
+ font-weight: 800;
+}
+.fontweight_600 {
+ font-weight: 600;
+}
+.fontweight_500 {
+ font-weight: 500;
+}
+.fontweight_400 {
+ font-weight: 400;
+}
+.fontweight_300 {
+ font-weight: 300;
+}
+.fontsize_56 {
+ font-size: 56px;
+ line-height: 64px;
+}
+.fontsize_46 {
+ font-size: 46px;
+ line-height: 54px;
+}
+.fontsize_38 {
+ font-size: 38px;
+ line-height: 46px;
+}
+.fontsize_30 {
+ font-size: 30px;
+ line-height: 38px;
+}
+.fontsize_24 {
+ font-size: 24px;
+ line-height: 32px;
+}
+.fontsize_20 {
+ font-size: 20px;
+ line-height: 28px;
+}
+.fontsize_16 {
+ font-size: 16px;
+ line-height: 24px;
+}
+.fontsize_14 {
+ font-size: 14px;
+ line-height: 22px;
+}
+.fontsize_12 {
+ font-size: 12px;
+ line-height: 16px;
+}
+.fontsize_8 {
+ font-size: 8px;
+ line-height: 8px;
+}
+* {
+ -webkit-tap-highlight-color: transparent;
+ -webkit-focus-ring-color: transparent;
+}
+:not(input):not(textarea) {
+ -webkit-touch-callout: none;
+}
+body,
+dd,
+dl,
+dt,
+fieldset,
+form,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+input,
+legend,
+li,
+ol,
+p,
+select,
+table,
+td,
+textarea,
+th,
+ul {
+ margin: 0;
+ padding: 0;
+}
+body,
+html {
+ height: 100%;
+}
+html {
+ font-size: 10px;
+}
+body {
+ -webkit-overflow-scrolling: touch;
+ font-size: 1.5rem;
+ line-height: normal;
+ font-weight: 400;
+ font-family:
+ Pretendard,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ Roboto,
+ 'Helvetica Neue',
+ Arial,
+ sans-serif;
+ overflow: overlay;
+}
+body,
+code,
+html,
+kbd,
+pre,
+samp {
+ font-family:
+ Pretendard,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ Roboto,
+ 'Helvetica Neue',
+ Arial,
+ sans-serif;
+}
+article,
+aside,
+dialog,
+figure,
+header,
+main,
+nav,
+section {
+ display: block;
+}
+pre {
+ word-wrap: break-word;
+}
+address,
+em {
+ font-style: normal;
+}
+fieldset,
+img {
+ border: 0;
+}
+dl,
+ol,
+ul {
+ list-style: none;
+ padding-left: 0;
+}
+input,
+optgroup,
+select,
+textarea {
+ color: inherit;
+ line-height: normal;
+}
+legend {
+ display: block;
+ max-width: none;
+}
+.white {
+ color: #fff;
+}
+.white_bg {
+ background-color: #fff;
+}
+.gray900 {
+ color: var(--gray-900);
+}
+.gray900_bg {
+ background-color: var(--gray-900);
+}
+.gray800 {
+ color: var(--gray-800);
+}
+.gray800_bg {
+ background-color: var(--gray-800);
+}
+.gray700 {
+ color: var(--gray-700);
+}
+.gray700_bg {
+ background-color: var(--gray-700);
+}
+.gray600 {
+ color: var(--gray-600);
+}
+.gray600_bg {
+ background-color: var(--gray-600);
+}
+.gray500 {
+ color: var(--gray-500);
+}
+.gray500_bg {
+ background-color: var(--gray-500);
+}
+.gray400 {
+ color: var(--gray-400);
+}
+.gray400_bg {
+ background-color: var(--gray-400);
+}
+.gray300 {
+ color: var(--gray-300);
+}
+.gray300_bg {
+ background-color: var(--gray-300);
+}
+.gray200 {
+ color: var(--gray-200);
+}
+.gray200_bg {
+ background-color: var(--gray-200);
+}
+.gray50 {
+ color: var(--gray-50);
+}
+.gray50_bg {
+ background-color: var(--gray-50);
+}
+.gray000 {
+ color: var(--gray-000);
+}
+.gray000_bg {
+ background-color: var(--gray-000);
+}
+.orange_dark {
+ color: var(--orange-dark);
+}
+.orange_dark_bg {
+ background-color: var(--orange-dark);
+}
+.orange_0 {
+ color: var(--orange-0);
+}
+.orange_0_bg {
+ background-color: var(--orange-0);
+}
+.orange_light {
+ color: var(--orange-light);
+}
+.orange_light_bg {
+ background-color: var(--orange-light);
+}
+.orange_alpha_dark {
+ color: var(--orange-alpha-dark);
+}
+.orange_alpha_dark_bg {
+ background-color: var(--orange-alpha-dark);
+}
+.orange_alpha_0 {
+ color: var(--orange-alpha-0);
+}
+.orange_alpha_0_bg {
+ background-color: var(--orange-alpha-0);
+}
+.orange_alpha_light {
+ color: var(--orange-alpha-light);
+}
+.orange_alpha_light_bg {
+ background-color: var(--orange-alpha-light);
+}
+.yellow_dark {
+ color: var(--yellow-dark);
+}
+.yellow_dark_bg {
+ background-color: var(--yellow-dark);
+}
+.yellow_0 {
+ color: var(--yellow-0);
+}
+.yellow_0_bg {
+ background-color: var(--yellow-0);
+}
+.yellow_light {
+ color: var(--yellow-light);
+}
+.yellow_light_bg {
+ background-color: var(--yellow-light);
+}
+.yellow_alpha_dark {
+ color: var(--yellow-alpha-dark);
+}
+.yellow_alpha_dark_bg {
+ background-color: var(--yellow-alpha-dark);
+}
+.yellow_alpha_0 {
+ color: var(--yellow-alpha-0);
+}
+.yellow_alpha_0_bg {
+ background-color: var(--yellow-alpha-0);
+}
+.yellow_alpha_light {
+ color: var(--yellow-alpha-light);
+}
+.yellow_alpha_light_bg {
+ background-color: var(--yellow-alpha-light);
+}
+.green_dark {
+ color: var(--green-dark);
+}
+.green_dark_bg {
+ background-color: var(--green-dark);
+}
+.green_0 {
+ color: var(--green-0);
+}
+.green_0_bg {
+ background-color: var(--green-0);
+}
+.green_light {
+ color: var(--green-light);
+}
+.green_light_bg {
+ background-color: var(--green-light);
+}
+.green_alpha_dark {
+ color: var(--green-alpha-dark);
+}
+.green_alpha_dark_bg {
+ background-color: var(--green-alpha-dark);
+}
+.green_alpha_0 {
+ color: var(--green-alpha-0);
+}
+.green_alpha_0_bg {
+ background-color: var(--green-alpha-0);
+}
+.green_alpha_light {
+ color: var(--green-alpha-light);
+}
+.green_alpha_light_bg {
+ background-color: var(--green-alpha-light);
+}
+.blue_dark {
+ color: var(--blue-dark);
+}
+.blue_dark_bg {
+ background-color: var(--blue-dark);
+}
+.blue_0 {
+ color: var(--blue-0);
+}
+.blue_0_bg {
+ background-color: var(--blue-0);
+}
+.blue_light {
+ color: var(--blue-light);
+}
+.blue_light_bg {
+ background-color: var(--blue-light);
+}
+.blue_alpha_dark {
+ color: var(--blue-alpha-dark);
+}
+.blue_alpha_dark_bg {
+ background-color: var(--blue-alpha-dark);
+}
+.blue_alpha_0 {
+ color: var(--blue-alpha-0);
+}
+.blue_alpha_0_bg {
+ background-color: var(--blue-alpha-0);
+}
+.blue_alpha_light {
+ color: var(--blue-alpha-light);
+}
+.blue_alpha_light_bg {
+ background-color: var(--blue-alpha-light);
+}
+.red_dark {
+ color: var(--red-dark);
+}
+.red_dark_bg {
+ background-color: var(--red-dark);
+}
+.red_0 {
+ color: var(--red-0);
+}
+.red_0_bg {
+ background-color: var(--red-0);
+}
+.red_light {
+ color: var(--red-light);
+}
+.red_light_bg {
+ background-color: var(--red-light);
+}
+.red_alpha_dark {
+ color: var(--red-alpha-dark);
+}
+.red_alpha_dark_bg {
+ background-color: var(--red-alpha-dark);
+}
+.red_alpha_0 {
+ color: var(--red-alpha-0);
+}
+.red_alpha_0_bg {
+ background-color: var(--red-alpha-0);
+}
+.red_alpha_light {
+ color: var(--red-alpha-light);
+}
+.red_alpha_light_bg {
+ background-color: var(--red-alpha-light);
+}
+.purple_dark {
+ color: var(--purple-dark);
+}
+.purple_dark_bg {
+ background-color: var(--purple-dark);
+}
+.purple_0 {
+ color: var(--purple-0);
+}
+.purple_0_bg {
+ background-color: var(--purple-0);
+}
+.purple_light {
+ color: var(--purple-light);
+}
+.purple_light_bg {
+ background-color: var(--purple-light);
+}
+.purple_alpha_dark {
+ color: var(--purple-alpha-dark);
+}
+.purple_alpha_dark_bg {
+ background-color: var(--purple-alpha-dark);
+}
+.purple_alpha_0 {
+ color: var(--purple-alpha-0);
+}
+.purple_alpha_0_bg {
+ background-color: var(--purple-alpha-0);
+}
+.purple_alpha_light {
+ color: var(--purple-alpha-light);
+}
+.purple_alpha_light_bg {
+ background-color: var(--purple-alpha-light);
+}
+.gradient_90deg_yellow {
+ background-image: -webkit-gradient(linear, left top, right top, from(#fe924d), to(#fdc433));
+ background-image: linear-gradient(90deg, #fe924d 0, #fdc433 100%);
+}
+.gradient_90deg_orange {
+ background-image: -webkit-gradient(linear, left top, right top, from(#f96767), to(#ff9754));
+ background-image: linear-gradient(90deg, #f96767 0, #ff9754 100%);
+}
+.gradient_90deg_red {
+ background-image: -webkit-gradient(linear, left top, right top, from(#fc94d8), to(#f44954));
+ background-image: linear-gradient(90deg, #fc94d8 0, #f44954 100%);
+}
+.gradient_90deg_purple {
+ background-image: -webkit-gradient(linear, left top, right top, from(#84b5ff), to(#855cf9));
+ background-image: linear-gradient(90deg, #84b5ff 0, #855cf9 100%);
+}
+.gradient_90deg_blue {
+ background-image: -webkit-gradient(linear, left top, right top, from(#8decec), to(#3c9af1));
+ background-image: linear-gradient(90deg, #8decec 0, #3c9af1 100%);
+}
+.gradient_90deg_green {
+ background-image: -webkit-gradient(linear, left top, right top, from(#d7e38b), to(#23c176));
+ background-image: linear-gradient(90deg, #d7e38b 0, #23c176 100%);
+}
+.gradient_90deg_gray1 {
+ background-image: -webkit-gradient(linear, left top, right top, from(#212121), to(#616161));
+ background-image: linear-gradient(90deg, #212121 0, #616161 100%);
+}
+.gradient_90deg_gray2 {
+ background-image: -webkit-gradient(linear, left top, right top, from(#616161), to(#9e9e9e));
+ background-image: linear-gradient(90deg, #616161 0, #9e9e9e 100%);
+}
+.gradient_90deg_gray3 {
+ background-image: -webkit-gradient(linear, left top, right top, from(#9e9e9e), to(#e0e0e0));
+ background-image: linear-gradient(90deg, #9e9e9e 0, #e0e0e0 100%);
+}
+.gradient_90deg_gray4 {
+ background-image: -webkit-gradient(linear, left top, right top, from(#e0e0e0), to(#f5f5f5));
+ background-image: linear-gradient(90deg, #e0e0e0 0, #f5f5f5 100%);
+}
+.gradient_180deg_yellow {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fe924d), to(#fdc433));
+ background-image: linear-gradient(180deg, #fe924d 0, #fdc433 100%);
+}
+.gradient_180deg_orange {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f96767), to(#ff9754));
+ background-image: linear-gradient(180deg, #f96767 0, #ff9754 100%);
+}
+.gradient_180deg_red {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fc94d8), to(#f44954));
+ background-image: linear-gradient(180deg, #fc94d8 0, #f44954 100%);
+}
+.gradient_180deg_purple {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#84b5ff), to(#855cf9));
+ background-image: linear-gradient(180deg, #84b5ff 0, #855cf9 100%);
+}
+.gradient_180deg_blue {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8decec), to(#3c9af1));
+ background-image: linear-gradient(180deg, #8decec 0, #3c9af1 100%);
+}
+.gradient_180deg_green {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d7e38b), to(#23c176));
+ background-image: linear-gradient(180deg, #d7e38b 0, #23c176 100%);
+}
+.gradient_180deg_gray1 {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#212121), to(#616161));
+ background-image: linear-gradient(180deg, #212121 0, #616161 100%);
+}
+.gradient_180deg_gray2 {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#616161), to(#9e9e9e));
+ background-image: linear-gradient(180deg, #616161 0, #9e9e9e 100%);
+}
+.gradient_180deg_gray3 {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#e0e0e0));
+ background-image: linear-gradient(180deg, #9e9e9e 0, #e0e0e0 100%);
+}
+.gradient_180deg_gray4 {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#f5f5f5));
+ background-image: linear-gradient(180deg, #e0e0e0 0, #f5f5f5 100%);
+}
+.shadow_xs {
+ -webkit-box-shadow: 0 8px 4px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 8px 4px -8px rgba(0, 0, 0, 0.2);
+}
+.shadow_s {
+ -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.2);
+}
+.shadow_m {
+ -webkit-box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
+}
+.shadow_l {
+ -webkit-box-shadow: 0 20px 24px -12px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 20px 24px -12px rgba(0, 0, 0, 0.2);
+}
+#__next,
+#root {
+ height: 100%;
+}
+.wrap {
+ 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-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ width: 100%;
+ min-width: 320px;
+ min-height: 100%;
+ background-color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .wrap {
+ overflow: initial;
+ }
+}
+.container {
+ 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-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ position: relative;
+ width: 100%;
+}
+@media screen and (orientation: landscape) {
+ .container {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .container {
+ padding: 0 calc(env(safe-area-inset-right)) 0 calc(env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .container {
+ padding: 0 calc(constant(safe-area-inset-right)) 0 calc(constant(safe-area-inset-left));
+ }
+ }
+}
+::-webkit-scrollbar {
+ width: 3px;
+ height: 3px;
+}
+::-webkit-scrollbar-thumb {
+ background: var(--orange-alpha-dark);
+ border-radius: 2px;
+}
+::-webkit-scrollbar-track {
+ background: 0 0;
+}
+.dimmed {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ z-index: 200;
+ background-color: var(--gray-900);
+ opacity: 0.24;
+}
+.br_pc {
+ display: block;
+}
+@media screen and (max-width: 1023px) {
+ .br_pc {
+ display: none;
+ }
+}
+.br_tablet {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .br_tablet {
+ display: block;
+ }
+}
+@media screen and (max-width: 639px) {
+ .br_tablet {
+ display: none;
+ }
+}
+.br_mo {
+ display: none;
+}
+@media screen and (max-width: 639px) {
+ .br_mo {
+ display: block;
+ }
+}
+@media screen and (max-width: 359px) {
+ .br_mo {
+ display: none;
+ }
+}
+.br_mo_xs {
+ display: none;
+}
+@media screen and (max-width: 359px) {
+ .br_mo_xs {
+ display: block;
+ }
+}
+.community_page .container {
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 158px 40px 240px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .community_page .container {
+ max-width: none;
+ padding: 0;
+ }
+}
+.community_page .container {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+.community_page .content {
+ position: relative;
+ padding-right: 32.789%;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content {
+ 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;
+ max-width: 640px;
+ padding: 72px 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .community_page .content {
+ max-width: none;
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.community_page .content .img_box {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content .img_box {
+ position: static;
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ margin-top: 32px;
+ }
+}
+.community_page .content .img_box svg {
+ display: block;
+ width: 100%;
+}
+.community_page .content .title {
+ font-size: 5.6rem;
+ line-height: 1.15;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content .title {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ font-size: 3rem;
+ line-height: 1.27;
+ }
+}
+.community_page .content .desc {
+ display: block;
+ margin-top: 32px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content .desc {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ text-align: center;
+ }
+}
+.community_page .content .btn_box {
+ margin-top: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content .btn_box {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ width: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .community_page .content .btn_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.community_page .content .btn_box .btn {
+ margin: 0 12px;
+ padding: 11px 15px;
+ border-radius: 8px;
+}
+@media screen and (max-width: 1023px) {
+ .community_page .content .btn_box .btn {
+ -ms-flex-preferred-size: 50%;
+ flex-basis: 50%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .community_page .content .btn_box .btn {
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ width: 100%;
+ margin: 16px 0 0;
+ }
+}
+.community_page .content .btn_box .btn:first-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 639px) {
+ .community_page .content .btn_box .btn:first-child {
+ margin-top: 0;
+ }
+}
+.community_page .content .btn_box .btn:last-child {
+ margin-right: 0;
+}
+.community_page .content .btn_box .btn_github svg {
+ padding: 2px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.community_page .content .btn_box .btn_github svg path {
+ fill: var(--gray-900);
+}
+.community_page .content .btn_box .btn_discord {
+ color: #5865f2;
+}
+.community_page .content .btn_box .btn_discord svg {
+ padding: 2px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.community_page .content .btn_box .icon {
+ width: 28px;
+ height: 28px;
+}
+.community_page .content .btn_box .text {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.error_page .container {
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 72px 40px 72px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .container {
+ max-width: none;
+ padding: 0;
+ }
+}
+.error_page .container {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+.error_page .content {
+ position: relative;
+ width: 100%;
+ max-width: 990px;
+ padding-left: 32.405%;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .content {
+ 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;
+ padding: 64px 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .error_page .content {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.error_page .content.error_404 {
+ padding-left: 40.577%;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .content.error_404 {
+ padding-left: 32px;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .error_page .content.error_404 {
+ padding-left: 16px;
+ }
+}
+.error_page .content .img_box {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .content .img_box {
+ position: static;
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ margin-top: 32px;
+ }
+}
+.error_page .content .img_box svg {
+ display: block;
+ width: 100%;
+}
+.error_page .title {
+ color: var(--gray-800);
+ font-size: 4.6rem;
+ line-height: 1.18;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .title {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ font-size: 3rem;
+ line-height: 1.27;
+ text-align: center;
+ }
+}
+@media screen and (max-width: 359px) {
+ .error_page .title {
+ font-size: 2.6rem;
+ line-height: 1.31;
+ }
+}
+.error_page .desc {
+ display: block;
+ margin-top: 32px;
+ color: var(--gray-800);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 400;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .desc {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ text-align: center;
+ }
+}
+.error_page .btn_box {
+ margin-top: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .btn_box {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+}
+.error_page .btn_box .btn {
+ margin: 0 12px;
+ padding: 11px 15px;
+ border-radius: 8px;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .btn_box .btn {
+ -ms-flex-preferred-size: calc(50% - 12px);
+ flex-basis: calc(50% - 12px);
+ margin-top: 24px;
+ }
+}
+.error_page .btn_box .btn:first-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .error_page .btn_box .btn:first-child {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin-top: 0;
+ margin-right: 0;
+ }
+}
+.error_page .btn_box .btn:first-child .icon {
+ width: 24px;
+ height: 24px;
+}
+.error_page .btn_box .btn:first-child .text {
+ color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .error_page .btn_box .btn:nth-child(2) {
+ margin-left: 0;
+ }
+}
+.error_page .btn_box .btn:last-child {
+ margin-right: 0;
+}
+.error_page .btn_box .btn_github svg {
+ padding: 2px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.error_page .btn_box .btn_github svg path {
+ fill: var(--gray-900);
+}
+.error_page .btn_box .icon {
+ width: 28px;
+ height: 28px;
+}
+.error_page .btn_box .text {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.btn_start.orange_0 {
+ overflow: hidden;
+ position: relative;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ height: 52px;
+ border-radius: 8px;
+ border: 0;
+ isolation: isolate;
+}
+.btn_start.orange_0::after,
+.btn_start.orange_0::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ content: '';
+ opacity: 0;
+}
+.btn_start.orange_0::before {
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+}
+.btn_start.orange_0::after {
+ background: -webkit-gradient(linear, left top, left bottom, from(#84b5ff), to(#855cf9));
+ background: linear-gradient(180deg, #84b5ff 0, #855cf9 100%);
+}
+.btn_start.orange_0 .bg::after,
+.btn_start.orange_0 .bg::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ content: '';
+ opacity: 0;
+ z-index: 1;
+}
+.btn_start.orange_0 .bg::before {
+ background: -webkit-gradient(linear, left top, left bottom, from(#8decec), to(#3c9af1));
+ background: linear-gradient(180deg, #8decec 0, #3c9af1 100%);
+}
+.btn_start.orange_0 .bg::after {
+ background: -webkit-gradient(linear, left top, left bottom, from(#fc94d8), to(#f44954));
+ background: linear-gradient(180deg, #fc94d8 0, #f44954 100%);
+}
+.btn_start.orange_0:hover {
+ background-color: var(--orange-0);
+ -webkit-animation: btn-bg 10s linear infinite 1.5s;
+ animation: btn-bg 10s linear infinite 1.5s;
+}
+.btn_start.orange_0:hover::before {
+ -webkit-animation: gradient1 10s linear infinite;
+ animation: gradient1 10s linear infinite;
+}
+.btn_start.orange_0:hover::after {
+ -webkit-animation: gradient2 10s linear infinite;
+ animation: gradient2 10s linear infinite;
+}
+.btn_start.orange_0:hover .bg::before {
+ -webkit-animation: gradient3 10s linear infinite 5s;
+ animation: gradient3 10s linear infinite 5s;
+}
+.btn_start.orange_0:hover .bg::after {
+ -webkit-animation: gradient4 10s linear infinite 5s;
+ animation: gradient4 10s linear infinite 5s;
+}
+.btn_start.orange_0 .icon {
+ width: 24px;
+ height: 24px;
+ margin-left: 0;
+ z-index: 1;
+}
+.btn_start.orange_0 .text {
+ z-index: 1;
+}
+.top_banner {
+ border-bottom: 1px solid var(--gray-400);
+}
+.top_banner_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 0 40px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .top_banner_inner {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .top_banner_inner {
+ padding: 0 16px;
+ }
+}
+.top_banner .title_group {
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .top_banner .title_group {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ max-width: none;
+ width: 100%;
+ }
+}
+.top_banner .title_group .title {
+ font-size: 5.6rem;
+ line-height: 1.15;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .top_banner .title_group .title {
+ font-size: 3rem;
+ line-height: 1.27;
+ }
+}
+.top_banner .title_group .desc {
+ margin-top: 32px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+}
+@media screen and (max-width: 1023px) {
+ .top_banner .title_group .desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+.top_banner .title_group .btn_box {
+ margin-top: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .top_banner .title_group .btn_box .btn {
+ width: 100%;
+ }
+}
+.top_banner .title_group .btn_box .icon path {
+ fill: var(--gray-000);
+}
+.top_banner .title_group .btn_box .text {
+ color: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .top_banner .img_box {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+}
+.top_banner .img_box svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.codeblock_header {
+ padding: 6px 8px;
+}
+.codeblock_header .box_left {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+}
+@media screen and (max-width: 1023px) {
+ .codeblock_header .box_left {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+}
+.codeblock_header .btn_item {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 36px;
+ padding: 0 16px;
+ border-radius: 8px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-600);
+}
+.codeblock_header .btn_item + .btn_item {
+ margin-left: 8px;
+}
+.codeblock_header .btn_item.is_active {
+ background: var(--gray-800);
+ color: var(--gray-000);
+}
+.codeblock_header + .codeblock_box {
+ margin-top: 0;
+}
+.codeblock_header + .codeblock_box .codeblock {
+ border-radius: 0 0 4px 4px;
+ border-top: 0;
+}
+.codeblock .language-bash {
+ padding: 0;
+}
+.header_example {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 13px 16px 12px 24px;
+ border-bottom: 1px solid var(--gray-600);
+ background: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .header_example {
+ padding: 20px 24px 19px 32px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_example {
+ padding: 20px calc(24px + env(safe-area-inset-right)) 19px calc(32px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_example {
+ padding: 20px calc(24px + constant(safe-area-inset-right)) 19px calc(32px + constant(safe-area-inset-left));
+ }
+ }
+}
+@media screen and (max-width: 639px) {
+ .header_example {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 10;
+ padding: 20px 24px 19px 16px;
+ }
+ @supports (padding: env(safe-area-inset-right)) {
+ .header_example {
+ padding: 20px calc(24px + env(safe-area-inset-right)) 19px calc(16px + env(safe-area-inset-left));
+ }
+ }
+ @supports (padding: constant(safe-area-inset-right)) {
+ .header_example {
+ padding: 20px calc(24px + constant(safe-area-inset-right)) 19px calc(16px + constant(safe-area-inset-left));
+ }
+ }
+}
+.header_example .nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.header_example .nav_text {
+ position: relative;
+ margin-left: 16px;
+ padding-left: 16px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.header_example .nav_text::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 1px;
+ height: 16px;
+ background-color: var(--gray-400);
+ vertical-align: middle;
+ content: '';
+}
+.header_example .nav .btn,
+.header_example .nav .user {
+ height: 32px;
+ padding: 8px 12px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+}
+.header_example .nav .btn:first-of-type,
+.header_example .nav .user:first-of-type {
+ margin-left: 24px;
+}
+.header_example .nav .btn + .btn,
+.header_example .nav .user + .btn {
+ margin-left: 16px;
+}
+@media screen and (max-width: 639px) {
+ .header_example .nav .btn {
+ display: none;
+ }
+}
+.header_example .nav .user {
+ display: inline-block;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: var(--gray-000);
+ border-radius: 4px;
+}
+@media screen and (max-width: 639px) {
+ .header_example .nav .user {
+ display: none;
+ }
+}
+.header_example .logo {
+ width: 40px;
+ height: 38px;
+}
+@media screen and (max-width: 1023px) {
+ .header_example .logo {
+ width: 24px;
+ height: 24px;
+ }
+}
+.header_example .logo a {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.header_example .logo svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+@media screen and (max-width: 639px) {
+ .header_example .btn_box {
+ display: none;
+ }
+}
+.header_example .btn_box .btn {
+ width: 32px;
+ height: 32px;
+ padding: 0;
+ border: none;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.header_example .btn_box .icon {
+ width: 100%;
+ height: 100%;
+}
+.header_example .btn_box .btn_grid {
+ padding: 8px;
+}
+.header_example .menu_user_list {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ margin: 0 32px;
+ color: var(--gray-000);
+}
+.header_example .menu_user_list .icon svg path {
+ fill: #fff;
+}
+.dashboard {
+ border-radius: 4px;
+}
+.dashboard_top {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 7px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.dashboard_content {
+ position: relative;
+ height: 260px;
+}
+.dashboard .btn_box {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 7px;
+}
+.dashboard .btn_box .guide {
+ padding-left: 4px;
+ padding-bottom: 4px;
+ font-size: 1rem;
+ line-height: 1;
+ font-weight: 500;
+ color: var(--gray-500);
+}
+.dashboard .btn_box .btn_expand {
+ position: static;
+ margin-left: auto;
+ padding-left: 8px;
+ padding-right: 8px;
+ border: none;
+}
+.dashboard .btn_box .btn_expand.is_disabled,
+.dashboard .btn_box .btn_expand:disabled {
+ background-color: var(--gray-300);
+ color: #fff;
+}
+.dashboard .user {
+ padding: 5px 13px;
+ border-radius: 4px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: #fff;
+}
+.dashboard .user_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.dashboard .user_list .user_item {
+ margin-left: 8px;
+}
+.dashboard .user_list .user_item:first-child {
+ margin-left: 0;
+}
+.dashboard .user_list .icon svg path {
+ fill: #fff;
+}
+.darkmode .header_example .logo svg [fill='#514C49'] {
+ fill: var(--gray-100);
+}
+.main_page .key_visual {
+ overflow: hidden;
+ position: relative;
+ width: 100%;
+ height: calc(100vh - 64px);
+}
+@media screen and (max-width: 1023px) and (orientation: landscape) {
+ .main_page .key_visual {
+ height: calc(100vh + 70px);
+ }
+}
+.main_page .key_visual .kv_bg svg {
+ --scale: 1;
+ position: absolute;
+ top: 0;
+ left: 50%;
+ width: auto;
+ height: 100%;
+ -webkit-transform: translateX(-50%) scale(var(--scale));
+ transform: translateX(-50%) scale(var(--scale));
+}
+.main_page .key_visual .inner {
+ 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;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ position: relative;
+ z-index: 1;
+ height: 100%;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .inner {
+ 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-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ height: 100%;
+ padding: 0 32px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .inner {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.main_page .key_visual .title {
+ font-size: 9.6rem;
+ line-height: 1.17;
+ font-weight: 800;
+ text-align: center;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .title {
+ font-size: 5.6rem;
+ line-height: 1.15;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .title {
+ font-size: 3.8rem;
+ line-height: 1.22;
+ }
+}
+.main_page .key_visual .title .text {
+ display: block;
+ background: -webkit-gradient(linear, left top, left bottom, from(#212121), to(#616161));
+ background: linear-gradient(180deg, #212121 0, #616161 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+}
+.main_page .key_visual .title .point {
+ display: block;
+ position: relative;
+ height: 113px;
+ color: var(--orange-0);
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .title .point {
+ height: auto;
+ }
+}
+.main_page .key_visual .title .point::after,
+.main_page .key_visual .title .point::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 0;
+ content: 'collaboration';
+ font-size: 9.6rem;
+ line-height: 1.17;
+ font-weight: 800;
+ opacity: 0;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .title .point::after,
+ .main_page .key_visual .title .point::before {
+ font-size: 5.6rem;
+ line-height: 1.15;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .title .point::after,
+ .main_page .key_visual .title .point::before {
+ font-size: 3.8rem;
+ line-height: 1.22;
+ }
+}
+.main_page .key_visual .title .point::before {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background-image: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+}
+.main_page .key_visual .title .point::after {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#84b5ff), to(#855cf9));
+ background-image: linear-gradient(180deg, #84b5ff 0, #855cf9 100%);
+}
+.main_page .key_visual .title .point .bg::after,
+.main_page .key_visual .title .point .bg::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1;
+ width: 100%;
+ height: 100%;
+ font-size: 9.6rem;
+ line-height: 1.17;
+ font-weight: 800;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ opacity: 0;
+ content: 'collaboration';
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .title .point .bg::after,
+ .main_page .key_visual .title .point .bg::before {
+ font-size: 5.6rem;
+ line-height: 1.15;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .title .point .bg::after,
+ .main_page .key_visual .title .point .bg::before {
+ font-size: 3.8rem;
+ line-height: 1.22;
+ }
+}
+.main_page .key_visual .title .point .bg::before {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8decec), to(#3c9af1));
+ background-image: linear-gradient(180deg, #8decec 0, #3c9af1 100%);
+}
+.main_page .key_visual .title .point .bg::after {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fc94d8), to(#f44954));
+ background-image: linear-gradient(180deg, #fc94d8 0, #f44954 100%);
+}
+.main_page .key_visual .title .point.is_hover {
+ -webkit-animation: point-text 10s linear infinite 1.5s;
+ animation: point-text 10s linear infinite 1.5s;
+}
+.main_page .key_visual .title .point.is_hover::before {
+ -webkit-animation: gradient1 10s linear infinite;
+ animation: gradient1 10s linear infinite;
+}
+.main_page .key_visual .title .point.is_hover::after {
+ -webkit-animation: gradient2 10s linear infinite;
+ animation: gradient2 10s linear infinite;
+}
+.main_page .key_visual .title .point.is_hover .bg::before {
+ -webkit-animation: gradient3 10s linear infinite 5s;
+ animation: gradient3 10s linear infinite 5s;
+}
+.main_page .key_visual .title .point.is_hover .bg::after {
+ -webkit-animation: gradient4 10s linear infinite 5s;
+ animation: gradient4 10s linear infinite 5s;
+}
+.main_page .key_visual .btn_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-top: 40px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .btn_box {
+ margin-top: 80px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .btn_box {
+ display: block;
+ width: 100%;
+ margin-top: 32px;
+ }
+}
+.main_page .key_visual .npm_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ height: 52px;
+ padding: 10px 16px;
+ border-radius: 8px;
+ background: var(--gray-800);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .npm_box {
+ padding: 0 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .npm_box {
+ padding: 0 16px;
+ }
+}
+.main_page .key_visual .npm_box .input {
+ width: 228px;
+ border: 0;
+ background: 0 0;
+ color: var(--gray-000);
+ font-size: 1.4rem;
+ line-height: 1.72;
+ font-weight: 400;
+ font-family: RobotoMono, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
+}
+.main_page .key_visual .npm_box .btn_area {
+ position: relative;
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .npm_box .btn_area {
+ margin-left: auto;
+ }
+}
+.main_page .key_visual .npm_box .btn_area .toast_box {
+ left: 65%;
+}
+.main_page .key_visual .npm_box .btn {
+ margin-left: 24px;
+ padding: 10px 12px;
+ border-color: var(--gray-400);
+}
+.main_page .key_visual .npm_box .btn:hover {
+ background: var(--gray-900);
+}
+.main_page .key_visual .npm_box .btn .icon {
+ width: 12px;
+ height: 12px;
+}
+.main_page .key_visual .btn_start {
+ margin-left: 24px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .btn_start {
+ margin-left: 16px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .btn_start {
+ width: 100%;
+ margin-top: 16px;
+ margin-left: 0;
+ }
+}
+.main_page .key_visual .btn_start:only-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .btn_start:only-child {
+ margin-top: 0;
+ }
+}
+.main_page .key_visual .desc {
+ width: 100%;
+ margin-top: 40px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ color: var(--gray-800);
+ text-align: center;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .key_visual .desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .key_visual .desc {
+ margin-top: 24px;
+ }
+}
+.main_page .section {
+ max-width: 1368px;
+ margin: 0 auto;
+ padding: 240px 40px 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section {
+ max-width: none;
+ padding-left: 32px;
+ padding-right: 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .section {
+ padding: 160px 16px 0;
+ }
+}
+.main_page .section:last-child {
+ padding-bottom: 240px;
+}
+@media screen and (max-width: 639px) {
+ .main_page .section:last-child {
+ padding-bottom: 160px;
+ }
+}
+.main_page .section_title {
+ display: block;
+ font-size: 5.6rem;
+ line-height: 1.15;
+ font-weight: 600;
+ color: var(--gray-900);
+ text-align: center;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_title {
+ font-size: 3rem;
+ line-height: 38px;
+ }
+}
+.main_page .section_desc {
+ margin-top: 32px;
+ color: var(--gray-800);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ text-align: center;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+.main_page .section_content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-top: 32px;
+}
+.main_page .section_content.draw {
+ padding: 0 60px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_content.draw {
+ padding: 0;
+ }
+}
+.main_page .section_content .draw_box {
+ width: 640px;
+ height: 374px;
+ border-radius: 20px;
+ background-color: pink;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_content .draw_box {
+ display: none;
+ }
+}
+.main_page .section_content .draw_box + .draw_box {
+ margin-left: 16px;
+}
+.main_page .section .btn_box {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-top: 48px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section .btn_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ margin-top: 32px;
+ }
+}
+.main_page .section .btn_box .btn {
+ padding-top: 11px;
+ padding-bottom: 11px;
+ border-radius: 8px;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+}
+@media screen and (max-width: 639px) {
+ .main_page .section .btn_box .btn {
+ width: 100%;
+ }
+}
+.main_page .section .btn_box .btn.btn_line {
+ color: var(--gray-800);
+}
+.main_page .section .btn_box .btn.btn_start {
+ -webkit-transition: none;
+ transition: none;
+}
+.main_page .section .btn_box .btn.btn_start:hover {
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+}
+.main_page .section .btn_box .btn .icon {
+ width: 24px;
+ height: 24px;
+}
+.main_page .section .btn_box .btn + .btn {
+ margin-left: 24px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section .btn_box .btn + .btn {
+ margin-top: 20px;
+ margin-left: 0;
+ }
+}
+.main_page .section_app {
+ max-width: 1370px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app {
+ max-width: none;
+ }
+}
+.main_page .section_app .align_box {
+ border: 1px solid var(--gray-400);
+ border-radius: 23px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .align_box {
+ border: 0;
+ border-radius: 0;
+ }
+}
+.main_page .section_app .app_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 20px 32px 19px;
+ border-bottom: 1px solid var(--gray-400);
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .app_header {
+ display: none;
+ }
+}
+.main_page .section_app .app_header .tag_name {
+ color: var(--gray-800);
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+}
+.main_page .section_app .app_header .icon svg path {
+ fill: #fff;
+}
+.main_page .section_app .app_body {
+ padding: 83px 0 94px;
+ position: relative;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .app_body {
+ padding: 0;
+ }
+}
+.main_page .section_app .app_body::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border-bottom-left-radius: 23px;
+ border-bottom-right-radius: 23px;
+ background-image: url(/assets/images/main_bg.png);
+ background-repeat: repeat;
+ content: '';
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .app_body::before {
+ display: none;
+ }
+}
+.main_page .section_app .app_body .btn_box,
+.main_page .section_app .app_body .section_desc,
+.main_page .section_app .app_body .section_title {
+ position: relative;
+ z-index: 1;
+}
+.main_page .section_app .point {
+ display: inline-block;
+ position: relative;
+ padding: 0 8px;
+ border: 3px dashed var(--purple-0);
+ border-radius: 16px;
+ line-height: 53px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .point {
+ padding: 0;
+ border: none;
+ border-radius: 0;
+ line-height: normal;
+ }
+}
+.main_page .section_app .point::before {
+ position: absolute;
+ top: -4px;
+ left: -35px;
+ width: 24px;
+ height: 24px;
+ background-image: url(/assets/icons/icon_service_main_users_alone.svg);
+ background-repeat: no-repeat;
+ content: '';
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .point::before {
+ display: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_app .btn {
+ min-width: 280px;
+ }
+}
+.main_page .service_card_list {
+ margin-right: 36px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .service_card_list {
+ margin-right: 0;
+ padding: 0 74px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .service_card_list {
+ padding: 0;
+ }
+}
+.main_page .service_card_list .service_card_item {
+ width: 398px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .service_card_list .service_card_item {
+ width: 100%;
+ }
+}
+.main_page .grid_list {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .grid_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .main_page .grid_item {
+ margin-bottom: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .main_page .grid_item {
+ margin-bottom: 32px;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .main_page .grid_item:last-child {
+ margin-bottom: 0;
+ }
+}
+.main_page .horizon_list {
+ max-width: 1000px;
+ margin-top: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .horizon_list {
+ max-width: none;
+ padding: 0 74px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .horizon_list {
+ padding: 0;
+ }
+}
+.main_page .horizon_list .img_box {
+ width: 466px;
+ height: 216px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .horizon_list .img_box {
+ width: 100%;
+ max-width: 428px;
+ height: auto;
+ margin: 0 auto;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .horizon_list .img_box {
+ max-width: none;
+ }
+}
+.main_page .horizon_list .img_box svg {
+ display: block;
+ width: 100%;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .horizon_list .img_box svg {
+ height: 100%;
+ }
+}
+.main_page .codeblock_content {
+ width: 854px;
+ height: 513px;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .codeblock_content {
+ display: none;
+ }
+}
+.main_page .codeblock_content .btn_item {
+ height: 40px;
+ border-radius: 4px;
+ color: var(--gray-800);
+}
+.main_page .codeblock_content .btn_item + .btn_item {
+ margin-left: 16px;
+}
+.main_page .codeblock_content .btn_item.is_active {
+ background: var(--orange-0);
+ color: var(--gray-000);
+}
+.main_page .codeblock_content .codeblock {
+ overflow-y: overlay;
+ height: 100%;
+ border-radius: 0 0 16px 16px;
+ border-top: 0;
+}
+.main_page .codeblock_content .codeblock_header {
+ padding: 16px;
+ border-radius: 16px 16px 0 0;
+}
+.main_page .codeblock_content .codeblock_header .box_right .btn_line {
+ width: 40px;
+ height: 40px;
+ padding: 12px;
+ color: var(--gray-800);
+}
+.main_page .codeblock_content .codeblock_header .box_right .btn_line .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ width: 16px;
+ height: 16px;
+}
+.main_page .codeblock_content .prism-code .string {
+ white-space: pre-wrap;
+}
+@media screen and (max-width: 1023px) {
+ .main_page .section_faq .btn {
+ width: 100%;
+ max-width: 280px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .main_page .section_faq .btn {
+ max-width: none;
+ }
+}
+.main_page .accordion_list {
+ width: 800px;
+}
+@media screen and (max-width: 639px) {
+ .main_page .accordion_list {
+ padding: 0;
+ }
+}
+.darkmode .main_page .key_visual .title .text {
+ background: -webkit-gradient(linear, left top, left bottom, from(#fefdfb), to(#a6a19e));
+ background: linear-gradient(180deg, #fefdfb 0, #a6a19e 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+}
+.darkmode .main_page .kv_bg g[filter*='filter0'] > rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter0'] g rect:first-child {
+ fill: var(--gray-100);
+ stroke: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#FAF8F6'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#EFECEB'],
+.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#F5F3F1'] {
+ fill: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter0'] [stroke='#E2DEDB'],
+.darkmode .main_page .kv_bg g[filter*='filter0'] [stroke='#EFECEB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter2'] rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#F5F3F1'],
+.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#FEFDFB'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#C2BDBA'],
+.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#E2DEDB'],
+.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#EFECEB'] {
+ fill: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#EFECEB'],
+.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#F5F3F1'] {
+ stroke: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#E2DEDB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter3'] rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#EFECEB'],
+.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#FEFDFB'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#E2DEDB'] {
+ fill: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#EFECEB'] {
+ stroke: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#E2DEDB'],
+.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#F5F3F1'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#FEFDFB'] {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#FAF8F6'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#C2BDBA'],
+.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#F5F3F1'] {
+ fill: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter4'] [stroke='#E2DEDB'],
+.darkmode .main_page .kv_bg g[filter*='filter4'] [stroke='#EFECEB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter5'] rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter5'] [fill='#E2DEDB'],
+.darkmode .main_page .kv_bg g[filter*='filter5'] [fill='#F5F3F1'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter5'] [stroke='#E2DEDB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter6'] rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#EFECEB'],
+.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#F5F3F1'],
+.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#FAF8F6'],
+.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#FEFDFB'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#E2DEDB'] {
+ fill: var(--gray-200);
+}
+.darkmode .main_page .kv_bg g[filter*='filter6'] [stroke='#E2DEDB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter7'] rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#EFECEB'],
+.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#FEFDFB'] {
+ fill: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#E2DEDB'] {
+ fill: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter7'] [stroke='#F5F3F1'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter7'] [stroke='#E2DEDB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter8'] > rect:first-child {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .kv_bg g[filter*='filter8'] g rect:first-child {
+ fill: var(--gray-50);
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .kv_bg g[filter*='filter8'] [stroke='#EFECEB'] {
+ stroke: var(--gray-100);
+}
+.darkmode .main_page .kv_bg g[filter*='filter8'] [stroke='#E2DEDB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .main_page .section_app .app_body::before {
+ background-image: url(/assets/images/main_bg_dark.png);
+}
+.darkmode .main_page .grid_thumbnail [fill='#FEFDFB'],
+.darkmode .main_page .grid_thumbnail [fill='url(#pattern1)'],
+.darkmode .main_page .grid_thumbnail [fill='white'] {
+ fill: var(--gray-000);
+}
+.darkmode .main_page .horizon_item .img_box [fill='#FEFDFB'] {
+ fill: var(--gray-000);
+}
+@-webkit-keyframes gradient1 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes gradient1 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@-webkit-keyframes gradient2 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 0;
+ }
+ 40% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes gradient2 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 0;
+ }
+ 40% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@-webkit-keyframes gradient3 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 1;
+ }
+ 65% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes gradient3 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 1;
+ }
+ 65% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@-webkit-keyframes gradient4 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 0;
+ }
+ 40% {
+ opacity: 1;
+ }
+ 65% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes gradient4 {
+ 0% {
+ opacity: 0;
+ }
+ 15% {
+ opacity: 0;
+ }
+ 40% {
+ opacity: 1;
+ }
+ 65% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@-webkit-keyframes point-text {
+ 0% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background-image: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 40% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#84b5ff), to(#855cf9));
+ background-image: linear-gradient(180deg, #84b5ff 0, #855cf9 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 50% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8decec), to(#3c9af1));
+ background-image: linear-gradient(180deg, #8decec 0, #3c9af1 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 90% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fc94d8), to(#f44954));
+ background-image: linear-gradient(180deg, #fc94d8 0, #f44954 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 100% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background-image: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+}
+@keyframes point-text {
+ 0% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background-image: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 40% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#84b5ff), to(#855cf9));
+ background-image: linear-gradient(180deg, #84b5ff 0, #855cf9 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 50% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8decec), to(#3c9af1));
+ background-image: linear-gradient(180deg, #8decec 0, #3c9af1 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 90% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fc94d8), to(#f44954));
+ background-image: linear-gradient(180deg, #fc94d8 0, #f44954 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+ 100% {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9754), to(#f96767));
+ background-image: linear-gradient(180deg, #ff9754 0, #f96767 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+}
+html {
+ scroll-padding-top: 70px;
+}
+.documentation_page .header_service {
+ background-color: var(--gray-000);
+}
+.documentation_page .container {
+ max-width: 1920px;
+ margin: 0 auto;
+}
+.documentation_page .content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ min-height: calc(100vh - 134px);
+}
+.documentation_page .content .navigator {
+ min-width: 308px;
+ padding: 0 40px 175px 24px;
+ border-right: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .documentation_page .content .navigator {
+ display: none;
+ }
+}
+.documentation_page .content .navigator_group:hover > .navigator_item {
+ color: var(--orange-dark);
+}
+.documentation_page .content .navigator_group .navigator_list {
+ display: none;
+ padding-right: 0;
+}
+.documentation_page .content .navigator_group .navigator_group {
+ margin-top: 0;
+}
+.documentation_page .content .navigator_group .navigator_menu.is_active + .navigator_list {
+ display: block;
+}
+.documentation_page .content .navigator > .navigator_list {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ padding-top: 76px;
+}
+.documentation_page .content .navigator > .navigator_list > .navigator_group > .navigator_item:only-child {
+ padding-left: 40px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_item,
+.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_menu {
+ margin-top: 0;
+}
+.documentation_page .content .navigator_list .navigator_group:not(:first-of-type) .navigator_item {
+ font-size: 1.4rem;
+ line-height: 1.43;
+}
+.documentation_page .content .navigator_item {
+ font-size: 1.6rem;
+}
+.documentation_page .content .navigator_item.is_active {
+ border: transparent;
+ background-color: transparent;
+ color: var(--orange-dark);
+}
+.documentation_page .content .navigator_menu {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.documentation_page .content .navigator_menu .icon {
+ width: 16px;
+ height: 16px;
+}
+.documentation_page .section {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ min-width: 0;
+ max-width: 100%;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ padding: 88px 52px 164px;
+}
+@media screen and (max-width: 1244px) {
+ .documentation_page .section {
+ padding: 88px 40px 88px 52px;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .documentation_page .section {
+ padding: 72px 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .documentation_page .section {
+ padding: 72px 16px;
+ }
+}
+.documentation_page .pagination {
+ display: none;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 152px;
+ right: 0;
+ z-index: 1;
+ width: 220px;
+ border: 1px solid var(--gray-400);
+ border-radius: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (min-width: 1600px) {
+ .documentation_page .pagination {
+ display: block;
+ }
+}
+.documentation_page .pagination_inner {
+ padding: 24px;
+}
+.documentation_page .pagination_title {
+ color: var(--gray-800);
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+}
+.documentation_page .pagination .toc-level-1 {
+ padding-top: 8px;
+}
+.documentation_page .pagination .toc-item {
+ padding-top: 10px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-500);
+ word-break: break-all;
+}
+.documentation_page .pagination .toc-item.is_active {
+ color: var(--orange-dark);
+}
+.documentation_page .pagination .toc-item .toc-item {
+ padding-left: 10px;
+}
+.documentation_page .section_content_box {
+ overflow-x: auto;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: var(--gray-800);
+ word-break: break-all;
+}
+@media screen and (min-width: 1600px) {
+ .documentation_page .section_content_box {
+ padding-right: 48px;
+ }
+}
+.documentation_page .section_content_box h2 {
+ margin-bottom: 16px;
+ font-size: 4.6rem;
+ line-height: 1.18;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .documentation_page .section_content_box h2 {
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+ }
+}
+.documentation_page .section_content_box h3 {
+ margin: 56px 0 16px;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .documentation_page .section_content_box h3 {
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+ }
+}
+.documentation_page .section_content_box h4 {
+ margin: 56px 0 16px;
+ font-size: 2rem;
+ line-height: 1.4;
+ font-weight: 600;
+}
+.documentation_page .section_content_box h5 {
+ margin: 56px 0 16px;
+ font-size: 1.8rem;
+ line-height: 1.56;
+ font-weight: 600;
+}
+.documentation_page .section_content_box h6 {
+ margin: 56px 0 16px;
+ font-size: 1.6rem;
+ line-height: 1.75;
+ font-weight: 600;
+}
+.documentation_page .section_content_box p {
+ margin: 16px 0;
+ font-size: 1.6rem;
+ line-height: 1.63;
+ font-weight: 400;
+ word-break: break-word;
+}
+.documentation_page .section_content_box ol,
+.documentation_page .section_content_box ul:not(.docs_breadcrumbs) {
+ margin: 16px 0 24px 16px;
+}
+.documentation_page .section_content_box ol li,
+.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li {
+ position: relative;
+ padding-left: 20px;
+ font-size: 1.6rem;
+ line-height: 1.38;
+ font-weight: 400;
+ word-break: break-word;
+}
+.documentation_page .section_content_box ol li + li,
+.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li + li {
+ margin-top: 8px;
+}
+.documentation_page .section_content_box ol li::before,
+.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li::before {
+ display: block;
+ position: absolute;
+ top: 10px;
+ left: 8px;
+ width: 3px;
+ height: 3px;
+ border-radius: 50%;
+ background: var(--gray-800);
+ content: '';
+}
+.documentation_page .section_content_box ol {
+ counter-reset: list;
+}
+.documentation_page .section_content_box ol li::before {
+ left: 4px;
+ top: 0;
+ width: 20px;
+ height: 0;
+ counter-increment: list;
+ content: counter(list) '.';
+}
+.documentation_page .section_content_box a:not(.btn, .docs_breadcrumbs_link) {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ color: var(--orange-0);
+ border-bottom: 1px solid var(--orange-0);
+}
+.documentation_page .section_content_box a:not(.btn, .docs_breadcrumbs_link).icon_link::after {
+ display: block;
+ width: 13px;
+ height: 13px;
+ margin-left: 2px;
+ background: url(/assets/icons/icon_link.svg) no-repeat center;
+ content: '';
+}
+.documentation_page .section_content_box .heading a {
+ border: 0;
+ color: var(--gray-800);
+}
+.documentation_page .section_content_box .heading a:hover::after {
+ margin-left: 4px;
+ color: var(--orange-0);
+ content: '#';
+}
+.documentation_page .section_content_box img {
+ width: 100%;
+ height: auto;
+ margin-top: 0;
+ vertical-align: middle;
+}
+.documentation_page .section_content_box img + img {
+ margin-top: 16px;
+}
+.documentation_page .section_content_box video {
+ width: 100%;
+}
+.documentation_page .section_content_box table {
+ overflow: hidden;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ border-spacing: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ text-align: left;
+}
+.documentation_page .section_content_box table td,
+.documentation_page .section_content_box table th {
+ min-width: 143px;
+ padding: 4px 8px;
+ border-right: 1px solid var(--gray-400);
+ border-bottom: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.documentation_page .section_content_box table td:last-of-type,
+.documentation_page .section_content_box table th:last-of-type {
+ border-right: 0;
+}
+.documentation_page .section_content_box table tr:last-of-type td {
+ border-bottom: 0;
+}
+.documentation_page .section_content_box table th {
+ background: var(--gray-200);
+ font-weight: 600;
+}
+.documentation_page .section_content_box code {
+ padding: 1px 5px 2px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ background: var(--gray-100);
+ font-family: RobotoMono, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+}
+.documentation_page .section_content_box .table_box {
+ overflow-x: auto;
+ width: 100%;
+ margin: 24px 0 16px;
+}
+@media screen and (max-width: 639px) {
+ .documentation_page .section_content_box .table_box {
+ margin: 0;
+ padding: 0;
+ }
+}
+.documentation_page .section_content_box .img_wrap {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ margin-top: 24px;
+ gap: 16px;
+}
+.documentation_page .section_content_box .img_wrap .img_box {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+}
+.documentation_page .section_content_box .caption {
+ margin-bottom: 0;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+}
+.documentation_page .section_content_box .caption + .img_wrap,
+.documentation_page .section_content_box .caption + img,
+.documentation_page .section_content_box .caption + p {
+ margin-top: 24px;
+}
+.documentation_page .section_content_box .codeblock_header {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ margin-top: 24px;
+}
+.documentation_page .section_content_box .codeblock_header + .codeblock_box {
+ margin-top: 0;
+}
+.documentation_page .section_content_box .codeblock_wrap {
+ margin-bottom: 24px;
+ padding: 16px;
+ border-radius: 0 0 4px 4px;
+ border: 1px solid var(--gray-400);
+ border-top: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.documentation_page .section_content_box .codeblock_wrap .title {
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+.documentation_page .section_content_box .codeblock_wrap .desc {
+ margin: 24px 0;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+ color: var(--gray-600);
+}
+.documentation_page .section_content_box .codeblock_box {
+ margin: 24px 0;
+}
+.documentation_page .section_content_box .codeblock_box .btn {
+ margin: 0;
+}
+.documentation_page .section_content_box .codeblock_box .btn:hover {
+ background: var(--gray-100);
+}
+.documentation_page .section_content_box .card_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ gap: 16px;
+ margin: 24px 0;
+}
+@media screen and (max-width: 1023px) {
+ .documentation_page .section_content_box .card_box {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.documentation_page .section_content_box .card {
+ padding: 16px 24px;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+}
+.documentation_page .section_content_box .card .title {
+ display: block;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+.documentation_page .section_content_box .card .desc {
+ margin: 24px 0 0;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+}
+.documentation_page .section_content_box .alert {
+ width: -webkit-fit-content;
+ width: -moz-fit-content;
+ width: fit-content;
+ max-width: 100%;
+ display: inline-block;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ min-height: 32px;
+ margin: 0;
+ padding: 11px 12px 11px 36px;
+ border-radius: 4px;
+ font-size: 1.6rem;
+ line-height: 1.38;
+ font-weight: 400;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.documentation_page .section_content_box .alert .title {
+ display: block;
+ margin-bottom: 8px;
+ font-weight: 600;
+ word-break: break-word;
+}
+.documentation_page .section_content_box .alert p {
+ margin: 0;
+ font-size: inherit;
+ line-height: inherit;
+ font-weight: inherit;
+}
+.documentation_page .section_content_box .alert_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ gap: 16px;
+ margin: 24px 0;
+}
+.documentation_page .section_content_box .alert_danger {
+ background: var(--red-alpha-light);
+}
+.documentation_page .section_content_box .alert_success {
+ background: var(--green-alpha-light);
+}
+.documentation_page .section_content_box .alert_warning {
+ background: var(--yellow-alpha-light);
+}
+.documentation_page .section_content_box .alert_info {
+ background: var(--blue-alpha-light);
+}
+.documentation_page .section_content_box .alert > .icon {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: absolute;
+ top: 14px;
+ left: 12px;
+ width: 15px;
+ height: 15px;
+}
+.documentation_page .section_content_box .alert > .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.documentation_page .section_content_box .btn_box {
+ margin: 24px 0;
+}
+.documentation_page .section_content_box .btn_box .btn:hover {
+ background: var(--gray-900);
+}
+.documentation_page .section_content_box .docs_breadcrumbs {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ position: relative;
+ margin-bottom: 8px;
+}
+.documentation_page .section_content_box .docs_breadcrumbs_link {
+ display: inline-block;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+ color: var(--orange-dark);
+}
+.documentation_page .section_content_box .docs_breadcrumbs_link:not(:first-of-type)::before {
+ display: inline-block;
+ margin: 0 4px;
+ content: '-';
+}
+.documentation_page .toast_box {
+ left: 0;
+}
+.examples_page .top_banner {
+ padding-top: 54px;
+ padding-bottom: 100px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .top_banner {
+ padding-top: 50px;
+ padding-bottom: 32px;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .top_banner .img_box {
+ width: 250px;
+ height: 298px;
+ }
+}
+.examples_page .title_group {
+ padding-top: 70px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .title_group {
+ padding-top: 19px;
+ }
+}
+.examples_page .content {
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 120px 40px 240px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .content {
+ width: 100%;
+ max-width: none;
+ padding: 80px 32px 160px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_page .content {
+ padding: 80px 16px 96px;
+ }
+}
+.examples_page .content_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .content_inner {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.examples_page .navigator {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 120px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_page .navigator_list {
+ min-width: 248px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .navigator {
+ display: none;
+ }
+}
+.examples_page .filter {
+ display: none;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .filter {
+ display: block;
+ margin-bottom: 16px;
+ padding: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .filter_list {
+ border-bottom: none;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .filter_desc {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .filter .dropdown {
+ right: auto;
+ left: 0;
+ margin-top: 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_page .filter .dropdown {
+ right: 0;
+ }
+}
+.examples_page .grid_list {
+ margin-left: 86px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .grid_list {
+ margin-left: 0;
+ }
+}
+.examples_page .grid_item {
+ max-width: 336px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .grid_item {
+ max-width: none;
+ }
+}
+.examples_page .grid_item:only-child {
+ min-width: 694px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_page .grid_item:only-child {
+ min-width: auto;
+ }
+}
+.examples_page .grid_card {
+ overflow: hidden;
+}
+.examples_page .grid_thumbnail img {
+ width: 100%;
+ height: auto;
+ vertical-align: top;
+ aspect-ratio: 1200/750;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.darkmode .examples_page .grid_thumbnail [fill='#FEFDFB'],
+.darkmode .examples_page .grid_thumbnail [fill='url(#pattern0)'],
+.darkmode .examples_page .grid_thumbnail [fill='url(#pattern1)'],
+.darkmode .examples_page .grid_thumbnail [fill='white'] {
+ fill: var(--gray-000);
+}
+.darkmode .examples_page .grid_thumbnail [fill='#332E2B'] {
+ fill: var(--gray-50);
+}
+.examples_view_page {
+ max-width: 2560px;
+ margin: 0 auto;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page {
+ max-width: none;
+ }
+}
+.examples_view_page .container {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+}
+.examples_view_page .container .link {
+ text-decoration: underline;
+}
+.examples_view_page .sidebar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ position: relative;
+ width: 512px;
+ max-height: calc(100vh - 64px);
+ padding: 24px 17px 24px 24px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-right: 1px solid var(--gray-400);
+ background: var(--gray-000);
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar {
+ width: 360px;
+ padding-left: 16px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar {
+ width: 100%;
+ max-height: none;
+ padding-right: 16px;
+ border-right: none;
+ -webkit-transition: none;
+ transition: none;
+ }
+}
+.examples_view_page .sidebar.type_shadow {
+ position: absolute;
+ left: 0;
+ top: 0;
+ z-index: 1;
+ height: 100%;
+}
+.examples_view_page .sidebar.type_shadow:not(.is_hide) {
+ -webkit-box-shadow: 8px 0 24px rgba(0, 0, 0, 0.16);
+ box-shadow: 8px 0 24px rgba(0, 0, 0, 0.16);
+}
+.examples_view_page .sidebar.type_shadow ~ .content {
+ margin-left: 64px;
+}
+.examples_view_page .sidebar.is_hide {
+ margin-left: -446px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar.is_hide {
+ margin-left: -294px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar.is_hide {
+ margin-left: 0;
+ }
+}
+.examples_view_page .sidebar.is_hide .codeblock_box,
+.examples_view_page .sidebar.is_hide .codeblock_navigator,
+.examples_view_page .sidebar.is_hide .guide_box,
+.examples_view_page .sidebar.is_hide .sidebar_bottom {
+ display: none;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar.is_hide .codeblock_box,
+ .examples_view_page .sidebar.is_hide .codeblock_navigator,
+ .examples_view_page .sidebar.is_hide .guide_box,
+ .examples_view_page .sidebar.is_hide .sidebar_bottom {
+ display: block;
+ }
+}
+.examples_view_page .sidebar.is_hide .btn_toggle {
+ margin-top: 2px;
+}
+.examples_view_page .sidebar.is_hide .btn_toggle .icon {
+ -webkit-transform: rotate(270deg);
+ transform: rotate(270deg);
+}
+.examples_view_page .sidebar.type_wide {
+ width: 50%;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar.type_wide {
+ width: 100%;
+ }
+}
+.examples_view_page .sidebar.type_wide.is_hide {
+ width: 74px;
+ margin-left: 0;
+}
+.examples_view_page .sidebar.type_wide .codeblock_group {
+ overflow-y: overlay;
+ position: relative;
+ height: calc(100% - 180px);
+ margin-top: 24px;
+ padding: 31px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border: 1px solid var(--gray-400);
+ border-bottom: 0;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar.type_wide .codeblock_group {
+ height: calc(100% - 172px);
+ padding: 24px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar.type_wide .codeblock_group {
+ height: auto;
+ }
+}
+.examples_view_page .sidebar.type_wide .codeblock_group .codeblock_box {
+ height: calc(100% - 152px);
+ padding-bottom: 0;
+ border: none;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar.type_wide .codeblock_group .codeblock_box {
+ height: calc(100% - 197px);
+ }
+}
+.examples_view_page .sidebar.type_wide .codeblock_group .codeblock {
+ border: 1px solid var(--gray-400);
+}
+.examples_view_page .sidebar_top {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.examples_view_page .sidebar .codeblock_navigator {
+ padding-bottom: 0;
+ border-bottom: none;
+}
+.examples_view_page .sidebar .btn_toggle {
+ height: 32px;
+ margin-left: auto;
+ padding: 5px 7px;
+ border: 1px solid var(--gray-400);
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar .btn_toggle {
+ display: none;
+ }
+}
+.examples_view_page .sidebar .btn_toggle .icon {
+ -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
+ color: var(--gray-600);
+}
+.examples_view_page .sidebar .guide_box {
+ overflow-y: overlay;
+ position: relative;
+ height: 100%;
+ margin-top: 24px;
+ padding: 31px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border: 1px solid var(--gray-400);
+ border-bottom: 0;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar .guide_box {
+ padding: 24px;
+ }
+}
+.examples_view_page .sidebar .guide_title {
+ margin-bottom: 24px;
+ font-size: 3rem;
+ line-height: 1.27;
+ font-weight: 600;
+ color: var(--gray-800);
+ word-break: break-word;
+}
+.examples_view_page .sidebar .guide_sub_title {
+ display: block;
+ margin-top: 23px;
+ padding-top: 24px;
+ border-top: 1px solid var(--gray-400);
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+ color: var(--gray-900);
+}
+.examples_view_page .sidebar .guide_desc {
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ word-break: break-word;
+}
+.examples_view_page .sidebar .codeblock_box {
+ height: 100%;
+ margin-top: 24px;
+ padding-bottom: 24px;
+ border: 1px solid var(--gray-400);
+ border-bottom: 0;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .sidebar .codeblock_box:only-child {
+ height: 100%;
+ margin-top: 0;
+ padding-bottom: 0;
+ border-bottom: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar .codeblock_box {
+ height: calc(100% - 170px);
+ }
+}
+.examples_view_page .sidebar .codeblock_box .codeblock {
+ height: 100%;
+ border: 0;
+ background: var(--gray-000);
+ word-break: break-all;
+}
+.examples_view_page .sidebar_bottom {
+ position: relative;
+ z-index: 10;
+ margin-top: auto;
+ padding: 0 31px 35px;
+ border: 1px solid var(--gray-400);
+ border-top: 0;
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+ background-color: #fff;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar_bottom {
+ padding: 0 24px 24px;
+ }
+}
+.examples_view_page .sidebar_bottom::before {
+ position: absolute;
+ left: 32px;
+ right: 32px;
+ height: 1px;
+ background-color: var(--gray-400);
+ content: '';
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar_bottom::before {
+ left: 24px;
+ right: 24px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar_bottom::before {
+ display: none;
+ }
+}
+.examples_view_page .sidebar_bottom::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 20px;
+ right: 20px;
+ z-index: 10;
+ height: 30px;
+ -webkit-box-shadow: 0 15px 14px 0 #fff;
+ box-shadow: 0 15px 14px 0 #fff;
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar_bottom::after {
+ display: none;
+ }
+}
+.examples_view_page .sidebar_bottom .btn_box {
+ position: relative;
+ z-index: 20;
+ margin-top: 16px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar_bottom .btn_box {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar_bottom .btn_box {
+ margin-top: 0;
+ padding-top: 16px;
+ border-top: 1px solid var(--gray-400);
+ }
+}
+.examples_view_page .sidebar_bottom .btn_share {
+ -ms-flex-preferred-size: 271px;
+ flex-basis: 271px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar_bottom .btn_share {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin-top: 8px;
+ margin-left: 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .sidebar_bottom .btn_share:only-child {
+ margin-top: 0;
+ }
+}
+.examples_view_page .sidebar_bottom .guide_desc {
+ margin-top: 8px;
+ color: var(--gray-400);
+}
+.examples_view_page .sidebar .video_box {
+ display: none;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar .video_box {
+ background-color: pink;
+ display: block;
+ margin-top: 24px;
+ }
+}
+.examples_view_page .sidebar .video_box video {
+ display: block;
+ width: 100%;
+}
+.examples_view_page .sidebar .folder_box {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ height: 100%;
+ max-height: calc(100% - 124px);
+ margin-top: 16px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .sidebar .folder_box {
+ display: none;
+ }
+}
+.examples_view_page .sidebar .folder_box .folder_list {
+ overflow-y: auto;
+ -ms-flex-preferred-size: 30%;
+ flex-basis: 30%;
+ min-width: 150px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ border-right: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .sidebar .folder_box .folder_item {
+ margin-top: 4px;
+}
+.examples_view_page .sidebar .folder_box .folder_item:first-child {
+ margin-top: 0;
+}
+.examples_view_page .sidebar .folder_box .folder_item.is_active .name {
+ font-weight: 600;
+ color: var(--orange-dark);
+}
+.examples_view_page .sidebar .folder_box .folder_sub_list {
+ padding-top: 4px;
+ padding-left: 24px;
+}
+.examples_view_page .sidebar .folder_box .folder_sub_list .btn_folder {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+.examples_view_page .sidebar .folder_box .btn_folder {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ padding: 3px 14px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ text-align: left;
+}
+.examples_view_page .sidebar .folder_box .btn_folder:hover .name {
+ font-weight: 600;
+}
+.examples_view_page .sidebar .folder_box .btn_folder .icon {
+ margin-right: 4px;
+ width: 16px;
+}
+.examples_view_page .sidebar .folder_box .btn_folder .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.examples_view_page .sidebar .folder_box .btn_folder .icon svg path {
+ fill: var(--gray-800);
+}
+.examples_view_page .sidebar .folder_box .btn_folder .name {
+ -ms-flex-preferred-size: calc(100% - 22px);
+ flex-basis: calc(100% - 22px);
+ word-break: break-all;
+ color: var(--gray-800);
+ font-size: 1.2rem;
+ line-height: 1.5;
+ font-weight: 400;
+}
+.examples_view_page .sidebar .folder_box .file_title {
+ display: block;
+ height: 32px;
+ border-bottom: 1px solid var(--gray-400);
+ border-top-right-radius: 4px;
+ background-color: var(--gray-000);
+ color: var(--gray-800);
+ font-size: 1.4rem;
+ line-height: 2.29;
+ font-weight: 600;
+ text-align: center;
+}
+.examples_view_page .sidebar .folder_box .codeblock_area {
+ overflow-x: auto;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -ms-flex-preferred-size: 70%;
+ flex-basis: 70%;
+}
+.examples_view_page .sidebar .folder_box .codeblock_box {
+ height: calc(100% - 33px);
+ margin-top: 0;
+ padding-bottom: 0;
+ border: none;
+ border-radius: 0;
+}
+.examples_view_page .sidebar .folder_box .codeblock {
+ border-radius: 0;
+}
+.examples_view_page .accordion_list {
+ margin-top: 23px;
+ padding: 0;
+}
+.examples_view_page .accordion_list .accordion_item {
+ margin-top: 8px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+}
+.examples_view_page .accordion_list .accordion_item:first-child {
+ margin-top: 0;
+}
+.examples_view_page .accordion_list .accordion_btn {
+ padding: 15px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+.examples_view_page .accordion_list .accordion_btn .icon {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ width: 16px;
+ height: 16px;
+ margin-left: auto;
+ margin-right: 0;
+ color: var(--gray-600);
+}
+.examples_view_page .accordion_list .accordion_btn .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.examples_view_page .accordion_list .accordion_btn.is_active .icon {
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+.examples_view_page .accordion_list .accordion_btn.is_active ~ .accordion_content {
+ padding-top: 9px;
+}
+.examples_view_page .accordion_list .accordion_content {
+ padding-bottom: 15px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+}
+.examples_view_page .content {
+ overflow-y: auto;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ max-height: calc(100vh - 112px);
+ padding: 24px;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .content {
+ display: none;
+ }
+}
+.examples_view_page .content.dual_view {
+ max-height: calc(100vh - 64px);
+ padding: 0;
+}
+.examples_view_page .content.show_view {
+ overflow: hidden;
+ max-height: calc(100vh - 64px);
+ padding: 0;
+}
+.examples_view_page .content.content_view {
+ max-height: calc(100vh - 64px);
+ padding: 0;
+}
+.examples_view_page .content.content_view .accordion_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ gap: 16px;
+ margin-top: 0;
+ padding: 64px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .content.content_view .accordion_list {
+ padding: 40px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+.examples_view_page .content.content_view .accordion_list .accordion_item {
+ width: calc(50% - 8px);
+ margin-top: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .content.content_view .accordion_list .accordion_item {
+ width: 100%;
+ }
+}
+.examples_view_page .dual_view .grid_list2 {
+ height: calc(100% - 113px);
+ padding: 23px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .dual_view .dashboard {
+ height: 100%;
+}
+.examples_view_page .dual_view .dashboard_content {
+ height: calc(100% - 42px);
+}
+.examples_view_page .grid_view .dashboard_top {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-top: 0;
+}
+.examples_view_page .grid_view .user {
+ margin-top: 8px;
+}
+.examples_view_page .grid_view .user_list {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -8px;
+}
+.examples_view_page .grid_view .user_item {
+ margin: 8px 0 0 8px;
+}
+.examples_view_page .grid_view .user_item:first-child {
+ margin-left: 8px;
+}
+.examples_view_page .full_view .comment_view {
+ min-width: 300px;
+}
+.examples_view_page .pin_box {
+ overflow: hidden;
+ position: relative;
+ width: 100%;
+ height: 113px;
+ padding-right: 48px;
+ border-bottom: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .pin_box::before {
+ position: absolute;
+ top: 0;
+ right: 48px;
+ bottom: 3px;
+ z-index: 1;
+ width: 25px;
+ background: -webkit-gradient(linear, right top, left top, from(var(--gray-000)), to(transparent));
+ background: linear-gradient(270deg, var(--gray-000), transparent);
+ content: '';
+}
+.examples_view_page .pin_list {
+ overflow-x: overlay;
+ position: relative;
+ height: 100%;
+ padding: 32px 24px 32px 22px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 0;
+ line-height: normal;
+ white-space: nowrap;
+}
+.examples_view_page .pin_item {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ height: 100%;
+ padding: 8px 47px 8px 15px;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-radius: 4px;
+}
+.examples_view_page .pin_item.is_active {
+ border-color: var(--blue-0);
+}
+.examples_view_page .pin_item + .pin_item {
+ margin-left: 16px;
+}
+.examples_view_page .pin_item .user {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.examples_view_page .pin_item .user .icon {
+ width: 9px;
+ height: 9px;
+ margin-right: 8px;
+ border-radius: 50%;
+}
+.examples_view_page .pin_item .user .text {
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.examples_view_page .pin_item .btn_box {
+ margin-left: 16px;
+}
+.examples_view_page .pin_item .btn {
+ padding: 7px;
+}
+.examples_view_page .system_view {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: relative;
+ height: 206px;
+ padding-right: 48px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.examples_view_page .system_view::before {
+ position: absolute;
+ top: 0;
+ right: 48px;
+ bottom: 3px;
+ z-index: 1;
+ width: 25px;
+ background: -webkit-gradient(linear, right top, left top, from(var(--gray-000)), to(transparent));
+ background: linear-gradient(270deg, var(--gray-000), transparent);
+ content: '';
+}
+.examples_view_page .system_view .system_view_list {
+ overflow-x: overlay;
+ padding: 32px 24px 24px;
+ text-align: center;
+ font-size: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ white-space: nowrap;
+}
+.examples_view_page .system_view .system_view_item {
+ display: inline-block;
+ position: relative;
+ text-align: center;
+}
+.examples_view_page .system_view .system_view_item .icon {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+.examples_view_page .system_view .system_view_item:hover .btn_close {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.examples_view_page .system_view .system_view_item + .system_view_item {
+ margin-left: 24px;
+}
+.examples_view_page .system_view .system_link .img_box {
+ width: 192px;
+ height: 126px;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .system_view .system_link .img_box svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.examples_view_page .system_view .system_link.is_active .img_box {
+ border-color: var(--blue-0);
+}
+.examples_view_page .system_view .system_name {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-top: 8px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.examples_view_page .system_view .system_name .icon {
+ margin-right: 8px;
+}
+.examples_view_page .system_view .btn_close {
+ display: none;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ position: absolute;
+ top: -8px;
+ left: -8px;
+ width: 26px;
+ height: 26px;
+ border-radius: 50%;
+ border: 1px solid var(--gray-400);
+ background: var(--gray-000);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .system_view .btn_close .icon {
+ width: 10px;
+ height: 10px;
+}
+.examples_view_page .system_view .btn_expand {
+ border: 1px solid var(--blue-0);
+ background: rgba(109, 180, 245, 0.24);
+ color: var(--blue-0);
+}
+.examples_view_page .show_view_inner {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ height: calc(100% - 207px);
+ padding: 48px 24px 24px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .show_view_inner .dashboard {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ position: relative;
+ max-width: 1200px;
+ width: 100%;
+ height: 100%;
+ border: 1px solid var(--gray-400);
+}
+.examples_view_page .show_view_inner .dashboard_content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .dashboard_content {
+ overflow-x: auto;
+ height: 100%;
+ }
+}
+.examples_view_page .show_view_inner .dashboard .user {
+ padding: 5px 12px;
+}
+.examples_view_page .show_view_inner .comment_view {
+ min-width: 240px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .comment_view {
+ position: relative;
+ border-right: none;
+ }
+}
+.examples_view_page .show_view_inner .comment_view .comment_box {
+ padding: 10px 16px 24px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .comment_view .comment_box {
+ overflow-y: initial;
+ position: relative;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .comment_view .comment_box::before {
+ position: absolute;
+ top: 0;
+ right: -1px;
+ bottom: 0;
+ z-index: 1;
+ width: 1px;
+ background-color: var(--gray-400);
+ content: '';
+ }
+}
+.examples_view_page .show_view_inner .comment_view .toggle_box {
+ padding: 10px 16px;
+}
+.examples_view_page .show_view_inner .comment_view .comment_item {
+ margin: 0 35px 0 29px;
+}
+.examples_view_page .show_view_inner .comment_view .comment_item::before {
+ left: -30px;
+}
+.examples_view_page .show_view_inner .comment_view .user_list {
+ right: -36px;
+}
+.examples_view_page .show_view_inner .comment_view .btn_add {
+ margin: 10px 35px 0 29px;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .view_box {
+ overflow: initial;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .show_view_inner .view_box .view_list {
+ overflow-y: initial;
+ min-width: 300px;
+ height: auto;
+ padding-bottom: 161px;
+ border-left: 1px solid var(--gray-400);
+ }
+}
+.examples_view_page .show_view_inner .mini_map {
+ top: 50px;
+ right: 10px;
+ width: 121px;
+ height: 236px;
+}
+.examples_view_page .full_view_inner {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: auto;
+ height: calc(100% + 48px);
+ margin: -24px;
+}
+.examples_view_page .mini_map {
+ position: absolute;
+ width: 192px;
+ height: 373px;
+ top: 16px;
+ right: 16px;
+ padding: 8px 16px;
+ border-radius: 4px;
+ border: 1px solid var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background: var(--gray-000);
+}
+.examples_view_page .mini_map_header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-bottom: 8px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.examples_view_page .mini_map_header .title {
+ padding: 4px 0;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.examples_view_page .mini_map_header .btn_minimize {
+ color: var(--gray-500);
+}
+.examples_view_page .palette {
+ position: absolute;
+ left: 50%;
+ bottom: 40px;
+ z-index: 1;
+ width: 608px;
+ height: 48px;
+ -webkit-transform: translateX(-50%);
+ transform: translateX(-50%);
+ background-color: #9acd32;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .palette {
+ width: 300px;
+ }
+}
+.examples_view_page .menu_user_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ gap: 8px;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .menu_user_list {
+ display: none;
+ }
+}
+.examples_view_page .comment_view {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 33.17%;
+ height: 100%;
+ border-right: 1px solid var(--gray-400);
+ background: var(--gray-000);
+}
+.examples_view_page .comment_view .toggle_box {
+ padding: 16px 24px;
+ border-bottom: 1px solid var(--gray-400);
+}
+.examples_view_page .comment_view .toggle_box .input_toggle_box {
+ vertical-align: top;
+}
+.examples_view_page .comment_view .comment_box {
+ overflow-y: overlay;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ padding: 16px 24px;
+}
+.examples_view_page .comment_view .comment_list {
+ counter-reset: comment;
+}
+.examples_view_page .comment_view .comment_item {
+ position: relative;
+ margin: 0 46px 0 34px;
+ padding: 10px;
+ border-radius: 2px;
+ border: 1px solid var(--gray-400);
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 400;
+ color: var(--gray-800);
+ counter-increment: comment;
+}
+.examples_view_page .comment_view .comment_item::before {
+ position: absolute;
+ top: 0;
+ left: -34px;
+ font-size: 1.4rem;
+ line-height: 0.93;
+ font-weight: 600;
+ content: '#' counter(comment);
+}
+.examples_view_page .comment_view .comment_item + .comment_item {
+ margin-top: 16px;
+}
+.examples_view_page .comment_view .dialog_list {
+ margin-top: 10px;
+ padding-top: 10px;
+ border-top: 1px solid var(--gray-400);
+}
+.examples_view_page .comment_view .dialog_list .dialog {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+.examples_view_page .comment_view .dialog_list .dialog + .dialog {
+ margin-top: 8px;
+}
+.examples_view_page .comment_view .dialog_list .name {
+ padding: 0 5px;
+ border-radius: 2px;
+ border: 1px solid var(--blue-0);
+ background: var(--blue-alpha-0);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+.examples_view_page .comment_view .dialog_list .name.green {
+ background: var(--green-alpha-0);
+ border-color: var(--green-0);
+}
+.examples_view_page .comment_view .dialog_list .name.red {
+ background: var(--red-alpha-0);
+ border-color: var(--red-0);
+}
+.examples_view_page .comment_view .dialog_list .chat {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+.examples_view_page .comment_view .dialog_list .chat::before {
+ margin: 0 4px;
+ content: ':';
+}
+.examples_view_page .comment_view .user_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ position: absolute;
+ right: -46px;
+ top: 0;
+ color: var(--gray-000);
+ gap: 8px;
+}
+.examples_view_page .comment_view .user_list .user_item {
+ margin: 0;
+}
+.examples_view_page .comment_view .user_list .icon svg path {
+ fill: #fff;
+}
+.examples_view_page .comment_view .btn_add {
+ position: static;
+ width: -webkit-fill-available;
+ height: 48px;
+ margin: 16px 46px 0 34px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ color: var(--gray-400);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .view_box {
+ position: relative;
+ overflow: hidden;
+ width: 100%;
+}
+.examples_view_page .view_box .view_list {
+ padding: 24px 24px 157px;
+ overflow-y: overlay;
+ height: 100%;
+ counter-reset: view;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.examples_view_page .view_box .view_item {
+ position: relative;
+ padding: 24px;
+ text-align: center;
+ border: 1px dashed var(--gray-600);
+ counter-increment: view;
+}
+.examples_view_page .view_box .view_item::before {
+ position: absolute;
+ top: 8px;
+ left: 16px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+ content: '#' counter(view);
+}
+.examples_view_page .view_box .view_item + .view_item {
+ margin-top: 16px;
+}
+.examples_view_page .view_box .view_item.is_active {
+ border-color: var(--blue-dark);
+}
+.examples_view_page .view_box .view_item.is_active::before {
+ color: var(--blue-dark);
+}
+.examples_view_page .view_box .view_item img {
+ display: block;
+ width: 100%;
+}
+.examples_view_page .btn_add {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 48px;
+ height: 100%;
+ margin-left: 0;
+ border-radius: 0;
+}
+.examples_view_page .btn_expand {
+ overflow: hidden;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ position: absolute;
+ top: 7px;
+ right: 7px;
+ max-width: 32px;
+ height: 32px;
+ padding: 7px;
+ -webkit-transition: all 0.5s linear;
+ transition: all 0.5s linear;
+}
+.examples_view_page .btn_expand .text {
+ display: block;
+ overflow: hidden;
+ margin-left: 0;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 500;
+ color: var(--gray-000);
+ white-space: nowrap;
+}
+.examples_view_page .btn_expand .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+.examples_view_page .btn_expand:hover:not(.is_disabled) {
+ max-width: 100%;
+ background: var(--blue-0);
+ color: var(--gray-000);
+}
+.examples_view_page .btn_expand.is_disabled {
+ cursor: auto;
+ border-color: var(--gray-300);
+ background-color: var(--gray-300);
+ color: var(--gray-000);
+}
+.examples_view_page .code_view {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ max-height: none;
+ padding: 0;
+}
+@media screen and (max-width: 639px) {
+ .examples_view_page .code_view {
+ display: none;
+ }
+}
+.examples_view_page .code_view .pin_box {
+ height: 81px;
+}
+.examples_view_page .code_view .pin_list {
+ padding: 16px 23px;
+}
+.examples_view_page .code_view .pin_item {
+ padding-right: 8px;
+}
+.examples_view_page .code_view .pin_item .btn_box {
+ margin-left: 24px;
+}
+.examples_view_page .code_view .grid_list2 {
+ overflow-y: auto;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ max-height: calc(100vh - 352px);
+ padding: 23px;
+}
+.examples_view_page .code_view .grid_list2 .grid_item:only-child {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin: 0;
+}
+@media screen and (max-width: 1023px) {
+ .examples_view_page .code_view .grid_list2 .grid_item:only-child {
+ height: 100%;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+.examples_view_page .code_view .grid_list2 .grid_item:nth-last-child(n + 2):nth-last-child(-n + 2):first-child,
+.examples_view_page
+ .code_view
+ .grid_list2
+ .grid_item:nth-last-child(n + 2):nth-last-child(-n + 2):first-child
+ ~ .grid_item {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin-top: 23px;
+ margin-left: 0;
+}
+.examples_view_page .code_view .grid_list2 .grid_item:nth-last-child(n + 2):nth-last-child(-n + 2):first-child {
+ margin-top: 0;
+}
+.examples_view_page .code_view .dashboard {
+ height: 100%;
+}
+.examples_view_page .code_view .dashboard_content {
+ height: calc(100% - 41px);
+ min-height: 226px;
+}
+.examples_view_page .log_box {
+ position: relative;
+ margin-top: auto;
+ padding: 0 23px 23px;
+}
+.examples_view_page .log_box:before {
+ position: absolute;
+ top: -10px;
+ left: 0;
+ right: 0;
+ z-index: 1;
+ background-color: var(--gray-000);
+ height: 10px;
+ content: '';
+}
+.examples_view_page .log_inner {
+ overflow-y: auto;
+ height: 137px;
+ padding: 10px 12px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: var(--gray-800);
+ border-radius: 4px;
+}
+.examples_view_page .log_title {
+ display: block;
+ margin-bottom: 4px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-000);
+}
+.examples_view_page .log_desc {
+ font-size: 1.2rem;
+ line-height: 1.5;
+ font-weight: 400;
+ color: var(--gray-000);
+ word-break: break-word;
+}
+.darkmode .sidebar_bottom {
+ background-color: var(--gray-000);
+}
+.darkmode .sidebar_bottom::after {
+ -webkit-box-shadow: 0 15px 14px 0 var(--gray-000);
+ box-shadow: 0 15px 14px 0 var(--gray-000);
+}
+.product_page .top_banner {
+ padding-top: 108px;
+ padding-bottom: 110px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .top_banner {
+ padding-top: 24px;
+ padding-bottom: 32px;
+ }
+}
+.product_page .top_banner_inner {
+ overflow: hidden;
+ position: relative;
+}
+.product_page .top_banner .title_group {
+ position: relative;
+ z-index: 1;
+ padding-top: 50px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .top_banner .title_group {
+ padding-top: 0;
+ }
+}
+.product_page .top_banner .img_box {
+ position: absolute;
+ top: 50%;
+ right: -130px;
+ width: 748px;
+ height: 380px;
+ margin-top: -168px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .top_banner .img_box {
+ position: static;
+ width: auto;
+ height: auto;
+ margin-top: 0;
+ }
+}
+.product_page .content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ max-width: 1120px;
+ margin: 0 auto;
+ padding: 240px 40px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .content {
+ padding: 120px 32px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .product_page .content {
+ padding-left: 16px;
+ padding-right: 16px;
+ }
+}
+.product_page .content .link {
+ text-decoration: underline;
+}
+.product_page .section + .section {
+ padding-top: 240px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .section + .section {
+ padding-top: 160px;
+ }
+}
+.product_page .section_title_wrap {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-bottom: 64px;
+ padding-bottom: 40px;
+ border-bottom: 2px solid var(--gray-600);
+ color: var(--gray-800);
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .section_title_wrap {
+ display: block;
+ }
+}
+.product_page .section_title {
+ width: 50%;
+ font-size: 4.6rem;
+ line-height: 1.18;
+ font-weight: 600;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .section_title {
+ width: auto;
+ font-size: 2.4rem;
+ line-height: 1.34;
+ }
+}
+.product_page .section_desc {
+ width: 50%;
+ padding-left: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .section_desc {
+ width: auto;
+ margin-top: 16px;
+ padding-left: 0;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ }
+}
+.product_page .section_content + .section_content {
+ padding-top: 120px;
+}
+.product_page .sub_title {
+ display: block;
+ margin-bottom: 32px;
+ font-size: 3rem;
+ line-height: 1.27;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .product_page .sub_title {
+ font-size: 2rem;
+ line-height: 1.4;
+ }
+}
+.product_page .sub_desc {
+ margin-bottom: 32px;
+ font-size: 1.4rem;
+ line-height: 1.58;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.product_page .sub_title_wrap {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+}
+.product_page .sub_title_wrap .btn {
+ max-height: 40px;
+}
+.product_page .sub_title_wrap .btn:hover {
+ background: var(--gray-900);
+}
+.product_page .sub_big_title {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ font-size: 3.8rem;
+ line-height: 1.22;
+ font-weight: 600;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .product_page .sub_big_title {
+ font-size: 2rem;
+ line-height: 1.4;
+ }
+}
+.product_page .sub_big_title > .icon {
+ width: 44px;
+ height: 44px;
+ margin-right: 16px;
+ color: var(--orange-dark);
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .sub_big_title > .icon {
+ width: 24px;
+ height: 24px;
+ }
+}
+.product_page .sub_big_title > .icon svg {
+ width: 100%;
+ height: 100%;
+}
+.product_page .sub_big_desc {
+ margin-top: 32px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 500;
+ color: var(--gray-800);
+}
+.product_page .db_content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .db_content {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.product_page .db_content .codeblock_content {
+ width: 66%;
+ height: 280px;
+ padding-right: 16px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .db_content .codeblock_content {
+ width: 100%;
+ padding-right: 0;
+ }
+}
+.product_page .db_content .codeblock_content .codeblock {
+ overflow-y: auto;
+ height: calc(100% - 50px);
+ border-radius: 0 0 4px 4px;
+ border-top: 0;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .db_content .codeblock_content .codeblock {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin-right: 0;
+ }
+}
+.product_page .db_content .img_box {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ height: 280px;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .db_content .img_box {
+ display: block;
+ margin-top: 16px;
+ }
+}
+@media screen and (max-width: 639px) {
+ .product_page .db_content .img_box {
+ height: auto;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .product_page .db_content .img_box img {
+ height: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .product_page .db_content .img_box img {
+ height: auto;
+ }
+}
+.product_page .db_content .img_box [fill='black'] {
+ fill: var(--gray-900);
+}
+.product_page .product_card_list {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .product_card_list {
+ display: block;
+ }
+}
+.product_page .product_card_list .product_card_item {
+ -ms-flex-preferred-size: calc(100% - 8px);
+ flex-basis: calc(100% - 8px);
+ margin: 0 8px;
+ padding: 16px 24px;
+ border: 1px solid var(--gray-400);
+ border-radius: 4px;
+ color: var(--gray-800);
+}
+@media screen and (max-width: 1023px) {
+ .product_page .product_card_list .product_card_item {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ margin: 16px 0 0;
+ }
+}
+.product_page .product_card_list .product_card_item:first-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .product_card_list .product_card_item:first-child {
+ margin-top: 0;
+ }
+}
+.product_page .product_card_list .product_card_item:last-child {
+ margin-right: 0;
+}
+.product_page .product_card_list .product_card_title {
+ display: block;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ font-weight: 600;
+}
+.product_page .product_card_list .product_card_desc {
+ margin-top: 24px;
+ font-size: 1.2rem;
+ line-height: 1.34;
+ font-weight: 400;
+}
+.product_page .house_content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ max-width: 1007px;
+ padding-top: 32px;
+}
+.product_page .house_content .img_box {
+ overflow: hidden;
+ border: 1px solid var(--gray-400);
+ border-radius: 8px;
+}
+.product_page .house_content .img_box img {
+ width: 100%;
+}
+.product_page .house_content .img_box [fill='#514C49'] {
+ fill: var(--gray-800);
+}
+.product_page .house_content .img_box [fill='#807B78'] {
+ fill: var(--gray-600);
+}
+.product_page .house_content .img_box [fill='#A6A19E'] {
+ fill: var(--gray-500);
+}
+.product_page .house_content .img_box [fill='#E2DEDB'] {
+ fill: var(--gray-200);
+}
+.product_page .house_content .img_box [stroke='#A6A19E'],
+.product_page .house_content .img_box [stroke='#C2BDBA'] {
+ stroke: var(--gray-300);
+ stroke-width: 1;
+}
+.product_page .house_content .img_pc {
+ width: 75%;
+ padding-bottom: 37px;
+}
+.product_page .house_content .img_mobile {
+ width: 21%;
+ padding: 11px 0 16px;
+}
+.product_page .package_group {
+ position: relative;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .package_group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+}
+.product_page .package_group .sub_title_wrap {
+ padding-right: 230px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .package_group .sub_title_wrap {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ padding-right: 0;
+ }
+}
+.product_page .package_group .btn {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .package_group .btn {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: static;
+ width: 100%;
+ margin: 32px 0 0;
+ }
+}
+@media screen and (max-width: 1023px) {
+ .product_page .package_group .sub_big_desc {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+}
+.product_page .package_group .img_box {
+ margin-top: 32px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .package_group .img_box {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+}
+.product_page .package_group .img_box [fill='#514C49'] {
+ fill: var(--gray-800);
+}
+.product_page .package_group .img_box [fill='#855CF9'] {
+ fill: var(--purple-dark);
+}
+.product_page .package_group .img_box [stroke='#332E2B'] {
+ stroke: var(--gray-800);
+}
+.product_page .img_group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .img_group {
+ display: block;
+ }
+}
+.product_page .img_group .img_box {
+ -ms-flex-preferred-size: calc(50% - 8px);
+ flex-basis: calc(50% - 8px);
+ margin: 0 8px;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .img_group .img_box {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ height: 257px;
+ margin: 16px 0 0;
+ }
+}
+@media screen and (max-width: 639px) {
+ .product_page .img_group .img_box {
+ height: auto;
+ }
+}
+.product_page .img_group .img_box:first-child {
+ margin-left: 0;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .img_group .img_box:first-child {
+ margin-top: 0;
+ }
+}
+.product_page .img_group .img_box:last-child {
+ margin-right: 0;
+}
+@media screen and (max-width: 1023px) {
+ .product_page .img_group svg {
+ height: 100%;
+ }
+}
+@media screen and (max-width: 639px) {
+ .product_page .img_group svg {
+ height: auto;
+ }
+}
+.product_page .img_box {
+ display: block;
+}
+.product_page .img_box svg {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+.product_page .prism-code .token {
+ white-space: pre-wrap;
+}
+.product_page .conflict_free .img_box [fill='#514C49'] {
+ fill: var(--gray-800);
+}
+.product_page .conflict_free .img_box [fill='white'] {
+ fill: var(--gray-000);
+}
+.product_page .collaboration .img_box [stroke='#FEFDFB'] {
+ stroke: var(--gray-000);
+}
+.darkmode .product_page .top_banner .img_box [fill='#FEFDFB'] {
+ fill: var(--gray-000);
+}
+.darkmode .product_page .top_banner .img_box [fill='#FAF8F6'] {
+ fill: var(--gray-50);
+}
+.darkmode .product_page .top_banner .img_box [fill='#E2DEDB'],
+.darkmode .product_page .top_banner .img_box [fill='#EFECEB'],
+.darkmode .product_page .top_banner .img_box [fill='#F5F3F1'] {
+ fill: var(--gray-100);
+}
+.darkmode .product_page .top_banner .img_box [stroke='#EFECEB'] {
+ stroke: var(--gray-50);
+}
+.darkmode .product_page .top_banner .img_box [stroke='#514C49'],
+.darkmode .product_page .top_banner .img_box [stroke='#E2DEDB'] {
+ stroke: var(--gray-100);
+}
+.darkmode .product_page .top_banner .img_box [fill='black'] {
+ fill: var(--gray-900);
+}
+.darkmode .product_page .img_box [fill='#FEFDFB'] {
+ fill: var(--gray-000);
+}
+.darkmode .product_page .house_content .img_box [fill='#332E2B'] + [fill='#514C49'] {
+ fill: var(--gray-100);
+}
From 4ae7f5b56442727110f57bc90333ce82af064da2 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Mon, 29 Jul 2024 18:34:16 +0900
Subject: [PATCH 02/14] Replace button in community page
---
package-lock.json | 8 ++++----
package.json | 2 +-
pages/community.tsx | 38 +++++++++++++++-----------------------
3 files changed, 20 insertions(+), 28 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index c58552e..14fffcb 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.4"
+ "yorkie-ui-test": "^0.0.9"
}
},
"node_modules/@ampproject/remapping": {
@@ -10722,9 +10722,9 @@
}
},
"node_modules/yorkie-ui-test": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.4.tgz",
- "integrity": "sha512-7oqWMqfWyEeYQ0JqXJXgDJgiJXUg2c3VycL0WDYw355b7ynMrMGVvZdObOfFZGSWGy8cqeLUOJOzOHe0EqMB5Q==",
+ "version": "0.0.9",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.9.tgz",
+ "integrity": "sha512-1lNcqbi6kA2rotlnHmgJIbThnPOsjzqr6WxknPh8CTk0nD7OZlYd1nVji43tJJ06Rr/yK7Lbo2otbukS2zzNRg==",
"dev": true,
"dependencies": {
"@ark-ui/react": "^3.5.0"
diff --git a/package.json b/package.json
index 7d47088..bd12eb4 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,6 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.4"
+ "yorkie-ui-test": "^0.0.9"
}
}
diff --git a/pages/community.tsx b/pages/community.tsx
index 5222f14..a14e488 100644
--- a/pages/community.tsx
+++ b/pages/community.tsx
@@ -1,7 +1,9 @@
import type { NextPage } from 'next';
import Head from 'next/head';
-import { Button, Icon, Layout } from '@/components';
+import Link from 'next/link';
+import { Icon, Layout } from '@/components';
import CommunitySVG from '@/public/assets/icons/community_help.svg';
+import { Button, Flex } from 'yorkie-ui-test';
const Community: NextPage = () => {
return (
@@ -25,30 +27,20 @@ const Community: NextPage = () => {
raise GitHub
discussions.
-
- }
- href="https://discord.gg/MVEAwz9sBy"
- className="gray50"
- as="a"
- outline
- target="_blank"
- rel="noreferrer"
- >
- Discord
+
+
+
+
+ Discord
+
- }
- href="https://github.com/yorkie-team/dashboard/issues"
- className="gray50"
- as="a"
- outline
- target="_blank"
- rel="noreferrer"
- >
- GitHub
+
+
+
+ GitHub
+
-
+
);
From bd6ce948de011322ea6daec0d9e78e62670bcfbc Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 11:06:40 +0900
Subject: [PATCH 03/14] Replace button in 404 page
---
package-lock.json | 8 ++++----
package.json | 2 +-
pages/404.tsx | 45 ++++++++++++++++++++-------------------------
3 files changed, 25 insertions(+), 30 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 14fffcb..b083b32 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.9"
+ "yorkie-ui-test": "^0.0.10"
}
},
"node_modules/@ampproject/remapping": {
@@ -10722,9 +10722,9 @@
}
},
"node_modules/yorkie-ui-test": {
- "version": "0.0.9",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.9.tgz",
- "integrity": "sha512-1lNcqbi6kA2rotlnHmgJIbThnPOsjzqr6WxknPh8CTk0nD7OZlYd1nVji43tJJ06Rr/yK7Lbo2otbukS2zzNRg==",
+ "version": "0.0.10",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.10.tgz",
+ "integrity": "sha512-QhVsUaCIpCA6bcURqfwfbpHzEzvmAo4J8y8Alt+v9IWzMh8fBj2RjV8ornxe/5iXVdmZuel4aI0Ueir+0nX7iw==",
"dev": true,
"dependencies": {
"@ark-ui/react": "^3.5.0"
diff --git a/package.json b/package.json
index bd12eb4..61ce9c3 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,6 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.9"
+ "yorkie-ui-test": "^0.0.10"
}
}
diff --git a/pages/404.tsx b/pages/404.tsx
index 52a36bf..7147980 100644
--- a/pages/404.tsx
+++ b/pages/404.tsx
@@ -1,7 +1,9 @@
import type { NextPage } from 'next';
import Head from 'next/head';
-import { Button, Icon, Layout } from '@/components';
+import Link from 'next/link';
+import { Icon, Layout } from '@/components';
import Error404SVG from '@/public/assets/icons/error_404.svg';
+import { Button, Flex } from 'yorkie-ui-test';
const Custom404: NextPage = () => {
return (
@@ -22,33 +24,26 @@ const Custom404: NextPage = () => {
The page you are looking for might be
removed or is temporarily unavailable.
-
- }>
- Back to home
+
+
+
+
+ Back to home
+
- }
- >
- Discord
+
+
+
+ Discord
+
- }
- >
- GitHub
+
+
+
+ GitHub
+
-
+
);
From 12dbe3ad5d8e3570710de313ead45b330f50b226 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 15:51:56 +0900
Subject: [PATCH 04/14] Replace button in main page
---
package-lock.json | 8 ++--
package.json | 2 +-
pages/index.tsx | 115 +++++++++++++++++++++++++++-------------------
3 files changed, 73 insertions(+), 52 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index b083b32..fe4b436 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.10"
+ "yorkie-ui-test": "^0.0.11"
}
},
"node_modules/@ampproject/remapping": {
@@ -10722,9 +10722,9 @@
}
},
"node_modules/yorkie-ui-test": {
- "version": "0.0.10",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.10.tgz",
- "integrity": "sha512-QhVsUaCIpCA6bcURqfwfbpHzEzvmAo4J8y8Alt+v9IWzMh8fBj2RjV8ornxe/5iXVdmZuel4aI0Ueir+0nX7iw==",
+ "version": "0.0.11",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.11.tgz",
+ "integrity": "sha512-A2tlfV6fNu+lYVXw65RCFqgv4ZKNT63nzIIYeeiTZvdYEgvao2ZrTq0ZJGat3LAElZzBwtGHREQOi/Fq53uWRA==",
"dev": true,
"dependencies": {
"@ark-ui/react": "^3.5.0"
diff --git a/package.json b/package.json
index 61ce9c3..d54856d 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,6 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.10"
+ "yorkie-ui-test": "^0.0.11"
}
}
diff --git a/pages/index.tsx b/pages/index.tsx
index b81601b..662b11a 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -2,7 +2,9 @@ import { useState, useEffect } from 'react';
import classNames from 'classnames';
import type { NextPage } from 'next';
import Head from 'next/head';
-import { Layout, Button, Icon, CodeBlock, CodeBlockHeader, Accordion } from '@/components';
+import Link from 'next/link';
+import { Button, Flex } from 'yorkie-ui-test';
+import { Layout, Icon, CodeBlock, CodeBlockHeader, Accordion } from '@/components';
import { ChartMotion, StateSharingMotion, ServerMotion, MainBannerMotion } from '@/components/motions';
import UserGroupSVG from '@/public/assets/icons/icon_service_main_users_group.svg';
import CollaboProfileSVG from '@/public/assets/icons/icon_collaborate_profile.svg';
@@ -55,18 +57,16 @@ const Home: NextPage = () => {
to your app
-
-
+ setBannerActive(true)}
onPointerOut={() => setBannerActive(false)}
>
-
- Start for free
-
-
+ Start for free
+
+
Unlock the full potential of real-time collaboration with open-source SDKs and API package.
@@ -90,14 +90,27 @@ const Home: NextPage = () => {
Easily add collaboration to your apps with our API-based services. Sign up now and start building
powerful, high-performance collaborative features in no time.
-
- }>
- Getting Started
+
+
+
+
+ Getting Started
+
- }>
- Read documentation
+
+
+
+ Read documentation
+
-
+
@@ -226,11 +239,14 @@ const Home: NextPage = () => {
-
- }>
- View all examples
+
+
+
+
+ View all examples
+
-
+
)}
@@ -255,13 +271,11 @@ const Home: NextPage = () => {
peer's awareness of the data being edited. It is used to track which users are currently
editing the document.
- }
- >
- Learn more about Document and Presence
+
+
+
+ Learn more about Document and Presence
+
@@ -276,8 +290,11 @@ const Home: NextPage = () => {
real-time. With Dashboard, users can quickly and easily supervise the data warehouse and ensure that
it is functioning properly.
- }>
- Learn more about Dashboard
+
+
+
+ Learn more about Dashboard
+
@@ -292,8 +309,11 @@ const Home: NextPage = () => {
own premises. Whether you want the convenience of cloud or the control of a self-hosted server,
Yorkie has you covered.
- }>
- Learn more about Self-Hosted Server
+
+
+
+ Learn more about Self-Hosted Server
+
@@ -354,26 +374,27 @@ const Home: NextPage = () => {
-
- }
- target="_blank"
- rel="noreferrer"
- >
- Contact
+
+
+
+
+ Contact
+
- }
- >
- Start for free
+
+
+
+ Start for free
+
-
+
From a3f2f5574b1ed1418b2232acabf81cd74399643f Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 16:11:08 +0900
Subject: [PATCH 05/14] Replace button in products page
---
pages/products.tsx | 44 +++++++++++++++++++++++++++-----------------
styles/style.css | 30 ------------------------------
2 files changed, 27 insertions(+), 47 deletions(-)
diff --git a/pages/products.tsx b/pages/products.tsx
index 8255f8c..9d42ca4 100644
--- a/pages/products.tsx
+++ b/pages/products.tsx
@@ -3,7 +3,8 @@ import type { NextPage } from 'next';
import Head from 'next/head';
import Link from 'next/link';
import classNames from 'classnames';
-import { Button, Icon, Layout, CodeBlock, CodeBlockHeader } from '@/components';
+import { Button } from 'yorkie-ui-test';
+import { Icon, Layout, CodeBlock, CodeBlockHeader } from '@/components';
import { StateSharingDetailMotion, FlexibleDocumentMotion } from '@/components/motions';
import ProductBannerSVG from '@/public/assets/images/banner/img_product_banner.svg';
import ProductAwarenessLeftSVG from '@/public/assets/images/banner/img_product_awareness_left.svg';
@@ -33,16 +34,12 @@ const Products: NextPage = () => {
and Peer Awareness API. Dashboard allows for efficient management of documents
as a document store.
-
- }
- >
+
+
+
Start for free
-
-
+
+
@@ -178,10 +175,13 @@ const Products: NextPage = () => {
Size optimization
Yorkie uses{' '}
-
+
Garbage Collection
-
- {' '}and{' '}
+ {' '}
+ and{' '}
Lamport timestamps
{' '}
@@ -249,10 +249,6 @@ const Products: NextPage = () => {
Yorkie open-source package
-
-
- How to build self-hosted server
-
Yorkie open-source package includes SDKs, a server, and a database, making it easy to implement the
co-editing feature.
@@ -260,6 +256,20 @@ const Products: NextPage = () => {
+
+
+
+ How to build self-hosted server
+
+
diff --git a/styles/style.css b/styles/style.css
index 75dba17..d449c36 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -13788,9 +13788,6 @@ html {
}
@media screen and (max-width: 1023px) {
.product_page .package_group .sub_title_wrap {
- -webkit-box-ordinal-group: 2;
- -ms-flex-order: 1;
- order: 1;
padding-right: 0;
}
}
@@ -13799,36 +13796,9 @@ html {
top: 0;
right: 0;
}
-@media screen and (max-width: 1023px) {
- .product_page .package_group .btn {
- -webkit-box-ordinal-group: 5;
- -ms-flex-order: 4;
- order: 4;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- position: static;
- width: 100%;
- margin: 32px 0 0;
- }
-}
-@media screen and (max-width: 1023px) {
- .product_page .package_group .sub_big_desc {
- -webkit-box-ordinal-group: 3;
- -ms-flex-order: 2;
- order: 2;
- }
-}
.product_page .package_group .img_box {
margin-top: 32px;
}
-@media screen and (max-width: 1023px) {
- .product_page .package_group .img_box {
- -webkit-box-ordinal-group: 4;
- -ms-flex-order: 3;
- order: 3;
- }
-}
.product_page .package_group .img_box [fill='#514C49'] {
fill: var(--gray-800);
}
From 626719c613d772aa1e959df2c34f914d11837e28 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 16:34:22 +0900
Subject: [PATCH 06/14] Replace button in examples page
---
pages/examples/index.tsx | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/pages/examples/index.tsx b/pages/examples/index.tsx
index 2b6eb63..0bd1ceb 100644
--- a/pages/examples/index.tsx
+++ b/pages/examples/index.tsx
@@ -1,9 +1,10 @@
-import { Button, Icon, Layout } from '@/components';
+import { Icon, Layout } from '@/components';
import { ExampleThumbnailImage } from '@/components/exampleView';
import ExampleBannerSVG from '@/public/assets/images/banner/img_example_banner.svg';
import type { NextPage } from 'next';
import Head from 'next/head';
import Link from 'next/link';
+import { Button } from 'yorkie-ui-test';
const Examples: NextPage = () => {
return (
@@ -21,16 +22,12 @@ const Examples: NextPage = () => {
Explore our examples and see how Yorkie can help you bring your products to the next level of
collaboration.
-
- }
- >
+
+
+
Start for free
-
-
+
+
From 4a5821c251813221daff690eca00f6b0da6d9cb9 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 16:40:38 +0900
Subject: [PATCH 07/14] Replace button in documentation page
---
docs/sample.mdx | 7 ++++---
pages/docs/[[...slug]].tsx | 3 ++-
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/docs/sample.mdx b/docs/sample.mdx
index 388bd00..828127f 100644
--- a/docs/sample.mdx
+++ b/docs/sample.mdx
@@ -225,6 +225,7 @@ main();`} language="javascript" withCopyButton/>
-
- }>Learn more about the [SUBSUBSECTION]
-
+
+
+ Learn more about the [SUBSUBSECTION]
+
diff --git a/pages/docs/[[...slug]].tsx b/pages/docs/[[...slug]].tsx
index bdc9197..ba9c854 100644
--- a/pages/docs/[[...slug]].tsx
+++ b/pages/docs/[[...slug]].tsx
@@ -19,7 +19,8 @@ import rehypeToc, { HtmlElementNode, ListItemNode } from '@jsdevtools/rehype-toc
import rehypeImageMeta from '@/utils/rehypeImageMeta';
import rehypeWrapContents from '@/utils/rehypeWrapContents';
import rehypeVariables from '@/utils/rehypeVariables';
-import { Layout, Navigator, Button, Icon, CodeBlock, CodeBlockHeader, Image } from '@/components';
+import { Layout, Navigator, Icon, CodeBlock, CodeBlockHeader, Image } from '@/components';
+import { Button } from 'yorkie-ui-test';
import { CustomLink, CustomCodeBlock, Breadcrumb, Caption, ImageWrap, Alert, Blockquote } from '@/components/docs';
// Custom components/renderers to pass to MDX.
From cd681d68055185efb5b3addfc291886137d77410 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 16:53:14 +0900
Subject: [PATCH 08/14] Replace button in codeblock component
---
components/CodeBlock/CodeBlock.tsx | 7 +++++--
components/CodeBlock/CodeBlockHeader.tsx | 7 +++++--
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/components/CodeBlock/CodeBlock.tsx b/components/CodeBlock/CodeBlock.tsx
index 1e1060b..baf6467 100644
--- a/components/CodeBlock/CodeBlock.tsx
+++ b/components/CodeBlock/CodeBlock.tsx
@@ -1,5 +1,6 @@
import { ReactNode } from 'react';
-import { CopyButton, Button, Icon } from '@/components';
+import { CopyButton, Icon } from '@/components';
+import { Button } from 'yorkie-ui-test';
import { PrismCodeProps, PrismCode } from './PrismCode';
export function CodeBlock({ withCopyButton, ...restProps }: { withCopyButton?: boolean } & PrismCodeProps) {
@@ -27,7 +28,9 @@ function CopyButtonBox({ value, timeout = 1000 }: { value: string; timeout?: num
{({ copied, copy }) => (
<>
- } outline onClick={copy} title="Copy to clipboard" />
+
+
+
{copied && (
diff --git a/components/CodeBlock/CodeBlockHeader.tsx b/components/CodeBlock/CodeBlockHeader.tsx
index 1220725..bc6d3ad 100644
--- a/components/CodeBlock/CodeBlockHeader.tsx
+++ b/components/CodeBlock/CodeBlockHeader.tsx
@@ -1,5 +1,6 @@
import { ReactNode } from 'react';
-import { CopyButton, Button, Icon } from '@/components';
+import { CopyButton, Icon } from '@/components';
+import { Button } from 'yorkie-ui-test';
export function CodeBlockHeader({ children }: { children: ReactNode }) {
return
{children}
;
@@ -19,7 +20,9 @@ function CopyButtonBox({ value, timeout = 1000 }: { value: string; timeout?: num
{({ copied, copy }) => (
<>
- } className="gray50" outline onClick={copy} title="Copy to clipboard" />
+
+
+
{copied && (
From 88c9ce159bb8817da32b9288fb136bc343d34e92 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 16:57:03 +0900
Subject: [PATCH 09/14] Remove Button components
---
components/Button/Button.tsx | 102 ----------------------------
components/Button/ButtonBox.tsx | 36 ----------
components/Layout/ExampleLayout.tsx | 2 -
components/index.ts | 1 -
4 files changed, 141 deletions(-)
delete mode 100644 components/Button/Button.tsx
delete mode 100644 components/Button/ButtonBox.tsx
diff --git a/components/Button/Button.tsx b/components/Button/Button.tsx
deleted file mode 100644
index 3221de1..0000000
--- a/components/Button/Button.tsx
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright 2022 The Yorkie Authors. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import React, { forwardRef, ReactNode, AnchorHTMLAttributes, ButtonHTMLAttributes } from 'react';
-import Link from 'next/link';
-import classNames from 'classnames';
-import { ButtonBox } from './ButtonBox';
-
-const ButtonStyle = {
- sm: 'btn_small',
- md: undefined,
- lg: 'btn_large',
- primary: 'orange_0',
- success: 'green_0',
- danger: 'red_0',
- toggle: 'btn_toggle',
- disabled: 'btn_line gray300',
- default: undefined,
-};
-
-type ButtonProps = {
- as?: 'button' | 'a' | 'link';
- type?: 'button' | 'submit' | 'reset';
- href?: string;
- disabled?: boolean;
- className?: string;
- children?: ReactNode;
- blindText?: boolean;
- icon?: ReactNode;
- size?: 'sm' | 'md' | 'lg';
- outline?: boolean;
- color?: 'primary' | 'success' | 'danger' | 'toggle' | 'default';
- isActive?: boolean;
- buttonRef?: any;
-} & AnchorHTMLAttributes &
- ButtonHTMLAttributes;
-
-function ButtonInner({
- as = 'button',
- type = 'button',
- href = '',
- disabled,
- className = '',
- children,
- icon,
- blindText,
- size = 'md',
- outline,
- color = 'default',
- isActive,
- buttonRef,
- ...restProps
-}: ButtonProps) {
- const buttonClassName = classNames('btn', className, ButtonStyle[size], ButtonStyle[color], {
- btn_line: outline,
- is_active: isActive,
- [ButtonStyle.disabled]: disabled,
- });
-
- if (as === 'link') {
- return (
-
- {icon && icon}
- {children && {children} }
-
- );
- }
- if (as === 'a') {
- return (
-
- {icon && icon}
- {children && {children} }
-
- );
- }
- return (
-
- {icon && icon}
- {children && {children} }
-
- );
-}
-
-export const Button = forwardRef((props: ButtonProps, ref) => {
- return ;
-}) as any;
-
-Button.displayName = 'Button';
-Button.Box = ButtonBox;
diff --git a/components/Button/ButtonBox.tsx b/components/Button/ButtonBox.tsx
deleted file mode 100644
index 615601d..0000000
--- a/components/Button/ButtonBox.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright 2022 The Yorkie Authors. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import React, { ReactNode } from 'react';
-import classNames from 'classnames';
-
-export const ButtonBox = React.forwardRef<
- HTMLDivElement,
- {
- fullWidth?: boolean;
- children?: ReactNode;
- }
->(({ children, fullWidth }, ref) => {
- const buttonBoxClassName = classNames('btn_box', {
- full_width: fullWidth,
- });
- return (
-
- {children}
-
- );
-});
-ButtonBox.displayName = 'Button.Box';
diff --git a/components/Layout/ExampleLayout.tsx b/components/Layout/ExampleLayout.tsx
index 35a57e4..12eae03 100644
--- a/components/Layout/ExampleLayout.tsx
+++ b/components/Layout/ExampleLayout.tsx
@@ -1,7 +1,5 @@
import { ReactElement, ReactNode, useState } from 'react';
import Link from 'next/link';
-import classNames from 'classnames';
-import { Button, Icon } from '@/components';
import LogoGnbSVG from '@/public/assets/icons/logo_gnb.svg';
type ExampleViewType = 'full' | 'show' | 'grid' | 'split';
diff --git a/components/index.ts b/components/index.ts
index 3702080..874b271 100644
--- a/components/index.ts
+++ b/components/index.ts
@@ -1,6 +1,5 @@
export * from './Layout';
export * from './Navigator';
-export * from './Button/Button';
export * from './Icons/Icon';
export * from './Popover/Popover';
export * from './Tabs/Tabs';
From d2e418c15c748aa2ed44b90f32e6e0139df153b6 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 30 Jul 2024 17:04:03 +0900
Subject: [PATCH 10/14] Rename dark mode theme class
---
hooks/useTheme.ts | 2 -
styles/style.css | 208 ++++++++++++++++++----------------------------
2 files changed, 83 insertions(+), 127 deletions(-)
diff --git a/hooks/useTheme.ts b/hooks/useTheme.ts
index 453df1d..4902d70 100644
--- a/hooks/useTheme.ts
+++ b/hooks/useTheme.ts
@@ -5,10 +5,8 @@ export type ThemeOption = 'system' | 'light' | 'dark';
const handleTheme = (theme: 'light' | 'dark') => {
if (theme === 'dark') {
window.document.body.classList.add('dark');
- window.document.body.classList.add('darkmode');
} else if (theme === 'light') {
window.document.body.classList.remove('dark');
- window.document.body.classList.remove('darkmode');
}
};
diff --git a/styles/style.css b/styles/style.css
index d449c36..6638fb6 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -63,7 +63,6 @@
line-height: 1.58;
}
}
-@charset "UTF-8";
.connect_box {
display: -webkit-box;
display: -ms-flexbox;
@@ -258,7 +257,6 @@
.connect_api_box .btn_cover .icon svg {
display: block;
}
-@charset "UTF-8";
.banner {
display: block;
min-height: 134px;
@@ -399,7 +397,6 @@
display: block;
width: 100%;
}
-@charset "UTF-8";
.btn {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
@@ -1386,7 +1383,6 @@
.btn_top svg rect {
fill: var(--gray-000);
}
-@charset "UTF-8";
.service_card_list .service_card_item {
width: 100%;
border: 1px solid var(--gray-400);
@@ -1576,7 +1572,6 @@
.horizon_list .text_box .btn.gray800:hover {
background-color: var(--gray-900);
}
-@charset "UTF-8";
.codeblock_box {
position: relative;
}
@@ -1839,7 +1834,6 @@
.codeblock_tree_box .node-ellipsis {
margin-left: 4px;
}
-@charset "UTF-8";
.codeblock_header {
display: -webkit-box;
display: -ms-flexbox;
@@ -1990,7 +1984,6 @@
.codeblock_header .btn_toggle:not(.is_active) {
background: var(--gray-50);
}
-@charset "UTF-8";
.codeblock_navigator {
display: -webkit-box;
display: -ms-flexbox;
@@ -2023,7 +2016,6 @@
background: var(--gray-800);
color: var(--gray-000);
}
-@charset "UTF-8";
.create_project {
padding: 32px 16px 40px;
border: 1px solid var(--gray-400);
@@ -2383,7 +2375,6 @@
.create_project .search .input_field_box {
margin-top: 0;
}
-@charset "UTF-8";
.document_header .title_box {
display: -webkit-box;
display: -ms-flexbox;
@@ -2518,7 +2509,6 @@
font-weight: 500;
color: var(--gray-800);
}
-@charset "UTF-8";
.dropdown {
padding: 8px 0;
border: 1px solid var(--gray-400);
@@ -2615,7 +2605,6 @@
.dropdown .icon + .dropdown_text {
margin-left: 10px;
}
-@charset "UTF-8";
.emoji_group {
border: 1px solid var(--gray-400);
border-radius: 6px;
@@ -2637,7 +2626,6 @@
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
-@charset "UTF-8";
.filter {
-webkit-box-flex: 0;
-ms-flex: none;
@@ -2742,7 +2730,6 @@
.filter .dropdown_text:only-child {
padding-left: 26px;
}
-@charset "UTF-8";
.footer {
display: -webkit-box;
display: -ms-flexbox;
@@ -2767,7 +2754,6 @@
.footer svg path:nth-child(9) {
fill: var(--gray-400);
}
-@charset "UTF-8";
.footer_service {
background: var(--gray-50);
}
@@ -2921,10 +2907,9 @@
.footer_service .filter .dropdown_text:only-child {
padding-left: 0;
}
-.darkmode .footer_service .logo svg path:nth-child(7) {
+.dark .footer_service .logo svg path:nth-child(7) {
fill: var(--gray-100);
}
-@charset "UTF-8";
.grid_list {
display: -webkit-box;
display: -ms-flexbox;
@@ -3121,7 +3106,6 @@
width: 100%;
height: 100%;
}
-@charset "UTF-8";
.header {
position: -webkit-sticky;
position: sticky;
@@ -3712,10 +3696,9 @@
line-height: 1.58;
}
}
-.darkmode .breadcrumb .logo svg [fill='#514C49'] {
+.dark .breadcrumb .logo svg [fill='#514C49'] {
fill: var(--gray-100);
}
-@charset "UTF-8";
.header_service {
position: -webkit-sticky;
position: sticky;
@@ -4064,10 +4047,9 @@
line-height: 1.5;
font-weight: 500;
}
-.darkmode .header_service .logo svg [fill='#514C49'] {
+.dark .header_service .logo svg [fill='#514C49'] {
fill: var(--gray-100);
}
-@charset "UTF-8";
.history_header {
display: -webkit-box;
display: -ms-flexbox;
@@ -4454,7 +4436,6 @@
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
-@charset "UTF-8";
.icon {
display: inline-block;
vertical-align: top;
@@ -4488,7 +4469,6 @@
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
-@charset "UTF-8";
.image_area {
display: -webkit-box;
display: -ms-flexbox;
@@ -4517,7 +4497,6 @@
width: 100%;
height: auto;
}
-@charset "UTF-8";
.setting_image {
font-size: 0;
line-height: normal;
@@ -4543,7 +4522,6 @@
font-weight: 400;
color: var(--gray-600);
}
-@charset "UTF-8";
.input {
display: inline-block;
width: 100%;
@@ -5270,11 +5248,10 @@
transition: color 0.3s;
word-break: break-all;
}
-.darkmode .input:-webkit-autofill {
+.dark .input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px var(--gray-000) inset;
box-shadow: 0 0 0 1000px var(--gray-000) inset;
}
-@charset "UTF-8";
.document_table {
padding: 0 16px;
}
@@ -5666,7 +5643,7 @@
animation: skeleton 4s linear infinite;
content: '';
}
-.darkmode .box_skeleton::before {
+.dark .box_skeleton::before {
background-image: -webkit-gradient(
linear,
left bottom,
@@ -5710,7 +5687,6 @@
background-position: 0 -300%;
}
}
-@charset "UTF-8";
@media screen and (max-width: 1023px) {
.member_list {
padding: 0 32px;
@@ -6009,7 +5985,6 @@
padding-top: 12px;
padding-bottom: 12px;
}
-@charset "UTF-8";
.project_table {
padding: 0 16px;
}
@@ -6184,7 +6159,6 @@
.project_table .connections {
width: 120px;
}
-@charset "UTF-8";
.modal {
position: fixed;
top: 50%;
@@ -6669,7 +6643,6 @@
.modal .icon_alert {
color: var(--red-0);
}
-@charset "UTF-8";
.mouse_effect {
position: fixed;
bottom: 0;
@@ -6751,7 +6724,6 @@
.mouse_effect .btn_box .btn:hover .icon svg:last-child {
display: block;
}
-@charset "UTF-8";
.navigator_list {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
@@ -6861,7 +6833,6 @@
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
-@charset "UTF-8";
.placeholder_box {
display: -webkit-box;
display: -ms-flexbox;
@@ -6913,7 +6884,6 @@
width: 12px;
height: 12px;
}
-@charset "UTF-8";
.pagination .btn_box {
-webkit-box-pack: center;
-ms-flex-pack: center;
@@ -6939,7 +6909,6 @@
background-color: var(--gray-000);
color: var(--gray-800);
}
-@charset "UTF-8";
@media screen and (max-width: 1023px) {
.card {
padding: 0 32px;
@@ -7205,7 +7174,6 @@
padding: 5px;
color: var(--yellow-0);
}
-@charset "UTF-8";
.search {
font-size: 0;
line-height: normal;
@@ -7366,7 +7334,6 @@
margin-top: 16px;
}
}
-@charset "UTF-8";
.box_tab {
position: -webkit-sticky;
position: sticky;
@@ -7522,7 +7489,6 @@
-webkit-transition: color 0.2s;
transition: color 0.2s;
}
-@charset "UTF-8";
.textarea {
display: block;
width: 100%;
@@ -7570,7 +7536,6 @@
font-weight: 500;
color: var(--gray-800);
}
-@charset "UTF-8";
.api_title .title_box {
display: -webkit-box;
display: -ms-flexbox;
@@ -7651,7 +7616,6 @@
font-weight: 400;
color: var(--gray-600);
}
-@charset "UTF-8";
.init_box .title {
font-size: 2.4rem;
line-height: 1.34;
@@ -7692,7 +7656,6 @@
font-weight: 400;
color: var(--gray-600);
}
-@charset "UTF-8";
.setting_title .text {
display: inline-block;
padding: 0 4px 7px 5px;
@@ -7703,7 +7666,6 @@
color: var(--gray-800);
vertical-align: top;
}
-@charset "UTF-8";
@media screen and (max-width: 1023px) {
.project_area {
padding: 16px 32px 0;
@@ -7955,7 +7917,6 @@
padding-right: 16px;
}
}
-@charset "UTF-8";
.toast_box {
display: -webkit-box;
display: -ms-flexbox;
@@ -8017,7 +7978,6 @@
transform: translate(-50%, calc(-100% - 16px));
}
}
-@charset "UTF-8";
.tooltip {
position: absolute;
top: -20px;
@@ -8134,7 +8094,6 @@
font-weight: 500;
color: var(--gray-800);
}
-@charset "UTF-8";
@media screen and (max-width: 1023px) {
.usage {
padding: 0 32px;
@@ -8375,7 +8334,7 @@ pre[class*='language-'] {
--code-brown: #9a6e3a;
--code-green: var(--green-dark);
}
-.darkmode pre[class*='language-'] {
+.dark pre[class*='language-'] {
--code-slategray: var(--gray-300);
--code-brown: #face9b;
color: var(--code-gray);
@@ -8576,8 +8535,7 @@ pre[class*='language-'] {
.history_slider_inner .rc-slider-dot.is_first::before {
background: url(/assets/icons/icon_line.svg) left center;
background-repeat: space no-repeat;
-}
-@charset "UTF-8"; /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
+} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
@@ -8754,7 +8712,7 @@ legend {
--purple-alpha-0: rgb(133 92 249 / 32%);
--purple-alpha-light: rgb(163 133 251 / 24%);
}
-.darkmode {
+.dark {
--gray-900: #fefdfb;
--gray-800: #faf8f6;
--gray-700: #f5f3f1;
@@ -10310,7 +10268,7 @@ legend {
.dashboard .user_list .icon svg path {
fill: #fff;
}
-.darkmode .header_example .logo svg [fill='#514C49'] {
+.dark .header_example .logo svg [fill='#514C49'] {
fill: var(--gray-100);
}
.main_page .key_visual {
@@ -11040,144 +10998,144 @@ legend {
padding: 0;
}
}
-.darkmode .main_page .key_visual .title .text {
+.dark .main_page .key_visual .title .text {
background: -webkit-gradient(linear, left top, left bottom, from(#fefdfb), to(#a6a19e));
background: linear-gradient(180deg, #fefdfb 0, #a6a19e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
-.darkmode .main_page .kv_bg g[filter*='filter0'] > rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter0'] > rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter0'] g rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter0'] g rect:first-child {
fill: var(--gray-100);
stroke: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#FAF8F6'] {
+.dark .main_page .kv_bg g[filter*='filter0'] [fill='#FAF8F6'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#EFECEB'],
-.darkmode .main_page .kv_bg g[filter*='filter0'] [fill='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter0'] [fill='#EFECEB'],
+.dark .main_page .kv_bg g[filter*='filter0'] [fill='#F5F3F1'] {
fill: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter0'] [stroke='#E2DEDB'],
-.darkmode .main_page .kv_bg g[filter*='filter0'] [stroke='#EFECEB'] {
+.dark .main_page .kv_bg g[filter*='filter0'] [stroke='#E2DEDB'],
+.dark .main_page .kv_bg g[filter*='filter0'] [stroke='#EFECEB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter2'] rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter2'] rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#F5F3F1'],
-.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#FEFDFB'] {
+.dark .main_page .kv_bg g[filter*='filter2'] [fill='#F5F3F1'],
+.dark .main_page .kv_bg g[filter*='filter2'] [fill='#FEFDFB'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#C2BDBA'],
-.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#E2DEDB'],
-.darkmode .main_page .kv_bg g[filter*='filter2'] [fill='#EFECEB'] {
+.dark .main_page .kv_bg g[filter*='filter2'] [fill='#C2BDBA'],
+.dark .main_page .kv_bg g[filter*='filter2'] [fill='#E2DEDB'],
+.dark .main_page .kv_bg g[filter*='filter2'] [fill='#EFECEB'] {
fill: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#EFECEB'],
-.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter2'] [stroke='#EFECEB'],
+.dark .main_page .kv_bg g[filter*='filter2'] [stroke='#F5F3F1'] {
stroke: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter2'] [stroke='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter2'] [stroke='#E2DEDB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter3'] rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter3'] rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#EFECEB'],
-.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#FEFDFB'] {
+.dark .main_page .kv_bg g[filter*='filter3'] [fill='#EFECEB'],
+.dark .main_page .kv_bg g[filter*='filter3'] [fill='#FEFDFB'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter3'] [fill='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter3'] [fill='#E2DEDB'] {
fill: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#EFECEB'] {
+.dark .main_page .kv_bg g[filter*='filter3'] [stroke='#EFECEB'] {
stroke: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#E2DEDB'],
-.darkmode .main_page .kv_bg g[filter*='filter3'] [stroke='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter3'] [stroke='#E2DEDB'],
+.dark .main_page .kv_bg g[filter*='filter3'] [stroke='#F5F3F1'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#FEFDFB'] {
+.dark .main_page .kv_bg g[filter*='filter4'] [fill='#FEFDFB'] {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#FAF8F6'] {
+.dark .main_page .kv_bg g[filter*='filter4'] [fill='#FAF8F6'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#C2BDBA'],
-.darkmode .main_page .kv_bg g[filter*='filter4'] [fill='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter4'] [fill='#C2BDBA'],
+.dark .main_page .kv_bg g[filter*='filter4'] [fill='#F5F3F1'] {
fill: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter4'] [stroke='#E2DEDB'],
-.darkmode .main_page .kv_bg g[filter*='filter4'] [stroke='#EFECEB'] {
+.dark .main_page .kv_bg g[filter*='filter4'] [stroke='#E2DEDB'],
+.dark .main_page .kv_bg g[filter*='filter4'] [stroke='#EFECEB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter5'] rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter5'] rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter5'] [fill='#E2DEDB'],
-.darkmode .main_page .kv_bg g[filter*='filter5'] [fill='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter5'] [fill='#E2DEDB'],
+.dark .main_page .kv_bg g[filter*='filter5'] [fill='#F5F3F1'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter5'] [stroke='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter5'] [stroke='#E2DEDB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter6'] rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter6'] rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#EFECEB'],
-.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#F5F3F1'],
-.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#FAF8F6'],
-.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#FEFDFB'] {
+.dark .main_page .kv_bg g[filter*='filter6'] [fill='#EFECEB'],
+.dark .main_page .kv_bg g[filter*='filter6'] [fill='#F5F3F1'],
+.dark .main_page .kv_bg g[filter*='filter6'] [fill='#FAF8F6'],
+.dark .main_page .kv_bg g[filter*='filter6'] [fill='#FEFDFB'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter6'] [fill='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter6'] [fill='#E2DEDB'] {
fill: var(--gray-200);
}
-.darkmode .main_page .kv_bg g[filter*='filter6'] [stroke='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter6'] [stroke='#E2DEDB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter7'] rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter7'] rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#EFECEB'],
-.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#FEFDFB'] {
+.dark .main_page .kv_bg g[filter*='filter7'] [fill='#EFECEB'],
+.dark .main_page .kv_bg g[filter*='filter7'] [fill='#FEFDFB'] {
fill: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter7'] [fill='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter7'] [fill='#E2DEDB'] {
fill: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter7'] [stroke='#F5F3F1'] {
+.dark .main_page .kv_bg g[filter*='filter7'] [stroke='#F5F3F1'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter7'] [stroke='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter7'] [stroke='#E2DEDB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter8'] > rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter8'] > rect:first-child {
fill: var(--gray-000);
}
-.darkmode .main_page .kv_bg g[filter*='filter8'] g rect:first-child {
+.dark .main_page .kv_bg g[filter*='filter8'] g rect:first-child {
fill: var(--gray-50);
stroke: var(--gray-50);
}
-.darkmode .main_page .kv_bg g[filter*='filter8'] [stroke='#EFECEB'] {
+.dark .main_page .kv_bg g[filter*='filter8'] [stroke='#EFECEB'] {
stroke: var(--gray-100);
}
-.darkmode .main_page .kv_bg g[filter*='filter8'] [stroke='#E2DEDB'] {
+.dark .main_page .kv_bg g[filter*='filter8'] [stroke='#E2DEDB'] {
stroke: var(--gray-50);
}
-.darkmode .main_page .section_app .app_body::before {
+.dark .main_page .section_app .app_body::before {
background-image: url(/assets/images/main_bg_dark.png);
}
-.darkmode .main_page .grid_thumbnail [fill='#FEFDFB'],
-.darkmode .main_page .grid_thumbnail [fill='url(#pattern1)'],
-.darkmode .main_page .grid_thumbnail [fill='white'] {
+.dark .main_page .grid_thumbnail [fill='#FEFDFB'],
+.dark .main_page .grid_thumbnail [fill='url(#pattern1)'],
+.dark .main_page .grid_thumbnail [fill='white'] {
fill: var(--gray-000);
}
-.darkmode .main_page .horizon_item .img_box [fill='#FEFDFB'] {
+.dark .main_page .horizon_item .img_box [fill='#FEFDFB'] {
fill: var(--gray-000);
}
@-webkit-keyframes gradient1 {
@@ -12061,13 +12019,13 @@ html {
-o-object-fit: cover;
object-fit: cover;
}
-.darkmode .examples_page .grid_thumbnail [fill='#FEFDFB'],
-.darkmode .examples_page .grid_thumbnail [fill='url(#pattern0)'],
-.darkmode .examples_page .grid_thumbnail [fill='url(#pattern1)'],
-.darkmode .examples_page .grid_thumbnail [fill='white'] {
+.dark .examples_page .grid_thumbnail [fill='#FEFDFB'],
+.dark .examples_page .grid_thumbnail [fill='url(#pattern0)'],
+.dark .examples_page .grid_thumbnail [fill='url(#pattern1)'],
+.dark .examples_page .grid_thumbnail [fill='white'] {
fill: var(--gray-000);
}
-.darkmode .examples_page .grid_thumbnail [fill='#332E2B'] {
+.dark .examples_page .grid_thumbnail [fill='#332E2B'] {
fill: var(--gray-50);
}
.examples_view_page {
@@ -13385,10 +13343,10 @@ html {
color: var(--gray-000);
word-break: break-word;
}
-.darkmode .sidebar_bottom {
+.dark .sidebar_bottom {
background-color: var(--gray-000);
}
-.darkmode .sidebar_bottom::after {
+.dark .sidebar_bottom::after {
-webkit-box-shadow: 0 15px 14px 0 var(--gray-000);
box-shadow: 0 15px 14px 0 var(--gray-000);
}
@@ -13877,30 +13835,30 @@ html {
.product_page .collaboration .img_box [stroke='#FEFDFB'] {
stroke: var(--gray-000);
}
-.darkmode .product_page .top_banner .img_box [fill='#FEFDFB'] {
+.dark .product_page .top_banner .img_box [fill='#FEFDFB'] {
fill: var(--gray-000);
}
-.darkmode .product_page .top_banner .img_box [fill='#FAF8F6'] {
+.dark .product_page .top_banner .img_box [fill='#FAF8F6'] {
fill: var(--gray-50);
}
-.darkmode .product_page .top_banner .img_box [fill='#E2DEDB'],
-.darkmode .product_page .top_banner .img_box [fill='#EFECEB'],
-.darkmode .product_page .top_banner .img_box [fill='#F5F3F1'] {
+.dark .product_page .top_banner .img_box [fill='#E2DEDB'],
+.dark .product_page .top_banner .img_box [fill='#EFECEB'],
+.dark .product_page .top_banner .img_box [fill='#F5F3F1'] {
fill: var(--gray-100);
}
-.darkmode .product_page .top_banner .img_box [stroke='#EFECEB'] {
+.dark .product_page .top_banner .img_box [stroke='#EFECEB'] {
stroke: var(--gray-50);
}
-.darkmode .product_page .top_banner .img_box [stroke='#514C49'],
-.darkmode .product_page .top_banner .img_box [stroke='#E2DEDB'] {
+.dark .product_page .top_banner .img_box [stroke='#514C49'],
+.dark .product_page .top_banner .img_box [stroke='#E2DEDB'] {
stroke: var(--gray-100);
}
-.darkmode .product_page .top_banner .img_box [fill='black'] {
+.dark .product_page .top_banner .img_box [fill='black'] {
fill: var(--gray-900);
}
-.darkmode .product_page .img_box [fill='#FEFDFB'] {
+.dark .product_page .img_box [fill='#FEFDFB'] {
fill: var(--gray-000);
}
-.darkmode .product_page .house_content .img_box [fill='#332E2B'] + [fill='#514C49'] {
+.dark .product_page .house_content .img_box [fill='#332E2B'] + [fill='#514C49'] {
fill: var(--gray-100);
}
From 1c4e91184e4a497e8bf0fa235a4095892333b3f2 Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Wed, 31 Jul 2024 11:23:22 +0900
Subject: [PATCH 11/14] Remove unused docs_breadcrumbs
---
components/docs/Breadcrumb.tsx | 17 -----------------
components/docs/index.ts | 1 -
docs/sample.mdx | 7 -------
pages/docs/[[...slug]].tsx | 3 +--
styles/style.css | 31 ++++++-------------------------
5 files changed, 7 insertions(+), 52 deletions(-)
delete mode 100644 components/docs/Breadcrumb.tsx
diff --git a/components/docs/Breadcrumb.tsx b/components/docs/Breadcrumb.tsx
deleted file mode 100644
index 84c07b3..0000000
--- a/components/docs/Breadcrumb.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import Link from 'next/link';
-import { Icon } from '@/components';
-
-export function Breadcrumb({ menus }: { menus: Array<{ name: string; href: string }> }) {
- return (
-
-
-
-
- {menus.map(({ name, href }) => (
-
- {name}
-
- ))}
-
- );
-}
diff --git a/components/docs/index.ts b/components/docs/index.ts
index 0b1807f..8719964 100644
--- a/components/docs/index.ts
+++ b/components/docs/index.ts
@@ -1,7 +1,6 @@
export * from './Link';
export * from './ImageWrap';
export * from './CodeBlock';
-export * from './Breadcrumb';
export * from './Caption';
export * from './Alert';
export * from './Blockquote';
diff --git a/docs/sample.mdx b/docs/sample.mdx
index 828127f..6512b77 100644
--- a/docs/sample.mdx
+++ b/docs/sample.mdx
@@ -4,13 +4,6 @@ order: 990
phase: development
---
-
-
## Docs-Sample
Describe about this section briefly. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam dignissim sem enim, convallis auctor arcu volutpat bibendum. Mauris augue est, pulvinar et neque ut, cursus porttitor tortor. Integer placerat velit quis dignissim consequat. Sed pellentesque ullamcorper rhoncus. Maecenas in urna porttitor, fringilla est accumsan, pellentesque sem.
diff --git a/pages/docs/[[...slug]].tsx b/pages/docs/[[...slug]].tsx
index ba9c854..c18fc2a 100644
--- a/pages/docs/[[...slug]].tsx
+++ b/pages/docs/[[...slug]].tsx
@@ -21,7 +21,7 @@ import rehypeWrapContents from '@/utils/rehypeWrapContents';
import rehypeVariables from '@/utils/rehypeVariables';
import { Layout, Navigator, Icon, CodeBlock, CodeBlockHeader, Image } from '@/components';
import { Button } from 'yorkie-ui-test';
-import { CustomLink, CustomCodeBlock, Breadcrumb, Caption, ImageWrap, Alert, Blockquote } from '@/components/docs';
+import { CustomLink, CustomCodeBlock, Caption, ImageWrap, Alert, Blockquote } from '@/components/docs';
// Custom components/renderers to pass to MDX.
const components: MDXComponents = {
@@ -39,7 +39,6 @@ const components: MDXComponents = {
),
Image,
ImageWrap,
- Breadcrumb,
Caption,
Alert,
CodeBlock,
diff --git a/styles/style.css b/styles/style.css
index 6638fb6..9f33d54 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -11551,11 +11551,11 @@ html {
word-break: break-word;
}
.documentation_page .section_content_box ol,
-.documentation_page .section_content_box ul:not(.docs_breadcrumbs) {
+.documentation_page .section_content_box ul {
margin: 16px 0 24px 16px;
}
.documentation_page .section_content_box ol li,
-.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li {
+.documentation_page .section_content_box ul li {
position: relative;
padding-left: 20px;
font-size: 1.6rem;
@@ -11564,11 +11564,11 @@ html {
word-break: break-word;
}
.documentation_page .section_content_box ol li + li,
-.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li + li {
+.documentation_page .section_content_box ul li + li {
margin-top: 8px;
}
.documentation_page .section_content_box ol li::before,
-.documentation_page .section_content_box ul:not(.docs_breadcrumbs) li::before {
+.documentation_page .section_content_box ul li::before {
display: block;
position: absolute;
top: 10px;
@@ -11590,7 +11590,7 @@ html {
counter-increment: list;
content: counter(list) '.';
}
-.documentation_page .section_content_box a:not(.btn, .docs_breadcrumbs_link) {
+.documentation_page .section_content_box a:not(.btn) {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
@@ -11600,7 +11600,7 @@ html {
color: var(--orange-0);
border-bottom: 1px solid var(--orange-0);
}
-.documentation_page .section_content_box a:not(.btn, .docs_breadcrumbs_link).icon_link::after {
+.documentation_page .section_content_box a:not(.btn).icon_link::after {
display: block;
width: 13px;
height: 13px;
@@ -11852,25 +11852,6 @@ html {
.documentation_page .section_content_box .btn_box .btn:hover {
background: var(--gray-900);
}
-.documentation_page .section_content_box .docs_breadcrumbs {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- position: relative;
- margin-bottom: 8px;
-}
-.documentation_page .section_content_box .docs_breadcrumbs_link {
- display: inline-block;
- font-size: 1.6rem;
- line-height: 1.5;
- font-weight: 600;
- color: var(--orange-dark);
-}
-.documentation_page .section_content_box .docs_breadcrumbs_link:not(:first-of-type)::before {
- display: inline-block;
- margin: 0 4px;
- content: '-';
-}
.documentation_page .toast_box {
left: 0;
}
From bcb4af5f44fc5de114daf5e4ba56f87eaa65966c Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Wed, 31 Jul 2024 16:57:12 +0900
Subject: [PATCH 12/14] Replace button element with Yorkie UI components
---
components/CodeBlock/CodeBlock.tsx | 2 +-
components/CodeBlock/CodeBlockHeader.tsx | 12 +++++--
components/Icons/Icon.tsx | 2 ++
components/Layout/MobileGnbDropdown.tsx | 6 ++--
.../BasicView/BasicExampleView.tsx | 32 ++++++++---------
components/exampleView/Sidebar/Sidebar.tsx | 36 +++++++++++--------
package-lock.json | 8 ++---
package.json | 2 +-
pages/examples/index.tsx | 2 +-
pages/index.tsx | 2 +-
styles/style.css | 13 +++----
11 files changed, 68 insertions(+), 49 deletions(-)
diff --git a/components/CodeBlock/CodeBlock.tsx b/components/CodeBlock/CodeBlock.tsx
index baf6467..08f1356 100644
--- a/components/CodeBlock/CodeBlock.tsx
+++ b/components/CodeBlock/CodeBlock.tsx
@@ -28,7 +28,7 @@ function CopyButtonBox({ value, timeout = 1000 }: { value: string; timeout?: num
{({ copied, copy }) => (
<>
-
+
{copied && (
diff --git a/components/CodeBlock/CodeBlockHeader.tsx b/components/CodeBlock/CodeBlockHeader.tsx
index bc6d3ad..7f1b224 100644
--- a/components/CodeBlock/CodeBlockHeader.tsx
+++ b/components/CodeBlock/CodeBlockHeader.tsx
@@ -14,13 +14,21 @@ function RightBox({ children }: { children: ReactNode }) {
return {children}
;
}
-function CopyButtonBox({ value, timeout = 1000 }: { value: string; timeout?: number }) {
+function CopyButtonBox({
+ value,
+ size = 'sm',
+ timeout = 1000,
+}: {
+ value: string;
+ size?: 'sm' | 'md' | 'lg';
+ timeout?: number;
+}) {
return (
{({ copied, copy }) => (
<>
-
+
{copied && (
diff --git a/components/Icons/Icon.tsx b/components/Icons/Icon.tsx
index c93ae9f..50eaa02 100644
--- a/components/Icons/Icon.tsx
+++ b/components/Icons/Icon.tsx
@@ -61,6 +61,8 @@ const svgMap = {
checkCircle: ,
scenario: ,
arrow: ,
+ arrowLeft: ,
+ arrowRight: ,
recorder: ,
bulb: ,
twinkle: ,
diff --git a/components/Layout/MobileGnbDropdown.tsx b/components/Layout/MobileGnbDropdown.tsx
index d08fb56..a6f8764 100644
--- a/components/Layout/MobileGnbDropdown.tsx
+++ b/components/Layout/MobileGnbDropdown.tsx
@@ -3,6 +3,7 @@ import { useRouter } from 'next/router';
import Link from 'next/link';
import classNames from 'classnames';
import { Popover, Icon } from 'components';
+import { Button } from 'yorkie-ui-test';
export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) {
const [gnbOpened, setGnbOpened] = useState(false);
@@ -22,11 +23,10 @@ export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) {
return (
-
- Open menu
+
-
+
diff --git a/components/exampleView/BasicView/BasicExampleView.tsx b/components/exampleView/BasicView/BasicExampleView.tsx
index f239c3f..610cbce 100644
--- a/components/exampleView/BasicView/BasicExampleView.tsx
+++ b/components/exampleView/BasicView/BasicExampleView.tsx
@@ -1,8 +1,9 @@
-import { Icon } from '@/components';
-import classNames from 'classnames';
import { useCallback, useEffect, useRef, useState } from 'react';
import yorkie from 'yorkie-js-sdk';
+import classNames from 'classnames';
import UserContent from './UserContent';
+import { Icon } from '@/components';
+import { Button } from 'yorkie-ui-test';
interface DocChangeInfo {
type: 'update' | 'initialize' | 'presence';
@@ -99,25 +100,24 @@ export function BasicExampleView({
{`User ${userNumber}`}
-
- {
- deleteUser(userNumber);
- }}
- >
-
-
-
+
{
+ deleteUser(userNumber);
+ }}
+ ml="600"
+ >
+
+
);
})}
-
+
-
+
{userList.map((userNumber) => {
diff --git a/components/exampleView/Sidebar/Sidebar.tsx b/components/exampleView/Sidebar/Sidebar.tsx
index eb80542..f99b39a 100644
--- a/components/exampleView/Sidebar/Sidebar.tsx
+++ b/components/exampleView/Sidebar/Sidebar.tsx
@@ -1,8 +1,10 @@
import { useState, useEffect } from 'react';
import classNames from 'classnames';
+import Link from 'next/link';
import { Icon } from '@/components';
import { SidebarContextProvider, useSidebarContext } from './Sidebar.context';
import { SidebarTabs, SidebarTabsList, SidebarTabsTab, SidebarTabsPanel } from './SidebarTabs';
+import { Button, Flex } from 'yorkie-ui-test';
export function Sidebar({
defaultOpened = true,
@@ -35,14 +37,19 @@ export function Sidebar({
}
function SidebarTop({ children }: { children?: React.ReactNode }) {
- const ctx = useSidebarContext();
+ const { isOpened, setIsOpened } = useSidebarContext();
return (
{children}
- ctx.setIsOpened((opened) => !opened)}>
-
- Close sidebar
-
+ setIsOpened((opened) => !opened)}
+ ml={isOpened ? 'auto' : '0'}
+ >
+ {isOpened ? : }
+
);
}
@@ -56,19 +63,20 @@ function SidebarBottom({
shareButton?: boolean;
children?: React.ReactNode;
}) {
- const ctx = useSidebarContext();
return (
);
diff --git a/package-lock.json b/package-lock.json
index fe4b436..4be76e5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.11"
+ "yorkie-ui-test": "^0.0.13"
}
},
"node_modules/@ampproject/remapping": {
@@ -10722,9 +10722,9 @@
}
},
"node_modules/yorkie-ui-test": {
- "version": "0.0.11",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.11.tgz",
- "integrity": "sha512-A2tlfV6fNu+lYVXw65RCFqgv4ZKNT63nzIIYeeiTZvdYEgvao2ZrTq0ZJGat3LAElZzBwtGHREQOi/Fq53uWRA==",
+ "version": "0.0.13",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.13.tgz",
+ "integrity": "sha512-BVjzMeWLPzEkwTovItucHRi98PPx9TdNjV99kcwnJPMvURGZaF1litNi9mT1+hIr1wz4sunZphl4rIC+SFSEng==",
"dev": true,
"dependencies": {
"@ark-ui/react": "^3.5.0"
diff --git a/package.json b/package.json
index d54856d..4c71db9 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,6 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.11"
+ "yorkie-ui-test": "^0.0.13"
}
}
diff --git a/pages/examples/index.tsx b/pages/examples/index.tsx
index 0bd1ceb..c6746d0 100644
--- a/pages/examples/index.tsx
+++ b/pages/examples/index.tsx
@@ -78,7 +78,7 @@ const Examples: NextPage = () => {
Examples:
All examples
-
+
diff --git a/pages/index.tsx b/pages/index.tsx
index 662b11a..8b1285d 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -216,7 +216,7 @@ const Home: NextPage = () => {
))}
-
+
Date: Tue, 6 Aug 2024 12:27:04 +0900
Subject: [PATCH 13/14] Modify to use semantic color name
---
components/CodeBlock/CodeBlock.tsx | 2 +-
components/Layout/Header.tsx | 4 ++--
components/exampleView/Sidebar/Sidebar.tsx | 4 ++--
docs/sample.mdx | 2 +-
package-lock.json | 8 ++++----
package.json | 2 +-
pages/404.tsx | 4 ++--
pages/community.tsx | 4 ++--
pages/index.tsx | 10 +++++-----
pages/products.tsx | 2 +-
10 files changed, 21 insertions(+), 21 deletions(-)
diff --git a/components/CodeBlock/CodeBlock.tsx b/components/CodeBlock/CodeBlock.tsx
index 08f1356..5689f52 100644
--- a/components/CodeBlock/CodeBlock.tsx
+++ b/components/CodeBlock/CodeBlock.tsx
@@ -28,7 +28,7 @@ function CopyButtonBox({ value, timeout = 1000 }: { value: string; timeout?: num
{({ copied, copy }) => (
<>
-
+
{copied && (
diff --git a/components/Layout/Header.tsx b/components/Layout/Header.tsx
index bfcd49e..e3dbc95 100644
--- a/components/Layout/Header.tsx
+++ b/components/Layout/Header.tsx
@@ -54,12 +54,12 @@ export function Header(): ReactElement {
{!!isLoggedIn ? (
-
+
Dashboard
) : (
<>
-
+
Sign in
diff --git a/components/exampleView/Sidebar/Sidebar.tsx b/components/exampleView/Sidebar/Sidebar.tsx
index f99b39a..db9f10d 100644
--- a/components/exampleView/Sidebar/Sidebar.tsx
+++ b/components/exampleView/Sidebar/Sidebar.tsx
@@ -66,13 +66,13 @@ function SidebarBottom({
return (
-
+
GitHub
{shareButton && (
-
+
Share to invite other
)}
diff --git a/docs/sample.mdx b/docs/sample.mdx
index 6512b77..3e77966 100644
--- a/docs/sample.mdx
+++ b/docs/sample.mdx
@@ -218,7 +218,7 @@ main();`} language="javascript" withCopyButton/>
-
+
Learn more about the [SUBSUBSECTION]
diff --git a/package-lock.json b/package-lock.json
index 4be76e5..cd7a8db 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.13"
+ "yorkie-ui-test": "^0.0.15"
}
},
"node_modules/@ampproject/remapping": {
@@ -10722,9 +10722,9 @@
}
},
"node_modules/yorkie-ui-test": {
- "version": "0.0.13",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.13.tgz",
- "integrity": "sha512-BVjzMeWLPzEkwTovItucHRi98PPx9TdNjV99kcwnJPMvURGZaF1litNi9mT1+hIr1wz4sunZphl4rIC+SFSEng==",
+ "version": "0.0.15",
+ "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.15.tgz",
+ "integrity": "sha512-hlcaWWP4q5iMWfIAtnIVURHTZSLJ/88gIA07t3NniRAN7xhTzPmVGL2urs05ldpKEoYJHjO3/LfKZu/ZGg4xjA==",
"dev": true,
"dependencies": {
"@ark-ui/react": "^3.5.0"
diff --git a/package.json b/package.json
index 4c71db9..bda5d78 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,6 @@
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
"typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.13"
+ "yorkie-ui-test": "^0.0.15"
}
}
diff --git a/pages/404.tsx b/pages/404.tsx
index 7147980..04cfd23 100644
--- a/pages/404.tsx
+++ b/pages/404.tsx
@@ -31,13 +31,13 @@ const Custom404: NextPage = () => {
Back to home
-
+
Discord
-
+
GitHub
diff --git a/pages/community.tsx b/pages/community.tsx
index a14e488..4eb62ca 100644
--- a/pages/community.tsx
+++ b/pages/community.tsx
@@ -28,13 +28,13 @@ const Community: NextPage = () => {
discussions.
-
+
Discord
-
+
GitHub
diff --git a/pages/index.tsx b/pages/index.tsx
index 8b1285d..ee95e8d 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -104,7 +104,7 @@ const Home: NextPage = () => {
Getting Started
-
+
Read documentation
@@ -271,7 +271,7 @@ const Home: NextPage = () => {
peer's awareness of the data being edited. It is used to track which users are currently
editing the document.
-
+
Learn more about Document and Presence
@@ -290,7 +290,7 @@ const Home: NextPage = () => {
real-time. With Dashboard, users can quickly and easily supervise the data warehouse and ensure that
it is functioning properly.
-
+
Learn more about Dashboard
@@ -309,7 +309,7 @@ const Home: NextPage = () => {
own premises. Whether you want the convenience of cloud or the control of a self-hosted server,
Yorkie has you covered.
-
+
Learn more about Self-Hosted Server
@@ -382,7 +382,7 @@ const Home: NextPage = () => {
zIndex="float"
wrap="wrap"
>
-
+
Contact
diff --git a/pages/products.tsx b/pages/products.tsx
index 9d42ca4..b77bde1 100644
--- a/pages/products.tsx
+++ b/pages/products.tsx
@@ -260,7 +260,7 @@ const Products: NextPage = () => {
asChild
mt={{ base: '800', md: '0' }}
width={{ base: 'full', md: 'fit' }}
- colorPalette="gray"
+ colorPalette="neutral"
position={{ base: 'static', md: 'absolute' }}
top={0}
right={0}
From fb2d91e1ca3f27147b4ec5b21fa5f47059b575cf Mon Sep 17 00:00:00 2001
From: Yourim Cha
Date: Tue, 6 Aug 2024 15:11:04 +0900
Subject: [PATCH 14/14] Apply @yorkie-ui/core package
---
components/CodeBlock/CodeBlock.tsx | 2 +-
components/CodeBlock/CodeBlockHeader.tsx | 2 +-
components/Layout/Header.tsx | 2 +-
components/Layout/MobileGnbDropdown.tsx | 2 +-
.../BasicView/BasicExampleView.tsx | 2 +-
components/exampleView/Sidebar/Sidebar.tsx | 2 +-
package-lock.json | 30 +++++++++----------
package.json | 4 +--
pages/404.tsx | 4 +--
pages/_app.tsx | 2 +-
pages/community.tsx | 2 +-
pages/docs/[[...slug]].tsx | 2 +-
pages/examples/index.tsx | 2 +-
pages/index.tsx | 2 +-
pages/products.tsx | 2 +-
15 files changed, 31 insertions(+), 31 deletions(-)
diff --git a/components/CodeBlock/CodeBlock.tsx b/components/CodeBlock/CodeBlock.tsx
index 5689f52..d307818 100644
--- a/components/CodeBlock/CodeBlock.tsx
+++ b/components/CodeBlock/CodeBlock.tsx
@@ -1,6 +1,6 @@
import { ReactNode } from 'react';
import { CopyButton, Icon } from '@/components';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
import { PrismCodeProps, PrismCode } from './PrismCode';
export function CodeBlock({ withCopyButton, ...restProps }: { withCopyButton?: boolean } & PrismCodeProps) {
diff --git a/components/CodeBlock/CodeBlockHeader.tsx b/components/CodeBlock/CodeBlockHeader.tsx
index 7f1b224..f022a84 100644
--- a/components/CodeBlock/CodeBlockHeader.tsx
+++ b/components/CodeBlock/CodeBlockHeader.tsx
@@ -1,6 +1,6 @@
import { ReactNode } from 'react';
import { CopyButton, Icon } from '@/components';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
export function CodeBlockHeader({ children }: { children: ReactNode }) {
return {children}
;
diff --git a/components/Layout/Header.tsx b/components/Layout/Header.tsx
index e3dbc95..eccbb2e 100644
--- a/components/Layout/Header.tsx
+++ b/components/Layout/Header.tsx
@@ -2,7 +2,7 @@ import { ReactElement, useEffect, useState } from 'react';
import { useRouter } from 'next/router';
import Link from 'next/link';
import { Icon } from '@/components';
-import { Button, Flex } from 'yorkie-ui-test';
+import { Button, Flex } from '@yorkie-ui/core';
import { isValidToken } from '@/utils/isValidToken';
import { MobileGnbDropdown } from './MobileGnbDropdown';
import LogoSVG from '@/public/assets/icons/logo_horizontal_xs.svg';
diff --git a/components/Layout/MobileGnbDropdown.tsx b/components/Layout/MobileGnbDropdown.tsx
index a6f8764..f17e2f1 100644
--- a/components/Layout/MobileGnbDropdown.tsx
+++ b/components/Layout/MobileGnbDropdown.tsx
@@ -3,7 +3,7 @@ import { useRouter } from 'next/router';
import Link from 'next/link';
import classNames from 'classnames';
import { Popover, Icon } from 'components';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) {
const [gnbOpened, setGnbOpened] = useState(false);
diff --git a/components/exampleView/BasicView/BasicExampleView.tsx b/components/exampleView/BasicView/BasicExampleView.tsx
index 610cbce..a09b384 100644
--- a/components/exampleView/BasicView/BasicExampleView.tsx
+++ b/components/exampleView/BasicView/BasicExampleView.tsx
@@ -3,7 +3,7 @@ import yorkie from 'yorkie-js-sdk';
import classNames from 'classnames';
import UserContent from './UserContent';
import { Icon } from '@/components';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
interface DocChangeInfo {
type: 'update' | 'initialize' | 'presence';
diff --git a/components/exampleView/Sidebar/Sidebar.tsx b/components/exampleView/Sidebar/Sidebar.tsx
index db9f10d..0d916d7 100644
--- a/components/exampleView/Sidebar/Sidebar.tsx
+++ b/components/exampleView/Sidebar/Sidebar.tsx
@@ -4,7 +4,7 @@ import Link from 'next/link';
import { Icon } from '@/components';
import { SidebarContextProvider, useSidebarContext } from './Sidebar.context';
import { SidebarTabs, SidebarTabsList, SidebarTabsTab, SidebarTabsPanel } from './SidebarTabs';
-import { Button, Flex } from 'yorkie-ui-test';
+import { Button, Flex } from '@yorkie-ui/core';
export function Sidebar({
defaultOpened = true,
diff --git a/package-lock.json b/package-lock.json
index cd7a8db..b564ab1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -38,11 +38,11 @@
"@types/node": "18.11.5",
"@types/react": "18.0.23",
"@types/react-dom": "18.0.7",
+ "@yorkie-ui/core": "^0.5.33-rc3",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
- "typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.15"
+ "typescript": "4.8.4"
}
},
"node_modules/@ampproject/remapping": {
@@ -3155,6 +3155,19 @@
"dev": true,
"peer": true
},
+ "node_modules/@yorkie-ui/core": {
+ "version": "0.5.33-rc3",
+ "resolved": "https://registry.npmjs.org/@yorkie-ui/core/-/core-0.5.33-rc3.tgz",
+ "integrity": "sha512-dcKjS8qAA8Y3Nujuin3vApfEWks+Z9Ms9UV1gL049G+EFpn2X0G5sWEKD8XkFovudxDKP/1GfMt8aYMzEAueAQ==",
+ "dev": true,
+ "dependencies": {
+ "@ark-ui/react": "^3.5.0"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
+ }
+ },
"node_modules/@zag-js/accordion": {
"version": "0.63.0",
"resolved": "https://registry.npmjs.org/@zag-js/accordion/-/accordion-0.63.0.tgz",
@@ -10721,19 +10734,6 @@
"npm": ">=7.1.0"
}
},
- "node_modules/yorkie-ui-test": {
- "version": "0.0.15",
- "resolved": "https://registry.npmjs.org/yorkie-ui-test/-/yorkie-ui-test-0.0.15.tgz",
- "integrity": "sha512-hlcaWWP4q5iMWfIAtnIVURHTZSLJ/88gIA07t3NniRAN7xhTzPmVGL2urs05ldpKEoYJHjO3/LfKZu/ZGg4xjA==",
- "dev": true,
- "dependencies": {
- "@ark-ui/react": "^3.5.0"
- },
- "peerDependencies": {
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
- }
- },
"node_modules/zod": {
"version": "3.21.4",
"resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
diff --git a/package.json b/package.json
index bda5d78..eb7cc2e 100644
--- a/package.json
+++ b/package.json
@@ -42,10 +42,10 @@
"@types/node": "18.11.5",
"@types/react": "18.0.23",
"@types/react-dom": "18.0.7",
+ "@yorkie-ui/core": "^0.5.33-rc3",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"postcss-path-replace": "^1.0.4",
- "typescript": "4.8.4",
- "yorkie-ui-test": "^0.0.15"
+ "typescript": "4.8.4"
}
}
diff --git a/pages/404.tsx b/pages/404.tsx
index 04cfd23..e5deed2 100644
--- a/pages/404.tsx
+++ b/pages/404.tsx
@@ -3,7 +3,7 @@ import Head from 'next/head';
import Link from 'next/link';
import { Icon, Layout } from '@/components';
import Error404SVG from '@/public/assets/icons/error_404.svg';
-import { Button, Flex } from 'yorkie-ui-test';
+import { Button, Flex } from '@yorkie-ui/core';
const Custom404: NextPage = () => {
return (
@@ -25,7 +25,7 @@ const Custom404: NextPage = () => {
removed or is temporarily unavailable.
-
+
Back to home
diff --git a/pages/_app.tsx b/pages/_app.tsx
index d087131..8e60440 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -3,7 +3,7 @@ import type { AppProps } from 'next/app';
import Head from 'next/head';
import Script from 'next/script';
import '@/styles/style.css';
-import 'yorkie-ui-test/styles.css';
+import '@yorkie-ui/core/styles.css';
import { prefix } from '@/utils/prefix';
import { ThemeOption, useTheme } from '@/hooks/useTheme';
diff --git a/pages/community.tsx b/pages/community.tsx
index 4eb62ca..357a071 100644
--- a/pages/community.tsx
+++ b/pages/community.tsx
@@ -3,7 +3,7 @@ import Head from 'next/head';
import Link from 'next/link';
import { Icon, Layout } from '@/components';
import CommunitySVG from '@/public/assets/icons/community_help.svg';
-import { Button, Flex } from 'yorkie-ui-test';
+import { Button, Flex } from '@yorkie-ui/core';
const Community: NextPage = () => {
return (
diff --git a/pages/docs/[[...slug]].tsx b/pages/docs/[[...slug]].tsx
index c18fc2a..a9f772c 100644
--- a/pages/docs/[[...slug]].tsx
+++ b/pages/docs/[[...slug]].tsx
@@ -20,7 +20,7 @@ import rehypeImageMeta from '@/utils/rehypeImageMeta';
import rehypeWrapContents from '@/utils/rehypeWrapContents';
import rehypeVariables from '@/utils/rehypeVariables';
import { Layout, Navigator, Icon, CodeBlock, CodeBlockHeader, Image } from '@/components';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
import { CustomLink, CustomCodeBlock, Caption, ImageWrap, Alert, Blockquote } from '@/components/docs';
// Custom components/renderers to pass to MDX.
diff --git a/pages/examples/index.tsx b/pages/examples/index.tsx
index c6746d0..9965086 100644
--- a/pages/examples/index.tsx
+++ b/pages/examples/index.tsx
@@ -4,7 +4,7 @@ import ExampleBannerSVG from '@/public/assets/images/banner/img_example_banner.s
import type { NextPage } from 'next';
import Head from 'next/head';
import Link from 'next/link';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
const Examples: NextPage = () => {
return (
diff --git a/pages/index.tsx b/pages/index.tsx
index ee95e8d..3e84116 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -3,7 +3,7 @@ import classNames from 'classnames';
import type { NextPage } from 'next';
import Head from 'next/head';
import Link from 'next/link';
-import { Button, Flex } from 'yorkie-ui-test';
+import { Button, Flex } from '@yorkie-ui/core';
import { Layout, Icon, CodeBlock, CodeBlockHeader, Accordion } from '@/components';
import { ChartMotion, StateSharingMotion, ServerMotion, MainBannerMotion } from '@/components/motions';
import UserGroupSVG from '@/public/assets/icons/icon_service_main_users_group.svg';
diff --git a/pages/products.tsx b/pages/products.tsx
index b77bde1..b0a0a85 100644
--- a/pages/products.tsx
+++ b/pages/products.tsx
@@ -3,7 +3,7 @@ import type { NextPage } from 'next';
import Head from 'next/head';
import Link from 'next/link';
import classNames from 'classnames';
-import { Button } from 'yorkie-ui-test';
+import { Button } from '@yorkie-ui/core';
import { Icon, Layout, CodeBlock, CodeBlockHeader } from '@/components';
import { StateSharingDetailMotion, FlexibleDocumentMotion } from '@/components/motions';
import ProductBannerSVG from '@/public/assets/images/banner/img_product_banner.svg';