├── .npmrc ├── suite.png ├── public └── dhx.ico ├── vite.config.ts ├── .devcontainer └── devcontainer.json ├── src ├── main.jsx ├── App.jsx ├── Content │ ├── Content.jsx │ ├── RightPanel │ │ ├── RightContent.jsx │ │ ├── Chart.jsx │ │ ├── MessageDataview.jsx │ │ ├── Colorpicker.jsx │ │ ├── Form.jsx │ │ └── ButtonsForm.jsx │ └── LeftPanel │ │ ├── Ribbon.jsx │ │ ├── Tree.jsx │ │ ├── LeftContent.jsx │ │ ├── Calendars.jsx │ │ ├── Chart.jsx │ │ ├── TicketsDataview.jsx │ │ ├── Grid.jsx │ │ └── SlidersLayout.jsx ├── MainContainer │ ├── MainContainer.jsx │ ├── Tabbar.jsx │ └── Toolbar.jsx ├── Sidebar │ └── Sidebar.jsx ├── assets │ └── react.svg ├── App.css └── data.js ├── .gitignore ├── index.html ├── .eslintrc.cjs ├── package.json ├── README.md └── yarn.lock /.npmrc: -------------------------------------------------------------------------------- 1 | @dhx:registry=https://npm.dhtmlx.com/ -------------------------------------------------------------------------------- /suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHTMLX/react-suite-demo/HEAD/suite.png -------------------------------------------------------------------------------- /public/dhx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHTMLX/react-suite-demo/HEAD/public/dhx.ico -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "updateContentCommand": "yarn", 3 | "postAttachCommand": "yarn start", 4 | "customizations": { 5 | "codespaces": { 6 | "openFiles": ["src/App.jsx"] 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client"; 3 | import App from "./App.jsx"; 4 | import "./App.css"; 5 | 6 | ReactDOM.createRoot(document.getElementById("root")).render( 7 | 8 | 9 | 10 | ); 11 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import MainContainer from "./MainContainer/MainContainer"; 2 | import Sidebar from "./Sidebar/Sidebar"; 3 | import "@dhx/trial-suite/codebase/suite.min.css"; 4 | 5 | const App = () => { 6 | return ( 7 |
8 | 9 | 10 |
11 | ); 12 | }; 13 | 14 | export default App; 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /src/Content/Content.jsx: -------------------------------------------------------------------------------- 1 | import LeftContentComponent from "./LeftPanel/LeftContent"; 2 | import RightContentComponent from "./RightPanel/RightContent"; 3 | 4 | export default function ContentComponent() { 5 | return ( 6 |
7 | 8 | 9 |
10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /src/MainContainer/MainContainer.jsx: -------------------------------------------------------------------------------- 1 | import ContentComponent from "../Content/Content"; 2 | import TabbarComponent from "./Tabbar"; 3 | import ToolbarComponent from "./Toolbar"; 4 | 5 | export default function MainContainerComponent() { 6 | return ( 7 |
8 | 9 | 10 | 11 |
12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | DHTMLX Suite React 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { browser: true, es2020: true }, 4 | extends: [ 5 | "eslint:recommended", 6 | "plugin:react/recommended", 7 | "plugin:react/jsx-runtime", 8 | "plugin:react-hooks/recommended", 9 | ], 10 | ignorePatterns: ["dist", ".eslintrc.cjs"], 11 | parserOptions: { ecmaVersion: "latest", sourceType: "module" }, 12 | settings: { react: { version: "18.2" } }, 13 | plugins: ["react-refresh"], 14 | rules: { 15 | "react-refresh/only-export-components": [ 16 | "warn", 17 | { allowConstantExport: true }, 18 | ], 19 | }, 20 | }; 21 | -------------------------------------------------------------------------------- /src/Content/RightPanel/RightContent.jsx: -------------------------------------------------------------------------------- 1 | import ButtonsFormComponent from "./ButtonsForm"; 2 | import ChartComponent from "./Chart"; 3 | import ColorpickerComponent from "./Colorpicker"; 4 | import FormComponent from "./Form"; 5 | import MessageDataviewComponent from "./MessageDataview"; 6 | 7 | export default function RightContentComponent() { 8 | return ( 9 |
10 | 11 | 12 | 13 | 14 | 15 |
16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Ribbon.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Ribbon } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function RibbonComponent() { 6 | const { ribbonData } = getData(); 7 | const ribbon_container = useRef(null); 8 | 9 | useEffect(() => { 10 | const ribbon = new Ribbon(ribbon_container.current, { 11 | data: JSON.parse(JSON.stringify(ribbonData)), 12 | css: "dhx_widget--bordered" 13 | }); 14 | 15 | return () => ribbon.destructor(); 16 | }, [ribbonData]); 17 | 18 | return
; 19 | } 20 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Tree.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Tree } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function TreeComponent() { 6 | const { treeData } = getData(); 7 | const tree_container = useRef(null); 8 | 9 | useEffect(() => { 10 | const tree = new Tree(tree_container.current, { 11 | data: JSON.parse(JSON.stringify(treeData)), 12 | checkbox: true, 13 | editable: true, 14 | keyNavigation: true, 15 | dragMode: "both" 16 | }); 17 | 18 | return () => tree?.destructor(); 19 | }, [treeData]); 20 | 21 | return
; 22 | } 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-suite-demo", 3 | "private": true, 4 | "version": "1.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "start": "vite", 8 | "build": "vite build", 9 | "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "@dhx/trial-suite": "^9.2.0", 14 | "react": "^18.2.0", 15 | "react-dom": "^18.2.0" 16 | }, 17 | "devDependencies": { 18 | "@types/react": "^18.2.37", 19 | "@types/react-dom": "^18.2.15", 20 | "@vitejs/plugin-react": "^4.2.0", 21 | "eslint": "^8.53.0", 22 | "eslint-plugin-react": "^7.33.2", 23 | "eslint-plugin-react-hooks": "^4.6.0", 24 | "eslint-plugin-react-refresh": "^0.4.4", 25 | "vite": "^5.0.12" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/LeftContent.jsx: -------------------------------------------------------------------------------- 1 | import ChartComponent from "./Chart"; 2 | import CalendarsComponent from "./Calendars"; 3 | import GridComponent from "./Grid"; 4 | import RibbonComponent from "./Ribbon"; 5 | import SlidersLayoutComponent from "./SlidersLayout"; 6 | import TicketsDataviewComponent from "./TicketsDataview"; 7 | import TreeComponent from "./Tree"; 8 | 9 | export default function LeftContentComponent() { 10 | return ( 11 |
12 | 13 | 14 | 15 |
16 | 17 | 18 |
19 | 20 | 21 |
22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /src/MainContainer/Tabbar.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Tabbar } from "@dhx/trial-suite"; 3 | 4 | export default function TabbarComponent() { 5 | const tabbar_container = useRef(null); 6 | 7 | useEffect(() => { 8 | const tabbar = new Tabbar(tabbar_container.current, { 9 | tabAlign: "center", 10 | disabled: ["reports", "tickets", "users", "applications"], 11 | views: [ 12 | { id: "dashboard", tab: "Dashboard" }, 13 | { id: "reports", tab: "Reports" }, 14 | { id: "tickets", tab: "Tickets" }, 15 | { id: "users", tab: "Users" }, 16 | { id: "applications", tab: "Applications" } 17 | ] 18 | }); 19 | 20 | return () => { 21 | tabbar?.destructor(); 22 | }; 23 | }, []); 24 | 25 | return
; 26 | } 27 | -------------------------------------------------------------------------------- /src/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Sidebar } from "@dhx/trial-suite"; 3 | import { getData } from "../data"; 4 | 5 | export default function SidebarComponent() { 6 | const { sidebarData } = getData(); 7 | 8 | const sidebar_container = useRef(null); 9 | 10 | useEffect(() => { 11 | const sidebar = new Sidebar(sidebar_container.current, { 12 | data: JSON.parse(JSON.stringify(sidebarData)) 13 | }); 14 | 15 | sidebar.events.on("click", (id) => { 16 | if (id === "toggle") { 17 | const toggleItem = sidebar.data.getItem("toggle"); 18 | sidebar.toggle(); 19 | toggleItem.icon = sidebar.config.collapsed ? "mdi mdi-menu" : "mdi mdi-backburger"; 20 | } 21 | }); 22 | 23 | return () => { 24 | sidebar?.destructor(); 25 | }; 26 | }, [sidebarData]); 27 | 28 | return
; 29 | } 30 | -------------------------------------------------------------------------------- /src/Content/RightPanel/Chart.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Chart } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function ChartComponent() { 6 | const chart_container = useRef(null); 7 | 8 | useEffect(() => { 9 | const { chartData } = getData(); 10 | const chart = new Chart(chart_container.current, { 11 | data: chartData, 12 | type: "pie", 13 | series: [ 14 | { 15 | value: "value", 16 | // monochrome: "#0288D1", 17 | color: "color", 18 | opacity: "opacity", 19 | text: "month", 20 | stroke: "var(--dhx-background-primary)", 21 | strokeWidth: 0 22 | } 23 | ], 24 | legend: { 25 | values: { 26 | id: "value", 27 | text: "id", 28 | color: "color" 29 | }, 30 | // monochrome: "#0288D1", 31 | align: "right", 32 | valign: "middle", 33 | width: 30 34 | } 35 | }); 36 | 37 | return () => chart?.destructor(); 38 | }, []); 39 | 40 | return
; 41 | } 42 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Calendars.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Calendar, Timepicker } from "@dhx/trial-suite"; 3 | 4 | export default function CalendarsComponent() { 5 | const week_container = useRef(null); 6 | const timepicker_container = useRef(null); 7 | const year_container = useRef(null); 8 | 9 | useEffect(() => { 10 | const week_calendar = new Calendar(week_container.current, { 11 | weekStart: "monday", 12 | timePicker: true, 13 | range: true, 14 | value: [new Date(), new Date(Date.now() + 200000000)] 15 | }); 16 | 17 | const timepicker = new Timepicker(timepicker_container.current, { 18 | controls: true, 19 | value: new Date() 20 | }); 21 | 22 | const year_calendar = new Calendar(year_container.current, { 23 | timePicker: true, 24 | mode: "year", 25 | value: new Date() 26 | }); 27 | 28 | return () => { 29 | week_calendar?.destructor(); 30 | timepicker?.destructor(); 31 | year_calendar?.destructor(); 32 | }; 33 | }, []); 34 | 35 | return ( 36 |
37 |
38 |
39 |
40 |
41 | ); 42 | } 43 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Chart.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Chart, Layout } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function ChartComponent() { 6 | const { seriesData, hotelsData } = getData(); 7 | const layout_container = useRef(null); 8 | 9 | useEffect(() => { 10 | const layout = new Layout(layout_container.current, { 11 | type: "line", 12 | rows: [ 13 | { 14 | header: "HOTELS", 15 | height: "500px", 16 | padding: 40, 17 | id: "chart", 18 | collapsable: true 19 | } 20 | ] 21 | }); 22 | 23 | const chart = new Chart(null, { 24 | data: hotelsData, 25 | type: "bar", 26 | scales: { 27 | bottom: { 28 | text: "month" 29 | }, 30 | left: { 31 | maxTicks: 10, 32 | max: 100, 33 | min: 0 34 | } 35 | }, 36 | series: seriesData, 37 | legend: { 38 | series: ["A", "B", "all"], 39 | halign: "right", 40 | valign: "top", 41 | itemPadding: 20, 42 | margin: 40 43 | } 44 | }); 45 | 46 | layout.getCell("chart").attach(chart); 47 | 48 | return () => { 49 | layout?.destructor(); 50 | }; 51 | }, [seriesData, hotelsData]); 52 | 53 | return
; 54 | } 55 | -------------------------------------------------------------------------------- /src/Content/RightPanel/MessageDataview.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { DataView } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function MessageDataviewComponent() { 6 | const { messageDataviewData } = getData(); 7 | const dataview_container = useRef(null); 8 | 9 | function template({ mail, name, avatar, status, delivered }) { 10 | return ` 11 |
12 |
13 |
14 |
15 |
Delivered ${delivered}
16 |
${name}
17 | 18 | 19 | Message 20 | 21 |
22 | `; 23 | } 24 | 25 | useEffect(() => { 26 | const dataview = new DataView(dataview_container.current, { 27 | data: messageDataviewData, 28 | template, 29 | itemsInRow: 2, 30 | css: "dhx_dataview_template_b_box" 31 | }); 32 | 33 | return () => dataview?.destructor(); 34 | }, [messageDataviewData]); 35 | 36 | return
; 37 | } 38 | -------------------------------------------------------------------------------- /src/MainContainer/Toolbar.jsx: -------------------------------------------------------------------------------- 1 | import { useRef, useEffect, useState } from "react"; 2 | import { Toolbar, setTheme } from "@dhx/trial-suite"; 3 | import { getData } from "../data"; 4 | 5 | export default function ToolbarComponent() { 6 | const { toolbarData } = getData(); 7 | let [theme, setThemeState] = useState("light"); 8 | let [contrast, setContrast] = useState(false); 9 | let [toolbar, setToolbar] = useState(null); 10 | const toolbar_container = useRef(null); 11 | 12 | useEffect(() => { 13 | const toolbar = new Toolbar(toolbar_container.current, { 14 | data: toolbarData 15 | }); 16 | setToolbar(toolbar); 17 | return () => toolbar?.destructor(); 18 | }, [toolbarData]); 19 | 20 | useEffect(() => { 21 | if (!toolbar) return; 22 | toolbar.events.on("click", (id) => { 23 | switch (id) { 24 | case "theme": { 25 | const checked = !toolbar.data.getItem("theme").checked; 26 | toolbar.data.update("theme", { 27 | checked, 28 | icon: `mdi mdi-${!checked ? "weather-night" : "white-balance-sunny"}` 29 | }); 30 | setThemeState(checked ? "dark" : "light"); 31 | break; 32 | } 33 | case "contrast": { 34 | setContrast(toolbar.data.getItem("contrast").active); 35 | break; 36 | } 37 | } 38 | }); 39 | toolbar.data.parse(toolbarData); 40 | }, [toolbar, toolbarData]); 41 | 42 | useEffect(() => { 43 | setTheme(`${contrast ? "contrast-" : ""}${theme}`); 44 | }, [contrast, theme]); 45 | 46 | return
; 47 | } 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DHTMLX Suite with React Demo 2 | 3 | [![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/) 4 | 5 | ![DHTMLX Suite with React Demo](https://raw.githubusercontent.com/DHTMLX/react-widgets/master/suite.png) 6 | 7 | ## How to start 8 | 9 | ### Online 10 | 11 | [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/DHTMLX/react-suite-demo) 12 | 13 | **Please note**, having clicked on this button, you open the **online demo. Don't worry about paying extra!** With GitHub's free plan, [you get 15 GB of storage and 120 hours of Codespaces use each month](https://docs.github.com/en/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts). This is more than enough to run our demo without any extra costs. 14 | 15 | ### On the local host 16 | 17 | Clone the repository or download files. 18 | 19 | ``` 20 | yarn 21 | yarn start 22 | ``` 23 | 24 | or 25 | 26 | ``` 27 | npm install 28 | npm run start 29 | ``` 30 | 31 | ## Useful links 32 | 33 | - [More demos about the DHTMLX Suite functionality](https://snippet.dhtmlx.com/1eh4ks4f) 34 | - [Technical support ](https://forum.dhtmlx.com/c/suite) 35 | - [Documentation](https://docs.dhtmlx.com/suite/) 36 | 37 | ## Follow us 38 | 39 | - Star our GitHub repo :star: 40 | - Watch our tutorials on [YouTube](https://www.youtube.com/user/dhtmlx/videos) :eyes: 41 | - Read us on [Medium](https://dhtmlx.medium.com) :newspaper: 42 | - Follow us on [Twitter](https://twitter.com/dhtmlx) :feet: 43 | - Like our page on [Facebook](https://www.facebook.com/dhtmlx/) :thumbsup: 44 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/TicketsDataview.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { DataView } from "@dhx/trial-suite"; 3 | import "@dhx/trial-suite/codebase/suite.min.css"; 4 | import { getData } from "../../data"; 5 | 6 | export default function TicketsDataviewComponent() { 7 | const { ticketsDataviewData } = getData(); 8 | const dataview_container = useRef(null); 9 | 10 | const template = ({ title, text, type, avatar, name, comments, time }) => ` 11 |
12 |
13 |
${type}
14 |
15 |
${title}
16 |
${text}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
${time}
24 |
${name}
25 |
26 |
27 |
${comments} 28 |
29 |
30 |
31 | `; 32 | 33 | useEffect(() => { 34 | const dataview = new DataView(dataview_container.current, { 35 | data: ticketsDataviewData, 36 | template, 37 | itemsInRow: 2, 38 | css: "dhx_dataview_template_a_box" 39 | }); 40 | 41 | return () => dataview?.destructor(); 42 | }, [ticketsDataviewData]); 43 | 44 | return
; 45 | } 46 | -------------------------------------------------------------------------------- /src/Content/RightPanel/Colorpicker.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Colorpicker, awaitRedraw } from "@dhx/trial-suite"; 3 | 4 | export default function ColorpickerComponent() { 5 | const colorpicker_container = useRef(null); 6 | 7 | const hexToHSLChema = (HEX) => { 8 | let r = 0, 9 | g = 0, 10 | b = 0; 11 | 12 | if (HEX.length == 4) { 13 | r = "0x" + HEX[1] + HEX[1]; 14 | g = "0x" + HEX[2] + HEX[2]; 15 | b = "0x" + HEX[3] + HEX[3]; 16 | } else if (HEX.length == 7) { 17 | r = "0x" + HEX[1] + HEX[2]; 18 | g = "0x" + HEX[3] + HEX[4]; 19 | b = "0x" + HEX[5] + HEX[6]; 20 | } 21 | 22 | // Then to HSL 23 | r /= 255; 24 | g /= 255; 25 | b /= 255; 26 | let cmin = Math.min(r, g, b), 27 | cmax = Math.max(r, g, b), 28 | delta = cmax - cmin, 29 | h = 0, 30 | s = 0, 31 | l = 0; 32 | 33 | if (delta == 0) h = 0; 34 | else if (cmax == r) h = ((g - b) / delta) % 6; 35 | else if (cmax == g) h = (b - r) / delta + 2; 36 | else h = (r - g) / delta + 4; 37 | 38 | h = Math.round(h * 60); 39 | 40 | if (h < 0) h += 360; 41 | 42 | l = (cmax + cmin) / 2; 43 | s = delta == 0 ? 0 : delta / (1 - Math.abs(2 * l - 1)); 44 | s = +(s * 100).toFixed(1); 45 | l = +(l * 100).toFixed(1); 46 | 47 | return { 48 | h, 49 | s, 50 | l 51 | }; 52 | }; 53 | 54 | useEffect(() => { 55 | const colorpicker = new Colorpicker(colorpicker_container.current, { 56 | mode: "picker" 57 | }); 58 | 59 | colorpicker.setValue("#0288d1"); 60 | colorpicker.events.on("change", (hex) => { 61 | const { h, s, l } = hexToHSLChema(hex); 62 | const el = document.documentElement; 63 | 64 | el.style.setProperty("--dhx-h-primary", h); 65 | el.style.setProperty("--dhx-s-primary", s + "%"); 66 | el.style.setProperty("--dhx-l-primary", l + "%"); 67 | }); 68 | 69 | return () => awaitRedraw().then(() => colorpicker?.destructor()); 70 | }, []); 71 | 72 | return ( 73 |
77 | ); 78 | } 79 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Grid.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Grid, Pagination } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function GridComponent() { 6 | const { gridData } = getData(); 7 | const grid_container = useRef(null); 8 | const pagination_container = useRef(null); 9 | 10 | useEffect(() => { 11 | const gridConfig = { 12 | data: gridData, 13 | autoWidth: true, 14 | columns: [ 15 | { 16 | gravity: 2, 17 | id: "time", 18 | header: [{ text: "Time", align: "center" }], 19 | type: "date", 20 | dateFormat: "%M %d, %H:%i" 21 | }, 22 | { id: "nights", header: [{ text: "Nights" }] }, 23 | { 24 | id: "price", 25 | gravity: 1, 26 | header: [{ text: "Price" }], 27 | type: "number", 28 | numberMask: { 29 | prefix: "$" 30 | } 31 | }, 32 | { 33 | gravity: 3, 34 | id: "contactPerson", 35 | header: [{ text: "Contact Person" }] 36 | }, 37 | { 38 | gravity: 4, 39 | id: "contactEmail", 40 | header: [{ text: "Contact Email" }], 41 | htmlEnable: true, 42 | template: (text) => { 43 | return `${text}`; 44 | } 45 | }, 46 | { 47 | gravity: 2, 48 | id: "totalCost", 49 | header: [{ text: "Total Cost" }], 50 | type: "number", 51 | numberMask: { 52 | prefix: "$" 53 | } 54 | } 55 | ], 56 | css: "grid", 57 | multiselection: true, 58 | selection: "complex", 59 | editable: true 60 | }; 61 | 62 | const grid = new Grid(grid_container.current, gridConfig); 63 | const pagination = new Pagination(pagination_container.current, { 64 | pageSize: 20, 65 | data: grid.data 66 | }); 67 | 68 | return () => { 69 | grid?.destructor(); 70 | pagination?.destructor(); 71 | }; 72 | }, [gridData]); 73 | 74 | return ( 75 |
76 |
77 |
78 |
79 | ); 80 | } 81 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/SlidersLayout.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Layout, Slider } from "@dhx/trial-suite"; 3 | 4 | export default function SlidersLayoutComponent() { 5 | const layout_container = useRef(null); 6 | 7 | const tickTemplate = (value) => `${value}`; 8 | 9 | useEffect(() => { 10 | const layout = new Layout(layout_container.current, { 11 | type: "none", 12 | height: "fit-content", 13 | cols: [ 14 | { 15 | height: "content", 16 | align: "between", 17 | rows: [ 18 | { 19 | padding: 10, 20 | height: "content", 21 | id: "slider1" 22 | }, 23 | { 24 | padding: 10, 25 | height: "content", 26 | id: "slider2" 27 | }, 28 | { 29 | padding: 10, 30 | height: "content", 31 | id: "slider3" 32 | }, 33 | { 34 | padding: 10, 35 | height: "content", 36 | id: "slider4" 37 | } 38 | ] 39 | }, 40 | { 41 | padding: "10px 20px", 42 | height: "260px", 43 | width: "20%", 44 | id: "slider5" 45 | } 46 | ] 47 | }); 48 | 49 | const slider1 = new Slider(null, { 50 | min: 0, 51 | max: 40, 52 | step: 1 53 | }); 54 | 55 | const slider2 = new Slider(null, { 56 | min: 0, 57 | max: 40, 58 | range: true, 59 | value: [10, 20], 60 | step: 1 61 | }); 62 | 63 | const slider3 = new Slider(null, { 64 | min: 0, 65 | max: 40, 66 | step: 1, 67 | range: true, 68 | value: [0, 20], 69 | tick: 1, 70 | majorTick: 5, 71 | tickTemplate 72 | }); 73 | 74 | const slider4 = new Slider(null, { 75 | min: 0, 76 | max: 40, 77 | step: 10, 78 | range: true, 79 | value: [0, 20] 80 | }); 81 | 82 | const slider5 = new Slider(null, { 83 | mode: "vertical", 84 | range: true, 85 | min: 0, 86 | max: 40, 87 | step: 2, 88 | tick: 1, 89 | majorTick: 5, 90 | value: [0, 20], 91 | tickTemplate 92 | }); 93 | 94 | // Attached all sliders in layout, which is main layout's cell 95 | layout.getCell("slider1").attach(slider1); 96 | layout.getCell("slider2").attach(slider2); 97 | layout.getCell("slider3").attach(slider3); 98 | layout.getCell("slider4").attach(slider4); 99 | layout.getCell("slider5").attach(slider5); 100 | 101 | return () => layout?.destructor(); 102 | }, []); 103 | 104 | return
; 105 | } 106 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Content/RightPanel/Form.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Form, awaitRedraw } from "@dhx/trial-suite"; 3 | import { getData } from "../../data"; 4 | 5 | export default function FormComponent() { 6 | const { country } = getData(); 7 | const form_container = useRef(null); 8 | 9 | useEffect(() => { 10 | const form = new Form(form_container.current, { 11 | padding: 40, 12 | width: "auto", 13 | rows: [ 14 | { 15 | cols: [ 16 | { 17 | width: "48%", 18 | name: "name", 19 | type: "input", 20 | label: "Name", 21 | placeholder: "Type text", 22 | required: true 23 | }, 24 | { 25 | type: "spacer" 26 | }, 27 | { 28 | width: "48%", 29 | name: "surname", 30 | type: "input", 31 | label: "Surname", 32 | placeholder: "Type text", 33 | required: true 34 | } 35 | ] 36 | }, 37 | { 38 | name: "country", 39 | type: "combo", 40 | label: "Country", 41 | placeholder: "Click to select", 42 | multiselection: true, 43 | value: ["austria", "estonia"], 44 | data: country 45 | }, 46 | { 47 | name: "birth", 48 | type: "datepicker", 49 | label: "Date of Birth", 50 | placeholder: "Type text", 51 | value: new Date() 52 | }, 53 | { 54 | name: "career", 55 | type: "input", 56 | label: "Career objective", 57 | placeholder: "Type text", 58 | helpMessage: "Help information" 59 | }, 60 | { 61 | name: "motivation", 62 | type: "textarea", 63 | label: "Motivation", 64 | placeholder: "Type text here" 65 | }, 66 | { 67 | name: "language", 68 | type: "radioGroup", 69 | label: "Language level", 70 | value: "1", 71 | options: { 72 | cols: [ 73 | { 74 | type: "radioButton", 75 | text: "Elementary", 76 | value: "1" 77 | }, 78 | { 79 | type: "radioButton", 80 | text: "Intermediate", 81 | value: "2" 82 | }, 83 | { 84 | type: "radioButton", 85 | text: "Advanced", 86 | value: "2" 87 | } 88 | ] 89 | } 90 | }, 91 | { 92 | name: "backgroundColor", 93 | type: "colorpicker", 94 | label: "Background color", 95 | placeholder: "Click to change" 96 | }, 97 | { 98 | name: "offices", 99 | type: "combo", 100 | label: "Offices", 101 | placeholder: "You can select several offices", 102 | multiselection: true, 103 | data: country 104 | }, 105 | { 106 | name: "attachDocument", 107 | type: "simpleVault", 108 | label: "Attach document" 109 | }, 110 | { 111 | name: "howToContact", 112 | type: "checkboxGroup", 113 | label: "How to contact you", 114 | options: { 115 | cols: [ 116 | { 117 | id: "1", 118 | type: "checkbox", 119 | text: "Phone", 120 | checked: true 121 | }, 122 | { 123 | id: "2", 124 | type: "checkbox", 125 | text: "Mail" 126 | }, 127 | { 128 | id: "3", 129 | type: "checkbox", 130 | text: "Messenger" 131 | }, 132 | { 133 | id: "4", 134 | type: "checkbox", 135 | text: "Your option" 136 | } 137 | ] 138 | } 139 | } 140 | ] 141 | }); 142 | 143 | return () => awaitRedraw().then(() => form?.destructor()); 144 | }, [country]); 145 | 146 | return
; 147 | } 148 | -------------------------------------------------------------------------------- /src/Content/RightPanel/ButtonsForm.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Form } from "@dhx/trial-suite"; 3 | 4 | export default function ButtonsFormComponent() { 5 | const buttons_form_container = useRef(null); 6 | 7 | useEffect(() => { 8 | const form = new Form(buttons_form_container.current, { 9 | height: "content", 10 | padding: 40, 11 | align: "between", 12 | rows: [ 13 | { 14 | align: "between", 15 | cols: [ 16 | { 17 | padding: 5, 18 | width: 140, 19 | type: "button", 20 | text: "Primary", 21 | color: "primary", 22 | icon: "dxi dxi-plus", 23 | full: true, 24 | size: "small" 25 | }, 26 | { 27 | padding: 5, 28 | width: 140, 29 | type: "button", 30 | text: "Primary", 31 | color: "primary", 32 | full: true, 33 | view: "link", 34 | size: "small" 35 | }, 36 | { 37 | padding: 5, 38 | width: 140, 39 | type: "button", 40 | text: "Primary", 41 | color: "primary", 42 | full: true, 43 | disabled: true, 44 | size: "small" 45 | } 46 | ] 47 | }, 48 | { 49 | align: "between", 50 | cols: [ 51 | { 52 | padding: 5, 53 | width: 140, 54 | type: "button", 55 | text: "Secondary", 56 | color: "secondary", 57 | icon: "dxi dxi-plus", 58 | full: true, 59 | size: "small" 60 | }, 61 | { 62 | padding: 5, 63 | width: 140, 64 | type: "button", 65 | text: "Secondary", 66 | color: "secondary", 67 | full: true, 68 | size: "small", 69 | view: "link" 70 | }, 71 | { 72 | padding: 5, 73 | width: 140, 74 | type: "button", 75 | text: "Secondary", 76 | color: "secondary", 77 | full: true, 78 | size: "small", 79 | disabled: true 80 | } 81 | ] 82 | }, 83 | { 84 | align: "between", 85 | cols: [ 86 | { 87 | padding: 5, 88 | width: 140, 89 | type: "button", 90 | text: "Danger", 91 | color: "danger", 92 | icon: "dxi dxi-plus", 93 | full: true, 94 | size: "small" 95 | }, 96 | { 97 | padding: 5, 98 | width: 140, 99 | type: "button", 100 | text: "Danger", 101 | color: "danger", 102 | full: true, 103 | size: "small", 104 | view: "link" 105 | }, 106 | { 107 | padding: 5, 108 | width: 140, 109 | type: "button", 110 | text: "Danger", 111 | color: "danger", 112 | full: true, 113 | size: "small", 114 | disabled: true 115 | } 116 | ] 117 | }, 118 | { 119 | align: "between", 120 | cols: [ 121 | { 122 | padding: 5, 123 | width: 140, 124 | type: "button", 125 | text: "Success", 126 | color: "success", 127 | icon: "dxi dxi-plus", 128 | full: true, 129 | size: "small" 130 | }, 131 | { 132 | padding: 5, 133 | width: 140, 134 | type: "button", 135 | text: "Success", 136 | color: "success", 137 | full: true, 138 | size: "small", 139 | view: "link" 140 | }, 141 | { 142 | padding: 5, 143 | width: 140, 144 | type: "button", 145 | text: "Success", 146 | color: "success", 147 | full: true, 148 | size: "small", 149 | disabled: true 150 | } 151 | ] 152 | } 153 | ] 154 | }); 155 | 156 | return () => form?.destructor(); 157 | }, []); 158 | 159 | return
; 160 | } 161 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | main { 6 | height: 100%; 7 | width: 100%; 8 | display: flex; 9 | } 10 | 11 | #root { 12 | height: 100vh; 13 | width: 100%; 14 | } 15 | 16 | body { 17 | margin: 0; 18 | height: 100vh; 19 | width: 100vw; 20 | } 21 | 22 | #app { 23 | height: 100%; 24 | width: 100%; 25 | } 26 | 27 | .container { 28 | display: flex; 29 | flex-grow: 1; 30 | overflow: hidden; 31 | } 32 | 33 | .flex-cols { 34 | display: flex; 35 | flex-direction: column; 36 | } 37 | 38 | .grow { 39 | flex-grow: 1; 40 | } 41 | 42 | /* Grid styling */ 43 | .contact_email { 44 | color: var(--dhx-color-primary); 45 | } 46 | 47 | .grid .dhx_grid-content { 48 | border: none; 49 | } 50 | 51 | /* Tickets dataview styling */ 52 | .dhx_dataview_template_a { 53 | display: -webkit-box; 54 | display: -ms-flexbox; 55 | display: flex; 56 | -webkit-flex-direction: column; 57 | -ms-flex-direction: column; 58 | flex-direction: column; 59 | -webkit-justify-content: space-between; 60 | -ms-flex-pack: justify; 61 | justify-content: space-between; 62 | height: 100%; 63 | } 64 | 65 | .dhx_dataview_template_a_box { 66 | background-color: var(--dhx-background-secondary) !important; 67 | } 68 | 69 | .dhx_dataview_template_a_box .dhx_dataview-item__inner-html { 70 | display: -webkit-box; 71 | display: -ms-flexbox; 72 | display: flex; 73 | -webkit-box-orient: vertical; 74 | -webkit-box-direction: normal; 75 | -ms-flex-direction: column; 76 | flex-direction: column; 77 | -webkit-box-pack: justify; 78 | -ms-flex-pack: justify; 79 | justify-content: space-between; 80 | height: 100%; 81 | } 82 | 83 | .dhx_dataview_template_a_box .dhx_dataview-item { 84 | padding: 20px; 85 | -webkit-box-sizing: border-box; 86 | box-sizing: border-box; 87 | background-color: var(--dhx-background-primary); 88 | border: var(--dhx-border) !important; 89 | margin-bottom: 8px !important; 90 | margin-left: 8px !important; 91 | } 92 | 93 | .dhx_dataview_template_a_box .dhx_dataview-item:first-child { 94 | margin-left: 0 !important; 95 | } 96 | 97 | .dhx_dataview_template_a__head { 98 | display: -webkit-box; 99 | display: -ms-flexbox; 100 | display: flex; 101 | } 102 | 103 | .dhx_dataview_template_a__type { 104 | color: var(--dhx-font-color-contrast); 105 | text-align: center; 106 | text-transform: capitalize; 107 | width: 55px; 108 | height: 20px; 109 | border-radius: 2px; 110 | } 111 | 112 | .dhx_dataview_template_a__type--major { 113 | background-color: var(--dhx-color-danger); 114 | } 115 | 116 | .dhx_dataview_template_a__type--minor { 117 | background-color: var(--dhx-color-success); 118 | } 119 | 120 | .dhx_dataview_template_a__type--normal { 121 | background-color: var(--dhx-color-primary); 122 | } 123 | 124 | .dhx_dataview_template_a__content { 125 | padding-left: 16px; 126 | width: 80%; 127 | } 128 | 129 | .dhx_dataview_template_a__title { 130 | font: var(--dhx-font-family); 131 | font-weight: var(--dhx-font-weight-medium); 132 | padding-bottom: 8px; 133 | } 134 | 135 | .dhx_dataview_template_a__comment { 136 | display: -webkit-box; 137 | max-height: 40px; 138 | text-overflow: ellipsis; 139 | overflow: hidden; 140 | -webkit-box-orient: vertical; 141 | -webkit-line-clamp: 2; 142 | } 143 | 144 | .dhx_dataview_template_a__body { 145 | display: -webkit-box; 146 | display: -ms-flexbox; 147 | display: flex; 148 | -webkit-box-pack: justify; 149 | -ms-flex-pack: justify; 150 | justify-content: space-between; 151 | margin-top: 20px; 152 | } 153 | 154 | .dhx_dataview_template_a__person { 155 | display: -webkit-box; 156 | display: -ms-flexbox; 157 | display: flex; 158 | } 159 | 160 | .dhx_dataview_template_a__avatar { 161 | width: 40px; 162 | height: 40px; 163 | margin-left: 15px; 164 | margin-right: 16px; 165 | border-radius: 20px; 166 | background: center center/cover no-repeat #f7f7f7; 167 | } 168 | 169 | .dhx_dataview_template_a__name { 170 | color: var(--dhx-font-color-secondary); 171 | } 172 | 173 | .dhx_dataview_template_a__comments { 174 | display: -webkit-box; 175 | display: -ms-flexbox; 176 | display: flex; 177 | -webkit-box-align: end; 178 | -ms-flex-align: end; 179 | align-items: flex-end; 180 | line-height: 20px; 181 | } 182 | 183 | .dhx_dataview_template_a__comments .mdi:before { 184 | position: relative; 185 | top: 4px; 186 | color: var(--dhx-font-color-secondary); 187 | font-size: 20px; 188 | margin-left: 6px; 189 | } 190 | 191 | /* Message dataview styling */ 192 | .dhx_dataview_template_b_box { 193 | background-color: var(--dhx-background-secondary) !important; 194 | } 195 | 196 | .dhx_dataview_template_b_box .dhx_dataview-item { 197 | padding: 0; 198 | border: var(--dhx-border) !important; 199 | border-radius: 6px; 200 | overflow: hidden; 201 | background-color: var(--dhx-background-primary); 202 | margin-bottom: 8px !important; 203 | margin-left: 8px !important; 204 | } 205 | 206 | .dhx_dataview_template_b_box .dhx_dataview-item:first-child { 207 | margin-left: 0 !important; 208 | } 209 | 210 | .dhx_dataview_template_b { 211 | display: -webkit-box; 212 | display: -ms-flexbox; 213 | display: flex; 214 | -webkit-box-orient: vertical; 215 | -webkit-box-direction: normal; 216 | -ms-flex-direction: column; 217 | flex-direction: column; 218 | -webkit-box-align: center; 219 | -ms-flex-align: center; 220 | align-items: center; 221 | width: 100%; 222 | height: 200px; 223 | } 224 | 225 | .dhx_dataview_template_b__avatar { 226 | position: relative; 227 | display: -webkit-box; 228 | display: -ms-flexbox; 229 | display: flex; 230 | margin-top: 16px; 231 | width: 80px; 232 | height: 80px; 233 | border-radius: 50%; 234 | background-size: 80px 80px; 235 | } 236 | 237 | .dhx_dataview_template_b__status { 238 | position: absolute; 239 | bottom: 1px; 240 | right: 9px; 241 | width: 12px; 242 | height: 12px; 243 | border-radius: 50%; 244 | border: 1px solid var(--dhx-color-white); 245 | background-color: var(--dhx-color-success); 246 | } 247 | 248 | .dhx_dataview_template_b__status.dhx_dataview_template_b__status--offline { 249 | display: none; 250 | } 251 | 252 | .dhx_dataview_template_b__title, 253 | .dhx_dataview_template_b__name, 254 | .dhx_dataview_template_b__message-label { 255 | font: var(--dhx-font-family); 256 | white-space: nowrap; 257 | overflow: hidden; 258 | text-overflow: ellipsis; 259 | } 260 | 261 | .dhx_dataview_template_b__title { 262 | font-weight: var(--dhx-font-weight-medium); 263 | margin-top: 8px; 264 | } 265 | 266 | .dhx_dataview_template_b__message { 267 | border-top: 1px solid var(--dhx-border-color); 268 | display: -webkit-box; 269 | display: -ms-flexbox; 270 | display: flex; 271 | height: 44px; 272 | width: 100%; 273 | -webkit-box-align: center; 274 | -ms-flex-align: center; 275 | align-items: center; 276 | -webkit-box-pack: center; 277 | -ms-flex-pack: center; 278 | justify-content: center; 279 | text-decoration: none; 280 | position: absolute; 281 | left: 0; 282 | bottom: 0; 283 | } 284 | 285 | .dhx_dataview_template_b__message-icon { 286 | margin-right: 4px; 287 | font-size: 16px; 288 | color: var(--dhx-color-primary); 289 | } 290 | 291 | .dhx_dataview_template_b__message-label { 292 | color: var(--dhx-color-primary); 293 | font-weight: 500; 294 | } 295 | 296 | /* Layout cell styling */ 297 | .dhx_layout_cell--overflow-auto { 298 | overflow: auto; 299 | } 300 | 301 | .dhx_layout_cell--border-none { 302 | border: none !important; 303 | } 304 | 305 | .dhx_layout_cell-align_content--center { 306 | display: flex; 307 | align-items: center; 308 | justify-content: center; 309 | } 310 | 311 | /* Colorpicker cell styling */ 312 | .dhx_layout_colorpicker_cell { 313 | display: flex; 314 | justify-content: center; 315 | padding: 40px 0; 316 | background-color: var(--dhx-background-primary); 317 | } 318 | 319 | /* Calendar/Timepicker cell styling */ 320 | .dhx_layout_calendar_cell { 321 | display: flex; 322 | justify-content: center; 323 | align-items: center; 324 | min-width: 248px; 325 | } 326 | 327 | /* Sidebar custom elements styling */ 328 | .dhx_navbar--vertical { 329 | overflow: hidden; 330 | } 331 | 332 | .user-info_container { 333 | padding-top: 8px; 334 | display: flex; 335 | flex-direction: column; 336 | justify-content: flex-start; 337 | align-items: center; 338 | } 339 | 340 | .user-info_avatar { 341 | height: 40px; 342 | width: 40px; 343 | border-radius: 100%; 344 | } 345 | 346 | .user-info_title { 347 | font-family: Roboto; 348 | font-style: normal; 349 | font-weight: 500; 350 | font-size: 16px; 351 | line-height: 24px; 352 | margin-top: 8px; 353 | } 354 | 355 | .user-info_contact { 356 | font-family: Roboto; 357 | font-style: normal; 358 | font-weight: normal; 359 | font-size: 14px; 360 | line-height: 20px; 361 | margin-bottom: 28px; 362 | } 363 | 364 | .dhx_sidebar--minimized .user-info_avatar { 365 | height: 30px; 366 | width: 30px; 367 | } 368 | 369 | .dhx_sidebar--minimized .user-info_title, 370 | .dhx_sidebar--minimized .user-info_contact { 371 | visibility: hidden; 372 | } 373 | 374 | .dhx-container, 375 | .dhx-container__widget { 376 | height: 100%; 377 | } 378 | 379 | .wrapper-main { 380 | flex-grow: 1; 381 | overflow: auto !important; 382 | padding: 12px; 383 | gap: 12px; 384 | } 385 | 386 | .grid_container-wrapper { 387 | display: flex; 388 | flex-direction: column; 389 | border: var(--dhx-border); 390 | max-width: 800px; 391 | } 392 | 393 | .grid_widget { 394 | min-height: 843px; 395 | } 396 | 397 | .col-wrap { 398 | height: fit-content; 399 | gap: 12px; 400 | } 401 | 402 | .row-wrap { 403 | gap: 12px; 404 | justify-content: space-between; 405 | } 406 | 407 | .content_left { 408 | max-width: 800px; 409 | } 410 | 411 | .ribbon_container { 412 | padding: 50px; 413 | background: var(--dhx-background-primary); 414 | } 415 | 416 | .content_right { 417 | width: 600px; 418 | flex-shrink: 0; 419 | } 420 | 421 | .tabbar_widget { 422 | border-top: 1px solid rgb(226, 225, 225); 423 | } 424 | 425 | .tree_widget { 426 | padding: 10px; 427 | background: white; 428 | width: 50%; 429 | flex-grow: 1; 430 | border: var(--dhx-border); 431 | } 432 | 433 | .sliders_widget { 434 | padding: 10px; 435 | background: white; 436 | width: 50%; 437 | flex-grow: 1; 438 | border: var(--dhx-border); 439 | } 440 | -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- 1 | export function getData() { 2 | 3 | const sidebarData = [ 4 | { 5 | id: "toggle", 6 | css: "toggle-button", 7 | icon: "mdi mdi-backburger", 8 | }, 9 | { 10 | type: "customHTML", 11 | id: "userInfo", 12 | css: "user-info_item", 13 | html: 14 | "", 23 | }, 24 | { 25 | type: "separator", 26 | }, 27 | { 28 | id: "today", 29 | value: "Today", 30 | icon: "mdi mdi-calendar-star", 31 | }, 32 | { 33 | id: "overdue", 34 | value: "Overdue", 35 | icon: "mdi mdi-calendar-start", 36 | }, 37 | { 38 | id: "unscheduled", 39 | value: "Unscheduled", 40 | icon: "mdi mdi-calendar-blank", 41 | }, 42 | { 43 | type: "separator", 44 | }, 45 | { 46 | id: "projects", 47 | value: "Projects", 48 | icon: "mdi mdi-folder-star-outline", 49 | items: [ 50 | { 51 | id: "project1", 52 | value: "Project 1", 53 | icon: "mdi mdi-plus", 54 | }, 55 | { 56 | id: "project2", 57 | value: "Project 2", 58 | icon: "mdi mdi-plus", 59 | }, 60 | { 61 | id: "project3", 62 | value: "Project 3", 63 | icon: "mdi mdi-plus", 64 | }, 65 | ], 66 | }, 67 | { 68 | type: "separator", 69 | }, 70 | { 71 | id: "assigned", 72 | value: "Assigned", 73 | icon: "mdi mdi-account-search-outline", 74 | items: [ 75 | { 76 | id: "person1", 77 | value: "Person 1", 78 | icon: "mdi mdi-plus", 79 | }, 80 | { 81 | id: "person2", 82 | value: "Person 2", 83 | icon: "mdi mdi-plus", 84 | }, 85 | { 86 | id: "Person3", 87 | value: "person 3", 88 | icon: "mdi mdi-plus", 89 | }, 90 | ], 91 | }, 92 | { 93 | type: "separator", 94 | }, 95 | { 96 | type: "spacer", 97 | }, 98 | { 99 | type: "separator", 100 | }, 101 | { 102 | id: "notification", 103 | value: "Notification", 104 | count: 18, 105 | icon: "mdi mdi-bell-outline", 106 | countColor: "#D60000", 107 | }, 108 | { 109 | id: "configuration", 110 | value: "Configuration", 111 | icon: "mdi mdi-tune", 112 | items: [ 113 | { 114 | id: "myAccount", 115 | value: "My Account", 116 | icon: "mdi mdi-account-settings", 117 | }, 118 | { 119 | id: "general", 120 | value: "General Configuration", 121 | icon: "mdi mdi-tune", 122 | }, 123 | ], 124 | }, 125 | ]; 126 | 127 | const toolbarData = [ 128 | { 129 | id: "topMenuButton", 130 | type: "button", 131 | value: "Toolbar button", 132 | view: "flat", 133 | icon: "dxi dxi-plus", 134 | size: "small", 135 | circle: true, 136 | color: "secondary", 137 | }, 138 | 139 | { 140 | type: "spacer", 141 | }, 142 | { 143 | id: "theme", 144 | circle: true, 145 | icon: "mdi mdi-weather-night", 146 | checked: false, 147 | }, 148 | 149 | { 150 | id: "contrast", 151 | twoState: true, 152 | active: false, 153 | icon: "mdi mdi-contrast-circle", 154 | }, 155 | { 156 | id: "avatar", 157 | type: "imageButton", 158 | src: "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_63.jpg", 159 | count: 15, 160 | }, 161 | ]; 162 | 163 | const gridData = [ 164 | { 165 | time: new Date("Jan 28, 2021"), 166 | nights: 7, 167 | price: 68, 168 | contactPerson: "Yoshio Slater", 169 | contactEmail: "phasellus.fermentum@yahoo.net", 170 | }, 171 | { 172 | time: new Date("Apr 13, 2021"), 173 | nights: 6, 174 | price: 66, 175 | contactPerson: "Christopher Kirk", 176 | contactEmail: "posuere.vulputate.lacus@outlook.org", 177 | }, 178 | { 179 | time: new Date("Jan 31, 2021"), 180 | nights: 15, 181 | price: 64, 182 | contactPerson: "Jana Meyers", 183 | contactEmail: "mollis@aol.edu", 184 | }, 185 | { 186 | time: new Date("Feb 22, 2021"), 187 | nights: 11, 188 | price: 57, 189 | contactPerson: "Sawyer Smith", 190 | contactEmail: "lorem.ipsum.sodales@icloud.org", 191 | }, 192 | { 193 | time: new Date("Feb 3, 2021"), 194 | nights: 10, 195 | price: 68, 196 | contactPerson: "Gabriel Gates", 197 | contactEmail: "sollicitudin.a@icloud.com", 198 | }, 199 | { 200 | time: new Date("Apr 6, 2021"), 201 | nights: 7, 202 | price: 67, 203 | contactPerson: "Emily Reynolds", 204 | contactEmail: "suspendisse.aliquet@outlook.edu", 205 | }, 206 | { 207 | time: new Date("May 22, 2021"), 208 | nights: 11, 209 | price: 70, 210 | contactPerson: "Xavier Middleton", 211 | contactEmail: "eu@icloud.net", 212 | }, 213 | { 214 | time: new Date("Jul 9, 2021"), 215 | nights: 11, 216 | price: 61, 217 | contactPerson: "Tamara Raymond", 218 | contactEmail: "vivamus@yahoo.ca", 219 | }, 220 | { 221 | time: new Date("Jun 15, 2021"), 222 | nights: 15, 223 | price: 61, 224 | contactPerson: "Jolene Lamb", 225 | contactEmail: "vulputate.posuere@outlook.org", 226 | }, 227 | { 228 | time: new Date("Jan 31, 2021"), 229 | nights: 15, 230 | price: 70, 231 | contactPerson: "David Wilkins", 232 | contactEmail: "ipsum@icloud.org", 233 | }, 234 | { 235 | time: new Date("Aug 16, 2021"), 236 | nights: 8, 237 | price: 65, 238 | contactPerson: "Nita Padilla", 239 | contactEmail: "quis.pede@google.net", 240 | }, 241 | { 242 | time: new Date("Apr 4, 2021"), 243 | nights: 13, 244 | price: 73, 245 | contactPerson: "Martha Fischer", 246 | contactEmail: "elit.pharetra@hotmail.org", 247 | }, 248 | { 249 | time: new Date("Jun 7, 2021"), 250 | nights: 14, 251 | price: 69, 252 | contactPerson: "Rudyard Powell", 253 | contactEmail: "ridiculus.mus@aol.com", 254 | }, 255 | { 256 | time: new Date("Sep 14, 2021"), 257 | nights: 11, 258 | price: 68, 259 | contactPerson: "Clementine Mercer", 260 | contactEmail: "nec@aol.couk", 261 | }, 262 | { 263 | time: new Date("Aug 3, 2021"), 264 | nights: 14, 265 | price: 74, 266 | contactPerson: "Hu Pace", 267 | contactEmail: "phasellus.dolor.elit@hotmail.net", 268 | }, 269 | { 270 | time: new Date("Sep 12, 2021"), 271 | nights: 13, 272 | price: 73, 273 | contactPerson: "Petra James", 274 | contactEmail: "luctus.et@yahoo.net", 275 | }, 276 | { 277 | time: new Date("Aug 4, 2021"), 278 | nights: 14, 279 | price: 60, 280 | contactPerson: "Chaney Henson", 281 | contactEmail: "in.condimentum@protonmail.net", 282 | }, 283 | { 284 | time: new Date("Jul 15, 2021"), 285 | nights: 13, 286 | price: 59, 287 | contactPerson: "Cole Wallace", 288 | contactEmail: "in.aliquet@outlook.org", 289 | }, 290 | { 291 | time: new Date("Jan 15, 2021"), 292 | nights: 13, 293 | price: 57, 294 | contactPerson: "Emmanuel Miller", 295 | contactEmail: "pharetra.quisque.ac@aol.edu", 296 | }, 297 | { 298 | time: new Date("Sep 18, 2021"), 299 | nights: 9, 300 | price: 69, 301 | contactPerson: "Uriah Ayers", 302 | contactEmail: "nunc.sed.pede@google.net", 303 | }, 304 | { 305 | time: new Date("May 24, 2021"), 306 | nights: 13, 307 | price: 73, 308 | contactPerson: "Illiana Floyd", 309 | contactEmail: "rhoncus.nullam@hotmail.ca", 310 | }, 311 | { 312 | time: new Date("Jul 4, 2021"), 313 | nights: 3, 314 | price: 61, 315 | contactPerson: "Cara Merritt", 316 | contactEmail: "sagittis@yahoo.ca", 317 | }, 318 | { 319 | time: new Date("Jan 27, 2021"), 320 | nights: 4, 321 | price: 70, 322 | contactPerson: "Yetta O'Neill", 323 | contactEmail: "nullam@aol.net", 324 | }, 325 | { 326 | time: new Date("Aug 16, 2021"), 327 | nights: 9, 328 | price: 63, 329 | contactPerson: "Chadwick Holland", 330 | contactEmail: "congue.turpis@aol.net", 331 | }, 332 | { 333 | time: new Date("Mar 22, 2021"), 334 | nights: 3, 335 | price: 59, 336 | contactPerson: "Nell Copeland", 337 | contactEmail: "nulla.vulputate@google.edu", 338 | }, 339 | { 340 | time: new Date("Feb 26, 2021"), 341 | nights: 14, 342 | price: 74, 343 | contactPerson: "Vivian Fletcher", 344 | contactEmail: "bibendum.ullamcorper@icloud.net", 345 | }, 346 | { 347 | time: new Date("Jun 26, 2021"), 348 | nights: 11, 349 | price: 58, 350 | contactPerson: "Tatiana Mckay", 351 | contactEmail: "ac.arcu@hotmail.ca", 352 | }, 353 | { 354 | time: new Date("Jul 30, 2021"), 355 | nights: 9, 356 | price: 61, 357 | contactPerson: "Jamalia Mitchell", 358 | contactEmail: "sed.id.risus@aol.edu", 359 | }, 360 | { 361 | time: new Date("Jun 15, 2021"), 362 | nights: 13, 363 | price: 66, 364 | contactPerson: "Hedy Kirby", 365 | contactEmail: "praesent.luctus@hotmail.com", 366 | }, 367 | { 368 | time: new Date("Aug 16, 2021"), 369 | nights: 9, 370 | price: 67, 371 | contactPerson: "Solomon Ortiz", 372 | contactEmail: "sem.vitae@yahoo.com", 373 | }, 374 | { 375 | time: new Date("Jul 15, 2021"), 376 | nights: 3, 377 | price: 67, 378 | contactPerson: "Adrienne O'Neill", 379 | contactEmail: "dapibus.gravida@protonmail.ca", 380 | }, 381 | { 382 | time: new Date("Jul 1, 2021"), 383 | nights: 7, 384 | price: 72, 385 | contactPerson: "Alma Rollins", 386 | contactEmail: "orci@protonmail.ca", 387 | }, 388 | { 389 | time: new Date("Jul 22, 2021"), 390 | nights: 11, 391 | price: 74, 392 | contactPerson: "Gregory Boyd", 393 | contactEmail: "curabitur.consequat.lectus@yahoo.net", 394 | }, 395 | { 396 | time: new Date("Apr 24, 2021"), 397 | nights: 8, 398 | price: 74, 399 | contactPerson: "Damon Curry", 400 | contactEmail: "aliquam.fringilla@hotmail.org", 401 | }, 402 | { 403 | time: new Date("Mar 8, 2021"), 404 | nights: 5, 405 | price: 63, 406 | contactPerson: "Imelda Tyson", 407 | contactEmail: "nunc.interdum@icloud.edu", 408 | }, 409 | { 410 | time: new Date("Apr 13, 2021"), 411 | nights: 8, 412 | price: 57, 413 | contactPerson: "Yen Cannon", 414 | contactEmail: "nunc@outlook.couk", 415 | }, 416 | { 417 | time: new Date("Feb 27, 2021"), 418 | nights: 5, 419 | price: 73, 420 | contactPerson: "Olivia Patterson", 421 | contactEmail: "posuere@google.org", 422 | }, 423 | { 424 | time: new Date("Apr 21, 2021"), 425 | nights: 13, 426 | price: 59, 427 | contactPerson: "Ramona Logan", 428 | contactEmail: "est@hotmail.ca", 429 | }, 430 | { 431 | time: new Date("Jul 8, 2021"), 432 | nights: 4, 433 | price: 67, 434 | contactPerson: "Risa Butler", 435 | contactEmail: "suscipit.est.ac@yahoo.net", 436 | }, 437 | { 438 | time: new Date("Feb 19, 2021"), 439 | nights: 3, 440 | price: 71, 441 | contactPerson: "Charity Price", 442 | contactEmail: "lobortis.augue.scelerisque@protonmail.couk", 443 | }, 444 | { 445 | time: new Date("Feb 23, 2021"), 446 | nights: 15, 447 | price: 59, 448 | contactPerson: "Rina Macdonald", 449 | contactEmail: "quisque@outlook.com", 450 | }, 451 | { 452 | time: new Date("Apr 8, 2021"), 453 | nights: 16, 454 | price: 68, 455 | contactPerson: "Travis Steele", 456 | contactEmail: "natoque.penatibus@google.edu", 457 | }, 458 | { 459 | time: new Date("Apr 30, 2021"), 460 | nights: 9, 461 | price: 64, 462 | contactPerson: "Deanna Reyes", 463 | contactEmail: "dolor@hotmail.net", 464 | }, 465 | { 466 | time: new Date("Feb 15, 2021"), 467 | nights: 14, 468 | price: 67, 469 | contactPerson: "Faith Rojas", 470 | contactEmail: "sagittis.duis.gravida@hotmail.edu", 471 | }, 472 | { 473 | time: new Date("Mar 1, 2021"), 474 | nights: 4, 475 | price: 73, 476 | contactPerson: "Hyacinth Fuentes", 477 | contactEmail: "nec.urna@google.com", 478 | }, 479 | { 480 | time: new Date("May 9, 2021"), 481 | nights: 2, 482 | price: 71, 483 | contactPerson: "Brenden Sloan", 484 | contactEmail: "a.dui.cras@google.net", 485 | }, 486 | { 487 | time: new Date("Feb 17, 2021"), 488 | nights: 8, 489 | price: 74, 490 | contactPerson: "Nora Bruce", 491 | contactEmail: "egestas.blandit@google.org", 492 | }, 493 | { 494 | time: new Date("Jul 20, 2021"), 495 | nights: 10, 496 | price: 68, 497 | contactPerson: "Riley Harrison", 498 | contactEmail: "lacus@outlook.ca", 499 | }, 500 | { 501 | time: new Date("May 24, 2021"), 502 | nights: 12, 503 | price: 74, 504 | contactPerson: "Mariko Lewis", 505 | contactEmail: "volutpat@google.couk", 506 | }, 507 | { 508 | time: new Date("Feb 16, 2021"), 509 | nights: 2, 510 | price: 68, 511 | contactPerson: "Todd Jones", 512 | contactEmail: "cras.eu.tellus@icloud.org", 513 | }, 514 | { 515 | time: new Date("Apr 21, 2021"), 516 | nights: 16, 517 | price: 69, 518 | contactPerson: "Tasha Mcleod", 519 | contactEmail: "quam.a@protonmail.org", 520 | }, 521 | { 522 | time: new Date("Aug 28, 2021"), 523 | nights: 10, 524 | price: 74, 525 | contactPerson: "Fletcher Bird", 526 | contactEmail: "tincidunt@yahoo.com", 527 | }, 528 | { 529 | time: new Date("Apr 19, 2021"), 530 | nights: 3, 531 | price: 57, 532 | contactPerson: "Alan Murphy", 533 | contactEmail: "tempor.erat.neque@icloud.com", 534 | }, 535 | { 536 | time: new Date("Jan 26, 2021"), 537 | nights: 13, 538 | price: 71, 539 | contactPerson: "Hakeem Booth", 540 | contactEmail: "porttitor.tellus@hotmail.com", 541 | }, 542 | { 543 | time: new Date("Feb 4, 2021"), 544 | nights: 11, 545 | price: 67, 546 | contactPerson: "Courtney Sellers", 547 | contactEmail: "penatibus.et@outlook.ca", 548 | }, 549 | { 550 | time: new Date("Jul 28, 2021"), 551 | nights: 11, 552 | price: 67, 553 | contactPerson: "Frances Mcdonald", 554 | contactEmail: "libero.dui@aol.org", 555 | }, 556 | { 557 | time: new Date("Jan 24, 2021"), 558 | nights: 6, 559 | price: 72, 560 | contactPerson: "Devin Mathews", 561 | contactEmail: "proin.nisl.sem@google.couk", 562 | }, 563 | { 564 | time: new Date("May 13, 2021"), 565 | nights: 10, 566 | price: 71, 567 | contactPerson: "Arden Sparks", 568 | contactEmail: "arcu.sed@google.edu", 569 | }, 570 | { 571 | time: new Date("Apr 1, 2021"), 572 | nights: 2, 573 | price: 55, 574 | contactPerson: "Roanna Calhoun", 575 | contactEmail: "nisi.aenean@outlook.edu", 576 | }, 577 | { 578 | time: new Date("Feb 9, 2021"), 579 | nights: 12, 580 | price: 66, 581 | contactPerson: "Zeph Ellis", 582 | contactEmail: "nonummy.ipsum.non@aol.org", 583 | }, 584 | { 585 | time: new Date("Jun 10, 2021"), 586 | nights: 10, 587 | price: 73, 588 | contactPerson: "Harriet Lee", 589 | contactEmail: "mauris.quis@aol.edu", 590 | }, 591 | { 592 | time: new Date("Jan 25, 2021"), 593 | nights: 7, 594 | price: 60, 595 | contactPerson: "Chanda Gay", 596 | contactEmail: "egestas.blandit.nam@yahoo.ca", 597 | }, 598 | { 599 | time: new Date("Aug 22, 2021"), 600 | nights: 12, 601 | price: 56, 602 | contactPerson: "Tiger Roman", 603 | contactEmail: "et@aol.org", 604 | }, 605 | { 606 | time: new Date("Aug 6, 2021"), 607 | nights: 13, 608 | price: 59, 609 | contactPerson: "Yuri Booker", 610 | contactEmail: "pretium.neque@google.ca", 611 | }, 612 | { 613 | time: new Date("Apr 12, 2021"), 614 | nights: 7, 615 | price: 56, 616 | contactPerson: "Blaze Gardner", 617 | contactEmail: "sed.leo@aol.ca", 618 | }, 619 | { 620 | time: new Date("Jun 13, 2021"), 621 | nights: 4, 622 | price: 73, 623 | contactPerson: "Vanna Nieves", 624 | contactEmail: "amet.consectetuer@google.edu", 625 | }, 626 | { 627 | time: new Date("May 8, 2021"), 628 | nights: 4, 629 | price: 58, 630 | contactPerson: "Malik Mullins", 631 | contactEmail: "pede.nec@yahoo.org", 632 | }, 633 | { 634 | time: new Date("Apr 25, 2021"), 635 | nights: 5, 636 | price: 60, 637 | contactPerson: "Sarah Goodwin", 638 | contactEmail: "condimentum.eget@icloud.couk", 639 | }, 640 | { 641 | time: new Date("Jan 13, 2021"), 642 | nights: 5, 643 | price: 73, 644 | contactPerson: "Nigel Griffin", 645 | contactEmail: "ornare@yahoo.edu", 646 | }, 647 | { 648 | time: new Date("Mar 25, 2021"), 649 | nights: 6, 650 | price: 67, 651 | contactPerson: "Lysandra Gregory", 652 | contactEmail: "in.ornare@protonmail.edu", 653 | }, 654 | { 655 | time: new Date("Sep 28, 2021"), 656 | nights: 8, 657 | price: 70, 658 | contactPerson: "Breanna Williamson", 659 | contactEmail: "nulla.integer@yahoo.ca", 660 | }, 661 | { 662 | time: new Date("Feb 10, 2021"), 663 | nights: 5, 664 | price: 61, 665 | contactPerson: "Edward Black", 666 | contactEmail: "lobortis.mauris@icloud.couk", 667 | }, 668 | { 669 | time: new Date("Jul 28, 2021"), 670 | nights: 5, 671 | price: 56, 672 | contactPerson: "Imogene Stafford", 673 | contactEmail: "donec@icloud.net", 674 | }, 675 | { 676 | time: new Date("Aug 7, 2021"), 677 | nights: 15, 678 | price: 56, 679 | contactPerson: "Clark Garcia", 680 | contactEmail: "sed.leo@hotmail.com", 681 | }, 682 | { 683 | time: new Date("Sep 6, 2021"), 684 | nights: 6, 685 | price: 55, 686 | contactPerson: "Uma Tate", 687 | contactEmail: "quam@hotmail.ca", 688 | }, 689 | { 690 | time: new Date("Apr 9, 2021"), 691 | nights: 16, 692 | price: 60, 693 | contactPerson: "Kennedy Newton", 694 | contactEmail: "et.ultrices@protonmail.com", 695 | }, 696 | { 697 | time: new Date("Jan 17, 2021"), 698 | nights: 13, 699 | price: 55, 700 | contactPerson: "Tana Fields", 701 | contactEmail: "felis.ullamcorper@aol.org", 702 | }, 703 | { 704 | time: new Date("Sep 13, 2021"), 705 | nights: 9, 706 | price: 67, 707 | contactPerson: "Chelsea Burke", 708 | contactEmail: "nisi@aol.couk", 709 | }, 710 | { 711 | time: new Date("Aug 6, 2021"), 712 | nights: 13, 713 | price: 66, 714 | contactPerson: "Samantha Hood", 715 | contactEmail: "ac.eleifend@outlook.ca", 716 | }, 717 | { 718 | time: new Date("Jan 5, 2021"), 719 | nights: 11, 720 | price: 65, 721 | contactPerson: "Chester Wooten", 722 | contactEmail: "id.nunc.interdum@protonmail.net", 723 | }, 724 | { 725 | time: new Date("Jun 8, 2021"), 726 | nights: 14, 727 | price: 69, 728 | contactPerson: "Vaughan Hopkins", 729 | contactEmail: "morbi.metus.vivamus@google.couk", 730 | }, 731 | { 732 | time: new Date("Jan 28, 2021"), 733 | nights: 6, 734 | price: 58, 735 | contactPerson: "Sydnee Montoya", 736 | contactEmail: "donec.feugiat@protonmail.edu", 737 | }, 738 | { 739 | time: new Date("Jun 4, 2021"), 740 | nights: 11, 741 | price: 73, 742 | contactPerson: "Kelly Espinoza", 743 | contactEmail: "ligula.donec@aol.com", 744 | }, 745 | { 746 | time: new Date("May 18, 2021"), 747 | nights: 2, 748 | price: 70, 749 | contactPerson: "Jonah Solis", 750 | contactEmail: "orci.sem@google.couk", 751 | }, 752 | { 753 | time: new Date("Jun 8, 2021"), 754 | nights: 3, 755 | price: 58, 756 | contactPerson: "Denton Taylor", 757 | contactEmail: "metus.urna@protonmail.couk", 758 | }, 759 | { 760 | time: new Date("Feb 14, 2021"), 761 | nights: 4, 762 | price: 68, 763 | contactPerson: "Keely Sutton", 764 | contactEmail: "rutrum.non@hotmail.ca", 765 | }, 766 | { 767 | time: new Date("May 17, 2021"), 768 | nights: 8, 769 | price: 67, 770 | contactPerson: "Derek Meyer", 771 | contactEmail: "posuere.enim.nisl@aol.org", 772 | }, 773 | { 774 | time: new Date("Apr 18, 2021"), 775 | nights: 9, 776 | price: 73, 777 | contactPerson: "Phelan Pena", 778 | contactEmail: "ullamcorper.duis@google.net", 779 | }, 780 | { 781 | time: new Date("Apr 3, 2021"), 782 | nights: 11, 783 | price: 71, 784 | contactPerson: "Maxwell Morales", 785 | contactEmail: "eu.nibh@outlook.ca", 786 | }, 787 | { 788 | time: new Date("Aug 1, 2021"), 789 | nights: 6, 790 | price: 74, 791 | contactPerson: "Hope Hines", 792 | contactEmail: "rutrum.fusce@hotmail.couk", 793 | }, 794 | { 795 | time: new Date("May 28, 2021"), 796 | nights: 11, 797 | price: 67, 798 | contactPerson: "Cullen Woodward", 799 | contactEmail: "luctus.et@protonmail.ca", 800 | }, 801 | { 802 | time: new Date("Feb 5, 2021"), 803 | nights: 11, 804 | price: 63, 805 | contactPerson: "Leah Tanner", 806 | contactEmail: "neque.sed@icloud.couk", 807 | }, 808 | { 809 | time: new Date("Sep 27, 2021"), 810 | nights: 15, 811 | price: 61, 812 | contactPerson: "Fletcher Blair", 813 | contactEmail: "non.bibendum@yahoo.edu", 814 | }, 815 | { 816 | time: new Date("Mar 17, 2021"), 817 | nights: 15, 818 | price: 63, 819 | contactPerson: "Jennifer Daugherty", 820 | contactEmail: "ligula@yahoo.couk", 821 | }, 822 | { 823 | time: new Date("Mar 29, 2021"), 824 | nights: 10, 825 | price: 66, 826 | contactPerson: "Zeus Riggs", 827 | contactEmail: "ac.metus.vitae@outlook.com", 828 | }, 829 | { 830 | time: new Date("Jan 5, 2021"), 831 | nights: 6, 832 | price: 64, 833 | contactPerson: "Chelsea Talley", 834 | contactEmail: "nec.quam.curabitur@yahoo.net", 835 | }, 836 | { 837 | time: new Date("May 12, 2021"), 838 | nights: 15, 839 | price: 71, 840 | contactPerson: "Sara Key", 841 | contactEmail: "elementum.lorem@aol.com", 842 | }, 843 | { 844 | time: new Date("Jun 27, 2021"), 845 | nights: 4, 846 | price: 70, 847 | contactPerson: "Uriel Mcconnell", 848 | contactEmail: "curabitur.consequat@outlook.net", 849 | }, 850 | { 851 | time: new Date("Jun 10, 2021"), 852 | nights: 10, 853 | price: 74, 854 | contactPerson: "Molly Atkins", 855 | contactEmail: "magna.et@protonmail.ca", 856 | }, 857 | { 858 | time: new Date("Feb 11, 2021"), 859 | nights: 13, 860 | price: 66, 861 | contactPerson: "Dieter Burnett", 862 | contactEmail: "ac.ipsum.phasellus@google.net", 863 | }, 864 | ]; 865 | 866 | gridData.forEach((item) => (item.totalCost = item.nights * item.price)); 867 | 868 | const chartData = [ 869 | { 870 | id: "Jan", 871 | value: 44.33, 872 | month: "Jan", 873 | color: "var(--dhx-color-primary-light-active)", 874 | opacity: 1, 875 | }, 876 | { 877 | id: "Feb", 878 | value: 22.12, 879 | month: "Feb", 880 | color: "var(--dhx-color-primary-active)", 881 | opacity: 0.4, 882 | }, 883 | { 884 | id: "Mar", 885 | value: 53.21, 886 | month: "Mar", 887 | color: "var(--dhx-color-primary-disabled)", 888 | opacity: 0.6, 889 | }, 890 | { 891 | id: "Apr", 892 | value: 34.25, 893 | month: "Apr", 894 | color: "var(--dhx-color-primary-light-hover)", 895 | opacity: 0.2, 896 | }, 897 | ]; 898 | 899 | const hotelsData = [ 900 | { month: "Jan.", "Won deals": 35, "Lost deals": 14, "All deals": 40 }, 901 | { month: "Feb.", "Won deals": 80, "Lost deals": 59, "All deals": 94 }, 902 | { month: "Mar.", "Won deals": 35, "Lost deals": 62, "All deals": 48 }, 903 | { month: "Apr.", "Won deals": 45, "Lost deals": 13, "All deals": 59 }, 904 | { month: "May.", "Won deals": 45, "Lost deals": 22, "All deals": 59 }, 905 | { month: "Jun.", "Won deals": 74, "Lost deals": 52, "All deals": 90 }, 906 | { month: "Jul.", "Won deals": 85, "Lost deals": 78, "All deals": 98 }, 907 | ]; 908 | 909 | const seriesData = [ 910 | { 911 | id: 'A', 912 | value: 'Won deals', 913 | color: 'none', 914 | fill: 'var(--dhx-color-primary)', 915 | showText: true, 916 | showTextTemplate: (sum) => `$${sum}` 917 | }, 918 | { 919 | id: 'B', 920 | value: 'Lost deals', 921 | color: 'none', 922 | fill: 'var(--dhx-color-primary-light-active)', 923 | showText: true, 924 | showTextTemplate: (sum) => `$${sum}` 925 | }, 926 | { 927 | id: 'all', 928 | value: 'All deals', 929 | color: 'none', 930 | fill: 'var(--dhx-color-primary-disabled)', 931 | type: 'area', 932 | strokeWidth: 0 933 | } 934 | ]; 935 | 936 | const ribbonData = [ 937 | { 938 | id: "fileBlock", 939 | type: "block", 940 | title: "File", 941 | items: [ 942 | { 943 | type: "block", 944 | direction: "col", 945 | items: [ 946 | { 947 | value: "File", 948 | id: "file", 949 | icon: "mdi mdi-file-outline", 950 | size: "small", 951 | ribbonHeight: "auto", 952 | }, 953 | { 954 | type: "block", 955 | items: [ 956 | { id: "folder", icon: "mdi mdi-folder-outline" }, 957 | { id: "cloud", icon: "mdi mdi-weather-cloudy" }, 958 | ], 959 | }, 960 | ], 961 | }, 962 | { 963 | id: "save", 964 | value: "Save", 965 | icon: "mdi mdi-content-save", 966 | size: "auto", 967 | }, 968 | ], 969 | }, 970 | { 971 | type: "block", 972 | title: "Action", 973 | direction: "col", 974 | items: [ 975 | { id: "copy", icon: "mdi mdi-content-copy", value: "Copy" }, 976 | { id: "cut", icon: "mdi mdi-content-cut", value: "Cut" }, 977 | ], 978 | }, 979 | { 980 | type: "block", 981 | title: "Text", 982 | items: [ 983 | { 984 | type: "block", 985 | direction: "col", 986 | items: [ 987 | { 988 | id: "left", 989 | group: "align", 990 | value: "Left", 991 | icon: "mdi mdi-format-align-left", 992 | }, 993 | { 994 | id: "center", 995 | group: "align", 996 | value: "Center", 997 | icon: "mdi mdi-format-align-center", 998 | }, 999 | ], 1000 | }, 1001 | { 1002 | type: "block", 1003 | direction: "col", 1004 | items: [ 1005 | { 1006 | id: "right", 1007 | group: "align", 1008 | value: "Right", 1009 | icon: "mdi mdi-format-align-right", 1010 | }, 1011 | { 1012 | id: "justify", 1013 | group: "align", 1014 | value: "Justify", 1015 | icon: "mdi mdi-format-align-justify", 1016 | }, 1017 | ], 1018 | }, 1019 | ], 1020 | }, 1021 | { 1022 | type: "block", 1023 | title: "Output", 1024 | items: [ 1025 | { id: "print", value: "Print", icon: "mdi mdi-printer", size: "auto" }, 1026 | ], 1027 | }, 1028 | ]; 1029 | 1030 | const ticketsDataviewData = [ 1031 | { 1032 | title: "Ticket for Technical Support #T742", 1033 | text: "Need some support to add a new widget to Dashboard.", 1034 | type: "major", 1035 | avatar: 1036 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_14.jpg", 1037 | name: "Margaret King", 1038 | comments: "0", 1039 | time: "12:15", 1040 | }, 1041 | { 1042 | title: "Ticket for Sales Manager #S210", 1043 | text: "Can you tell me about pricing plans? I didn't understand the difference.", 1044 | type: "minor", 1045 | avatar: 1046 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_13.jpg", 1047 | name: "Patsy Rhyne", 1048 | comments: "2", 1049 | time: "12:15", 1050 | }, 1051 | { 1052 | title: "Ticket for Marketing Manager #M112", 1053 | text: "Want to mention our scheduler case study in your social media. The company has to be mentioned.", 1054 | type: "minor", 1055 | avatar: 1056 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_06.jpg", 1057 | name: "Ravi Chakrabarti", 1058 | comments: "6", 1059 | time: "12:15", 1060 | }, 1061 | { 1062 | title: "Ticket for Account Manager #A984", 1063 | text: "The trial period will end next week. Can you make a discount for us?", 1064 | type: "normal", 1065 | avatar: 1066 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_04.jpg", 1067 | name: "Lucy Miller", 1068 | comments: "1", 1069 | time: "12:15", 1070 | }, 1071 | { 1072 | title: "Ticket for QA #Q394", 1073 | text: "I found a bug. When I change the skin settings some buttons don't change.", 1074 | type: "major", 1075 | avatar: 1076 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_10.jpg", 1077 | name: "Michael Willis", 1078 | comments: "4", 1079 | time: "12:15", 1080 | }, 1081 | { 1082 | title: "Ticket for Technical Support #T741", 1083 | text: "I can't sign in to my account. Maybe I entered wrong password, help me!", 1084 | type: "major", 1085 | avatar: 1086 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_11.jpg", 1087 | name: "Casey Garcia", 1088 | comments: "0", 1089 | time: "12:15", 1090 | }, 1091 | ]; 1092 | 1093 | const treeData = [ 1094 | { 1095 | value: "Books", 1096 | id: "Books", 1097 | opened: true, 1098 | items: [ 1099 | { 1100 | value: "Thrillers", 1101 | id: "Thrillers", 1102 | opened: true, 1103 | items: [ 1104 | { 1105 | value: "Bestsellers", 1106 | id: "Bestsellers", 1107 | checked: true, 1108 | items: [ 1109 | { 1110 | value: "Lawrence Block", 1111 | id: "Lawrence Block", 1112 | }, 1113 | ], 1114 | }, 1115 | { 1116 | value: "Robert Crais", 1117 | id: "Robert Crais", 1118 | }, 1119 | { 1120 | value: "Ian Rankin", 1121 | id: "Ian Rankin", 1122 | }, 1123 | { 1124 | value: "James Johns", 1125 | id: "James Johns", 1126 | }, 1127 | { 1128 | value: "Nancy Atherton", 1129 | id: "Nancy Atherton", 1130 | }, 1131 | ], 1132 | }, 1133 | { 1134 | value: "History", 1135 | id: "History", 1136 | items: [ 1137 | { 1138 | value: "John Mack Faragher", 1139 | id: "John Mack Faragher", 1140 | }, 1141 | { 1142 | value: "Jim Dwyer", 1143 | id: "Jim Dwyer", 1144 | }, 1145 | { 1146 | value: "Larry Schweikart", 1147 | id: "Larry Schweikart", 1148 | }, 1149 | { 1150 | value: "R. Lee Ermey", 1151 | id: "R. Lee Ermey", 1152 | }, 1153 | ], 1154 | }, 1155 | { 1156 | value: "Horror", 1157 | id: "Horror", 1158 | items: [ 1159 | { 1160 | value: "Stephen King", 1161 | id: "Stephen King", 1162 | }, 1163 | { 1164 | value: "Dan Brown", 1165 | id: "Dan Brown", 1166 | }, 1167 | { 1168 | value: "Mary Janice Davidson", 1169 | id: "Mary Janice Davidson", 1170 | }, 1171 | { 1172 | value: "Katie Macalister", 1173 | id: "Katie Macalister", 1174 | }, 1175 | ], 1176 | }, 1177 | { 1178 | value: "Fiction & Fantasy", 1179 | id: "Fiction & Fantasy", 1180 | items: [ 1181 | { 1182 | value: "Audrey Niffenegger", 1183 | id: "Audrey Niffenegger", 1184 | }, 1185 | { 1186 | value: "Philip Roth", 1187 | id: "Philip Roth", 1188 | }, 1189 | ], 1190 | }, 1191 | { 1192 | value: "Teens", 1193 | id: "Teens", 1194 | items: [ 1195 | { 1196 | value: "Joss Whedon", 1197 | id: "Joss Whedon", 1198 | }, 1199 | { 1200 | value: "Meg Cabot", 1201 | id: "Meg Cabot", 1202 | }, 1203 | { 1204 | value: "Garth Nix", 1205 | id: "Garth Nix", 1206 | }, 1207 | { 1208 | value: "Ann Brashares", 1209 | id: "Ann Brashares", 1210 | }, 1211 | ], 1212 | }, 1213 | ], 1214 | }, 1215 | ]; 1216 | 1217 | const messageDataviewData = [ 1218 | { 1219 | mail: "pmccoy@flowers.com", 1220 | name: "Philip Mccoy", 1221 | avatar: 1222 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_02.jpg", 1223 | status: "online", 1224 | delivered: "0/3", 1225 | }, 1226 | { 1227 | mail: "clores@flowers.com", 1228 | name: "Calvin Flores", 1229 | avatar: 1230 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_04.jpg", 1231 | status: "online", 1232 | delivered: "0/3", 1233 | }, 1234 | { 1235 | mail: "dwight@flowers.com", 1236 | name: "Dwight Jones", 1237 | avatar: 1238 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_05.jpg", 1239 | status: "offline", 1240 | delivered: "0/3", 1241 | }, 1242 | { 1243 | mail: "flores@flowers.com", 1244 | name: "Esther Flores", 1245 | avatar: 1246 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_11.jpg", 1247 | status: "offline", 1248 | delivered: "3/3", 1249 | }, 1250 | { 1251 | mail: "gregory@flowers.com", 1252 | name: "Gregory Bell", 1253 | avatar: 1254 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_10.jpg", 1255 | status: "online", 1256 | delivered: "0/3", 1257 | }, 1258 | { 1259 | mail: "guy@flowers.com", 1260 | name: "Guy Webb", 1261 | avatar: 1262 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_06.jpg", 1263 | status: "online", 1264 | delivered: "2/3", 1265 | }, 1266 | { 1267 | mail: "pat@flowers.com", 1268 | name: "Pat Cooper", 1269 | avatar: 1270 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_15.jpg", 1271 | status: "offline", 1272 | delivered: "1/3", 1273 | }, 1274 | { 1275 | name: "Shaeleigh Lopez", 1276 | mail: "odio@hotmail.com", 1277 | avatar: 1278 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_01.jpg", 1279 | status: "online", 1280 | delivered: "0/3", 1281 | }, 1282 | { 1283 | name: "Craig Pope", 1284 | mail: "fermentum.metus.aenean@icloud.edu", 1285 | avatar: 1286 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_03.jpg", 1287 | status: "offline", 1288 | delivered: "1/3", 1289 | }, 1290 | { 1291 | name: "Angela Clements", 1292 | mail: "nonummy.ut@icloud.net", 1293 | avatar: 1294 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_07.jpg", 1295 | status: "offline", 1296 | delivered: "3/3", 1297 | }, 1298 | { 1299 | name: "Howard Villarreal", 1300 | mail: "libero.donec.consectetuer@icloud.com", 1301 | avatar: 1302 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_08.jpg", 1303 | status: "online", 1304 | delivered: "1/3", 1305 | }, 1306 | { 1307 | name: "Prescott Stafford", 1308 | mail: "nunc.ac.sem@icloud.edu", 1309 | avatar: 1310 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_09.jpg", 1311 | status: "offline", 1312 | delivered: "2/3", 1313 | }, 1314 | ]; 1315 | 1316 | const country = [ 1317 | { 1318 | id: "austria", 1319 | value: "Austria", 1320 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/at.png", 1321 | }, 1322 | { 1323 | value: "Belarus", 1324 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/by.png", 1325 | }, 1326 | { 1327 | value: "Belgium", 1328 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/be.png", 1329 | }, 1330 | { 1331 | value: "Bulgaria", 1332 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/bg.png", 1333 | }, 1334 | { 1335 | value: "Cyprus", 1336 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/cy.png", 1337 | }, 1338 | { 1339 | value: "Czech Republic", 1340 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/cz.png", 1341 | }, 1342 | { 1343 | value: "Denmark", 1344 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/dk.png", 1345 | }, 1346 | { 1347 | id: "estonia", 1348 | value: "Estonia", 1349 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ee.png", 1350 | }, 1351 | { 1352 | value: "Finland", 1353 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/fi.png", 1354 | }, 1355 | { 1356 | value: "France", 1357 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/fr.png", 1358 | }, 1359 | { 1360 | value: "Germany", 1361 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/de.png", 1362 | }, 1363 | { 1364 | value: "Greece", 1365 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/gr.png", 1366 | }, 1367 | { 1368 | value: "Hungary", 1369 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/hu.png", 1370 | }, 1371 | { 1372 | value: "Ireland", 1373 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ie.png", 1374 | }, 1375 | { 1376 | value: "Italy", 1377 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/it.png", 1378 | }, 1379 | { 1380 | value: "Latvia", 1381 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lv.png", 1382 | }, 1383 | { 1384 | value: "Lithuania", 1385 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lt.png", 1386 | }, 1387 | { 1388 | value: "Luxembourg", 1389 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lu.png", 1390 | }, 1391 | { 1392 | value: "Malta", 1393 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/mt.png", 1394 | }, 1395 | { 1396 | value: "Netherlands", 1397 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/nl.png", 1398 | }, 1399 | { 1400 | value: "Poland", 1401 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/pl.png", 1402 | }, 1403 | { 1404 | value: "Portugal", 1405 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/pt.png", 1406 | }, 1407 | { 1408 | value: "Russia", 1409 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ru.png", 1410 | }, 1411 | { 1412 | value: "Romania", 1413 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ro.png", 1414 | }, 1415 | { 1416 | value: "Slovakia", 1417 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/sk.png", 1418 | }, 1419 | { 1420 | value: "Slovenia", 1421 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/si.png", 1422 | }, 1423 | { 1424 | value: "Spain", 1425 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/es.png", 1426 | }, 1427 | { 1428 | value: "Sweden", 1429 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/se.png", 1430 | }, 1431 | { 1432 | value: "United Kingdom", 1433 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/gb.png", 1434 | }, 1435 | ]; 1436 | 1437 | return{ 1438 | gridData, 1439 | chartData, 1440 | hotelsData, 1441 | seriesData, 1442 | ribbonData, 1443 | ticketsDataviewData, 1444 | treeData, 1445 | messageDataviewData, 1446 | country, 1447 | sidebarData, 1448 | toolbarData 1449 | }; 1450 | } 1451 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@ampproject/remapping@^2.2.0": 11 | version "2.2.1" 12 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" 13 | integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== 14 | dependencies: 15 | "@jridgewell/gen-mapping" "^0.3.0" 16 | "@jridgewell/trace-mapping" "^0.3.9" 17 | 18 | "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": 19 | version "7.23.5" 20 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" 21 | integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== 22 | dependencies: 23 | "@babel/highlight" "^7.23.4" 24 | chalk "^2.4.2" 25 | 26 | "@babel/compat-data@^7.23.5": 27 | version "7.23.5" 28 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" 29 | integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== 30 | 31 | "@babel/core@^7.23.5": 32 | version "7.23.6" 33 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.6.tgz#8be77cd77c55baadcc1eae1c33df90ab6d2151d4" 34 | integrity sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw== 35 | dependencies: 36 | "@ampproject/remapping" "^2.2.0" 37 | "@babel/code-frame" "^7.23.5" 38 | "@babel/generator" "^7.23.6" 39 | "@babel/helper-compilation-targets" "^7.23.6" 40 | "@babel/helper-module-transforms" "^7.23.3" 41 | "@babel/helpers" "^7.23.6" 42 | "@babel/parser" "^7.23.6" 43 | "@babel/template" "^7.22.15" 44 | "@babel/traverse" "^7.23.6" 45 | "@babel/types" "^7.23.6" 46 | convert-source-map "^2.0.0" 47 | debug "^4.1.0" 48 | gensync "^1.0.0-beta.2" 49 | json5 "^2.2.3" 50 | semver "^6.3.1" 51 | 52 | "@babel/generator@^7.23.6": 53 | version "7.23.6" 54 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" 55 | integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== 56 | dependencies: 57 | "@babel/types" "^7.23.6" 58 | "@jridgewell/gen-mapping" "^0.3.2" 59 | "@jridgewell/trace-mapping" "^0.3.17" 60 | jsesc "^2.5.1" 61 | 62 | "@babel/helper-compilation-targets@^7.23.6": 63 | version "7.23.6" 64 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" 65 | integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== 66 | dependencies: 67 | "@babel/compat-data" "^7.23.5" 68 | "@babel/helper-validator-option" "^7.23.5" 69 | browserslist "^4.22.2" 70 | lru-cache "^5.1.1" 71 | semver "^6.3.1" 72 | 73 | "@babel/helper-environment-visitor@^7.22.20": 74 | version "7.22.20" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" 76 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== 77 | 78 | "@babel/helper-function-name@^7.23.0": 79 | version "7.23.0" 80 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" 81 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== 82 | dependencies: 83 | "@babel/template" "^7.22.15" 84 | "@babel/types" "^7.23.0" 85 | 86 | "@babel/helper-hoist-variables@^7.22.5": 87 | version "7.22.5" 88 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" 89 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 90 | dependencies: 91 | "@babel/types" "^7.22.5" 92 | 93 | "@babel/helper-module-imports@^7.22.15": 94 | version "7.22.15" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" 96 | integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== 97 | dependencies: 98 | "@babel/types" "^7.22.15" 99 | 100 | "@babel/helper-module-transforms@^7.23.3": 101 | version "7.23.3" 102 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" 103 | integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== 104 | dependencies: 105 | "@babel/helper-environment-visitor" "^7.22.20" 106 | "@babel/helper-module-imports" "^7.22.15" 107 | "@babel/helper-simple-access" "^7.22.5" 108 | "@babel/helper-split-export-declaration" "^7.22.6" 109 | "@babel/helper-validator-identifier" "^7.22.20" 110 | 111 | "@babel/helper-plugin-utils@^7.22.5": 112 | version "7.22.5" 113 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" 114 | integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== 115 | 116 | "@babel/helper-simple-access@^7.22.5": 117 | version "7.22.5" 118 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" 119 | integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== 120 | dependencies: 121 | "@babel/types" "^7.22.5" 122 | 123 | "@babel/helper-split-export-declaration@^7.22.6": 124 | version "7.22.6" 125 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" 126 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 127 | dependencies: 128 | "@babel/types" "^7.22.5" 129 | 130 | "@babel/helper-string-parser@^7.23.4": 131 | version "7.23.4" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" 133 | integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== 134 | 135 | "@babel/helper-validator-identifier@^7.22.20": 136 | version "7.22.20" 137 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 138 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 139 | 140 | "@babel/helper-validator-option@^7.23.5": 141 | version "7.23.5" 142 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" 143 | integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== 144 | 145 | "@babel/helpers@^7.23.6": 146 | version "7.23.6" 147 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.6.tgz#d03af2ee5fb34691eec0cda90f5ecbb4d4da145a" 148 | integrity sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA== 149 | dependencies: 150 | "@babel/template" "^7.22.15" 151 | "@babel/traverse" "^7.23.6" 152 | "@babel/types" "^7.23.6" 153 | 154 | "@babel/highlight@^7.23.4": 155 | version "7.23.4" 156 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" 157 | integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== 158 | dependencies: 159 | "@babel/helper-validator-identifier" "^7.22.20" 160 | chalk "^2.4.2" 161 | js-tokens "^4.0.0" 162 | 163 | "@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.23.6": 164 | version "7.23.6" 165 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 166 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 167 | 168 | "@babel/plugin-transform-react-jsx-self@^7.23.3": 169 | version "7.23.3" 170 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz#ed3e7dadde046cce761a8e3cf003a13d1a7972d9" 171 | integrity sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ== 172 | dependencies: 173 | "@babel/helper-plugin-utils" "^7.22.5" 174 | 175 | "@babel/plugin-transform-react-jsx-source@^7.23.3": 176 | version "7.23.3" 177 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz#03527006bdc8775247a78643c51d4e715fe39a3e" 178 | integrity sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g== 179 | dependencies: 180 | "@babel/helper-plugin-utils" "^7.22.5" 181 | 182 | "@babel/template@^7.22.15": 183 | version "7.22.15" 184 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" 185 | integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== 186 | dependencies: 187 | "@babel/code-frame" "^7.22.13" 188 | "@babel/parser" "^7.22.15" 189 | "@babel/types" "^7.22.15" 190 | 191 | "@babel/traverse@^7.23.6": 192 | version "7.23.6" 193 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5" 194 | integrity sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ== 195 | dependencies: 196 | "@babel/code-frame" "^7.23.5" 197 | "@babel/generator" "^7.23.6" 198 | "@babel/helper-environment-visitor" "^7.22.20" 199 | "@babel/helper-function-name" "^7.23.0" 200 | "@babel/helper-hoist-variables" "^7.22.5" 201 | "@babel/helper-split-export-declaration" "^7.22.6" 202 | "@babel/parser" "^7.23.6" 203 | "@babel/types" "^7.23.6" 204 | debug "^4.3.1" 205 | globals "^11.1.0" 206 | 207 | "@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6": 208 | version "7.23.6" 209 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" 210 | integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== 211 | dependencies: 212 | "@babel/helper-string-parser" "^7.23.4" 213 | "@babel/helper-validator-identifier" "^7.22.20" 214 | to-fast-properties "^2.0.0" 215 | 216 | "@dhx/trial-suite@^9.1.0": 217 | version "9.1.0" 218 | resolved "https://npm.dhtmlx.com/@dhx%2ftrial-suite/-/trial-suite-9.1.0.tgz#64924705ca6bc147e341b4dc0bcba6c9e4112436" 219 | integrity sha512-lRiT0S5mgPYpkeh037uoDj29D9Wdc1Hllg4d2BCVKFoxqDnEUYRypjGWgtquDYdAdQB8W7My9gNK4M6Kf1wZLg== 220 | 221 | "@esbuild/android-arm64@0.19.8": 222 | version "0.19.8" 223 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz#fb7130103835b6d43ea499c3f30cfb2b2ed58456" 224 | integrity sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA== 225 | 226 | "@esbuild/android-arm@0.19.8": 227 | version "0.19.8" 228 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.8.tgz#b46e4d9e984e6d6db6c4224d72c86b7757e35bcb" 229 | integrity sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA== 230 | 231 | "@esbuild/android-x64@0.19.8": 232 | version "0.19.8" 233 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.8.tgz#a13db9441b5a4f4e4fec4a6f8ffacfea07888db7" 234 | integrity sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A== 235 | 236 | "@esbuild/darwin-arm64@0.19.8": 237 | version "0.19.8" 238 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz#49f5718d36541f40dd62bfdf84da9c65168a0fc2" 239 | integrity sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw== 240 | 241 | "@esbuild/darwin-x64@0.19.8": 242 | version "0.19.8" 243 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz#75c5c88371eea4bfc1f9ecfd0e75104c74a481ac" 244 | integrity sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q== 245 | 246 | "@esbuild/freebsd-arm64@0.19.8": 247 | version "0.19.8" 248 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz#9d7259fea4fd2b5f7437b52b542816e89d7c8575" 249 | integrity sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw== 250 | 251 | "@esbuild/freebsd-x64@0.19.8": 252 | version "0.19.8" 253 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz#abac03e1c4c7c75ee8add6d76ec592f46dbb39e3" 254 | integrity sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg== 255 | 256 | "@esbuild/linux-arm64@0.19.8": 257 | version "0.19.8" 258 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz#c577932cf4feeaa43cb9cec27b89cbe0df7d9098" 259 | integrity sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ== 260 | 261 | "@esbuild/linux-arm@0.19.8": 262 | version "0.19.8" 263 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz#d6014d8b98b5cbc96b95dad3d14d75bb364fdc0f" 264 | integrity sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ== 265 | 266 | "@esbuild/linux-ia32@0.19.8": 267 | version "0.19.8" 268 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz#2379a0554307d19ac4a6cdc15b08f0ea28e7a40d" 269 | integrity sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ== 270 | 271 | "@esbuild/linux-loong64@0.19.8": 272 | version "0.19.8" 273 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz#e2a5bbffe15748b49356a6cd7b2d5bf60c5a7123" 274 | integrity sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ== 275 | 276 | "@esbuild/linux-mips64el@0.19.8": 277 | version "0.19.8" 278 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz#1359331e6f6214f26f4b08db9b9df661c57cfa24" 279 | integrity sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q== 280 | 281 | "@esbuild/linux-ppc64@0.19.8": 282 | version "0.19.8" 283 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz#9ba436addc1646dc89dae48c62d3e951ffe70951" 284 | integrity sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg== 285 | 286 | "@esbuild/linux-riscv64@0.19.8": 287 | version "0.19.8" 288 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz#fbcf0c3a0b20f40b5fc31c3b7695f0769f9de66b" 289 | integrity sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg== 290 | 291 | "@esbuild/linux-s390x@0.19.8": 292 | version "0.19.8" 293 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz#989e8a05f7792d139d5564ffa7ff898ac6f20a4a" 294 | integrity sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg== 295 | 296 | "@esbuild/linux-x64@0.19.8": 297 | version "0.19.8" 298 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz#b187295393a59323397fe5ff51e769ec4e72212b" 299 | integrity sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg== 300 | 301 | "@esbuild/netbsd-x64@0.19.8": 302 | version "0.19.8" 303 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz#c1ec0e24ea82313cb1c7bae176bd5acd5bde7137" 304 | integrity sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw== 305 | 306 | "@esbuild/openbsd-x64@0.19.8": 307 | version "0.19.8" 308 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz#0c5b696ac66c6d70cf9ee17073a581a28af9e18d" 309 | integrity sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ== 310 | 311 | "@esbuild/sunos-x64@0.19.8": 312 | version "0.19.8" 313 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz#2a697e1f77926ff09fcc457d8f29916d6cd48fb1" 314 | integrity sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w== 315 | 316 | "@esbuild/win32-arm64@0.19.8": 317 | version "0.19.8" 318 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz#ec029e62a2fca8c071842ecb1bc5c2dd20b066f1" 319 | integrity sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg== 320 | 321 | "@esbuild/win32-ia32@0.19.8": 322 | version "0.19.8" 323 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz#cbb9a3146bde64dc15543e48afe418c7a3214851" 324 | integrity sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw== 325 | 326 | "@esbuild/win32-x64@0.19.8": 327 | version "0.19.8" 328 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz#c8285183dbdb17008578dbacb6e22748709b4822" 329 | integrity sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA== 330 | 331 | "@eslint-community/eslint-utils@^4.2.0": 332 | version "4.4.0" 333 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 334 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 335 | dependencies: 336 | eslint-visitor-keys "^3.3.0" 337 | 338 | "@eslint-community/regexpp@^4.6.1": 339 | version "4.6.2" 340 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" 341 | integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== 342 | 343 | "@eslint/eslintrc@^2.1.4": 344 | version "2.1.4" 345 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" 346 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== 347 | dependencies: 348 | ajv "^6.12.4" 349 | debug "^4.3.2" 350 | espree "^9.6.0" 351 | globals "^13.19.0" 352 | ignore "^5.2.0" 353 | import-fresh "^3.2.1" 354 | js-yaml "^4.1.0" 355 | minimatch "^3.1.2" 356 | strip-json-comments "^3.1.1" 357 | 358 | "@eslint/js@8.55.0": 359 | version "8.55.0" 360 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.55.0.tgz#b721d52060f369aa259cf97392403cb9ce892ec6" 361 | integrity sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA== 362 | 363 | "@humanwhocodes/config-array@^0.11.13": 364 | version "0.11.13" 365 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297" 366 | integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ== 367 | dependencies: 368 | "@humanwhocodes/object-schema" "^2.0.1" 369 | debug "^4.1.1" 370 | minimatch "^3.0.5" 371 | 372 | "@humanwhocodes/module-importer@^1.0.1": 373 | version "1.0.1" 374 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 375 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 376 | 377 | "@humanwhocodes/object-schema@^2.0.1": 378 | version "2.0.1" 379 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044" 380 | integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw== 381 | 382 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": 383 | version "0.3.3" 384 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 385 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 386 | dependencies: 387 | "@jridgewell/set-array" "^1.0.1" 388 | "@jridgewell/sourcemap-codec" "^1.4.10" 389 | "@jridgewell/trace-mapping" "^0.3.9" 390 | 391 | "@jridgewell/resolve-uri@^3.1.0": 392 | version "3.1.1" 393 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 394 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 395 | 396 | "@jridgewell/set-array@^1.0.1": 397 | version "1.1.2" 398 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 399 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 400 | 401 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 402 | version "1.4.15" 403 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 404 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 405 | 406 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 407 | version "0.3.20" 408 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" 409 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== 410 | dependencies: 411 | "@jridgewell/resolve-uri" "^3.1.0" 412 | "@jridgewell/sourcemap-codec" "^1.4.14" 413 | 414 | "@nodelib/fs.scandir@2.1.5": 415 | version "2.1.5" 416 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 417 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 418 | dependencies: 419 | "@nodelib/fs.stat" "2.0.5" 420 | run-parallel "^1.1.9" 421 | 422 | "@nodelib/fs.stat@2.0.5": 423 | version "2.0.5" 424 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 425 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 426 | 427 | "@nodelib/fs.walk@^1.2.8": 428 | version "1.2.8" 429 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 430 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 431 | dependencies: 432 | "@nodelib/fs.scandir" "2.1.5" 433 | fastq "^1.6.0" 434 | 435 | "@rollup/rollup-android-arm-eabi@4.6.1": 436 | version "4.6.1" 437 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.6.1.tgz#0ea289f68ff248b50fea5716ca9f65f7d4dba3ae" 438 | integrity sha512-0WQ0ouLejaUCRsL93GD4uft3rOmB8qoQMU05Kb8CmMtMBe7XUDLAltxVZI1q6byNqEtU7N1ZX1Vw5lIpgulLQA== 439 | 440 | "@rollup/rollup-android-arm64@4.6.1": 441 | version "4.6.1" 442 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.6.1.tgz#27c8c67fc5de574874085a1b480ac65b3e18378e" 443 | integrity sha512-1TKm25Rn20vr5aTGGZqo6E4mzPicCUD79k17EgTLAsXc1zysyi4xXKACfUbwyANEPAEIxkzwue6JZ+stYzWUTA== 444 | 445 | "@rollup/rollup-darwin-arm64@4.6.1": 446 | version "4.6.1" 447 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.6.1.tgz#c5735c042980c85495411af7183dd20294763bd8" 448 | integrity sha512-cEXJQY/ZqMACb+nxzDeX9IPLAg7S94xouJJCNVE5BJM8JUEP4HeTF+ti3cmxWeSJo+5D+o8Tc0UAWUkfENdeyw== 449 | 450 | "@rollup/rollup-darwin-x64@4.6.1": 451 | version "4.6.1" 452 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.6.1.tgz#af844bd54abb73ca3c9cf89a31eec17861d1375d" 453 | integrity sha512-LoSU9Xu56isrkV2jLldcKspJ7sSXmZWkAxg7sW/RfF7GS4F5/v4EiqKSMCFbZtDu2Nc1gxxFdQdKwkKS4rwxNg== 454 | 455 | "@rollup/rollup-linux-arm-gnueabihf@4.6.1": 456 | version "4.6.1" 457 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.6.1.tgz#5e972f63c441eaf859551039b3f18db9b035977d" 458 | integrity sha512-EfI3hzYAy5vFNDqpXsNxXcgRDcFHUWSx5nnRSCKwXuQlI5J9dD84g2Usw81n3FLBNsGCegKGwwTVsSKK9cooSQ== 459 | 460 | "@rollup/rollup-linux-arm64-gnu@4.6.1": 461 | version "4.6.1" 462 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.6.1.tgz#f4cfbc71e3b6fdb395b28b1472414e181515c72d" 463 | integrity sha512-9lhc4UZstsegbNLhH0Zu6TqvDfmhGzuCWtcTFXY10VjLLUe4Mr0Ye2L3rrtHaDd/J5+tFMEuo5LTCSCMXWfUKw== 464 | 465 | "@rollup/rollup-linux-arm64-musl@4.6.1": 466 | version "4.6.1" 467 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.6.1.tgz#6a94c691830dc29bf708de7c640f494996130893" 468 | integrity sha512-FfoOK1yP5ksX3wwZ4Zk1NgyGHZyuRhf99j64I5oEmirV8EFT7+OhUZEnP+x17lcP/QHJNWGsoJwrz4PJ9fBEXw== 469 | 470 | "@rollup/rollup-linux-x64-gnu@4.6.1": 471 | version "4.6.1" 472 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.6.1.tgz#f07bae3f7dc532d9ea5ab36c9071db329f9a1efb" 473 | integrity sha512-DNGZvZDO5YF7jN5fX8ZqmGLjZEXIJRdJEdTFMhiyXqyXubBa0WVLDWSNlQ5JR2PNgDbEV1VQowhVRUh+74D+RA== 474 | 475 | "@rollup/rollup-linux-x64-musl@4.6.1": 476 | version "4.6.1" 477 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.6.1.tgz#357a34fdbf410af88ce48bd802bea6462bb9a8bc" 478 | integrity sha512-RkJVNVRM+piYy87HrKmhbexCHg3A6Z6MU0W9GHnJwBQNBeyhCJG9KDce4SAMdicQnpURggSvtbGo9xAWOfSvIQ== 479 | 480 | "@rollup/rollup-win32-arm64-msvc@4.6.1": 481 | version "4.6.1" 482 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.6.1.tgz#b6e97fd38281667e35297033393cd1101f4a31be" 483 | integrity sha512-v2FVT6xfnnmTe3W9bJXl6r5KwJglMK/iRlkKiIFfO6ysKs0rDgz7Cwwf3tjldxQUrHL9INT/1r4VA0n9L/F1vQ== 484 | 485 | "@rollup/rollup-win32-ia32-msvc@4.6.1": 486 | version "4.6.1" 487 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.6.1.tgz#a95db026c640c8128bfd38546d85342f2329beaf" 488 | integrity sha512-YEeOjxRyEjqcWphH9dyLbzgkF8wZSKAKUkldRY6dgNR5oKs2LZazqGB41cWJ4Iqqcy9/zqYgmzBkRoVz3Q9MLw== 489 | 490 | "@rollup/rollup-win32-x64-msvc@4.6.1": 491 | version "4.6.1" 492 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.6.1.tgz#45785b5caf83200a34a9867ba50d69560880c120" 493 | integrity sha512-0zfTlFAIhgz8V2G8STq8toAjsYYA6eci1hnXuyOTUFnymrtJwnS6uGKiv3v5UrPZkBlamLvrLV2iiaeqCKzb0A== 494 | 495 | "@types/babel__core@^7.20.5": 496 | version "7.20.5" 497 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" 498 | integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== 499 | dependencies: 500 | "@babel/parser" "^7.20.7" 501 | "@babel/types" "^7.20.7" 502 | "@types/babel__generator" "*" 503 | "@types/babel__template" "*" 504 | "@types/babel__traverse" "*" 505 | 506 | "@types/babel__generator@*": 507 | version "7.6.7" 508 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.7.tgz#a7aebf15c7bc0eb9abd638bdb5c0b8700399c9d0" 509 | integrity sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ== 510 | dependencies: 511 | "@babel/types" "^7.0.0" 512 | 513 | "@types/babel__template@*": 514 | version "7.4.4" 515 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" 516 | integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== 517 | dependencies: 518 | "@babel/parser" "^7.1.0" 519 | "@babel/types" "^7.0.0" 520 | 521 | "@types/babel__traverse@*": 522 | version "7.20.4" 523 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.4.tgz#ec2c06fed6549df8bc0eb4615b683749a4a92e1b" 524 | integrity sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA== 525 | dependencies: 526 | "@babel/types" "^7.20.7" 527 | 528 | "@types/prop-types@*": 529 | version "15.7.5" 530 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 531 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 532 | 533 | "@types/react-dom@^18.2.15": 534 | version "18.2.17" 535 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.17.tgz#375c55fab4ae671bd98448dcfa153268d01d6f64" 536 | integrity sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg== 537 | dependencies: 538 | "@types/react" "*" 539 | 540 | "@types/react@*": 541 | version "18.2.39" 542 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.39.tgz#744bee99e053ad61fe74eb8b897f3ab5b19a7e25" 543 | integrity sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA== 544 | dependencies: 545 | "@types/prop-types" "*" 546 | "@types/scheduler" "*" 547 | csstype "^3.0.2" 548 | 549 | "@types/react@^18.2.37": 550 | version "18.2.45" 551 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.45.tgz#253f4fac288e7e751ab3dc542000fb687422c15c" 552 | integrity sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg== 553 | dependencies: 554 | "@types/prop-types" "*" 555 | "@types/scheduler" "*" 556 | csstype "^3.0.2" 557 | 558 | "@types/scheduler@*": 559 | version "0.16.2" 560 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 561 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 562 | 563 | "@ungap/structured-clone@^1.2.0": 564 | version "1.2.0" 565 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" 566 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 567 | 568 | "@vitejs/plugin-react@^4.2.0": 569 | version "4.2.1" 570 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz#744d8e4fcb120fc3dbaa471dadd3483f5a304bb9" 571 | integrity sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ== 572 | dependencies: 573 | "@babel/core" "^7.23.5" 574 | "@babel/plugin-transform-react-jsx-self" "^7.23.3" 575 | "@babel/plugin-transform-react-jsx-source" "^7.23.3" 576 | "@types/babel__core" "^7.20.5" 577 | react-refresh "^0.14.0" 578 | 579 | acorn-jsx@^5.3.2: 580 | version "5.3.2" 581 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 582 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 583 | 584 | acorn@^8.9.0: 585 | version "8.10.0" 586 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" 587 | integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== 588 | 589 | ajv@^6.12.4: 590 | version "6.12.6" 591 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 592 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 593 | dependencies: 594 | fast-deep-equal "^3.1.1" 595 | fast-json-stable-stringify "^2.0.0" 596 | json-schema-traverse "^0.4.1" 597 | uri-js "^4.2.2" 598 | 599 | ansi-regex@^5.0.1: 600 | version "5.0.1" 601 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 602 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 603 | 604 | ansi-styles@^3.2.1: 605 | version "3.2.1" 606 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 607 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 608 | dependencies: 609 | color-convert "^1.9.0" 610 | 611 | ansi-styles@^4.1.0: 612 | version "4.3.0" 613 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 614 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 615 | dependencies: 616 | color-convert "^2.0.1" 617 | 618 | argparse@^2.0.1: 619 | version "2.0.1" 620 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 621 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 622 | 623 | array-buffer-byte-length@^1.0.0: 624 | version "1.0.0" 625 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" 626 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== 627 | dependencies: 628 | call-bind "^1.0.2" 629 | is-array-buffer "^3.0.1" 630 | 631 | array-includes@^3.1.6: 632 | version "3.1.6" 633 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 634 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 635 | dependencies: 636 | call-bind "^1.0.2" 637 | define-properties "^1.1.4" 638 | es-abstract "^1.20.4" 639 | get-intrinsic "^1.1.3" 640 | is-string "^1.0.7" 641 | 642 | array.prototype.flat@^1.3.1: 643 | version "1.3.1" 644 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 645 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 646 | dependencies: 647 | call-bind "^1.0.2" 648 | define-properties "^1.1.4" 649 | es-abstract "^1.20.4" 650 | es-shim-unscopables "^1.0.0" 651 | 652 | array.prototype.flatmap@^1.3.1: 653 | version "1.3.1" 654 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 655 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 656 | dependencies: 657 | call-bind "^1.0.2" 658 | define-properties "^1.1.4" 659 | es-abstract "^1.20.4" 660 | es-shim-unscopables "^1.0.0" 661 | 662 | array.prototype.tosorted@^1.1.1: 663 | version "1.1.1" 664 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 665 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 666 | dependencies: 667 | call-bind "^1.0.2" 668 | define-properties "^1.1.4" 669 | es-abstract "^1.20.4" 670 | es-shim-unscopables "^1.0.0" 671 | get-intrinsic "^1.1.3" 672 | 673 | arraybuffer.prototype.slice@^1.0.1: 674 | version "1.0.1" 675 | resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" 676 | integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== 677 | dependencies: 678 | array-buffer-byte-length "^1.0.0" 679 | call-bind "^1.0.2" 680 | define-properties "^1.2.0" 681 | get-intrinsic "^1.2.1" 682 | is-array-buffer "^3.0.2" 683 | is-shared-array-buffer "^1.0.2" 684 | 685 | asynciterator.prototype@^1.0.0: 686 | version "1.0.0" 687 | resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" 688 | integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== 689 | dependencies: 690 | has-symbols "^1.0.3" 691 | 692 | available-typed-arrays@^1.0.5: 693 | version "1.0.5" 694 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 695 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 696 | 697 | balanced-match@^1.0.0: 698 | version "1.0.2" 699 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 700 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 701 | 702 | brace-expansion@^1.1.7: 703 | version "1.1.11" 704 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 705 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 706 | dependencies: 707 | balanced-match "^1.0.0" 708 | concat-map "0.0.1" 709 | 710 | browserslist@^4.22.2: 711 | version "4.22.2" 712 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" 713 | integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== 714 | dependencies: 715 | caniuse-lite "^1.0.30001565" 716 | electron-to-chromium "^1.4.601" 717 | node-releases "^2.0.14" 718 | update-browserslist-db "^1.0.13" 719 | 720 | call-bind@^1.0.0, call-bind@^1.0.2: 721 | version "1.0.2" 722 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 723 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 724 | dependencies: 725 | function-bind "^1.1.1" 726 | get-intrinsic "^1.0.2" 727 | 728 | callsites@^3.0.0: 729 | version "3.1.0" 730 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 731 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 732 | 733 | caniuse-lite@^1.0.30001565: 734 | version "1.0.30001570" 735 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz#b4e5c1fa786f733ab78fc70f592df6b3f23244ca" 736 | integrity sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw== 737 | 738 | chalk@^2.4.2: 739 | version "2.4.2" 740 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 741 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 742 | dependencies: 743 | ansi-styles "^3.2.1" 744 | escape-string-regexp "^1.0.5" 745 | supports-color "^5.3.0" 746 | 747 | chalk@^4.0.0: 748 | version "4.1.2" 749 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 750 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 751 | dependencies: 752 | ansi-styles "^4.1.0" 753 | supports-color "^7.1.0" 754 | 755 | color-convert@^1.9.0: 756 | version "1.9.3" 757 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 758 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 759 | dependencies: 760 | color-name "1.1.3" 761 | 762 | color-convert@^2.0.1: 763 | version "2.0.1" 764 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 765 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 766 | dependencies: 767 | color-name "~1.1.4" 768 | 769 | color-name@1.1.3: 770 | version "1.1.3" 771 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 772 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 773 | 774 | color-name@~1.1.4: 775 | version "1.1.4" 776 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 777 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 778 | 779 | concat-map@0.0.1: 780 | version "0.0.1" 781 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 782 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 783 | 784 | convert-source-map@^2.0.0: 785 | version "2.0.0" 786 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" 787 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 788 | 789 | cross-spawn@^7.0.2: 790 | version "7.0.3" 791 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 792 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 793 | dependencies: 794 | path-key "^3.1.0" 795 | shebang-command "^2.0.0" 796 | which "^2.0.1" 797 | 798 | csstype@^3.0.2: 799 | version "3.1.1" 800 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" 801 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 802 | 803 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: 804 | version "4.3.4" 805 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 806 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 807 | dependencies: 808 | ms "2.1.2" 809 | 810 | deep-is@^0.1.3: 811 | version "0.1.4" 812 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 813 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 814 | 815 | define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: 816 | version "1.2.0" 817 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 818 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 819 | dependencies: 820 | has-property-descriptors "^1.0.0" 821 | object-keys "^1.1.1" 822 | 823 | doctrine@^2.1.0: 824 | version "2.1.0" 825 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 826 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 827 | dependencies: 828 | esutils "^2.0.2" 829 | 830 | doctrine@^3.0.0: 831 | version "3.0.0" 832 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 833 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 834 | dependencies: 835 | esutils "^2.0.2" 836 | 837 | electron-to-chromium@^1.4.601: 838 | version "1.4.613" 839 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.613.tgz#529e4fc65576ecfd055d7d4619fade4fac446af2" 840 | integrity sha512-r4x5+FowKG6q+/Wj0W9nidx7QO31BJwmR2uEo+Qh3YLGQ8SbBAFuDFpTxzly/I2gsbrFwBuIjrMp423L3O5U3w== 841 | 842 | es-abstract@^1.19.0, es-abstract@^1.20.4: 843 | version "1.21.2" 844 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" 845 | integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== 846 | dependencies: 847 | array-buffer-byte-length "^1.0.0" 848 | available-typed-arrays "^1.0.5" 849 | call-bind "^1.0.2" 850 | es-set-tostringtag "^2.0.1" 851 | es-to-primitive "^1.2.1" 852 | function.prototype.name "^1.1.5" 853 | get-intrinsic "^1.2.0" 854 | get-symbol-description "^1.0.0" 855 | globalthis "^1.0.3" 856 | gopd "^1.0.1" 857 | has "^1.0.3" 858 | has-property-descriptors "^1.0.0" 859 | has-proto "^1.0.1" 860 | has-symbols "^1.0.3" 861 | internal-slot "^1.0.5" 862 | is-array-buffer "^3.0.2" 863 | is-callable "^1.2.7" 864 | is-negative-zero "^2.0.2" 865 | is-regex "^1.1.4" 866 | is-shared-array-buffer "^1.0.2" 867 | is-string "^1.0.7" 868 | is-typed-array "^1.1.10" 869 | is-weakref "^1.0.2" 870 | object-inspect "^1.12.3" 871 | object-keys "^1.1.1" 872 | object.assign "^4.1.4" 873 | regexp.prototype.flags "^1.4.3" 874 | safe-regex-test "^1.0.0" 875 | string.prototype.trim "^1.2.7" 876 | string.prototype.trimend "^1.0.6" 877 | string.prototype.trimstart "^1.0.6" 878 | typed-array-length "^1.0.4" 879 | unbox-primitive "^1.0.2" 880 | which-typed-array "^1.1.9" 881 | 882 | es-abstract@^1.21.3: 883 | version "1.22.1" 884 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" 885 | integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== 886 | dependencies: 887 | array-buffer-byte-length "^1.0.0" 888 | arraybuffer.prototype.slice "^1.0.1" 889 | available-typed-arrays "^1.0.5" 890 | call-bind "^1.0.2" 891 | es-set-tostringtag "^2.0.1" 892 | es-to-primitive "^1.2.1" 893 | function.prototype.name "^1.1.5" 894 | get-intrinsic "^1.2.1" 895 | get-symbol-description "^1.0.0" 896 | globalthis "^1.0.3" 897 | gopd "^1.0.1" 898 | has "^1.0.3" 899 | has-property-descriptors "^1.0.0" 900 | has-proto "^1.0.1" 901 | has-symbols "^1.0.3" 902 | internal-slot "^1.0.5" 903 | is-array-buffer "^3.0.2" 904 | is-callable "^1.2.7" 905 | is-negative-zero "^2.0.2" 906 | is-regex "^1.1.4" 907 | is-shared-array-buffer "^1.0.2" 908 | is-string "^1.0.7" 909 | is-typed-array "^1.1.10" 910 | is-weakref "^1.0.2" 911 | object-inspect "^1.12.3" 912 | object-keys "^1.1.1" 913 | object.assign "^4.1.4" 914 | regexp.prototype.flags "^1.5.0" 915 | safe-array-concat "^1.0.0" 916 | safe-regex-test "^1.0.0" 917 | string.prototype.trim "^1.2.7" 918 | string.prototype.trimend "^1.0.6" 919 | string.prototype.trimstart "^1.0.6" 920 | typed-array-buffer "^1.0.0" 921 | typed-array-byte-length "^1.0.0" 922 | typed-array-byte-offset "^1.0.0" 923 | typed-array-length "^1.0.4" 924 | unbox-primitive "^1.0.2" 925 | which-typed-array "^1.1.10" 926 | 927 | es-iterator-helpers@^1.0.12: 928 | version "1.0.12" 929 | resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.12.tgz#272f7270f270f4d63dd8aa718228ffa901fd086e" 930 | integrity sha512-T6Ldv67RYULYtZ1k1omngDTVQSTVNX/ZSjDiwlw0PMokhy8kq2LFElleaEjpvlSaXh9ugJ4zrBgbQ7L+Bjdm3Q== 931 | dependencies: 932 | asynciterator.prototype "^1.0.0" 933 | es-abstract "^1.21.3" 934 | es-set-tostringtag "^2.0.1" 935 | function-bind "^1.1.1" 936 | globalthis "^1.0.3" 937 | has-proto "^1.0.1" 938 | has-symbols "^1.0.3" 939 | internal-slot "^1.0.5" 940 | iterator.prototype "^1.1.0" 941 | safe-array-concat "^1.0.0" 942 | 943 | es-set-tostringtag@^2.0.1: 944 | version "2.0.1" 945 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 946 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 947 | dependencies: 948 | get-intrinsic "^1.1.3" 949 | has "^1.0.3" 950 | has-tostringtag "^1.0.0" 951 | 952 | es-shim-unscopables@^1.0.0: 953 | version "1.0.0" 954 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 955 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 956 | dependencies: 957 | has "^1.0.3" 958 | 959 | es-to-primitive@^1.2.1: 960 | version "1.2.1" 961 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 962 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 963 | dependencies: 964 | is-callable "^1.1.4" 965 | is-date-object "^1.0.1" 966 | is-symbol "^1.0.2" 967 | 968 | esbuild@^0.19.3: 969 | version "0.19.8" 970 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.8.tgz#ad05b72281d84483fa6b5345bd246c27a207b8f1" 971 | integrity sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w== 972 | optionalDependencies: 973 | "@esbuild/android-arm" "0.19.8" 974 | "@esbuild/android-arm64" "0.19.8" 975 | "@esbuild/android-x64" "0.19.8" 976 | "@esbuild/darwin-arm64" "0.19.8" 977 | "@esbuild/darwin-x64" "0.19.8" 978 | "@esbuild/freebsd-arm64" "0.19.8" 979 | "@esbuild/freebsd-x64" "0.19.8" 980 | "@esbuild/linux-arm" "0.19.8" 981 | "@esbuild/linux-arm64" "0.19.8" 982 | "@esbuild/linux-ia32" "0.19.8" 983 | "@esbuild/linux-loong64" "0.19.8" 984 | "@esbuild/linux-mips64el" "0.19.8" 985 | "@esbuild/linux-ppc64" "0.19.8" 986 | "@esbuild/linux-riscv64" "0.19.8" 987 | "@esbuild/linux-s390x" "0.19.8" 988 | "@esbuild/linux-x64" "0.19.8" 989 | "@esbuild/netbsd-x64" "0.19.8" 990 | "@esbuild/openbsd-x64" "0.19.8" 991 | "@esbuild/sunos-x64" "0.19.8" 992 | "@esbuild/win32-arm64" "0.19.8" 993 | "@esbuild/win32-ia32" "0.19.8" 994 | "@esbuild/win32-x64" "0.19.8" 995 | 996 | escalade@^3.1.1: 997 | version "3.1.1" 998 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 999 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1000 | 1001 | escape-string-regexp@^1.0.5: 1002 | version "1.0.5" 1003 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1004 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1005 | 1006 | escape-string-regexp@^4.0.0: 1007 | version "4.0.0" 1008 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1009 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1010 | 1011 | eslint-plugin-react-hooks@^4.6.0: 1012 | version "4.6.0" 1013 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 1014 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 1015 | 1016 | eslint-plugin-react-refresh@^0.4.4: 1017 | version "0.4.4" 1018 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.4.tgz#b74ed2a06ee998e4126cdf92f638a66f2cc82ecc" 1019 | integrity sha512-eD83+65e8YPVg6603Om2iCIwcQJf/y7++MWm4tACtEswFLYMwxwVWAfwN+e19f5Ad/FOyyNg9Dfi5lXhH3Y3rA== 1020 | 1021 | eslint-plugin-react@^7.33.2: 1022 | version "7.33.2" 1023 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" 1024 | integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== 1025 | dependencies: 1026 | array-includes "^3.1.6" 1027 | array.prototype.flatmap "^1.3.1" 1028 | array.prototype.tosorted "^1.1.1" 1029 | doctrine "^2.1.0" 1030 | es-iterator-helpers "^1.0.12" 1031 | estraverse "^5.3.0" 1032 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1033 | minimatch "^3.1.2" 1034 | object.entries "^1.1.6" 1035 | object.fromentries "^2.0.6" 1036 | object.hasown "^1.1.2" 1037 | object.values "^1.1.6" 1038 | prop-types "^15.8.1" 1039 | resolve "^2.0.0-next.4" 1040 | semver "^6.3.1" 1041 | string.prototype.matchall "^4.0.8" 1042 | 1043 | eslint-scope@^7.2.2: 1044 | version "7.2.2" 1045 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" 1046 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 1047 | dependencies: 1048 | esrecurse "^4.3.0" 1049 | estraverse "^5.2.0" 1050 | 1051 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 1052 | version "3.4.3" 1053 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 1054 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 1055 | 1056 | eslint@^8.53.0: 1057 | version "8.55.0" 1058 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.55.0.tgz#078cb7b847d66f2c254ea1794fa395bf8e7e03f8" 1059 | integrity sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA== 1060 | dependencies: 1061 | "@eslint-community/eslint-utils" "^4.2.0" 1062 | "@eslint-community/regexpp" "^4.6.1" 1063 | "@eslint/eslintrc" "^2.1.4" 1064 | "@eslint/js" "8.55.0" 1065 | "@humanwhocodes/config-array" "^0.11.13" 1066 | "@humanwhocodes/module-importer" "^1.0.1" 1067 | "@nodelib/fs.walk" "^1.2.8" 1068 | "@ungap/structured-clone" "^1.2.0" 1069 | ajv "^6.12.4" 1070 | chalk "^4.0.0" 1071 | cross-spawn "^7.0.2" 1072 | debug "^4.3.2" 1073 | doctrine "^3.0.0" 1074 | escape-string-regexp "^4.0.0" 1075 | eslint-scope "^7.2.2" 1076 | eslint-visitor-keys "^3.4.3" 1077 | espree "^9.6.1" 1078 | esquery "^1.4.2" 1079 | esutils "^2.0.2" 1080 | fast-deep-equal "^3.1.3" 1081 | file-entry-cache "^6.0.1" 1082 | find-up "^5.0.0" 1083 | glob-parent "^6.0.2" 1084 | globals "^13.19.0" 1085 | graphemer "^1.4.0" 1086 | ignore "^5.2.0" 1087 | imurmurhash "^0.1.4" 1088 | is-glob "^4.0.0" 1089 | is-path-inside "^3.0.3" 1090 | js-yaml "^4.1.0" 1091 | json-stable-stringify-without-jsonify "^1.0.1" 1092 | levn "^0.4.1" 1093 | lodash.merge "^4.6.2" 1094 | minimatch "^3.1.2" 1095 | natural-compare "^1.4.0" 1096 | optionator "^0.9.3" 1097 | strip-ansi "^6.0.1" 1098 | text-table "^0.2.0" 1099 | 1100 | espree@^9.6.0, espree@^9.6.1: 1101 | version "9.6.1" 1102 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" 1103 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 1104 | dependencies: 1105 | acorn "^8.9.0" 1106 | acorn-jsx "^5.3.2" 1107 | eslint-visitor-keys "^3.4.1" 1108 | 1109 | esquery@^1.4.2: 1110 | version "1.5.0" 1111 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 1112 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 1113 | dependencies: 1114 | estraverse "^5.1.0" 1115 | 1116 | esrecurse@^4.3.0: 1117 | version "4.3.0" 1118 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1119 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1120 | dependencies: 1121 | estraverse "^5.2.0" 1122 | 1123 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1124 | version "5.3.0" 1125 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1126 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1127 | 1128 | esutils@^2.0.2: 1129 | version "2.0.3" 1130 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1131 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1132 | 1133 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1134 | version "3.1.3" 1135 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1136 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1137 | 1138 | fast-json-stable-stringify@^2.0.0: 1139 | version "2.1.0" 1140 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1141 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1142 | 1143 | fast-levenshtein@^2.0.6: 1144 | version "2.0.6" 1145 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1146 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1147 | 1148 | fastq@^1.6.0: 1149 | version "1.15.0" 1150 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 1151 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1152 | dependencies: 1153 | reusify "^1.0.4" 1154 | 1155 | file-entry-cache@^6.0.1: 1156 | version "6.0.1" 1157 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1158 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1159 | dependencies: 1160 | flat-cache "^3.0.4" 1161 | 1162 | find-up@^5.0.0: 1163 | version "5.0.0" 1164 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1165 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1166 | dependencies: 1167 | locate-path "^6.0.0" 1168 | path-exists "^4.0.0" 1169 | 1170 | flat-cache@^3.0.4: 1171 | version "3.0.4" 1172 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1173 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1174 | dependencies: 1175 | flatted "^3.1.0" 1176 | rimraf "^3.0.2" 1177 | 1178 | flatted@^3.1.0: 1179 | version "3.2.7" 1180 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 1181 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1182 | 1183 | for-each@^0.3.3: 1184 | version "0.3.3" 1185 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 1186 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1187 | dependencies: 1188 | is-callable "^1.1.3" 1189 | 1190 | fs.realpath@^1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1193 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1194 | 1195 | fsevents@~2.3.2: 1196 | version "2.3.2" 1197 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1198 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1199 | 1200 | fsevents@~2.3.3: 1201 | version "2.3.3" 1202 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1203 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1204 | 1205 | function-bind@^1.1.1: 1206 | version "1.1.1" 1207 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1208 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1209 | 1210 | function.prototype.name@^1.1.5: 1211 | version "1.1.5" 1212 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1213 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1214 | dependencies: 1215 | call-bind "^1.0.2" 1216 | define-properties "^1.1.3" 1217 | es-abstract "^1.19.0" 1218 | functions-have-names "^1.2.2" 1219 | 1220 | functions-have-names@^1.2.2, functions-have-names@^1.2.3: 1221 | version "1.2.3" 1222 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1223 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1224 | 1225 | gensync@^1.0.0-beta.2: 1226 | version "1.0.0-beta.2" 1227 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1228 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1229 | 1230 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: 1231 | version "1.2.1" 1232 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" 1233 | integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== 1234 | dependencies: 1235 | function-bind "^1.1.1" 1236 | has "^1.0.3" 1237 | has-proto "^1.0.1" 1238 | has-symbols "^1.0.3" 1239 | 1240 | get-symbol-description@^1.0.0: 1241 | version "1.0.0" 1242 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1243 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1244 | dependencies: 1245 | call-bind "^1.0.2" 1246 | get-intrinsic "^1.1.1" 1247 | 1248 | glob-parent@^6.0.2: 1249 | version "6.0.2" 1250 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1251 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1252 | dependencies: 1253 | is-glob "^4.0.3" 1254 | 1255 | glob@^7.1.3: 1256 | version "7.2.3" 1257 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1258 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1259 | dependencies: 1260 | fs.realpath "^1.0.0" 1261 | inflight "^1.0.4" 1262 | inherits "2" 1263 | minimatch "^3.1.1" 1264 | once "^1.3.0" 1265 | path-is-absolute "^1.0.0" 1266 | 1267 | globals@^11.1.0: 1268 | version "11.12.0" 1269 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1270 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1271 | 1272 | globals@^13.19.0: 1273 | version "13.20.0" 1274 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1275 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1276 | dependencies: 1277 | type-fest "^0.20.2" 1278 | 1279 | globalthis@^1.0.3: 1280 | version "1.0.3" 1281 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1282 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1283 | dependencies: 1284 | define-properties "^1.1.3" 1285 | 1286 | gopd@^1.0.1: 1287 | version "1.0.1" 1288 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1289 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1290 | dependencies: 1291 | get-intrinsic "^1.1.3" 1292 | 1293 | graphemer@^1.4.0: 1294 | version "1.4.0" 1295 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 1296 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1297 | 1298 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1299 | version "1.0.2" 1300 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1301 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1302 | 1303 | has-flag@^3.0.0: 1304 | version "3.0.0" 1305 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1306 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1307 | 1308 | has-flag@^4.0.0: 1309 | version "4.0.0" 1310 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1311 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1312 | 1313 | has-property-descriptors@^1.0.0: 1314 | version "1.0.0" 1315 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1316 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1317 | dependencies: 1318 | get-intrinsic "^1.1.1" 1319 | 1320 | has-proto@^1.0.1: 1321 | version "1.0.1" 1322 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1323 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1324 | 1325 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1326 | version "1.0.3" 1327 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1328 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1329 | 1330 | has-tostringtag@^1.0.0: 1331 | version "1.0.0" 1332 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1333 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1334 | dependencies: 1335 | has-symbols "^1.0.2" 1336 | 1337 | has@^1.0.3: 1338 | version "1.0.3" 1339 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1340 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1341 | dependencies: 1342 | function-bind "^1.1.1" 1343 | 1344 | ignore@^5.2.0: 1345 | version "5.2.4" 1346 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 1347 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1348 | 1349 | import-fresh@^3.2.1: 1350 | version "3.3.0" 1351 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1352 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1353 | dependencies: 1354 | parent-module "^1.0.0" 1355 | resolve-from "^4.0.0" 1356 | 1357 | imurmurhash@^0.1.4: 1358 | version "0.1.4" 1359 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1360 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1361 | 1362 | inflight@^1.0.4: 1363 | version "1.0.6" 1364 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1365 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1366 | dependencies: 1367 | once "^1.3.0" 1368 | wrappy "1" 1369 | 1370 | inherits@2: 1371 | version "2.0.4" 1372 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1373 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1374 | 1375 | internal-slot@^1.0.3, internal-slot@^1.0.5: 1376 | version "1.0.5" 1377 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" 1378 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 1379 | dependencies: 1380 | get-intrinsic "^1.2.0" 1381 | has "^1.0.3" 1382 | side-channel "^1.0.4" 1383 | 1384 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: 1385 | version "3.0.2" 1386 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" 1387 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1388 | dependencies: 1389 | call-bind "^1.0.2" 1390 | get-intrinsic "^1.2.0" 1391 | is-typed-array "^1.1.10" 1392 | 1393 | is-async-function@^2.0.0: 1394 | version "2.0.0" 1395 | resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" 1396 | integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== 1397 | dependencies: 1398 | has-tostringtag "^1.0.0" 1399 | 1400 | is-bigint@^1.0.1: 1401 | version "1.0.4" 1402 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1403 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1404 | dependencies: 1405 | has-bigints "^1.0.1" 1406 | 1407 | is-boolean-object@^1.1.0: 1408 | version "1.1.2" 1409 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1410 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1411 | dependencies: 1412 | call-bind "^1.0.2" 1413 | has-tostringtag "^1.0.0" 1414 | 1415 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1416 | version "1.2.7" 1417 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1418 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1419 | 1420 | is-core-module@^2.9.0: 1421 | version "2.12.1" 1422 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" 1423 | integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== 1424 | dependencies: 1425 | has "^1.0.3" 1426 | 1427 | is-date-object@^1.0.1, is-date-object@^1.0.5: 1428 | version "1.0.5" 1429 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1430 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1431 | dependencies: 1432 | has-tostringtag "^1.0.0" 1433 | 1434 | is-extglob@^2.1.1: 1435 | version "2.1.1" 1436 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1437 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1438 | 1439 | is-finalizationregistry@^1.0.2: 1440 | version "1.0.2" 1441 | resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" 1442 | integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== 1443 | dependencies: 1444 | call-bind "^1.0.2" 1445 | 1446 | is-generator-function@^1.0.10: 1447 | version "1.0.10" 1448 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" 1449 | integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== 1450 | dependencies: 1451 | has-tostringtag "^1.0.0" 1452 | 1453 | is-glob@^4.0.0, is-glob@^4.0.3: 1454 | version "4.0.3" 1455 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1456 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1457 | dependencies: 1458 | is-extglob "^2.1.1" 1459 | 1460 | is-map@^2.0.1: 1461 | version "2.0.2" 1462 | resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" 1463 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 1464 | 1465 | is-negative-zero@^2.0.2: 1466 | version "2.0.2" 1467 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1468 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1469 | 1470 | is-number-object@^1.0.4: 1471 | version "1.0.7" 1472 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1473 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1474 | dependencies: 1475 | has-tostringtag "^1.0.0" 1476 | 1477 | is-path-inside@^3.0.3: 1478 | version "3.0.3" 1479 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1480 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1481 | 1482 | is-regex@^1.1.4: 1483 | version "1.1.4" 1484 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1485 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1486 | dependencies: 1487 | call-bind "^1.0.2" 1488 | has-tostringtag "^1.0.0" 1489 | 1490 | is-set@^2.0.1: 1491 | version "2.0.2" 1492 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" 1493 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 1494 | 1495 | is-shared-array-buffer@^1.0.2: 1496 | version "1.0.2" 1497 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1498 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1499 | dependencies: 1500 | call-bind "^1.0.2" 1501 | 1502 | is-string@^1.0.5, is-string@^1.0.7: 1503 | version "1.0.7" 1504 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1505 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1506 | dependencies: 1507 | has-tostringtag "^1.0.0" 1508 | 1509 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1510 | version "1.0.4" 1511 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1512 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1513 | dependencies: 1514 | has-symbols "^1.0.2" 1515 | 1516 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1517 | version "1.1.10" 1518 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 1519 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1520 | dependencies: 1521 | available-typed-arrays "^1.0.5" 1522 | call-bind "^1.0.2" 1523 | for-each "^0.3.3" 1524 | gopd "^1.0.1" 1525 | has-tostringtag "^1.0.0" 1526 | 1527 | is-weakmap@^2.0.1: 1528 | version "2.0.1" 1529 | resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" 1530 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 1531 | 1532 | is-weakref@^1.0.2: 1533 | version "1.0.2" 1534 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1535 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1536 | dependencies: 1537 | call-bind "^1.0.2" 1538 | 1539 | is-weakset@^2.0.1: 1540 | version "2.0.2" 1541 | resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" 1542 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 1543 | dependencies: 1544 | call-bind "^1.0.2" 1545 | get-intrinsic "^1.1.1" 1546 | 1547 | isarray@^2.0.5: 1548 | version "2.0.5" 1549 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 1550 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1551 | 1552 | isexe@^2.0.0: 1553 | version "2.0.0" 1554 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1555 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1556 | 1557 | iterator.prototype@^1.1.0: 1558 | version "1.1.0" 1559 | resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.0.tgz#690c88b043d821f783843aaf725d7ac3b62e3b46" 1560 | integrity sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw== 1561 | dependencies: 1562 | define-properties "^1.1.4" 1563 | get-intrinsic "^1.1.3" 1564 | has-symbols "^1.0.3" 1565 | has-tostringtag "^1.0.0" 1566 | reflect.getprototypeof "^1.0.3" 1567 | 1568 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1569 | version "4.0.0" 1570 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1571 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1572 | 1573 | js-yaml@^4.1.0: 1574 | version "4.1.0" 1575 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1576 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1577 | dependencies: 1578 | argparse "^2.0.1" 1579 | 1580 | jsesc@^2.5.1: 1581 | version "2.5.2" 1582 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1583 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1584 | 1585 | json-schema-traverse@^0.4.1: 1586 | version "0.4.1" 1587 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1588 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1589 | 1590 | json-stable-stringify-without-jsonify@^1.0.1: 1591 | version "1.0.1" 1592 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1593 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1594 | 1595 | json5@^2.2.3: 1596 | version "2.2.3" 1597 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1598 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1599 | 1600 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 1601 | version "3.3.4" 1602 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9" 1603 | integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw== 1604 | dependencies: 1605 | array-includes "^3.1.6" 1606 | array.prototype.flat "^1.3.1" 1607 | object.assign "^4.1.4" 1608 | object.values "^1.1.6" 1609 | 1610 | levn@^0.4.1: 1611 | version "0.4.1" 1612 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1613 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1614 | dependencies: 1615 | prelude-ls "^1.2.1" 1616 | type-check "~0.4.0" 1617 | 1618 | locate-path@^6.0.0: 1619 | version "6.0.0" 1620 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1621 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1622 | dependencies: 1623 | p-locate "^5.0.0" 1624 | 1625 | lodash.merge@^4.6.2: 1626 | version "4.6.2" 1627 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1628 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1629 | 1630 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1631 | version "1.4.0" 1632 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1633 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1634 | dependencies: 1635 | js-tokens "^3.0.0 || ^4.0.0" 1636 | 1637 | lru-cache@^5.1.1: 1638 | version "5.1.1" 1639 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1640 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1641 | dependencies: 1642 | yallist "^3.0.2" 1643 | 1644 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1645 | version "3.1.2" 1646 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1647 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1648 | dependencies: 1649 | brace-expansion "^1.1.7" 1650 | 1651 | ms@2.1.2: 1652 | version "2.1.2" 1653 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1654 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1655 | 1656 | nanoid@^3.3.7: 1657 | version "3.3.7" 1658 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 1659 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1660 | 1661 | natural-compare@^1.4.0: 1662 | version "1.4.0" 1663 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1664 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1665 | 1666 | node-releases@^2.0.14: 1667 | version "2.0.14" 1668 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" 1669 | integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== 1670 | 1671 | object-assign@^4.1.1: 1672 | version "4.1.1" 1673 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1674 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1675 | 1676 | object-inspect@^1.12.3, object-inspect@^1.9.0: 1677 | version "1.12.3" 1678 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 1679 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1680 | 1681 | object-keys@^1.1.1: 1682 | version "1.1.1" 1683 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1684 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1685 | 1686 | object.assign@^4.1.4: 1687 | version "4.1.4" 1688 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1689 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1690 | dependencies: 1691 | call-bind "^1.0.2" 1692 | define-properties "^1.1.4" 1693 | has-symbols "^1.0.3" 1694 | object-keys "^1.1.1" 1695 | 1696 | object.entries@^1.1.6: 1697 | version "1.1.6" 1698 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1699 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1700 | dependencies: 1701 | call-bind "^1.0.2" 1702 | define-properties "^1.1.4" 1703 | es-abstract "^1.20.4" 1704 | 1705 | object.fromentries@^2.0.6: 1706 | version "2.0.6" 1707 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1708 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1709 | dependencies: 1710 | call-bind "^1.0.2" 1711 | define-properties "^1.1.4" 1712 | es-abstract "^1.20.4" 1713 | 1714 | object.hasown@^1.1.2: 1715 | version "1.1.2" 1716 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1717 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1718 | dependencies: 1719 | define-properties "^1.1.4" 1720 | es-abstract "^1.20.4" 1721 | 1722 | object.values@^1.1.6: 1723 | version "1.1.6" 1724 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1725 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1726 | dependencies: 1727 | call-bind "^1.0.2" 1728 | define-properties "^1.1.4" 1729 | es-abstract "^1.20.4" 1730 | 1731 | once@^1.3.0: 1732 | version "1.4.0" 1733 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1734 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1735 | dependencies: 1736 | wrappy "1" 1737 | 1738 | optionator@^0.9.3: 1739 | version "0.9.3" 1740 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" 1741 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1742 | dependencies: 1743 | "@aashutoshrathi/word-wrap" "^1.2.3" 1744 | deep-is "^0.1.3" 1745 | fast-levenshtein "^2.0.6" 1746 | levn "^0.4.1" 1747 | prelude-ls "^1.2.1" 1748 | type-check "^0.4.0" 1749 | 1750 | p-limit@^3.0.2: 1751 | version "3.1.0" 1752 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1753 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1754 | dependencies: 1755 | yocto-queue "^0.1.0" 1756 | 1757 | p-locate@^5.0.0: 1758 | version "5.0.0" 1759 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1760 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1761 | dependencies: 1762 | p-limit "^3.0.2" 1763 | 1764 | parent-module@^1.0.0: 1765 | version "1.0.1" 1766 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1767 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1768 | dependencies: 1769 | callsites "^3.0.0" 1770 | 1771 | path-exists@^4.0.0: 1772 | version "4.0.0" 1773 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1774 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1775 | 1776 | path-is-absolute@^1.0.0: 1777 | version "1.0.1" 1778 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1779 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1780 | 1781 | path-key@^3.1.0: 1782 | version "3.1.1" 1783 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1784 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1785 | 1786 | path-parse@^1.0.7: 1787 | version "1.0.7" 1788 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1789 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1790 | 1791 | picocolors@^1.0.0: 1792 | version "1.0.0" 1793 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1794 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1795 | 1796 | postcss@^8.4.32: 1797 | version "8.4.32" 1798 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9" 1799 | integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw== 1800 | dependencies: 1801 | nanoid "^3.3.7" 1802 | picocolors "^1.0.0" 1803 | source-map-js "^1.0.2" 1804 | 1805 | prelude-ls@^1.2.1: 1806 | version "1.2.1" 1807 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1808 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1809 | 1810 | prop-types@^15.8.1: 1811 | version "15.8.1" 1812 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1813 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1814 | dependencies: 1815 | loose-envify "^1.4.0" 1816 | object-assign "^4.1.1" 1817 | react-is "^16.13.1" 1818 | 1819 | punycode@^2.1.0: 1820 | version "2.3.0" 1821 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1822 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1823 | 1824 | queue-microtask@^1.2.2: 1825 | version "1.2.3" 1826 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1827 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1828 | 1829 | react-dom@^18.2.0: 1830 | version "18.2.0" 1831 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1832 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1833 | dependencies: 1834 | loose-envify "^1.1.0" 1835 | scheduler "^0.23.0" 1836 | 1837 | react-is@^16.13.1: 1838 | version "16.13.1" 1839 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1840 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1841 | 1842 | react-refresh@^0.14.0: 1843 | version "0.14.0" 1844 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" 1845 | integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== 1846 | 1847 | react@^18.2.0: 1848 | version "18.2.0" 1849 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1850 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1851 | dependencies: 1852 | loose-envify "^1.1.0" 1853 | 1854 | reflect.getprototypeof@^1.0.3: 1855 | version "1.0.3" 1856 | resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.3.tgz#2738fd896fcc3477ffbd4190b40c2458026b6928" 1857 | integrity sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw== 1858 | dependencies: 1859 | call-bind "^1.0.2" 1860 | define-properties "^1.1.4" 1861 | es-abstract "^1.20.4" 1862 | get-intrinsic "^1.1.1" 1863 | globalthis "^1.0.3" 1864 | which-builtin-type "^1.1.3" 1865 | 1866 | regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: 1867 | version "1.5.0" 1868 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" 1869 | integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== 1870 | dependencies: 1871 | call-bind "^1.0.2" 1872 | define-properties "^1.2.0" 1873 | functions-have-names "^1.2.3" 1874 | 1875 | resolve-from@^4.0.0: 1876 | version "4.0.0" 1877 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1878 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1879 | 1880 | resolve@^2.0.0-next.4: 1881 | version "2.0.0-next.4" 1882 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1883 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1884 | dependencies: 1885 | is-core-module "^2.9.0" 1886 | path-parse "^1.0.7" 1887 | supports-preserve-symlinks-flag "^1.0.0" 1888 | 1889 | reusify@^1.0.4: 1890 | version "1.0.4" 1891 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1892 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1893 | 1894 | rimraf@^3.0.2: 1895 | version "3.0.2" 1896 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1897 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1898 | dependencies: 1899 | glob "^7.1.3" 1900 | 1901 | rollup@^4.2.0: 1902 | version "4.6.1" 1903 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.6.1.tgz#351501c86b5b4f976dde8c5837516452b59921f8" 1904 | integrity sha512-jZHaZotEHQaHLgKr8JnQiDT1rmatjgKlMekyksz+yk9jt/8z9quNjnKNRoaM0wd9DC2QKXjmWWuDYtM3jfF8pQ== 1905 | optionalDependencies: 1906 | "@rollup/rollup-android-arm-eabi" "4.6.1" 1907 | "@rollup/rollup-android-arm64" "4.6.1" 1908 | "@rollup/rollup-darwin-arm64" "4.6.1" 1909 | "@rollup/rollup-darwin-x64" "4.6.1" 1910 | "@rollup/rollup-linux-arm-gnueabihf" "4.6.1" 1911 | "@rollup/rollup-linux-arm64-gnu" "4.6.1" 1912 | "@rollup/rollup-linux-arm64-musl" "4.6.1" 1913 | "@rollup/rollup-linux-x64-gnu" "4.6.1" 1914 | "@rollup/rollup-linux-x64-musl" "4.6.1" 1915 | "@rollup/rollup-win32-arm64-msvc" "4.6.1" 1916 | "@rollup/rollup-win32-ia32-msvc" "4.6.1" 1917 | "@rollup/rollup-win32-x64-msvc" "4.6.1" 1918 | fsevents "~2.3.2" 1919 | 1920 | run-parallel@^1.1.9: 1921 | version "1.2.0" 1922 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1923 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1924 | dependencies: 1925 | queue-microtask "^1.2.2" 1926 | 1927 | safe-array-concat@^1.0.0: 1928 | version "1.0.0" 1929 | resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" 1930 | integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== 1931 | dependencies: 1932 | call-bind "^1.0.2" 1933 | get-intrinsic "^1.2.0" 1934 | has-symbols "^1.0.3" 1935 | isarray "^2.0.5" 1936 | 1937 | safe-regex-test@^1.0.0: 1938 | version "1.0.0" 1939 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1940 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1941 | dependencies: 1942 | call-bind "^1.0.2" 1943 | get-intrinsic "^1.1.3" 1944 | is-regex "^1.1.4" 1945 | 1946 | scheduler@^0.23.0: 1947 | version "0.23.0" 1948 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1949 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1950 | dependencies: 1951 | loose-envify "^1.1.0" 1952 | 1953 | semver@^6.3.1: 1954 | version "6.3.1" 1955 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 1956 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1957 | 1958 | shebang-command@^2.0.0: 1959 | version "2.0.0" 1960 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1961 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1962 | dependencies: 1963 | shebang-regex "^3.0.0" 1964 | 1965 | shebang-regex@^3.0.0: 1966 | version "3.0.0" 1967 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1968 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1969 | 1970 | side-channel@^1.0.4: 1971 | version "1.0.4" 1972 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1973 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1974 | dependencies: 1975 | call-bind "^1.0.0" 1976 | get-intrinsic "^1.0.2" 1977 | object-inspect "^1.9.0" 1978 | 1979 | source-map-js@^1.0.2: 1980 | version "1.0.2" 1981 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1982 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1983 | 1984 | string.prototype.matchall@^4.0.8: 1985 | version "4.0.8" 1986 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 1987 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1988 | dependencies: 1989 | call-bind "^1.0.2" 1990 | define-properties "^1.1.4" 1991 | es-abstract "^1.20.4" 1992 | get-intrinsic "^1.1.3" 1993 | has-symbols "^1.0.3" 1994 | internal-slot "^1.0.3" 1995 | regexp.prototype.flags "^1.4.3" 1996 | side-channel "^1.0.4" 1997 | 1998 | string.prototype.trim@^1.2.7: 1999 | version "1.2.7" 2000 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" 2001 | integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== 2002 | dependencies: 2003 | call-bind "^1.0.2" 2004 | define-properties "^1.1.4" 2005 | es-abstract "^1.20.4" 2006 | 2007 | string.prototype.trimend@^1.0.6: 2008 | version "1.0.6" 2009 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 2010 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 2011 | dependencies: 2012 | call-bind "^1.0.2" 2013 | define-properties "^1.1.4" 2014 | es-abstract "^1.20.4" 2015 | 2016 | string.prototype.trimstart@^1.0.6: 2017 | version "1.0.6" 2018 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 2019 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 2020 | dependencies: 2021 | call-bind "^1.0.2" 2022 | define-properties "^1.1.4" 2023 | es-abstract "^1.20.4" 2024 | 2025 | strip-ansi@^6.0.1: 2026 | version "6.0.1" 2027 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2028 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2029 | dependencies: 2030 | ansi-regex "^5.0.1" 2031 | 2032 | strip-json-comments@^3.1.1: 2033 | version "3.1.1" 2034 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2035 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2036 | 2037 | supports-color@^5.3.0: 2038 | version "5.5.0" 2039 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2040 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2041 | dependencies: 2042 | has-flag "^3.0.0" 2043 | 2044 | supports-color@^7.1.0: 2045 | version "7.2.0" 2046 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2047 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2048 | dependencies: 2049 | has-flag "^4.0.0" 2050 | 2051 | supports-preserve-symlinks-flag@^1.0.0: 2052 | version "1.0.0" 2053 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2054 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2055 | 2056 | text-table@^0.2.0: 2057 | version "0.2.0" 2058 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2059 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2060 | 2061 | to-fast-properties@^2.0.0: 2062 | version "2.0.0" 2063 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2064 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2065 | 2066 | type-check@^0.4.0, type-check@~0.4.0: 2067 | version "0.4.0" 2068 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2069 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2070 | dependencies: 2071 | prelude-ls "^1.2.1" 2072 | 2073 | type-fest@^0.20.2: 2074 | version "0.20.2" 2075 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2076 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2077 | 2078 | typed-array-buffer@^1.0.0: 2079 | version "1.0.0" 2080 | resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" 2081 | integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== 2082 | dependencies: 2083 | call-bind "^1.0.2" 2084 | get-intrinsic "^1.2.1" 2085 | is-typed-array "^1.1.10" 2086 | 2087 | typed-array-byte-length@^1.0.0: 2088 | version "1.0.0" 2089 | resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" 2090 | integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== 2091 | dependencies: 2092 | call-bind "^1.0.2" 2093 | for-each "^0.3.3" 2094 | has-proto "^1.0.1" 2095 | is-typed-array "^1.1.10" 2096 | 2097 | typed-array-byte-offset@^1.0.0: 2098 | version "1.0.0" 2099 | resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" 2100 | integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== 2101 | dependencies: 2102 | available-typed-arrays "^1.0.5" 2103 | call-bind "^1.0.2" 2104 | for-each "^0.3.3" 2105 | has-proto "^1.0.1" 2106 | is-typed-array "^1.1.10" 2107 | 2108 | typed-array-length@^1.0.4: 2109 | version "1.0.4" 2110 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 2111 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2112 | dependencies: 2113 | call-bind "^1.0.2" 2114 | for-each "^0.3.3" 2115 | is-typed-array "^1.1.9" 2116 | 2117 | unbox-primitive@^1.0.2: 2118 | version "1.0.2" 2119 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2120 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2121 | dependencies: 2122 | call-bind "^1.0.2" 2123 | has-bigints "^1.0.2" 2124 | has-symbols "^1.0.3" 2125 | which-boxed-primitive "^1.0.2" 2126 | 2127 | update-browserslist-db@^1.0.13: 2128 | version "1.0.13" 2129 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" 2130 | integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== 2131 | dependencies: 2132 | escalade "^3.1.1" 2133 | picocolors "^1.0.0" 2134 | 2135 | uri-js@^4.2.2: 2136 | version "4.4.1" 2137 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2138 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2139 | dependencies: 2140 | punycode "^2.1.0" 2141 | 2142 | vite@^5.0.12: 2143 | version "5.0.12" 2144 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.0.12.tgz#8a2ffd4da36c132aec4adafe05d7adde38333c47" 2145 | integrity sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w== 2146 | dependencies: 2147 | esbuild "^0.19.3" 2148 | postcss "^8.4.32" 2149 | rollup "^4.2.0" 2150 | optionalDependencies: 2151 | fsevents "~2.3.3" 2152 | 2153 | which-boxed-primitive@^1.0.2: 2154 | version "1.0.2" 2155 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2156 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2157 | dependencies: 2158 | is-bigint "^1.0.1" 2159 | is-boolean-object "^1.1.0" 2160 | is-number-object "^1.0.4" 2161 | is-string "^1.0.5" 2162 | is-symbol "^1.0.3" 2163 | 2164 | which-builtin-type@^1.1.3: 2165 | version "1.1.3" 2166 | resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" 2167 | integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== 2168 | dependencies: 2169 | function.prototype.name "^1.1.5" 2170 | has-tostringtag "^1.0.0" 2171 | is-async-function "^2.0.0" 2172 | is-date-object "^1.0.5" 2173 | is-finalizationregistry "^1.0.2" 2174 | is-generator-function "^1.0.10" 2175 | is-regex "^1.1.4" 2176 | is-weakref "^1.0.2" 2177 | isarray "^2.0.5" 2178 | which-boxed-primitive "^1.0.2" 2179 | which-collection "^1.0.1" 2180 | which-typed-array "^1.1.9" 2181 | 2182 | which-collection@^1.0.1: 2183 | version "1.0.1" 2184 | resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" 2185 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 2186 | dependencies: 2187 | is-map "^2.0.1" 2188 | is-set "^2.0.1" 2189 | is-weakmap "^2.0.1" 2190 | is-weakset "^2.0.1" 2191 | 2192 | which-typed-array@^1.1.10: 2193 | version "1.1.11" 2194 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" 2195 | integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== 2196 | dependencies: 2197 | available-typed-arrays "^1.0.5" 2198 | call-bind "^1.0.2" 2199 | for-each "^0.3.3" 2200 | gopd "^1.0.1" 2201 | has-tostringtag "^1.0.0" 2202 | 2203 | which-typed-array@^1.1.9: 2204 | version "1.1.9" 2205 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 2206 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 2207 | dependencies: 2208 | available-typed-arrays "^1.0.5" 2209 | call-bind "^1.0.2" 2210 | for-each "^0.3.3" 2211 | gopd "^1.0.1" 2212 | has-tostringtag "^1.0.0" 2213 | is-typed-array "^1.1.10" 2214 | 2215 | which@^2.0.1: 2216 | version "2.0.2" 2217 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2218 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2219 | dependencies: 2220 | isexe "^2.0.0" 2221 | 2222 | wrappy@1: 2223 | version "1.0.2" 2224 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2225 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2226 | 2227 | yallist@^3.0.2: 2228 | version "3.1.1" 2229 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2230 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2231 | 2232 | yocto-queue@^0.1.0: 2233 | version "0.1.0" 2234 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2235 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2236 | --------------------------------------------------------------------------------