├── .devcontainer └── devcontainer.json ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── README.md ├── index.html ├── package.json ├── public └── dhx.ico ├── src ├── App.css ├── App.jsx ├── Content │ ├── Content.css │ ├── Content.jsx │ ├── LeftPanel │ │ ├── Accardion.jsx │ │ ├── Calendars.jsx │ │ ├── Grid.jsx │ │ ├── LeftContent.jsx │ │ ├── Ribbon.jsx │ │ ├── SlidersLayout.jsx │ │ ├── TicketsDataview.jsx │ │ └── Tree.jsx │ └── RightPanel │ │ ├── ButtonsForm.jsx │ │ ├── Chart.jsx │ │ ├── Colorpicker.jsx │ │ ├── Form.jsx │ │ ├── MessageDataview.jsx │ │ └── RightContent.jsx ├── MainContainer.jsx ├── Sidebar.jsx ├── Tabbar.jsx ├── Toolbar.jsx ├── assets │ └── react.svg ├── index.css ├── main.jsx └── store.js ├── suite.png ├── vite.config.ts └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "updateContentCommand": "yarn", 3 | "postAttachCommand": "yarn start", 4 | "customizations": { 5 | "codespaces": { 6 | "openFiles": ["src/App.jsx"] 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @dhx:registry=https://npm.dhtmlx.com/ -------------------------------------------------------------------------------- /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 | ### On the local host 14 | 15 | Clone the repository or download files. 16 | 17 | ``` 18 | yarn 19 | yarn start 20 | ``` 21 | 22 | or 23 | 24 | ``` 25 | npm install 26 | npm run start 27 | ``` 28 | 29 | ## Useful links 30 | 31 | - **[Online demo](https://replit.com/@dhtmlx/dhtmlx-suite-with-react)** 32 | - [More demos about the DHTMLX Suite functionality](https://snippet.dhtmlx.com/1eh4ks4f) 33 | - [Technical support ](https://forum.dhtmlx.com/c/suite) 34 | - [Documentation](https://docs.dhtmlx.com/suite/) 35 | 36 | ## Follow us 37 | 38 | - Star our GitHub repo :star: 39 | - Watch our tutorials on [YouTube](https://www.youtube.com/user/dhtmlx/videos) :eyes: 40 | - Read us on [Medium](https://dhtmlx.medium.com) :newspaper: 41 | - Follow us on [Twitter](https://twitter.com/dhtmlx) :feet: 42 | - Like our page on [Facebook](https://www.facebook.com/dhtmlx/) :thumbsup: 43 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 19 | 20 | DHTMLX Suite + React 21 | 22 | 23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /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.1.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 | -------------------------------------------------------------------------------- /public/dhx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHTMLX/react-suite-demo/ef512d05cd20371e969bd69325f82f00069c52a3/public/dhx.ico -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHTMLX/react-suite-demo/ef512d05cd20371e969bd69325f82f00069c52a3/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import MainContainer from "./MainContainer"; 2 | import Sidebar from "./Sidebar"; 3 | import "@dhx/trial-suite/codebase/suite.min.css"; 4 | import "./App.css"; 5 | 6 | const App = () => { 7 | return ( 8 |
9 | 10 | 11 |
12 | ); 13 | }; 14 | 15 | export default App; 16 | -------------------------------------------------------------------------------- /src/Content/Content.css: -------------------------------------------------------------------------------- 1 | .wrapper-main { 2 | flex-grow: 1; 3 | overflow: auto !important; 4 | padding: 12px; 5 | gap: 12px; 6 | } 7 | 8 | .bordered { 9 | border: var(--dhx-border); 10 | } 11 | 12 | .grid_container { 13 | min-height: 848px; 14 | min-width: 800px; 15 | } 16 | 17 | .col-wrap { 18 | height: fit-content; 19 | gap: 12px; 20 | } -------------------------------------------------------------------------------- /src/Content/Content.jsx: -------------------------------------------------------------------------------- 1 | import LeftContent from "./LeftPanel/LeftContent"; 2 | import RightContent from "./RightPanel/RightContent"; 3 | import "./Content.css"; 4 | 5 | const Content = () => { 6 | return ( 7 |
8 | 9 | 10 |
11 | ); 12 | }; 13 | 14 | export default Content; 15 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Accardion.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Chart, Layout } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function AccordionComponent() { 6 | const node = useRef(null); 7 | let [chart, setChart] = useState(null); 8 | 9 | useEffect(() => { 10 | const accordion = new Layout(node.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 | const chart = new Chart(null, { 23 | type: "bar", 24 | scales: { 25 | bottom: { 26 | text: "month", 27 | }, 28 | left: { 29 | maxTicks: 10, 30 | max: 100, 31 | min: 0, 32 | }, 33 | }, 34 | series: [ 35 | { 36 | id: "A", 37 | value: "Won deals", 38 | color: "none", 39 | fill: "var(--dhx-color-primary)", 40 | showText: true, 41 | showTextTemplate: (sum) => `$${sum}`, 42 | }, 43 | { 44 | id: "B", 45 | value: "Lost deals", 46 | color: "none", 47 | fill: "var(--dhx-color-primary-light-active)", 48 | showText: true, 49 | showTextTemplate: (sum) => `$${sum}`, 50 | }, 51 | { 52 | id: "all", 53 | value: "All deals", 54 | color: "none", 55 | fill: "var(--dhx-color-primary-disabled)", 56 | type: "area", 57 | strokeWidth: 0, 58 | }, 59 | ], 60 | legend: { 61 | series: ["A", "B", "all"], 62 | halign: "right", 63 | valign: "top", 64 | itemPadding: 20, 65 | margin: 40, 66 | }, 67 | }); 68 | accordion.getCell("chart").attach(chart); 69 | setChart(chart); 70 | 71 | // Cleanup 72 | return () => { 73 | accordion.destructor(); 74 | chart.destructor(); 75 | }; 76 | }, []); 77 | 78 | useEffect(() => { 79 | chart?.data.parse(store.hotelsData); 80 | }, [chart]); 81 | 82 | return
; 83 | } 84 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Calendars.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Calendar, Timepicker } from "@dhx/trial-suite"; 3 | 4 | export default function Calendars() { 5 | const weekNode = useRef(null); 6 | const timepickerNode = useRef(null); 7 | const yearNode = useRef(null); 8 | 9 | useEffect(() => { 10 | const week = new Calendar(weekNode.current, { 11 | weekStart: "monday", 12 | timePicker: true, 13 | range: true, 14 | value: [new Date(), new Date(Date.now() + 200000000)], 15 | }); 16 | const timePicker = new Timepicker(timepickerNode.current, { 17 | controls: true, 18 | value: new Date(), 19 | }); 20 | const year = new Calendar(yearNode.current, { 21 | timePicker: true, 22 | mode: "year", 23 | value: new Date(), 24 | }); 25 | 26 | return () => { 27 | week.destructor(); 28 | timePicker.destructor(); 29 | year.destructor(); 30 | }; 31 | }, []); 32 | 33 | return ( 34 |
38 |
39 |
40 |
41 |
42 | ); 43 | } 44 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Grid.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Grid, Pagination } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function GridComponent() { 6 | let [grid, setGrid] = useState(null); 7 | const gNode = useRef(null); 8 | const pNode = useRef(null); 9 | 10 | useEffect(() => { 11 | const gridConfig = { 12 | autoWidth: true, 13 | columns: [ 14 | { 15 | gravity: 2, 16 | id: "time", 17 | header: [{ text: "Time", align: "center" }], 18 | type: "date", 19 | dateFormat: "%M %d, %H:%i", 20 | }, 21 | { id: "nights", header: [{ text: "Nights" }] }, 22 | { 23 | id: "price", 24 | gravity: 1, 25 | header: [{ text: "Price" }], 26 | type: "number", 27 | numberMask: { 28 | prefix: "$", 29 | }, 30 | }, 31 | { 32 | gravity: 3, 33 | id: "contactPerson", 34 | header: [{ text: "Contact Person" }], 35 | }, 36 | { 37 | gravity: 4, 38 | id: "contactEmail", 39 | header: [{ text: "Contact Email" }], 40 | htmlEnable: true, 41 | template: (text) => { 42 | return `${text}`; 43 | }, 44 | }, 45 | { 46 | gravity: 2, 47 | id: "totalCost", 48 | header: [{ text: "Total Cost" }], 49 | type: "number", 50 | numberMask: { 51 | prefix: "$", 52 | }, 53 | }, 54 | ], 55 | css: "grid", 56 | multiselection: true, 57 | selection: "complex", 58 | editable: true, 59 | }; 60 | 61 | const grid = new Grid(gNode.current, gridConfig); 62 | const paginator = new Pagination(pNode.current, { 63 | pageSize: 20, 64 | data: grid.data, 65 | }); 66 | // Initialize grid and paginator here 67 | setGrid(grid); 68 | 69 | // Cleanup 70 | return () => { 71 | grid?.destructor(); 72 | paginator?.destructor(); 73 | }; 74 | }, []); 75 | 76 | useEffect(() => { 77 | grid?.data.parse(store.gridDataset); 78 | }, [grid]); 79 | 80 | return ( 81 |
82 |
83 |
84 |
85 | ); 86 | } 87 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/LeftContent.jsx: -------------------------------------------------------------------------------- 1 | import Accardion from "./Accardion"; 2 | import Calendars from "./Calendars"; 3 | import Grid from "./Grid"; 4 | import Ribbon from "./Ribbon"; 5 | import SlidersLayout from "./SlidersLayout"; 6 | import TicketsDataview from "./TicketsDataview"; 7 | import Tree from "./Tree"; 8 | 9 | export default function LeftContent() { 10 | return ( 11 |
12 | 13 | 14 | 15 |
19 | 20 | 21 |
22 | 23 | 24 |
25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Ribbon.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Ribbon } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function RibbonComponent() { 6 | const node = useRef(null); 7 | let [ribbon, setRibbon] = useState(null); 8 | 9 | useEffect(() => { 10 | const ribbon = new Ribbon(node.current, { 11 | css: "dhx_widget--bordered", 12 | }); 13 | 14 | setRibbon(ribbon); 15 | 16 | // Cleanup 17 | return () => ribbon.destructor(); 18 | }, []); 19 | 20 | useEffect(() => { 21 | if (!ribbon) return; 22 | ribbon.data.parse(store.ribbonData); 23 | }, [ribbon]); 24 | 25 | return ( 26 |
31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/SlidersLayout.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Layout, Slider } from "@dhx/trial-suite"; 3 | 4 | export default function SlidersLayout() { 5 | const node = useRef(null); 6 | 7 | const tickTemplate = (value) => `${value}`; 8 | 9 | useEffect(() => { 10 | const layout = new Layout(node.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 | const slider1 = new Slider(null, { 49 | min: 0, 50 | max: 40, 51 | step: 1, 52 | }); 53 | 54 | // Slider 2 initialization 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 | // Slider 3 initialization 64 | const slider3 = new Slider(null, { 65 | min: 0, 66 | max: 40, 67 | step: 1, 68 | range: true, 69 | value: [0, 20], 70 | tick: 1, 71 | majorTick: 5, 72 | tickTemplate, 73 | }); 74 | 75 | // Slider 4 initialization 76 | const slider4 = new Slider(null, { 77 | min: 0, 78 | max: 40, 79 | step: 10, 80 | range: true, 81 | value: [0, 20], 82 | }); 83 | 84 | // Slider 5 initialization 85 | const slider5 = new Slider(null, { 86 | mode: "vertical", 87 | range: true, 88 | min: 0, 89 | max: 40, 90 | step: 2, 91 | tick: 1, 92 | majorTick: 5, 93 | value: [0, 20], 94 | tickTemplate, 95 | }); 96 | 97 | // Attached all sliders in sliderLayout, which is main layout's cell 98 | layout.getCell("slider1").attach(slider1); 99 | layout.getCell("slider2").attach(slider2); 100 | layout.getCell("slider3").attach(slider3); 101 | layout.getCell("slider4").attach(slider4); 102 | layout.getCell("slider5").attach(slider5); 103 | return () => layout.destructor(); 104 | }, []); 105 | 106 | return
; 107 | } 108 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/TicketsDataview.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { DataView } from "@dhx/trial-suite"; 3 | import "@dhx/trial-suite/codebase/suite.min.css"; 4 | import store from "../../store"; 5 | 6 | export default function TicketsDataview() { 7 | const node = useRef(null); 8 | let [dataview, setDataview] = useState(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(node.current, { 35 | template, 36 | itemsInRow: 2, 37 | css: "dhx_dataview_template_a_box", 38 | }); 39 | setDataview(dataview); 40 | // Cleanup 41 | return () => dataview.destructor(); 42 | }, []); 43 | 44 | useEffect(() => { 45 | if (!dataview) return; 46 | dataview.data.parse(store.ticketsDataviewData); 47 | }, [dataview]); 48 | 49 | return
; 50 | } 51 | -------------------------------------------------------------------------------- /src/Content/LeftPanel/Tree.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Tree } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function TreeComponent() { 6 | const node = useRef(null); 7 | let [tree, setTree] = useState(null); 8 | 9 | useEffect(() => { 10 | const tree = new Tree(node.current, { 11 | checkbox: true, 12 | editable: true, 13 | keyNavigation: true, 14 | dragMode: "both", 15 | }); 16 | 17 | setTree(tree); 18 | 19 | // Cleanup 20 | return () => tree.destructor(); 21 | }, []); 22 | 23 | useEffect(() => { 24 | if (!tree) return; 25 | tree.data.parse(store.treeData); 26 | }, [tree]); 27 | 28 | return
; 29 | } 30 | -------------------------------------------------------------------------------- /src/Content/RightPanel/ButtonsForm.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Form } from "@dhx/trial-suite"; 3 | 4 | export default function ButtonsForm() { 5 | const node = useRef(null); 6 | 7 | useEffect(() => { 8 | const form = new Form(node.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 | // Cleanup 157 | return () => form.destructor(); 158 | }, []); 159 | 160 | return
; 161 | } 162 | -------------------------------------------------------------------------------- /src/Content/RightPanel/Chart.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Chart } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function ChartComponent() { 6 | const node = useRef(null); 7 | let [chart, setChart] = useState(null); 8 | 9 | useEffect(() => { 10 | const chart = new Chart(node.current, { 11 | type: "pie", 12 | series: [ 13 | { 14 | value: "value", 15 | // monochrome: "#0288D1", 16 | color: "color", 17 | opacity: "opacity", 18 | text: "month", 19 | stroke: "var(--dhx-background-primary)", 20 | strokeWidth: 0, 21 | }, 22 | ], 23 | legend: { 24 | values: { 25 | id: "value", 26 | text: "id", 27 | color: "color", 28 | }, 29 | // monochrome: "#0288D1", 30 | align: "right", 31 | valign: "middle", 32 | width: 30, 33 | }, 34 | }); 35 | 36 | setChart(chart); 37 | chart.data.parse(store.chartData); 38 | // Cleanup 39 | return () => chart.destructor(); 40 | }, []); 41 | 42 | useEffect(() => { 43 | if (!chart) return; 44 | chart.data.parse(store.chartData); 45 | }, [chart]); 46 | 47 | return
; 48 | } 49 | -------------------------------------------------------------------------------- /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 node = useRef(null); 6 | 7 | const hexToHSLChema = (HEX) => { 8 | let r = 0, 9 | g = 0, 10 | b = 0; 11 | if (HEX.length == 4) { 12 | r = "0x" + HEX[1] + HEX[1]; 13 | g = "0x" + HEX[2] + HEX[2]; 14 | b = "0x" + HEX[3] + HEX[3]; 15 | } else if (HEX.length == 7) { 16 | r = "0x" + HEX[1] + HEX[2]; 17 | g = "0x" + HEX[3] + HEX[4]; 18 | b = "0x" + HEX[5] + HEX[6]; 19 | } 20 | // Then to HSL 21 | r /= 255; 22 | g /= 255; 23 | b /= 255; 24 | let cmin = Math.min(r, g, b), 25 | cmax = Math.max(r, g, b), 26 | delta = cmax - cmin, 27 | h = 0, 28 | s = 0, 29 | l = 0; 30 | 31 | if (delta == 0) h = 0; 32 | else if (cmax == r) h = ((g - b) / delta) % 6; 33 | else if (cmax == g) h = (b - r) / delta + 2; 34 | else h = (r - g) / delta + 4; 35 | 36 | h = Math.round(h * 60); 37 | 38 | if (h < 0) h += 360; 39 | 40 | l = (cmax + cmin) / 2; 41 | s = delta == 0 ? 0 : delta / (1 - Math.abs(2 * l - 1)); 42 | s = +(s * 100).toFixed(1); 43 | l = +(l * 100).toFixed(1); 44 | 45 | return { 46 | h, 47 | s, 48 | l, 49 | }; 50 | }; 51 | 52 | useEffect(() => { 53 | const colorpicker = new Colorpicker(node.current, { 54 | mode: "picker", 55 | }); 56 | 57 | colorpicker.setValue("#0288d1"); 58 | colorpicker.events.on("change", (hex) => { 59 | const { h, s, l } = hexToHSLChema(hex); 60 | const el = document.documentElement; 61 | 62 | el.style.setProperty("--dhx-h-primary", h); 63 | el.style.setProperty("--dhx-s-primary", s + "%"); 64 | el.style.setProperty("--dhx-l-primary", l + "%"); 65 | }); 66 | 67 | // return () => colorpicker.destructor(); 68 | return () => awaitRedraw().then(() => colorpicker.destructor()); 69 | }, []); 70 | 71 | return ( 72 |
77 | ); 78 | } 79 | -------------------------------------------------------------------------------- /src/Content/RightPanel/Form.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Form } from "@dhx/trial-suite"; 3 | 4 | export default function FormComponent() { 5 | const node = useRef(null); 6 | 7 | const country = [ 8 | { 9 | id: "austria", 10 | value: "Austria", 11 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/at.png", 12 | }, 13 | { 14 | value: "Belarus", 15 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/by.png", 16 | }, 17 | { 18 | value: "Belgium", 19 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/be.png", 20 | }, 21 | { 22 | value: "Bulgaria", 23 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/bg.png", 24 | }, 25 | { 26 | value: "Cyprus", 27 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/cy.png", 28 | }, 29 | // ... add more countries here 30 | ]; 31 | 32 | useEffect(() => { 33 | const form = new Form(node.current, { 34 | padding: 40, 35 | width: "auto", 36 | rows: [ 37 | { 38 | cols: [ 39 | { 40 | width: "48%", 41 | name: "name", 42 | type: "input", 43 | label: "Name", 44 | placeholder: "Type text", 45 | required: true, 46 | }, 47 | { 48 | type: "spacer", 49 | }, 50 | { 51 | width: "48%", 52 | name: "surname", 53 | type: "input", 54 | label: "Surname", 55 | placeholder: "Type text", 56 | required: true, 57 | }, 58 | ], 59 | }, 60 | { 61 | name: "country", 62 | type: "combo", 63 | label: "Country", 64 | placeholder: "Click to select", 65 | multiselection: true, 66 | value: ["austria", "estonia"], 67 | data: country, 68 | }, 69 | { 70 | name: "birth", 71 | type: "datepicker", 72 | label: "Date of Birth", 73 | placeholder: "Type text", 74 | value: new Date(), 75 | }, 76 | { 77 | name: "career", 78 | type: "input", 79 | label: "Career objective", 80 | placeholder: "Type text", 81 | helpMessage: " Help information", 82 | }, 83 | { 84 | name: "motivation", 85 | type: "textarea", 86 | label: "Motivation", 87 | placeholder: "Type text here", 88 | }, 89 | { 90 | name: "language", 91 | type: "radioGroup", 92 | label: "Language level", 93 | value: "1", 94 | options: { 95 | cols: [ 96 | { 97 | type: "radioButton", 98 | text: "Elementary", 99 | value: "1", 100 | }, 101 | { 102 | type: "radioButton", 103 | text: "Intermediate", 104 | value: "2", 105 | }, 106 | { 107 | type: "radioButton", 108 | text: "Advanced", 109 | value: "2", 110 | }, 111 | ], 112 | }, 113 | }, 114 | { 115 | name: "backgroundColor", 116 | type: "colorpicker", 117 | label: "Background color", 118 | placeholder: "Click to change", 119 | }, 120 | { 121 | name: "offices", 122 | type: "combo", 123 | label: "Offices", 124 | placeholder: "You can select several offices", 125 | multiselection: true, 126 | data: country, 127 | }, 128 | { 129 | name: "attachDocument", 130 | type: "simpleVault", 131 | label: "Attach document", 132 | }, 133 | { 134 | name: "howToContact", 135 | type: "checkboxGroup", 136 | label: "How to contact you", 137 | options: { 138 | cols: [ 139 | { 140 | id: "1", 141 | type: "checkbox", 142 | text: "Phone", 143 | checked: true, 144 | }, 145 | { 146 | id: "2", 147 | type: "checkbox", 148 | text: "Mail", 149 | }, 150 | { 151 | id: "3", 152 | type: "checkbox", 153 | text: "Messenger", 154 | }, 155 | { 156 | id: "4", 157 | type: "checkbox", 158 | text: "Your option", 159 | }, 160 | ], 161 | }, 162 | }, 163 | ], 164 | }); 165 | 166 | // Parse the data into the form 167 | 168 | // Cleanup 169 | return () => form.destructor(); 170 | }, []); 171 | 172 | return
; 173 | } 174 | -------------------------------------------------------------------------------- /src/Content/RightPanel/MessageDataview.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { DataView } from "@dhx/trial-suite"; 3 | import store from "../../store"; 4 | 5 | export default function MessageDataview() { 6 | const node = useRef(null); 7 | 8 | function template({ mail, name, avatar, status, delivered }) { 9 | return ` 10 |
11 |
12 |
13 |
14 |
Delivered ${delivered}
15 |
${name}
16 | 17 | 18 | Message 19 | 20 |
21 | `; 22 | } 23 | 24 | useEffect(() => { 25 | const dataview = new DataView(node.current, { 26 | template, 27 | itemsInRow: 2, 28 | css: "dhx_dataview_template_b_box", 29 | }); 30 | 31 | dataview.data.parse(store.messageDataviewData); 32 | 33 | // Cleanup 34 | return () => dataview.destructor(); 35 | }, []); 36 | 37 | return
; 38 | } 39 | -------------------------------------------------------------------------------- /src/Content/RightPanel/RightContent.jsx: -------------------------------------------------------------------------------- 1 | import ButtonsForm from "./ButtonsForm"; 2 | import Chart from "./Chart"; 3 | import Colorpicker from "./Colorpicker"; 4 | import FormComponent from "./Form"; 5 | import MessageDataview from "./MessageDataview"; 6 | 7 | export default function RightContent() { 8 | return ( 9 |
13 | 14 | 15 | 16 | 17 | 18 |
19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/MainContainer.jsx: -------------------------------------------------------------------------------- 1 | import Content from "./Content/Content"; 2 | import Tabbar from "./Tabbar"; 3 | import Toolbar from "./Toolbar"; 4 | 5 | const MainContainer = () => { 6 | return ( 7 |
8 | 9 | 10 | 11 |
12 | ); 13 | }; 14 | 15 | export default MainContainer; 16 | -------------------------------------------------------------------------------- /src/Sidebar.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import { Sidebar } from "@dhx/trial-suite"; 3 | import store from "./store"; 4 | 5 | const SidebarComponent = () => { 6 | let [sidebar, setSidebar] = useState(null); 7 | const nodeRef = useRef(null); 8 | 9 | useEffect(() => { 10 | const sidebar = new Sidebar(nodeRef.current, {}); 11 | setSidebar(sidebar); 12 | return () => { 13 | sidebar.destructor(); 14 | }; 15 | }, []); 16 | 17 | useEffect(() => { 18 | if (!sidebar) return; 19 | sidebar.events.on("click", (id) => { 20 | if (id === "toggle") { 21 | const toggleItem = sidebar.data.getItem("toggle"); 22 | sidebar.toggle(); 23 | toggleItem.icon = sidebar.config.collapsed 24 | ? "mdi mdi-menu" 25 | : "mdi mdi-backburger"; 26 | } 27 | }); 28 | sidebar.data.parse(store.sidebarData); 29 | }, [sidebar]); 30 | 31 | return
; 32 | }; 33 | 34 | export default SidebarComponent; 35 | -------------------------------------------------------------------------------- /src/Tabbar.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | import { Tabbar } from "@dhx/trial-suite"; 3 | 4 | const TabbarComponent = () => { 5 | const node = useRef(null); 6 | 7 | useEffect(() => { 8 | const newTabbar = new Tabbar(node.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 | newTabbar.destructor(); 22 | }; 23 | }, []); 24 | 25 | return
; 26 | }; 27 | 28 | export default TabbarComponent; 29 | -------------------------------------------------------------------------------- /src/Toolbar.jsx: -------------------------------------------------------------------------------- 1 | import { useRef, useEffect, useState } from "react"; 2 | import { Toolbar, setTheme } from "@dhx/trial-suite"; 3 | import store from "./store"; 4 | 5 | const ToolbarComponent = () => { 6 | let [theme, setThemeState] = useState("light"); 7 | let [contrast, setContrast] = useState(false); 8 | let [toolbar, setToolbar] = useState(null); 9 | const node = useRef(null); 10 | 11 | useEffect(() => { 12 | const toolbar = new Toolbar(node.current, {}); 13 | setToolbar(toolbar); 14 | return () => toolbar.destructor(); 15 | }, []); 16 | 17 | useEffect(() => { 18 | if (!toolbar) return; 19 | toolbar.events.on("click", (id) => { 20 | switch (id) { 21 | case "theme": { 22 | const checked = !toolbar.data.getItem("theme").checked; 23 | toolbar.data.update("theme", { 24 | checked, 25 | icon: `mdi mdi-${ 26 | !checked ? "weather-night" : "white-balance-sunny" 27 | }`, 28 | }); 29 | setThemeState(checked ? "dark" : "light"); 30 | break; 31 | } 32 | case "contrast": { 33 | setContrast(toolbar.data.getItem("contrast").active); 34 | break; 35 | } 36 | } 37 | }); 38 | toolbar.data.parse(store.toolbarData); 39 | }, [toolbar]); 40 | 41 | useEffect(() => { 42 | setTheme(`${contrast ? "contrast-" : ""}${theme}`); 43 | }, [contrast, theme]); 44 | 45 | return
; 46 | }; 47 | 48 | export default ToolbarComponent; 49 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.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 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 13 | line-height: 1.5; 14 | font-weight: 400; 15 | width: 100%; 16 | height: 100%; 17 | 18 | 19 | font-synthesis: none; 20 | text-rendering: optimizeLegibility; 21 | -webkit-font-smoothing: antialiased; 22 | -moz-osx-font-smoothing: grayscale; 23 | } 24 | 25 | body { 26 | margin: 0; 27 | place-items: center; 28 | height: 100vh; 29 | width: 100vw; 30 | } 31 | 32 | #app { 33 | text-align: center; 34 | height: 100%; 35 | width: 100%; 36 | } 37 | 38 | .container { 39 | display: flex; 40 | flex-grow: 1; 41 | overflow: hidden; 42 | } 43 | 44 | .flex-cols { 45 | display: flex; 46 | flex-direction: column; 47 | } 48 | 49 | .grow { 50 | flex-grow: 1; 51 | } 52 | 53 | /* Grid styling */ 54 | .contact_email { 55 | color: var(--dhx-color-primary); 56 | } 57 | 58 | .grid .dhx_grid-content { 59 | border: none; 60 | } 61 | 62 | /* Tickets dataview styling */ 63 | .dhx_dataview_template_a { 64 | display: -webkit-box; 65 | display: -ms-flexbox; 66 | display: flex; 67 | -webkit-flex-direction: column; 68 | -ms-flex-direction: column; 69 | flex-direction: column; 70 | -webkit-justify-content: space-between; 71 | -ms-flex-pack: justify; 72 | justify-content: space-between; 73 | height: 100%; 74 | } 75 | 76 | .dhx_dataview_template_a_box { 77 | background-color: var(--dhx-background-secondary) !important; 78 | } 79 | 80 | .dhx_dataview_template_a_box .dhx_dataview-item__inner-html { 81 | display: -webkit-box; 82 | display: -ms-flexbox; 83 | display: flex; 84 | -webkit-box-orient: vertical; 85 | -webkit-box-direction: normal; 86 | -ms-flex-direction: column; 87 | flex-direction: column; 88 | -webkit-box-pack: justify; 89 | -ms-flex-pack: justify; 90 | justify-content: space-between; 91 | height: 100%; 92 | } 93 | 94 | .dhx_dataview_template_a_box .dhx_dataview-item { 95 | padding: 20px; 96 | -webkit-box-sizing: border-box; 97 | box-sizing: border-box; 98 | background-color: var(--dhx-background-primary); 99 | border: var(--dhx-border) !important; 100 | margin-bottom: 8px !important; 101 | margin-left: 8px !important; 102 | } 103 | 104 | .dhx_dataview_template_a_box .dhx_dataview-item:first-child { 105 | margin-left: 0 !important; 106 | } 107 | 108 | .dhx_dataview_template_a__head { 109 | display: -webkit-box; 110 | display: -ms-flexbox; 111 | display: flex; 112 | } 113 | 114 | .dhx_dataview_template_a__type { 115 | color: var(--dhx-font-color-contrast); 116 | text-align: center; 117 | text-transform: capitalize; 118 | width: 55px; 119 | height: 20px; 120 | border-radius: 2px; 121 | } 122 | 123 | .dhx_dataview_template_a__type--major { 124 | background-color: var(--dhx-color-danger); 125 | } 126 | 127 | .dhx_dataview_template_a__type--minor { 128 | background-color: var(--dhx-color-success); 129 | } 130 | 131 | .dhx_dataview_template_a__type--normal { 132 | background-color: var(--dhx-color-primary); 133 | } 134 | 135 | .dhx_dataview_template_a__content { 136 | padding-left: 16px; 137 | width: 80%; 138 | } 139 | 140 | .dhx_dataview_template_a__title { 141 | font: var(--dhx-font-family); 142 | font-weight: var(--dhx-font-weight-medium); 143 | padding-bottom: 8px; 144 | } 145 | 146 | .dhx_dataview_template_a__comment { 147 | display: -webkit-box; 148 | max-height: 40px; 149 | text-overflow: ellipsis; 150 | overflow: hidden; 151 | -webkit-box-orient: vertical; 152 | -webkit-line-clamp: 2; 153 | } 154 | 155 | .dhx_dataview_template_a__body { 156 | display: -webkit-box; 157 | display: -ms-flexbox; 158 | display: flex; 159 | -webkit-box-pack: justify; 160 | -ms-flex-pack: justify; 161 | justify-content: space-between; 162 | margin-top: 20px; 163 | } 164 | 165 | .dhx_dataview_template_a__person { 166 | display: -webkit-box; 167 | display: -ms-flexbox; 168 | display: flex; 169 | } 170 | 171 | .dhx_dataview_template_a__avatar { 172 | width: 40px; 173 | height: 40px; 174 | margin-left: 15px; 175 | margin-right: 16px; 176 | border-radius: 20px; 177 | background: center center/cover no-repeat #f7f7f7; 178 | } 179 | 180 | .dhx_dataview_template_a__name { 181 | color: var(--dhx-font-color-secondary); 182 | } 183 | 184 | .dhx_dataview_template_a__comments { 185 | display: -webkit-box; 186 | display: -ms-flexbox; 187 | display: flex; 188 | -webkit-box-align: end; 189 | -ms-flex-align: end; 190 | align-items: flex-end; 191 | line-height: 20px; 192 | } 193 | 194 | .dhx_dataview_template_a__comments .mdi:before { 195 | position: relative; 196 | top: 4px; 197 | color: var(--dhx-font-color-secondary); 198 | font-size: 20px; 199 | margin-left: 6px; 200 | } 201 | 202 | 203 | /* Message dataview styling */ 204 | .dhx_dataview_template_b_box { 205 | background-color: var(--dhx-background-secondary) !important; 206 | } 207 | 208 | .dhx_dataview_template_b_box .dhx_dataview-item { 209 | padding: 0; 210 | border: var(--dhx-border) !important; 211 | border-radius: 6px; 212 | overflow: hidden; 213 | background-color: var(--dhx-background-primary); 214 | margin-bottom: 8px !important; 215 | margin-left: 8px !important; 216 | } 217 | 218 | .dhx_dataview_template_b_box .dhx_dataview-item:first-child { 219 | margin-left: 0 !important; 220 | } 221 | 222 | .dhx_dataview_template_b { 223 | display: -webkit-box; 224 | display: -ms-flexbox; 225 | display: flex; 226 | -webkit-box-orient: vertical; 227 | -webkit-box-direction: normal; 228 | -ms-flex-direction: column; 229 | flex-direction: column; 230 | -webkit-box-align: center; 231 | -ms-flex-align: center; 232 | align-items: center; 233 | width: 100%; 234 | height: 200px; 235 | } 236 | 237 | .dhx_dataview_template_b__avatar { 238 | position: relative; 239 | display: -webkit-box; 240 | display: -ms-flexbox; 241 | display: flex; 242 | margin-top: 16px; 243 | width: 80px; 244 | height: 80px; 245 | border-radius: 50%; 246 | background-size: 80px 80px; 247 | } 248 | 249 | .dhx_dataview_template_b__status { 250 | position: absolute; 251 | bottom: 1px; 252 | right: 9px; 253 | width: 12px; 254 | height: 12px; 255 | border-radius: 50%; 256 | border: 1px solid var(--dhx-color-white); 257 | background-color: var(--dhx-color-success); 258 | } 259 | 260 | .dhx_dataview_template_b__status.dhx_dataview_template_b__status--offline { 261 | display: none; 262 | } 263 | 264 | .dhx_dataview_template_b__title, 265 | .dhx_dataview_template_b__name, 266 | .dhx_dataview_template_b__message-label { 267 | font: var(--dhx-font-family); 268 | white-space: nowrap; 269 | overflow: hidden; 270 | text-overflow: ellipsis; 271 | } 272 | 273 | .dhx_dataview_template_b__title { 274 | font-weight: var(--dhx-font-weight-medium); 275 | margin-top: 8px; 276 | } 277 | 278 | .dhx_dataview_template_b__message { 279 | border-top: 1px solid var(--dhx-border-color); 280 | display: -webkit-box; 281 | display: -ms-flexbox; 282 | display: flex; 283 | height: 44px; 284 | width: 100%; 285 | -webkit-box-align: center; 286 | -ms-flex-align: center; 287 | align-items: center; 288 | -webkit-box-pack: center; 289 | -ms-flex-pack: center; 290 | justify-content: center; 291 | text-decoration: none; 292 | position: absolute; 293 | left: 0; 294 | bottom: 0; 295 | } 296 | 297 | .dhx_dataview_template_b__message-icon { 298 | margin-right: 4px; 299 | font-size: 16px; 300 | color: var(--dhx-color-primary); 301 | } 302 | 303 | .dhx_dataview_template_b__message-label { 304 | color: var(--dhx-color-primary); 305 | font-weight: 500; 306 | } 307 | 308 | /* Layout cell styling */ 309 | .dhx_layout_cell--overflow-auto { 310 | overflow: auto; 311 | } 312 | 313 | .dhx_layout_cell--border-none { 314 | border: none !important; 315 | } 316 | 317 | .dhx_layout_cell-align_content--center { 318 | display: flex; 319 | align-items: center; 320 | justify-content: center; 321 | } 322 | 323 | /* Colorpicker cell styling */ 324 | .dhx_layout_colorpicker_cell { 325 | display: flex; 326 | justify-content: center; 327 | padding: 40px 0; 328 | background-color: var(--dhx-background-primary); 329 | } 330 | 331 | /* Calendar/Timepicker cell styling */ 332 | .dhx_layout_calendar_cell { 333 | display: flex; 334 | justify-content: center; 335 | align-items: center; 336 | min-width: 248px; 337 | } 338 | 339 | /* Sidebar custom elements styling */ 340 | .dhx_navbar--vertical { 341 | overflow: hidden; 342 | } 343 | 344 | .user-info_container { 345 | padding-top: 8px; 346 | display: flex; 347 | flex-direction: column; 348 | justify-content: flex-start; 349 | align-items: center; 350 | } 351 | 352 | .user-info_avatar { 353 | height: 40px; 354 | width: 40px; 355 | border-radius: 100%; 356 | } 357 | 358 | .user-info_title { 359 | font-family: Roboto; 360 | font-style: normal; 361 | font-weight: 500; 362 | font-size: 16px; 363 | line-height: 24px; 364 | margin-top: 8px; 365 | } 366 | 367 | .user-info_contact { 368 | font-family: Roboto; 369 | font-style: normal; 370 | font-weight: normal; 371 | font-size: 14px; 372 | line-height: 20px; 373 | margin-bottom: 28px; 374 | } 375 | 376 | .dhx_sidebar--minimized .user-info_avatar { 377 | height: 30px; 378 | width: 30px; 379 | } 380 | 381 | .dhx_sidebar--minimized .user-info_title, 382 | .dhx_sidebar--minimized .user-info_contact { 383 | visibility: hidden; 384 | } 385 | 386 | .dhx-container, 387 | .dhx-container__widget { 388 | height: 100%; 389 | } 390 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client"; 3 | import App from "./App.jsx"; 4 | import "./index.css"; 5 | 6 | ReactDOM.createRoot(document.getElementById("root")).render( 7 | 8 | 9 | 10 | ); 11 | -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- 1 | const sidebarData = [ 2 | { 3 | id: "toggle", 4 | css: "toggle-button", 5 | icon: "mdi mdi-backburger", 6 | }, 7 | { 8 | type: "customHTML", 9 | id: "userInfo", 10 | css: "user-info_item", 11 | html: 12 | "", 21 | }, 22 | { 23 | type: "separator", 24 | }, 25 | { 26 | id: "today", 27 | value: "Today", 28 | icon: "mdi mdi-calendar-star", 29 | }, 30 | { 31 | id: "overdue", 32 | value: "Overdue", 33 | icon: "mdi mdi-calendar-start", 34 | }, 35 | { 36 | id: "unscheduled", 37 | value: "Unscheduled", 38 | icon: "mdi mdi-calendar-blank", 39 | }, 40 | { 41 | type: "separator", 42 | }, 43 | { 44 | id: "projects", 45 | value: "Projects", 46 | icon: "mdi mdi-folder-star-outline", 47 | items: [ 48 | { 49 | id: "project1", 50 | value: "Project 1", 51 | icon: "mdi mdi-plus", 52 | }, 53 | { 54 | id: "project2", 55 | value: "Project 2", 56 | icon: "mdi mdi-plus", 57 | }, 58 | { 59 | id: "project3", 60 | value: "Project 3", 61 | icon: "mdi mdi-plus", 62 | }, 63 | ], 64 | }, 65 | { 66 | type: "separator", 67 | }, 68 | { 69 | id: "assigned", 70 | value: "Assigned", 71 | icon: "mdi mdi-account-search-outline", 72 | items: [ 73 | { 74 | id: "person1", 75 | value: "Person 1", 76 | icon: "mdi mdi-plus", 77 | }, 78 | { 79 | id: "person2", 80 | value: "Person 2", 81 | icon: "mdi mdi-plus", 82 | }, 83 | { 84 | id: "Person3", 85 | value: "person 3", 86 | icon: "mdi mdi-plus", 87 | }, 88 | ], 89 | }, 90 | { 91 | type: "separator", 92 | }, 93 | { 94 | type: "spacer", 95 | }, 96 | { 97 | type: "separator", 98 | }, 99 | { 100 | id: "notification", 101 | value: "Notification", 102 | count: 18, 103 | icon: "mdi mdi-bell-outline", 104 | countColor: "#D60000", 105 | }, 106 | { 107 | id: "configuration", 108 | value: "Configuration", 109 | icon: "mdi mdi-tune", 110 | items: [ 111 | { 112 | id: "myAccount", 113 | value: "My Account", 114 | icon: "mdi mdi-account-settings", 115 | }, 116 | { 117 | id: "general", 118 | value: "General Configuration", 119 | icon: "mdi mdi-tune", 120 | }, 121 | ], 122 | }, 123 | ]; 124 | 125 | const toolbarData = [ 126 | { 127 | id: "topMenuButton", 128 | type: "button", 129 | value: "Toolbar button", 130 | view: "flat", 131 | icon: "dxi dxi-plus", 132 | size: "small", 133 | circle: true, 134 | color: "secondary", 135 | }, 136 | 137 | { 138 | type: "spacer", 139 | }, 140 | { 141 | id: "theme", 142 | circle: true, 143 | icon: "mdi mdi-weather-night", 144 | checked: false, 145 | }, 146 | 147 | { 148 | id: "contrast", 149 | twoState: true, 150 | active: false, 151 | icon: "mdi mdi-contrast-circle", 152 | }, 153 | { 154 | id: "avatar", 155 | type: "imageButton", 156 | src: "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_63.jpg", 157 | count: 15, 158 | }, 159 | ]; 160 | 161 | // Data for grid 162 | const gridDataset = [ 163 | { 164 | time: new Date("Jan 28, 2021"), 165 | nights: 7, 166 | price: 68, 167 | contactPerson: "Yoshio Slater", 168 | contactEmail: "phasellus.fermentum@yahoo.net", 169 | }, 170 | { 171 | time: new Date("Apr 13, 2021"), 172 | nights: 6, 173 | price: 66, 174 | contactPerson: "Christopher Kirk", 175 | contactEmail: "posuere.vulputate.lacus@outlook.org", 176 | }, 177 | { 178 | time: new Date("Jan 31, 2021"), 179 | nights: 15, 180 | price: 64, 181 | contactPerson: "Jana Meyers", 182 | contactEmail: "mollis@aol.edu", 183 | }, 184 | { 185 | time: new Date("Feb 22, 2021"), 186 | nights: 11, 187 | price: 57, 188 | contactPerson: "Sawyer Smith", 189 | contactEmail: "lorem.ipsum.sodales@icloud.org", 190 | }, 191 | { 192 | time: new Date("Feb 3, 2021"), 193 | nights: 10, 194 | price: 68, 195 | contactPerson: "Gabriel Gates", 196 | contactEmail: "sollicitudin.a@icloud.com", 197 | }, 198 | { 199 | time: new Date("Apr 6, 2021"), 200 | nights: 7, 201 | price: 67, 202 | contactPerson: "Emily Reynolds", 203 | contactEmail: "suspendisse.aliquet@outlook.edu", 204 | }, 205 | { 206 | time: new Date("May 22, 2021"), 207 | nights: 11, 208 | price: 70, 209 | contactPerson: "Xavier Middleton", 210 | contactEmail: "eu@icloud.net", 211 | }, 212 | { 213 | time: new Date("Jul 9, 2021"), 214 | nights: 11, 215 | price: 61, 216 | contactPerson: "Tamara Raymond", 217 | contactEmail: "vivamus@yahoo.ca", 218 | }, 219 | { 220 | time: new Date("Jun 15, 2021"), 221 | nights: 15, 222 | price: 61, 223 | contactPerson: "Jolene Lamb", 224 | contactEmail: "vulputate.posuere@outlook.org", 225 | }, 226 | { 227 | time: new Date("Jan 31, 2021"), 228 | nights: 15, 229 | price: 70, 230 | contactPerson: "David Wilkins", 231 | contactEmail: "ipsum@icloud.org", 232 | }, 233 | { 234 | time: new Date("Aug 16, 2021"), 235 | nights: 8, 236 | price: 65, 237 | contactPerson: "Nita Padilla", 238 | contactEmail: "quis.pede@google.net", 239 | }, 240 | { 241 | time: new Date("Apr 4, 2021"), 242 | nights: 13, 243 | price: 73, 244 | contactPerson: "Martha Fischer", 245 | contactEmail: "elit.pharetra@hotmail.org", 246 | }, 247 | { 248 | time: new Date("Jun 7, 2021"), 249 | nights: 14, 250 | price: 69, 251 | contactPerson: "Rudyard Powell", 252 | contactEmail: "ridiculus.mus@aol.com", 253 | }, 254 | { 255 | time: new Date("Sep 14, 2021"), 256 | nights: 11, 257 | price: 68, 258 | contactPerson: "Clementine Mercer", 259 | contactEmail: "nec@aol.couk", 260 | }, 261 | { 262 | time: new Date("Aug 3, 2021"), 263 | nights: 14, 264 | price: 74, 265 | contactPerson: "Hu Pace", 266 | contactEmail: "phasellus.dolor.elit@hotmail.net", 267 | }, 268 | { 269 | time: new Date("Sep 12, 2021"), 270 | nights: 13, 271 | price: 73, 272 | contactPerson: "Petra James", 273 | contactEmail: "luctus.et@yahoo.net", 274 | }, 275 | { 276 | time: new Date("Aug 4, 2021"), 277 | nights: 14, 278 | price: 60, 279 | contactPerson: "Chaney Henson", 280 | contactEmail: "in.condimentum@protonmail.net", 281 | }, 282 | { 283 | time: new Date("Jul 15, 2021"), 284 | nights: 13, 285 | price: 59, 286 | contactPerson: "Cole Wallace", 287 | contactEmail: "in.aliquet@outlook.org", 288 | }, 289 | { 290 | time: new Date("Jan 15, 2021"), 291 | nights: 13, 292 | price: 57, 293 | contactPerson: "Emmanuel Miller", 294 | contactEmail: "pharetra.quisque.ac@aol.edu", 295 | }, 296 | { 297 | time: new Date("Sep 18, 2021"), 298 | nights: 9, 299 | price: 69, 300 | contactPerson: "Uriah Ayers", 301 | contactEmail: "nunc.sed.pede@google.net", 302 | }, 303 | { 304 | time: new Date("May 24, 2021"), 305 | nights: 13, 306 | price: 73, 307 | contactPerson: "Illiana Floyd", 308 | contactEmail: "rhoncus.nullam@hotmail.ca", 309 | }, 310 | { 311 | time: new Date("Jul 4, 2021"), 312 | nights: 3, 313 | price: 61, 314 | contactPerson: "Cara Merritt", 315 | contactEmail: "sagittis@yahoo.ca", 316 | }, 317 | { 318 | time: new Date("Jan 27, 2021"), 319 | nights: 4, 320 | price: 70, 321 | contactPerson: "Yetta O'Neill", 322 | contactEmail: "nullam@aol.net", 323 | }, 324 | { 325 | time: new Date("Aug 16, 2021"), 326 | nights: 9, 327 | price: 63, 328 | contactPerson: "Chadwick Holland", 329 | contactEmail: "congue.turpis@aol.net", 330 | }, 331 | { 332 | time: new Date("Mar 22, 2021"), 333 | nights: 3, 334 | price: 59, 335 | contactPerson: "Nell Copeland", 336 | contactEmail: "nulla.vulputate@google.edu", 337 | }, 338 | { 339 | time: new Date("Feb 26, 2021"), 340 | nights: 14, 341 | price: 74, 342 | contactPerson: "Vivian Fletcher", 343 | contactEmail: "bibendum.ullamcorper@icloud.net", 344 | }, 345 | { 346 | time: new Date("Jun 26, 2021"), 347 | nights: 11, 348 | price: 58, 349 | contactPerson: "Tatiana Mckay", 350 | contactEmail: "ac.arcu@hotmail.ca", 351 | }, 352 | { 353 | time: new Date("Jul 30, 2021"), 354 | nights: 9, 355 | price: 61, 356 | contactPerson: "Jamalia Mitchell", 357 | contactEmail: "sed.id.risus@aol.edu", 358 | }, 359 | { 360 | time: new Date("Jun 15, 2021"), 361 | nights: 13, 362 | price: 66, 363 | contactPerson: "Hedy Kirby", 364 | contactEmail: "praesent.luctus@hotmail.com", 365 | }, 366 | { 367 | time: new Date("Aug 16, 2021"), 368 | nights: 9, 369 | price: 67, 370 | contactPerson: "Solomon Ortiz", 371 | contactEmail: "sem.vitae@yahoo.com", 372 | }, 373 | { 374 | time: new Date("Jul 15, 2021"), 375 | nights: 3, 376 | price: 67, 377 | contactPerson: "Adrienne O'Neill", 378 | contactEmail: "dapibus.gravida@protonmail.ca", 379 | }, 380 | { 381 | time: new Date("Jul 1, 2021"), 382 | nights: 7, 383 | price: 72, 384 | contactPerson: "Alma Rollins", 385 | contactEmail: "orci@protonmail.ca", 386 | }, 387 | { 388 | time: new Date("Jul 22, 2021"), 389 | nights: 11, 390 | price: 74, 391 | contactPerson: "Gregory Boyd", 392 | contactEmail: "curabitur.consequat.lectus@yahoo.net", 393 | }, 394 | { 395 | time: new Date("Apr 24, 2021"), 396 | nights: 8, 397 | price: 74, 398 | contactPerson: "Damon Curry", 399 | contactEmail: "aliquam.fringilla@hotmail.org", 400 | }, 401 | { 402 | time: new Date("Mar 8, 2021"), 403 | nights: 5, 404 | price: 63, 405 | contactPerson: "Imelda Tyson", 406 | contactEmail: "nunc.interdum@icloud.edu", 407 | }, 408 | { 409 | time: new Date("Apr 13, 2021"), 410 | nights: 8, 411 | price: 57, 412 | contactPerson: "Yen Cannon", 413 | contactEmail: "nunc@outlook.couk", 414 | }, 415 | { 416 | time: new Date("Feb 27, 2021"), 417 | nights: 5, 418 | price: 73, 419 | contactPerson: "Olivia Patterson", 420 | contactEmail: "posuere@google.org", 421 | }, 422 | { 423 | time: new Date("Apr 21, 2021"), 424 | nights: 13, 425 | price: 59, 426 | contactPerson: "Ramona Logan", 427 | contactEmail: "est@hotmail.ca", 428 | }, 429 | { 430 | time: new Date("Jul 8, 2021"), 431 | nights: 4, 432 | price: 67, 433 | contactPerson: "Risa Butler", 434 | contactEmail: "suscipit.est.ac@yahoo.net", 435 | }, 436 | { 437 | time: new Date("Feb 19, 2021"), 438 | nights: 3, 439 | price: 71, 440 | contactPerson: "Charity Price", 441 | contactEmail: "lobortis.augue.scelerisque@protonmail.couk", 442 | }, 443 | { 444 | time: new Date("Feb 23, 2021"), 445 | nights: 15, 446 | price: 59, 447 | contactPerson: "Rina Macdonald", 448 | contactEmail: "quisque@outlook.com", 449 | }, 450 | { 451 | time: new Date("Apr 8, 2021"), 452 | nights: 16, 453 | price: 68, 454 | contactPerson: "Travis Steele", 455 | contactEmail: "natoque.penatibus@google.edu", 456 | }, 457 | { 458 | time: new Date("Apr 30, 2021"), 459 | nights: 9, 460 | price: 64, 461 | contactPerson: "Deanna Reyes", 462 | contactEmail: "dolor@hotmail.net", 463 | }, 464 | { 465 | time: new Date("Feb 15, 2021"), 466 | nights: 14, 467 | price: 67, 468 | contactPerson: "Faith Rojas", 469 | contactEmail: "sagittis.duis.gravida@hotmail.edu", 470 | }, 471 | { 472 | time: new Date("Mar 1, 2021"), 473 | nights: 4, 474 | price: 73, 475 | contactPerson: "Hyacinth Fuentes", 476 | contactEmail: "nec.urna@google.com", 477 | }, 478 | { 479 | time: new Date("May 9, 2021"), 480 | nights: 2, 481 | price: 71, 482 | contactPerson: "Brenden Sloan", 483 | contactEmail: "a.dui.cras@google.net", 484 | }, 485 | { 486 | time: new Date("Feb 17, 2021"), 487 | nights: 8, 488 | price: 74, 489 | contactPerson: "Nora Bruce", 490 | contactEmail: "egestas.blandit@google.org", 491 | }, 492 | { 493 | time: new Date("Jul 20, 2021"), 494 | nights: 10, 495 | price: 68, 496 | contactPerson: "Riley Harrison", 497 | contactEmail: "lacus@outlook.ca", 498 | }, 499 | { 500 | time: new Date("May 24, 2021"), 501 | nights: 12, 502 | price: 74, 503 | contactPerson: "Mariko Lewis", 504 | contactEmail: "volutpat@google.couk", 505 | }, 506 | { 507 | time: new Date("Feb 16, 2021"), 508 | nights: 2, 509 | price: 68, 510 | contactPerson: "Todd Jones", 511 | contactEmail: "cras.eu.tellus@icloud.org", 512 | }, 513 | { 514 | time: new Date("Apr 21, 2021"), 515 | nights: 16, 516 | price: 69, 517 | contactPerson: "Tasha Mcleod", 518 | contactEmail: "quam.a@protonmail.org", 519 | }, 520 | { 521 | time: new Date("Aug 28, 2021"), 522 | nights: 10, 523 | price: 74, 524 | contactPerson: "Fletcher Bird", 525 | contactEmail: "tincidunt@yahoo.com", 526 | }, 527 | { 528 | time: new Date("Apr 19, 2021"), 529 | nights: 3, 530 | price: 57, 531 | contactPerson: "Alan Murphy", 532 | contactEmail: "tempor.erat.neque@icloud.com", 533 | }, 534 | { 535 | time: new Date("Jan 26, 2021"), 536 | nights: 13, 537 | price: 71, 538 | contactPerson: "Hakeem Booth", 539 | contactEmail: "porttitor.tellus@hotmail.com", 540 | }, 541 | { 542 | time: new Date("Feb 4, 2021"), 543 | nights: 11, 544 | price: 67, 545 | contactPerson: "Courtney Sellers", 546 | contactEmail: "penatibus.et@outlook.ca", 547 | }, 548 | { 549 | time: new Date("Jul 28, 2021"), 550 | nights: 11, 551 | price: 67, 552 | contactPerson: "Frances Mcdonald", 553 | contactEmail: "libero.dui@aol.org", 554 | }, 555 | { 556 | time: new Date("Jan 24, 2021"), 557 | nights: 6, 558 | price: 72, 559 | contactPerson: "Devin Mathews", 560 | contactEmail: "proin.nisl.sem@google.couk", 561 | }, 562 | { 563 | time: new Date("May 13, 2021"), 564 | nights: 10, 565 | price: 71, 566 | contactPerson: "Arden Sparks", 567 | contactEmail: "arcu.sed@google.edu", 568 | }, 569 | { 570 | time: new Date("Apr 1, 2021"), 571 | nights: 2, 572 | price: 55, 573 | contactPerson: "Roanna Calhoun", 574 | contactEmail: "nisi.aenean@outlook.edu", 575 | }, 576 | { 577 | time: new Date("Feb 9, 2021"), 578 | nights: 12, 579 | price: 66, 580 | contactPerson: "Zeph Ellis", 581 | contactEmail: "nonummy.ipsum.non@aol.org", 582 | }, 583 | { 584 | time: new Date("Jun 10, 2021"), 585 | nights: 10, 586 | price: 73, 587 | contactPerson: "Harriet Lee", 588 | contactEmail: "mauris.quis@aol.edu", 589 | }, 590 | { 591 | time: new Date("Jan 25, 2021"), 592 | nights: 7, 593 | price: 60, 594 | contactPerson: "Chanda Gay", 595 | contactEmail: "egestas.blandit.nam@yahoo.ca", 596 | }, 597 | { 598 | time: new Date("Aug 22, 2021"), 599 | nights: 12, 600 | price: 56, 601 | contactPerson: "Tiger Roman", 602 | contactEmail: "et@aol.org", 603 | }, 604 | { 605 | time: new Date("Aug 6, 2021"), 606 | nights: 13, 607 | price: 59, 608 | contactPerson: "Yuri Booker", 609 | contactEmail: "pretium.neque@google.ca", 610 | }, 611 | { 612 | time: new Date("Apr 12, 2021"), 613 | nights: 7, 614 | price: 56, 615 | contactPerson: "Blaze Gardner", 616 | contactEmail: "sed.leo@aol.ca", 617 | }, 618 | { 619 | time: new Date("Jun 13, 2021"), 620 | nights: 4, 621 | price: 73, 622 | contactPerson: "Vanna Nieves", 623 | contactEmail: "amet.consectetuer@google.edu", 624 | }, 625 | { 626 | time: new Date("May 8, 2021"), 627 | nights: 4, 628 | price: 58, 629 | contactPerson: "Malik Mullins", 630 | contactEmail: "pede.nec@yahoo.org", 631 | }, 632 | { 633 | time: new Date("Apr 25, 2021"), 634 | nights: 5, 635 | price: 60, 636 | contactPerson: "Sarah Goodwin", 637 | contactEmail: "condimentum.eget@icloud.couk", 638 | }, 639 | { 640 | time: new Date("Jan 13, 2021"), 641 | nights: 5, 642 | price: 73, 643 | contactPerson: "Nigel Griffin", 644 | contactEmail: "ornare@yahoo.edu", 645 | }, 646 | { 647 | time: new Date("Mar 25, 2021"), 648 | nights: 6, 649 | price: 67, 650 | contactPerson: "Lysandra Gregory", 651 | contactEmail: "in.ornare@protonmail.edu", 652 | }, 653 | { 654 | time: new Date("Sep 28, 2021"), 655 | nights: 8, 656 | price: 70, 657 | contactPerson: "Breanna Williamson", 658 | contactEmail: "nulla.integer@yahoo.ca", 659 | }, 660 | { 661 | time: new Date("Feb 10, 2021"), 662 | nights: 5, 663 | price: 61, 664 | contactPerson: "Edward Black", 665 | contactEmail: "lobortis.mauris@icloud.couk", 666 | }, 667 | { 668 | time: new Date("Jul 28, 2021"), 669 | nights: 5, 670 | price: 56, 671 | contactPerson: "Imogene Stafford", 672 | contactEmail: "donec@icloud.net", 673 | }, 674 | { 675 | time: new Date("Aug 7, 2021"), 676 | nights: 15, 677 | price: 56, 678 | contactPerson: "Clark Garcia", 679 | contactEmail: "sed.leo@hotmail.com", 680 | }, 681 | { 682 | time: new Date("Sep 6, 2021"), 683 | nights: 6, 684 | price: 55, 685 | contactPerson: "Uma Tate", 686 | contactEmail: "quam@hotmail.ca", 687 | }, 688 | { 689 | time: new Date("Apr 9, 2021"), 690 | nights: 16, 691 | price: 60, 692 | contactPerson: "Kennedy Newton", 693 | contactEmail: "et.ultrices@protonmail.com", 694 | }, 695 | { 696 | time: new Date("Jan 17, 2021"), 697 | nights: 13, 698 | price: 55, 699 | contactPerson: "Tana Fields", 700 | contactEmail: "felis.ullamcorper@aol.org", 701 | }, 702 | { 703 | time: new Date("Sep 13, 2021"), 704 | nights: 9, 705 | price: 67, 706 | contactPerson: "Chelsea Burke", 707 | contactEmail: "nisi@aol.couk", 708 | }, 709 | { 710 | time: new Date("Aug 6, 2021"), 711 | nights: 13, 712 | price: 66, 713 | contactPerson: "Samantha Hood", 714 | contactEmail: "ac.eleifend@outlook.ca", 715 | }, 716 | { 717 | time: new Date("Jan 5, 2021"), 718 | nights: 11, 719 | price: 65, 720 | contactPerson: "Chester Wooten", 721 | contactEmail: "id.nunc.interdum@protonmail.net", 722 | }, 723 | { 724 | time: new Date("Jun 8, 2021"), 725 | nights: 14, 726 | price: 69, 727 | contactPerson: "Vaughan Hopkins", 728 | contactEmail: "morbi.metus.vivamus@google.couk", 729 | }, 730 | { 731 | time: new Date("Jan 28, 2021"), 732 | nights: 6, 733 | price: 58, 734 | contactPerson: "Sydnee Montoya", 735 | contactEmail: "donec.feugiat@protonmail.edu", 736 | }, 737 | { 738 | time: new Date("Jun 4, 2021"), 739 | nights: 11, 740 | price: 73, 741 | contactPerson: "Kelly Espinoza", 742 | contactEmail: "ligula.donec@aol.com", 743 | }, 744 | { 745 | time: new Date("May 18, 2021"), 746 | nights: 2, 747 | price: 70, 748 | contactPerson: "Jonah Solis", 749 | contactEmail: "orci.sem@google.couk", 750 | }, 751 | { 752 | time: new Date("Jun 8, 2021"), 753 | nights: 3, 754 | price: 58, 755 | contactPerson: "Denton Taylor", 756 | contactEmail: "metus.urna@protonmail.couk", 757 | }, 758 | { 759 | time: new Date("Feb 14, 2021"), 760 | nights: 4, 761 | price: 68, 762 | contactPerson: "Keely Sutton", 763 | contactEmail: "rutrum.non@hotmail.ca", 764 | }, 765 | { 766 | time: new Date("May 17, 2021"), 767 | nights: 8, 768 | price: 67, 769 | contactPerson: "Derek Meyer", 770 | contactEmail: "posuere.enim.nisl@aol.org", 771 | }, 772 | { 773 | time: new Date("Apr 18, 2021"), 774 | nights: 9, 775 | price: 73, 776 | contactPerson: "Phelan Pena", 777 | contactEmail: "ullamcorper.duis@google.net", 778 | }, 779 | { 780 | time: new Date("Apr 3, 2021"), 781 | nights: 11, 782 | price: 71, 783 | contactPerson: "Maxwell Morales", 784 | contactEmail: "eu.nibh@outlook.ca", 785 | }, 786 | { 787 | time: new Date("Aug 1, 2021"), 788 | nights: 6, 789 | price: 74, 790 | contactPerson: "Hope Hines", 791 | contactEmail: "rutrum.fusce@hotmail.couk", 792 | }, 793 | { 794 | time: new Date("May 28, 2021"), 795 | nights: 11, 796 | price: 67, 797 | contactPerson: "Cullen Woodward", 798 | contactEmail: "luctus.et@protonmail.ca", 799 | }, 800 | { 801 | time: new Date("Feb 5, 2021"), 802 | nights: 11, 803 | price: 63, 804 | contactPerson: "Leah Tanner", 805 | contactEmail: "neque.sed@icloud.couk", 806 | }, 807 | { 808 | time: new Date("Sep 27, 2021"), 809 | nights: 15, 810 | price: 61, 811 | contactPerson: "Fletcher Blair", 812 | contactEmail: "non.bibendum@yahoo.edu", 813 | }, 814 | { 815 | time: new Date("Mar 17, 2021"), 816 | nights: 15, 817 | price: 63, 818 | contactPerson: "Jennifer Daugherty", 819 | contactEmail: "ligula@yahoo.couk", 820 | }, 821 | { 822 | time: new Date("Mar 29, 2021"), 823 | nights: 10, 824 | price: 66, 825 | contactPerson: "Zeus Riggs", 826 | contactEmail: "ac.metus.vitae@outlook.com", 827 | }, 828 | { 829 | time: new Date("Jan 5, 2021"), 830 | nights: 6, 831 | price: 64, 832 | contactPerson: "Chelsea Talley", 833 | contactEmail: "nec.quam.curabitur@yahoo.net", 834 | }, 835 | { 836 | time: new Date("May 12, 2021"), 837 | nights: 15, 838 | price: 71, 839 | contactPerson: "Sara Key", 840 | contactEmail: "elementum.lorem@aol.com", 841 | }, 842 | { 843 | time: new Date("Jun 27, 2021"), 844 | nights: 4, 845 | price: 70, 846 | contactPerson: "Uriel Mcconnell", 847 | contactEmail: "curabitur.consequat@outlook.net", 848 | }, 849 | { 850 | time: new Date("Jun 10, 2021"), 851 | nights: 10, 852 | price: 74, 853 | contactPerson: "Molly Atkins", 854 | contactEmail: "magna.et@protonmail.ca", 855 | }, 856 | { 857 | time: new Date("Feb 11, 2021"), 858 | nights: 13, 859 | price: 66, 860 | contactPerson: "Dieter Burnett", 861 | contactEmail: "ac.ipsum.phasellus@google.net", 862 | }, 863 | ]; 864 | 865 | gridDataset.forEach((item) => (item.totalCost = item.nights * item.price)); 866 | 867 | // Data for chart 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 | // Hotels chart data 900 | const hotelsData = [ 901 | { month: "Jan.", "Won deals": 35, "Lost deals": 14, "All deals": 40 }, 902 | { month: "Feb.", "Won deals": 80, "Lost deals": 59, "All deals": 94 }, 903 | { month: "Mar.", "Won deals": 35, "Lost deals": 62, "All deals": 48 }, 904 | { month: "Apr.", "Won deals": 45, "Lost deals": 13, "All deals": 59 }, 905 | { month: "May.", "Won deals": 45, "Lost deals": 22, "All deals": 59 }, 906 | { month: "Jun.", "Won deals": 74, "Lost deals": 52, "All deals": 90 }, 907 | { month: "Jul.", "Won deals": 85, "Lost deals": 78, "All deals": 98 }, 908 | ]; 909 | 910 | // Ribbon data 911 | const ribbonData = [ 912 | { 913 | id: "fileBlock", 914 | type: "block", 915 | title: "File", 916 | items: [ 917 | { 918 | type: "block", 919 | direction: "col", 920 | items: [ 921 | { 922 | value: "File", 923 | id: "file", 924 | icon: "mdi mdi-file-outline", 925 | size: "small", 926 | ribbonHeight: "auto", 927 | }, 928 | { 929 | type: "block", 930 | items: [ 931 | { id: "folder", icon: "mdi mdi-folder-outline" }, 932 | { id: "cloud", icon: "mdi mdi-weather-cloudy" }, 933 | ], 934 | }, 935 | ], 936 | }, 937 | { 938 | id: "save", 939 | value: "Save", 940 | icon: "mdi mdi-content-save", 941 | size: "auto", 942 | }, 943 | ], 944 | }, 945 | { 946 | type: "block", 947 | title: "Action", 948 | direction: "col", 949 | items: [ 950 | { id: "copy", icon: "mdi mdi-content-copy", value: "Copy" }, 951 | { id: "cut", icon: "mdi mdi-content-cut", value: "Cut" }, 952 | ], 953 | }, 954 | { 955 | type: "block", 956 | title: "Text", 957 | items: [ 958 | { 959 | type: "block", 960 | direction: "col", 961 | items: [ 962 | { 963 | id: "left", 964 | group: "align", 965 | value: "Left", 966 | icon: "mdi mdi-format-align-left", 967 | }, 968 | { 969 | id: "center", 970 | group: "align", 971 | value: "Center", 972 | icon: "mdi mdi-format-align-center", 973 | }, 974 | ], 975 | }, 976 | { 977 | type: "block", 978 | direction: "col", 979 | items: [ 980 | { 981 | id: "right", 982 | group: "align", 983 | value: "Right", 984 | icon: "mdi mdi-format-align-right", 985 | }, 986 | { 987 | id: "justify", 988 | group: "align", 989 | value: "Justify", 990 | icon: "mdi mdi-format-align-justify", 991 | }, 992 | ], 993 | }, 994 | ], 995 | }, 996 | { 997 | type: "block", 998 | title: "Output", 999 | items: [ 1000 | { id: "print", value: "Print", icon: "mdi mdi-printer", size: "auto" }, 1001 | ], 1002 | }, 1003 | ]; 1004 | 1005 | // Tickets Dataview Data 1006 | const ticketsDataviewData = [ 1007 | { 1008 | title: "Ticket for Technical Support #T742", 1009 | text: "Need some support to add a new widget to Dashboard.", 1010 | type: "major", 1011 | avatar: 1012 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_14.jpg", 1013 | name: "Margaret King", 1014 | comments: "0", 1015 | time: "12:15", 1016 | }, 1017 | { 1018 | title: "Ticket for Sales Manager #S210", 1019 | text: "Can you tell me about pricing plans? I didn't understand the difference.", 1020 | type: "minor", 1021 | avatar: 1022 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_13.jpg", 1023 | name: "Patsy Rhyne", 1024 | comments: "2", 1025 | time: "12:15", 1026 | }, 1027 | { 1028 | title: "Ticket for Marketing Manager #M112", 1029 | text: "Want to mention our scheduler case study in your social media. The company has to be mentioned.", 1030 | type: "minor", 1031 | avatar: 1032 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_06.jpg", 1033 | name: "Ravi Chakrabarti", 1034 | comments: "6", 1035 | time: "12:15", 1036 | }, 1037 | { 1038 | title: "Ticket for Account Manager #A984", 1039 | text: "The trial period will end next week. Can you make a discount for us?", 1040 | type: "normal", 1041 | avatar: 1042 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_04.jpg", 1043 | name: "Lucy Miller", 1044 | comments: "1", 1045 | time: "12:15", 1046 | }, 1047 | { 1048 | title: "Ticket for QA #Q394", 1049 | text: "I found a bug. When I change the skin settings some buttons don't change.", 1050 | type: "major", 1051 | avatar: 1052 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_10.jpg", 1053 | name: "Michael Willis", 1054 | comments: "4", 1055 | time: "12:15", 1056 | }, 1057 | { 1058 | title: "Ticket for Technical Support #T741", 1059 | text: "I can't sign in to my account. Maybe I entered wrong password, help me!", 1060 | type: "major", 1061 | avatar: 1062 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_11.jpg", 1063 | name: "Casey Garcia", 1064 | comments: "0", 1065 | time: "12:15", 1066 | }, 1067 | ]; 1068 | 1069 | // Data for tree 1070 | const treeData = [ 1071 | { 1072 | value: "Books", 1073 | id: "Books", 1074 | opened: true, 1075 | items: [ 1076 | { 1077 | value: "Thrillers", 1078 | id: "Thrillers", 1079 | opened: true, 1080 | items: [ 1081 | { 1082 | value: "Bestsellers", 1083 | id: "Bestsellers", 1084 | checked: true, 1085 | items: [ 1086 | { 1087 | value: "Lawrence Block", 1088 | id: "Lawrence Block", 1089 | }, 1090 | ], 1091 | }, 1092 | { 1093 | value: "Robert Crais", 1094 | id: "Robert Crais", 1095 | }, 1096 | { 1097 | value: "Ian Rankin", 1098 | id: "Ian Rankin", 1099 | }, 1100 | { 1101 | value: "James Johns", 1102 | id: "James Johns", 1103 | }, 1104 | { 1105 | value: "Nancy Atherton", 1106 | id: "Nancy Atherton", 1107 | }, 1108 | ], 1109 | }, 1110 | { 1111 | value: "History", 1112 | id: "History", 1113 | items: [ 1114 | { 1115 | value: "John Mack Faragher", 1116 | id: "John Mack Faragher", 1117 | }, 1118 | { 1119 | value: "Jim Dwyer", 1120 | id: "Jim Dwyer", 1121 | }, 1122 | { 1123 | value: "Larry Schweikart", 1124 | id: "Larry Schweikart", 1125 | }, 1126 | { 1127 | value: "R. Lee Ermey", 1128 | id: "R. Lee Ermey", 1129 | }, 1130 | ], 1131 | }, 1132 | { 1133 | value: "Horror", 1134 | id: "Horror", 1135 | items: [ 1136 | { 1137 | value: "Stephen King", 1138 | id: "Stephen King", 1139 | }, 1140 | { 1141 | value: "Dan Brown", 1142 | id: "Dan Brown", 1143 | }, 1144 | { 1145 | value: "Mary Janice Davidson", 1146 | id: "Mary Janice Davidson", 1147 | }, 1148 | { 1149 | value: "Katie Macalister", 1150 | id: "Katie Macalister", 1151 | }, 1152 | ], 1153 | }, 1154 | { 1155 | value: "Fiction & Fantasy", 1156 | id: "Fiction & Fantasy", 1157 | items: [ 1158 | { 1159 | value: "Audrey Niffenegger", 1160 | id: "Audrey Niffenegger", 1161 | }, 1162 | { 1163 | value: "Philip Roth", 1164 | id: "Philip Roth", 1165 | }, 1166 | ], 1167 | }, 1168 | { 1169 | value: "Teens", 1170 | id: "Teens", 1171 | items: [ 1172 | { 1173 | value: "Joss Whedon", 1174 | id: "Joss Whedon", 1175 | }, 1176 | { 1177 | value: "Meg Cabot", 1178 | id: "Meg Cabot", 1179 | }, 1180 | { 1181 | value: "Garth Nix", 1182 | id: "Garth Nix", 1183 | }, 1184 | { 1185 | value: "Ann Brashares", 1186 | id: "Ann Brashares", 1187 | }, 1188 | ], 1189 | }, 1190 | ], 1191 | }, 1192 | ]; 1193 | 1194 | const messageDataviewData = [ 1195 | { 1196 | mail: "pmccoy@flowers.com", 1197 | name: "Philip Mccoy", 1198 | avatar: 1199 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_02.jpg", 1200 | status: "online", 1201 | delivered: "0/3", 1202 | }, 1203 | { 1204 | mail: "clores@flowers.com", 1205 | name: "Calvin Flores", 1206 | avatar: 1207 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_04.jpg", 1208 | status: "online", 1209 | delivered: "0/3", 1210 | }, 1211 | { 1212 | mail: "dwight@flowers.com", 1213 | name: "Dwight Jones", 1214 | avatar: 1215 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_05.jpg", 1216 | status: "offline", 1217 | delivered: "0/3", 1218 | }, 1219 | { 1220 | mail: "flores@flowers.com", 1221 | name: "Esther Flores", 1222 | avatar: 1223 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_11.jpg", 1224 | status: "offline", 1225 | delivered: "3/3", 1226 | }, 1227 | { 1228 | mail: "gregory@flowers.com", 1229 | name: "Gregory Bell", 1230 | avatar: 1231 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_10.jpg", 1232 | status: "online", 1233 | delivered: "0/3", 1234 | }, 1235 | { 1236 | mail: "guy@flowers.com", 1237 | name: "Guy Webb", 1238 | avatar: 1239 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_06.jpg", 1240 | status: "online", 1241 | delivered: "2/3", 1242 | }, 1243 | { 1244 | mail: "pat@flowers.com", 1245 | name: "Pat Cooper", 1246 | avatar: 1247 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_15.jpg", 1248 | status: "offline", 1249 | delivered: "1/3", 1250 | }, 1251 | { 1252 | name: "Shaeleigh Lopez", 1253 | mail: "odio@hotmail.com", 1254 | avatar: 1255 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_01.jpg", 1256 | status: "online", 1257 | delivered: "0/3", 1258 | }, 1259 | { 1260 | name: "Craig Pope", 1261 | mail: "fermentum.metus.aenean@icloud.edu", 1262 | avatar: 1263 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_03.jpg", 1264 | status: "offline", 1265 | delivered: "1/3", 1266 | }, 1267 | { 1268 | name: "Angela Clements", 1269 | mail: "nonummy.ut@icloud.net", 1270 | avatar: 1271 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_07.jpg", 1272 | status: "offline", 1273 | delivered: "3/3", 1274 | }, 1275 | { 1276 | name: "Howard Villarreal", 1277 | mail: "libero.donec.consectetuer@icloud.com", 1278 | avatar: 1279 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_08.jpg", 1280 | status: "online", 1281 | delivered: "1/3", 1282 | }, 1283 | { 1284 | name: "Prescott Stafford", 1285 | mail: "nunc.ac.sem@icloud.edu", 1286 | avatar: 1287 | "https://snippet.dhtmlx.com/codebase/data/common/img/02/avatar_09.jpg", 1288 | status: "offline", 1289 | delivered: "2/3", 1290 | }, 1291 | ]; 1292 | 1293 | const country = [ 1294 | { 1295 | id: "austria", 1296 | value: "Austria", 1297 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/at.png", 1298 | }, 1299 | { 1300 | value: "Belarus", 1301 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/by.png", 1302 | }, 1303 | { 1304 | value: "Belgium", 1305 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/be.png", 1306 | }, 1307 | { 1308 | value: "Bulgaria", 1309 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/bg.png", 1310 | }, 1311 | { 1312 | value: "Cyprus", 1313 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/cy.png", 1314 | }, 1315 | { 1316 | value: "Czech Republic", 1317 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/cz.png", 1318 | }, 1319 | { 1320 | value: "Denmark", 1321 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/dk.png", 1322 | }, 1323 | { 1324 | id: "estonia", 1325 | value: "Estonia", 1326 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ee.png", 1327 | }, 1328 | { 1329 | value: "Finland", 1330 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/fi.png", 1331 | }, 1332 | { 1333 | value: "France", 1334 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/fr.png", 1335 | }, 1336 | { 1337 | value: "Germany", 1338 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/de.png", 1339 | }, 1340 | { 1341 | value: "Greece", 1342 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/gr.png", 1343 | }, 1344 | { 1345 | value: "Hungary", 1346 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/hu.png", 1347 | }, 1348 | { 1349 | value: "Ireland", 1350 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ie.png", 1351 | }, 1352 | { 1353 | value: "Italy", 1354 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/it.png", 1355 | }, 1356 | { 1357 | value: "Latvia", 1358 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lv.png", 1359 | }, 1360 | { 1361 | value: "Lithuania", 1362 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lt.png", 1363 | }, 1364 | { 1365 | value: "Luxembourg", 1366 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/lu.png", 1367 | }, 1368 | { 1369 | value: "Malta", 1370 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/mt.png", 1371 | }, 1372 | { 1373 | value: "Netherlands", 1374 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/nl.png", 1375 | }, 1376 | { 1377 | value: "Poland", 1378 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/pl.png", 1379 | }, 1380 | { 1381 | value: "Portugal", 1382 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/pt.png", 1383 | }, 1384 | { 1385 | value: "Russia", 1386 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ru.png", 1387 | }, 1388 | { 1389 | value: "Romania", 1390 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/ro.png", 1391 | }, 1392 | { 1393 | value: "Slovakia", 1394 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/sk.png", 1395 | }, 1396 | { 1397 | value: "Slovenia", 1398 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/si.png", 1399 | }, 1400 | { 1401 | value: "Spain", 1402 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/es.png", 1403 | }, 1404 | { 1405 | value: "Sweden", 1406 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/se.png", 1407 | }, 1408 | { 1409 | value: "United Kingdom", 1410 | src: "https://snippet.dhtmlx.com/codebase/data/combobox/01/img/gb.png", 1411 | }, 1412 | ]; 1413 | 1414 | const store = { 1415 | gridDataset, 1416 | chartData, 1417 | hotelsData, 1418 | ribbonData, 1419 | ticketsDataviewData, 1420 | treeData, 1421 | messageDataviewData, 1422 | country, 1423 | sidebarData, 1424 | toolbarData, 1425 | }; 1426 | 1427 | export default store; 1428 | -------------------------------------------------------------------------------- /suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHTMLX/react-suite-demo/ef512d05cd20371e969bd69325f82f00069c52a3/suite.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------