├── .editorconfig ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── codeql.yml │ ├── deploy.yml │ ├── idle.yml │ └── welcome-bot.yml ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── REVIEWING.md ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.jsx ├── components │ ├── FilterButton.jsx │ ├── Form.jsx │ └── Todo.jsx ├── index.css └── main.jsx ├── vite.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = true 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /.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/jsx-first-prop-new-line": [1, "multiline"], 16 | 'react/prop-types': 'off', 17 | 'react-refresh/only-export-components': [ 18 | 'warn', 19 | { allowConstantExport: true }, 20 | ], 21 | }, 22 | } 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: "Bug report" 2 | description: Report an unexpected problem or unintended behavior. 3 | labels: ["needs triage"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | ### Before you start 9 | 10 | **Want to fix the problem yourself?** This project is open source and we welcome fixes and improvements from the community! 11 | 12 | ↩ Check the project [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md) guide to see how to get started. 13 | 14 | --- 15 | - type: textarea 16 | id: problem 17 | attributes: 18 | label: What information was incorrect, unhelpful, or incomplete? 19 | validations: 20 | required: true 21 | - type: textarea 22 | id: expected 23 | attributes: 24 | label: What did you expect to see? 25 | validations: 26 | required: true 27 | - type: textarea 28 | id: references 29 | attributes: 30 | label: Do you have any supporting links, references, or citations? 31 | description: Link to information that helps us confirm your issue. 32 | - type: textarea 33 | id: more-info 34 | attributes: 35 | label: Do you have anything more you want to share? 36 | description: For example, steps to reproduce a bug, screenshots, screen recordings, or sample code 37 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: MDN GitHub Discussions 4 | url: https://github.com/orgs/mdn/discussions 5 | about: Does the issue involve a lot of pages, or are you not sure how it can be split into actionable tasks? Consider starting a discussion first. 6 | - name: MDN Web Docs on Discourse 7 | url: https://discourse.mozilla.org/c/mdn/learn/250 8 | about: Need help with assessments on MDN Web Docs? We have a support community for this purpose on Discourse. 9 | - name: Help with code 10 | url: https://stackoverflow.com/ 11 | about: If you are stuck and need help with code, StackOverflow is a great resource. 12 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### Description 4 | 5 | 6 | 7 | ### Motivation 8 | 9 | 10 | 11 | ### Additional details 12 | 13 | 14 | 15 | ### Related issues and pull requests 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | updates: 4 | - package-ecosystem: npm 5 | directory: "/" 6 | schedule: 7 | interval: daily 8 | open-pull-requests-limit: 3 9 | 10 | - package-ecosystem: "github-actions" 11 | directory: "/" 12 | schedule: 13 | interval: "daily" 14 | -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- 1 | name: auto-merge 2 | 3 | on: 4 | pull_request_target: 5 | 6 | jobs: 7 | auto-merge: 8 | uses: mdn/workflows/.github/workflows/auto-merge.yml@main 9 | with: 10 | target-repo: 'mdn/todo-react' 11 | secrets: 12 | GH_TOKEN: ${{ secrets.AUTOMERGE_TOKEN }} 13 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- 1 | name: "CodeQL" 2 | 3 | on: 4 | push: 5 | branches: ["main"] 6 | paths-ignore: 7 | - "**.md" 8 | pull_request: 9 | # The branches below must be a subset of the branches above 10 | branches: ["main"] 11 | paths-ignore: 12 | - "**.md" 13 | 14 | jobs: 15 | analyze: 16 | name: Analyze 17 | runs-on: ubuntu-latest 18 | permissions: 19 | actions: read 20 | contents: read 21 | security-events: write 22 | 23 | strategy: 24 | matrix: 25 | language: ["javascript"] 26 | 27 | steps: 28 | - name: Checkout repository 29 | uses: actions/checkout@v4 30 | 31 | # Initializes the CodeQL tools for scanning. 32 | - name: Initialize CodeQL 33 | uses: github/codeql-action/init@v3 34 | with: 35 | languages: ${{ matrix.language }} 36 | 37 | - name: Perform CodeQL Analysis 38 | uses: github/codeql-action/analyze@v3 39 | with: 40 | category: "/language:${{matrix.language}}" 41 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Build and deploy to GH Pages 2 | 3 | on: 4 | # Runs on pushes targeting the default branch 5 | push: 6 | branches: ["main"] 7 | 8 | # Allows you to run this workflow manually from the Actions tab 9 | workflow_dispatch: 10 | 11 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 12 | permissions: 13 | contents: read 14 | pages: write 15 | id-token: write 16 | 17 | # Allow one concurrent deployment 18 | concurrency: 19 | group: "pages" 20 | cancel-in-progress: true 21 | 22 | jobs: 23 | build: 24 | runs-on: ubuntu-latest 25 | environment: 26 | name: github-pages 27 | url: ${{ steps.deployment.outputs.page_url }} 28 | steps: 29 | - name: Checkout 30 | uses: actions/checkout@v4 31 | - name: Build 32 | uses: actions/setup-node@v4 33 | with: 34 | node-version-file: ".nvmrc" 35 | - name: Run install 36 | uses: borales/actions-yarn@v5 37 | with: 38 | cmd: install 39 | - name: Build production bundle 40 | uses: borales/actions-yarn@v5 41 | with: 42 | cmd: build 43 | 44 | - name: Setup pages 45 | uses: actions/configure-pages@v5 46 | - name: Upload build artifacts 47 | uses: actions/upload-pages-artifact@v3 48 | with: 49 | # Upload dist directory 50 | path: "dist" 51 | - name: Deploy to GitHub Pages 52 | id: deployment 53 | uses: actions/deploy-pages@v4 54 | -------------------------------------------------------------------------------- /.github/workflows/idle.yml: -------------------------------------------------------------------------------- 1 | name: "Label idle issues" 2 | 3 | on: 4 | schedule: 5 | - cron: "0 8 * * *" 6 | 7 | jobs: 8 | mark-as-idle: 9 | uses: mdn/workflows/.github/workflows/idle.yml@main 10 | with: 11 | target-repo: "mdn/todo-react" 12 | -------------------------------------------------------------------------------- /.github/workflows/welcome-bot.yml: -------------------------------------------------------------------------------- 1 | name: "AlloAllo" 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | pull_request_target: 8 | branches: 9 | - main 10 | types: 11 | - opened 12 | - closed 13 | 14 | jobs: 15 | allo-allo: 16 | uses: mdn/workflows/.github/workflows/allo-allo.yml@main 17 | with: 18 | target-repo: "mdn/todo-react" 19 | issue-welcome: | 20 | It looks like this is your first issue. Welcome! 👋 21 | One of the project maintainers will be with you as soon as possible. We 22 | appreciate your patience. To safeguard the health of the project, please 23 | take a moment to read our [code of conduct](../blob/main/CODE_OF_CONDUCT.md). 24 | pr-welcome: | 25 | It looks like this is your first pull request. 🎉 26 | Thank you for your contribution! One of the project maintainers will triage 27 | and assign the pull request for review. We appreciate your patience. To 28 | safeguard the health of the project, please take a moment to read our 29 | [code of conduct](../blob/main/CODE_OF_CONDUCT.md). 30 | pr-merged: | 31 | Congratulations on your first merged pull request. 🎉 Thank you for your contribution! 32 | Did you know we have a [project board](https://github.com/orgs/mdn/projects/25) with high-impact contribution opportunities? 33 | We look forward to your next contribution. 34 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Community participation guidelines 2 | 3 | This repository is governed by Mozilla's code of conduct and etiquette guidelines. 4 | For more details, please read the [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). 5 | 6 | ## Reporting violations 7 | 8 | For more information on how to report violations of the Community Participation Guidelines, please read our [How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/) page. 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution guide 2 | 3 | ![github-profile](https://user-images.githubusercontent.com/10350960/166113119-629295f6-c282-42c9-9379-af2de5ad4338.png) 4 | 5 | - [Ways to contribute](#ways-to-contribute) 6 | - [Finding an issue](#finding-an-issue) 7 | - [Asking for help](#asking-for-help) 8 | - [Pull request process](#pull-request-process) 9 | - [Setting up the development environment](#setting-up-the-development-environment) 10 | - [Forking and cloning the project](#forking-and-cloning-the-project) 11 | - [Prerequisites](#prerequisites) 12 | - [Signing commits](#signing-commits) 13 | 14 | Welcome 👋 Thank you for your interest in contributing to MDN Web Docs. We are happy to have you join us! 💖 15 | 16 | As you get started, you are in the best position to give us feedback on project areas we might have forgotten about or assumed to work well. 17 | These include, but are not limited to: 18 | 19 | - Problems found while setting up a new developer environment 20 | - Gaps in our documentation 21 | - Bugs in our automation scripts 22 | 23 | If anything doesn't make sense or work as expected, please open an issue and let us know! 24 | 25 | ## Setting up the development environment 26 | 27 | This project requires [Node.js](https://nodejs.org/en/) to be installed on your local machine. 28 | Additionally, you should have git and GitHub access. 29 | 30 | ### Forking and cloning the project 31 | 32 | The first step in setting up your development environment is to [fork the repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo) and [clone](https://docs.github.com/en/get-started/quickstart/fork-a-repo#cloning-your-forked-repository) the repository to your local machine. 33 | 34 | ### Prerequisites 35 | 36 | To get started, make sure you have the following: 37 | 38 | - [NVM](https://github.com/nvm-sh/nvm) or [NVM for Windows](https://github.com/coreybutler/nvm-windows) 39 | - [Nodejs](https://nodejs.org/en/) (Latest stable release or up to two versions back) 40 | - [Yarn](https://yarnpkg.com/getting-started/install) 41 | 42 | ### Building the project 43 | 44 | Once you have the above installed and have the repository cloned, it is time to install the project dependencies. 45 | 46 | In the project directory, you can run the following command which runs the app in the development mode. 47 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 48 | The page will reload if you make edits. 49 | You will also see any lint errors in the console. 50 | 51 | ```bash 52 | yarn start 53 | ``` 54 | 55 | Launches the test runner in the interactive watch mode. 56 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 57 | 58 | ```bash 59 | yarn test 60 | ``` 61 | 62 | The following command builds the app for production to the `build` folder. 63 | It correctly bundles React in production mode and optimizes the build for the best performance. 64 | 65 | ```bash 66 | yarn build 67 | ``` 68 | 69 | The build is minified and the filenames include the hashes. 70 | Your app is ready to be deployed! 71 | 72 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 73 | 74 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 75 | 76 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 77 | 78 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 79 | 80 | ```bash 81 | yarn eject 82 | ``` 83 | 84 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 85 | 86 | ## Ways to contribute 87 | 88 | We welcome many different types of contributions including: 89 | 90 | - New features and content suggestions. 91 | - Identifying and filing issues. 92 | - Providing feedback on existing issues. 93 | - Engaging with the community and answering questions. 94 | - Contributing documentation or code. 95 | - Promoting the project in personal circles and social media. 96 | 97 | ## Finding an issue 98 | 99 | We have issues labeled `good first issue` for new contributors and `help wanted` suitable for any contributor. 100 | Good first issues have extra information to help you make your first contribution a success. 101 | Help wanted issues are ideal when you feel a bit more comfortable with the project details. 102 | 103 | Sometimes there won't be any issues with these labels, but there is likely still something for you to work on. 104 | If you want to contribute but don't know where to start or can't find a suitable issue, speak to us on [Matrix](https://matrix.to/#/#mdn:mozilla.org), and we will be happy to help. 105 | 106 | Once you find an issue you'd like to work on, please post a comment saying you want to work on it. 107 | Something like "I want to work on this" is fine. 108 | Also, mention the community team using the `@mdn/mdn-community-engagement` handle to ensure someone will get back to you. 109 | 110 | ## Asking for help 111 | 112 | The best way to reach us with a question when contributing is to use the following channels in the following order of precedence: 113 | 114 | - [Start a discussion](https://github.com/orgs/mdn/discussions) 115 | - Ask your question or highlight your discussion on [Matrix](https://matrix.to/#/#mdn:mozilla.org). 116 | - File an issue and tag the community team using the `@mdn/mdn-community-engagement` handle. 117 | 118 | ## Pull request process 119 | 120 | The MDN Web Docs project has a well-defined pull request process which is documented in the [Pull request guidelines](https://developer.mozilla.org/en-US/docs/MDN/Community/Pull_requests). 121 | Make sure you read and understand this process before you start working on a pull request. 122 | 123 | ## Signing commits 124 | 125 | We require all commits to be signed to verify the author's identity. 126 | GitHub has a detailed guide on [setting up signed commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits). 127 | If you get stuck, please [ask for help](#asking-for-help). 128 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | -------------- 6 | 7 | 1.1. "Contributor" 8 | means each individual or legal entity that creates, contributes to 9 | the creation of, or owns Covered Software. 10 | 11 | 1.2. "Contributor Version" 12 | means the combination of the Contributions of others (if any) used 13 | by a Contributor and that particular Contributor's Contribution. 14 | 15 | 1.3. "Contribution" 16 | means Covered Software of a particular Contributor. 17 | 18 | 1.4. "Covered Software" 19 | means Source Code Form to which the initial Contributor has attached 20 | the notice in Exhibit A, the Executable Form of such Source Code 21 | Form, and Modifications of such Source Code Form, in each case 22 | including portions thereof. 23 | 24 | 1.5. "Incompatible With Secondary Licenses" 25 | means 26 | 27 | (a) that the initial Contributor has attached the notice described 28 | in Exhibit B to the Covered Software; or 29 | 30 | (b) that the Covered Software was made available under the terms of 31 | version 1.1 or earlier of the License, but not also under the 32 | terms of a Secondary License. 33 | 34 | 1.6. "Executable Form" 35 | means any form of the work other than Source Code Form. 36 | 37 | 1.7. "Larger Work" 38 | means a work that combines Covered Software with other material, in 39 | a separate file or files, that is not Covered Software. 40 | 41 | 1.8. "License" 42 | means this document. 43 | 44 | 1.9. "Licensable" 45 | means having the right to grant, to the maximum extent possible, 46 | whether at the time of the initial grant or subsequently, any and 47 | all of the rights conveyed by this License. 48 | 49 | 1.10. "Modifications" 50 | means any of the following: 51 | 52 | (a) any file in Source Code Form that results from an addition to, 53 | deletion from, or modification of the contents of Covered 54 | Software; or 55 | 56 | (b) any new file in Source Code Form that contains any Covered 57 | Software. 58 | 59 | 1.11. "Patent Claims" of a Contributor 60 | means any patent claim(s), including without limitation, method, 61 | process, and apparatus claims, in any patent Licensable by such 62 | Contributor that would be infringed, but for the grant of the 63 | License, by the making, using, selling, offering for sale, having 64 | made, import, or transfer of either its Contributions or its 65 | Contributor Version. 66 | 67 | 1.12. "Secondary License" 68 | means either the GNU General Public License, Version 2.0, the GNU 69 | Lesser General Public License, Version 2.1, the GNU Affero General 70 | Public License, Version 3.0, or any later versions of those 71 | licenses. 72 | 73 | 1.13. "Source Code Form" 74 | means the form of the work preferred for making modifications. 75 | 76 | 1.14. "You" (or "Your") 77 | means an individual or a legal entity exercising rights under this 78 | License. For legal entities, "You" includes any entity that 79 | controls, is controlled by, or is under common control with You. For 80 | purposes of this definition, "control" means (a) the power, direct 81 | or indirect, to cause the direction or management of such entity, 82 | whether by contract or otherwise, or (b) ownership of more than 83 | fifty percent (50%) of the outstanding shares or beneficial 84 | ownership of such entity. 85 | 86 | 2. License Grants and Conditions 87 | -------------------------------- 88 | 89 | 2.1. Grants 90 | 91 | Each Contributor hereby grants You a world-wide, royalty-free, 92 | non-exclusive license: 93 | 94 | (a) under intellectual property rights (other than patent or trademark) 95 | Licensable by such Contributor to use, reproduce, make available, 96 | modify, display, perform, distribute, and otherwise exploit its 97 | Contributions, either on an unmodified basis, with Modifications, or 98 | as part of a Larger Work; and 99 | 100 | (b) under Patent Claims of such Contributor to make, use, sell, offer 101 | for sale, have made, import, and otherwise transfer either its 102 | Contributions or its Contributor Version. 103 | 104 | 2.2. Effective Date 105 | 106 | The licenses granted in Section 2.1 with respect to any Contribution 107 | become effective for each Contribution on the date the Contributor first 108 | distributes such Contribution. 109 | 110 | 2.3. Limitations on Grant Scope 111 | 112 | The licenses granted in this Section 2 are the only rights granted under 113 | this License. No additional rights or licenses will be implied from the 114 | distribution or licensing of Covered Software under this License. 115 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 116 | Contributor: 117 | 118 | (a) for any code that a Contributor has removed from Covered Software; 119 | or 120 | 121 | (b) for infringements caused by: (i) Your and any other third party's 122 | modifications of Covered Software, or (ii) the combination of its 123 | Contributions with other software (except as part of its Contributor 124 | Version); or 125 | 126 | (c) under Patent Claims infringed by Covered Software in the absence of 127 | its Contributions. 128 | 129 | This License does not grant any rights in the trademarks, service marks, 130 | or logos of any Contributor (except as may be necessary to comply with 131 | the notice requirements in Section 3.4). 132 | 133 | 2.4. Subsequent Licenses 134 | 135 | No Contributor makes additional grants as a result of Your choice to 136 | distribute the Covered Software under a subsequent version of this 137 | License (see Section 10.2) or under the terms of a Secondary License (if 138 | permitted under the terms of Section 3.3). 139 | 140 | 2.5. Representation 141 | 142 | Each Contributor represents that the Contributor believes its 143 | Contributions are its original creation(s) or it has sufficient rights 144 | to grant the rights to its Contributions conveyed by this License. 145 | 146 | 2.6. Fair Use 147 | 148 | This License is not intended to limit any rights You have under 149 | applicable copyright doctrines of fair use, fair dealing, or other 150 | equivalents. 151 | 152 | 2.7. Conditions 153 | 154 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 155 | in Section 2.1. 156 | 157 | 3. Responsibilities 158 | ------------------- 159 | 160 | 3.1. Distribution of Source Form 161 | 162 | All distribution of Covered Software in Source Code Form, including any 163 | Modifications that You create or to which You contribute, must be under 164 | the terms of this License. You must inform recipients that the Source 165 | Code Form of the Covered Software is governed by the terms of this 166 | License, and how they can obtain a copy of this License. You may not 167 | attempt to alter or restrict the recipients' rights in the Source Code 168 | Form. 169 | 170 | 3.2. Distribution of Executable Form 171 | 172 | If You distribute Covered Software in Executable Form then: 173 | 174 | (a) such Covered Software must also be made available in Source Code 175 | Form, as described in Section 3.1, and You must inform recipients of 176 | the Executable Form how they can obtain a copy of such Source Code 177 | Form by reasonable means in a timely manner, at a charge no more 178 | than the cost of distribution to the recipient; and 179 | 180 | (b) You may distribute such Executable Form under the terms of this 181 | License, or sublicense it under different terms, provided that the 182 | license for the Executable Form does not attempt to limit or alter 183 | the recipients' rights in the Source Code Form under this License. 184 | 185 | 3.3. Distribution of a Larger Work 186 | 187 | You may create and distribute a Larger Work under terms of Your choice, 188 | provided that You also comply with the requirements of this License for 189 | the Covered Software. If the Larger Work is a combination of Covered 190 | Software with a work governed by one or more Secondary Licenses, and the 191 | Covered Software is not Incompatible With Secondary Licenses, this 192 | License permits You to additionally distribute such Covered Software 193 | under the terms of such Secondary License(s), so that the recipient of 194 | the Larger Work may, at their option, further distribute the Covered 195 | Software under the terms of either this License or such Secondary 196 | License(s). 197 | 198 | 3.4. Notices 199 | 200 | You may not remove or alter the substance of any license notices 201 | (including copyright notices, patent notices, disclaimers of warranty, 202 | or limitations of liability) contained within the Source Code Form of 203 | the Covered Software, except that You may alter any license notices to 204 | the extent required to remedy known factual inaccuracies. 205 | 206 | 3.5. Application of Additional Terms 207 | 208 | You may choose to offer, and to charge a fee for, warranty, support, 209 | indemnity or liability obligations to one or more recipients of Covered 210 | Software. However, You may do so only on Your own behalf, and not on 211 | behalf of any Contributor. You must make it absolutely clear that any 212 | such warranty, support, indemnity, or liability obligation is offered by 213 | You alone, and You hereby agree to indemnify every Contributor for any 214 | liability incurred by such Contributor as a result of warranty, support, 215 | indemnity or liability terms You offer. You may include additional 216 | disclaimers of warranty and limitations of liability specific to any 217 | jurisdiction. 218 | 219 | 4. Inability to Comply Due to Statute or Regulation 220 | --------------------------------------------------- 221 | 222 | If it is impossible for You to comply with any of the terms of this 223 | License with respect to some or all of the Covered Software due to 224 | statute, judicial order, or regulation then You must: (a) comply with 225 | the terms of this License to the maximum extent possible; and (b) 226 | describe the limitations and the code they affect. Such description must 227 | be placed in a text file included with all distributions of the Covered 228 | Software under this License. Except to the extent prohibited by statute 229 | or regulation, such description must be sufficiently detailed for a 230 | recipient of ordinary skill to be able to understand it. 231 | 232 | 5. Termination 233 | -------------- 234 | 235 | 5.1. The rights granted under this License will terminate automatically 236 | if You fail to comply with any of its terms. However, if You become 237 | compliant, then the rights granted under this License from a particular 238 | Contributor are reinstated (a) provisionally, unless and until such 239 | Contributor explicitly and finally terminates Your grants, and (b) on an 240 | ongoing basis, if such Contributor fails to notify You of the 241 | non-compliance by some reasonable means prior to 60 days after You have 242 | come back into compliance. Moreover, Your grants from a particular 243 | Contributor are reinstated on an ongoing basis if such Contributor 244 | notifies You of the non-compliance by some reasonable means, this is the 245 | first time You have received notice of non-compliance with this License 246 | from such Contributor, and You become compliant prior to 30 days after 247 | Your receipt of the notice. 248 | 249 | 5.2. If You initiate litigation against any entity by asserting a patent 250 | infringement claim (excluding declaratory judgment actions, 251 | counter-claims, and cross-claims) alleging that a Contributor Version 252 | directly or indirectly infringes any patent, then the rights granted to 253 | You by any and all Contributors for the Covered Software under Section 254 | 2.1 of this License shall terminate. 255 | 256 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 257 | end user license agreements (excluding distributors and resellers) which 258 | have been validly granted by You or Your distributors under this License 259 | prior to termination shall survive termination. 260 | 261 | ************************************************************************ 262 | * * 263 | * 6. Disclaimer of Warranty * 264 | * ------------------------- * 265 | * * 266 | * Covered Software is provided under this License on an "as is" * 267 | * basis, without warranty of any kind, either expressed, implied, or * 268 | * statutory, including, without limitation, warranties that the * 269 | * Covered Software is free of defects, merchantable, fit for a * 270 | * particular purpose or non-infringing. The entire risk as to the * 271 | * quality and performance of the Covered Software is with You. * 272 | * Should any Covered Software prove defective in any respect, You * 273 | * (not any Contributor) assume the cost of any necessary servicing, * 274 | * repair, or correction. This disclaimer of warranty constitutes an * 275 | * essential part of this License. No use of any Covered Software is * 276 | * authorized under this License except under this disclaimer. * 277 | * * 278 | ************************************************************************ 279 | 280 | ************************************************************************ 281 | * * 282 | * 7. Limitation of Liability * 283 | * -------------------------- * 284 | * * 285 | * Under no circumstances and under no legal theory, whether tort * 286 | * (including negligence), contract, or otherwise, shall any * 287 | * Contributor, or anyone who distributes Covered Software as * 288 | * permitted above, be liable to You for any direct, indirect, * 289 | * special, incidental, or consequential damages of any character * 290 | * including, without limitation, damages for lost profits, loss of * 291 | * goodwill, work stoppage, computer failure or malfunction, or any * 292 | * and all other commercial damages or losses, even if such party * 293 | * shall have been informed of the possibility of such damages. This * 294 | * limitation of liability shall not apply to liability for death or * 295 | * personal injury resulting from such party's negligence to the * 296 | * extent applicable law prohibits such limitation. Some * 297 | * jurisdictions do not allow the exclusion or limitation of * 298 | * incidental or consequential damages, so this exclusion and * 299 | * limitation may not apply to You. * 300 | * * 301 | ************************************************************************ 302 | 303 | 8. Litigation 304 | ------------- 305 | 306 | Any litigation relating to this License may be brought only in the 307 | courts of a jurisdiction where the defendant maintains its principal 308 | place of business and such litigation shall be governed by laws of that 309 | jurisdiction, without reference to its conflict-of-law provisions. 310 | Nothing in this Section shall prevent a party's ability to bring 311 | cross-claims or counter-claims. 312 | 313 | 9. Miscellaneous 314 | ---------------- 315 | 316 | This License represents the complete agreement concerning the subject 317 | matter hereof. If any provision of this License is held to be 318 | unenforceable, such provision shall be reformed only to the extent 319 | necessary to make it enforceable. Any law or regulation which provides 320 | that the language of a contract shall be construed against the drafter 321 | shall not be used to construe this License against a Contributor. 322 | 323 | 10. Versions of the License 324 | --------------------------- 325 | 326 | 10.1. New Versions 327 | 328 | Mozilla Foundation is the license steward. Except as provided in Section 329 | 10.3, no one other than the license steward has the right to modify or 330 | publish new versions of this License. Each version will be given a 331 | distinguishing version number. 332 | 333 | 10.2. Effect of New Versions 334 | 335 | You may distribute the Covered Software under the terms of the version 336 | of the License under which You originally received the Covered Software, 337 | or under the terms of any subsequent version published by the license 338 | steward. 339 | 340 | 10.3. Modified Versions 341 | 342 | If you create software not governed by this License, and you want to 343 | create a new license for such software, you may create and use a 344 | modified version of this License if you rename the license and remove 345 | any references to the name of the license steward (except to note that 346 | such modified license differs from this License). 347 | 348 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 349 | Licenses 350 | 351 | If You choose to distribute Source Code Form that is Incompatible With 352 | Secondary Licenses under the terms of this version of the License, the 353 | notice described in Exhibit B of this License must be attached. 354 | 355 | Exhibit A - Source Code Form License Notice 356 | ------------------------------------------- 357 | 358 | This Source Code Form is subject to the terms of the Mozilla Public 359 | License, v. 2.0. If a copy of the MPL was not distributed with this 360 | file, You can obtain one at http://mozilla.org/MPL/2.0/. 361 | 362 | If it is not possible or desirable to put the notice in a particular 363 | file, then You may include the notice in a location (such as a LICENSE 364 | file in a relevant directory) where a recipient would be likely to look 365 | for such a notice. 366 | 367 | You may add additional accurate notices of copyright ownership. 368 | 369 | Exhibit B - "Incompatible With Secondary Licenses" Notice 370 | --------------------------------------------------------- 371 | 372 | This Source Code Form is "Incompatible With Secondary Licenses", as 373 | defined by the Mozilla Public License, v. 2.0. 374 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # todo-react 2 | 3 | Sample todo app built with the React/ReactDOM framework. For the accompanying documentation, see 4 | [Understanding client-side JavaScript frameworks 5 | : React tutorials](https://wiki.developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Client-side_JavaScript_frameworks#React_tutorials). 6 | 7 | For the live version, see https://mdn.github.io/todo-react/. 8 | 9 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 10 | 11 | ## Getting started 12 | 13 | To get this app running locally, you'll need to have [Node.js](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com/getting-started/install) installed on your machine. 14 | In the project directory, you can run: 15 | 16 | ```bash 17 | yarn && yarn start 18 | ``` 19 | 20 | More information about the available commands can be found in the [Contributing](CONTRIBUTING.md) guide. 21 | 22 | ## Learn More 23 | 24 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 25 | 26 | The following sections are recommended: 27 | 28 | - [Code Splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 29 | - [Analyzing the Bundle Size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 30 | - [Making a Progressive Web App](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 31 | - [Advanced Configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 32 | - [Deployment](https://facebook.github.io/create-react-app/docs/deployment) 33 | - [npm run build fails to minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 34 | 35 | To learn React, check out the [React documentation](https://reactjs.org/). 36 | 37 | ## Contributing 38 | 39 | Our project welcomes contributions from any member of our community. 40 | To get started contributing, please see our [Contributor Guide](CONTRIBUTING.md). 41 | 42 | By participating in and contributing to our projects and discussions, you acknowledge that you have read and agree to our [Code of Conduct](CODE_OF_CONDUCT.md). 43 | 44 | ## License 45 | 46 | This project is licensed under the [LICENSE](LICENSE). 47 | -------------------------------------------------------------------------------- /REVIEWING.md: -------------------------------------------------------------------------------- 1 | # Reviewing guide 2 | 3 | ## Values and guidelines 4 | 5 | All reviewers must abide by the [Code of Conduct](CODE_OF_CONDUCT.md); they are also protected by the Code of Conduct. 6 | A reviewer should not tolerate poor behavior and is encouraged to [report any behavior](CODE_OF_CONDUCT.md#Reporting_violations) that violates the Code of Conduct. 7 | 8 | Everyone participating must follow our [Community Participation Guidelines](CODE_OF_CONDUCT.md#Community_Participation_Guidelines) 9 | 10 | ## Review process 11 | 12 | The MDN Web Docs team has a well-defined review process that must be followed by reviewers in all repositories under the GitHub MDN organization. 13 | This process is described in detail on the [Pull request guidelines](https://developer.mozilla.org/en-US/docs/MDN/Community/Pull_requests) page. 14 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | TodoMatic 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "moz-todo-react", 3 | "version": "0.3.0", 4 | "private": true, 5 | "homepage": "https://mdn.github.io/todo-react/", 6 | "type": "module", 7 | "scripts": { 8 | "dev": "vite --port 3000 --open", 9 | "build": "vite build", 10 | "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", 11 | "preview": "vite preview" 12 | }, 13 | "dependencies": { 14 | "nanoid": "^5.1.5", 15 | "react": "^18.2.0", 16 | "react-dom": "^18.2.0" 17 | }, 18 | "devDependencies": { 19 | "@types/react": "^18.2.79", 20 | "@types/react-dom": "^18.2.25", 21 | "@vitejs/plugin-react": "^4.3.4", 22 | "eslint": "^8.57.1", 23 | "eslint-plugin-react": "^7.37.2", 24 | "eslint-plugin-react-hooks": "^4.6.2", 25 | "eslint-plugin-react-refresh": "^0.4.16", 26 | "vite": "^5.4.11" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import { useState, useRef, useEffect } from "react"; 2 | import Form from "./components/Form"; 3 | import FilterButton from "./components/FilterButton"; 4 | import Todo from "./components/Todo"; 5 | import { nanoid } from "nanoid"; 6 | 7 | function usePrevious(value) { 8 | const ref = useRef(null); 9 | useEffect(() => { 10 | ref.current = value; 11 | }); 12 | return ref.current; 13 | } 14 | 15 | const FILTER_MAP = { 16 | All: () => true, 17 | Active: (task) => !task.completed, 18 | Completed: (task) => task.completed, 19 | }; 20 | 21 | const FILTER_NAMES = Object.keys(FILTER_MAP); 22 | 23 | function App(props) { 24 | const [tasks, setTasks] = useState(props.tasks); 25 | const [filter, setFilter] = useState("All"); 26 | 27 | function toggleTaskCompleted(id) { 28 | const updatedTasks = tasks.map((task) => { 29 | // if this task has the same ID as the edited task 30 | if (id === task.id) { 31 | // use object spread to make a new obkect 32 | // whose `completed` prop has been inverted 33 | return { ...task, completed: !task.completed }; 34 | } 35 | return task; 36 | }); 37 | setTasks(updatedTasks); 38 | } 39 | 40 | function deleteTask(id) { 41 | const remainingTasks = tasks.filter((task) => id !== task.id); 42 | setTasks(remainingTasks); 43 | } 44 | 45 | function editTask(id, newName) { 46 | const editedTaskList = tasks.map((task) => { 47 | // if this task has the same ID as the edited task 48 | if (id === task.id) { 49 | // Copy the task and update its name 50 | return { ...task, name: newName }; 51 | } 52 | // Return the original task if it's not the edited task 53 | return task; 54 | }); 55 | setTasks(editedTaskList); 56 | } 57 | 58 | const taskList = tasks 59 | ?.filter(FILTER_MAP[filter]) 60 | .map((task) => ( 61 | 70 | )); 71 | 72 | const filterList = FILTER_NAMES.map((name) => ( 73 | 79 | )); 80 | 81 | function addTask(name) { 82 | const newTask = { id: "todo-" + nanoid(), name: name, completed: false }; 83 | setTasks([...tasks, newTask]); 84 | } 85 | 86 | const tasksNoun = taskList.length !== 1 ? "tasks" : "task"; 87 | const headingText = `${taskList.length} ${tasksNoun} remaining`; 88 | 89 | const listHeadingRef = useRef(null); 90 | const prevTaskLength = usePrevious(tasks.length); 91 | 92 | useEffect(() => { 93 | if (tasks.length < prevTaskLength) { 94 | listHeadingRef.current.focus(); 95 | } 96 | }, [tasks.length, prevTaskLength]); 97 | 98 | return ( 99 |
100 |

TodoMatic

101 |
102 |
{filterList}
103 |

104 | {headingText} 105 |

106 |
    111 | {taskList} 112 |
113 |
114 | ); 115 | } 116 | 117 | export default App; 118 | -------------------------------------------------------------------------------- /src/components/FilterButton.jsx: -------------------------------------------------------------------------------- 1 | function FilterButton(props) { 2 | return ( 3 | 13 | ); 14 | } 15 | 16 | export default FilterButton; 17 | -------------------------------------------------------------------------------- /src/components/Form.jsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react"; 2 | 3 | function Form(props) { 4 | const [name, setName] = useState(''); 5 | 6 | // NOTE: As written, this function has a bug: it doesn't prevent the user 7 | // from submitting an empty form. This is left as an exercise for developers 8 | // working through MDN's React tutorial. 9 | function handleSubmit(event) { 10 | event.preventDefault(); 11 | props.addTask(name); 12 | setName(""); 13 | } 14 | 15 | function handleChange(event) { 16 | setName(event.target.value); 17 | } 18 | 19 | return ( 20 | 21 |

22 | 25 |

26 | 27 | 36 | 39 | 40 | ); 41 | } 42 | 43 | export default Form; 44 | -------------------------------------------------------------------------------- /src/components/Todo.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | 3 | function usePrevious(value) { 4 | const ref = useRef(null); 5 | useEffect(() => { 6 | ref.current = value; 7 | }); 8 | return ref.current; 9 | } 10 | 11 | function Todo(props) { 12 | const [isEditing, setEditing] = useState(false); 13 | const [newName, setNewName] = useState(""); 14 | 15 | const editFieldRef = useRef(null); 16 | const editButtonRef = useRef(null); 17 | 18 | const wasEditing = usePrevious(isEditing); 19 | 20 | function handleChange(event) { 21 | setNewName(event.target.value); 22 | } 23 | 24 | // NOTE: As written, this function has a bug: it doesn't prevent the user 25 | // from submitting an empty form. This is left as an exercise for developers 26 | // working through MDN's React tutorial. 27 | function handleSubmit(event) { 28 | event.preventDefault(); 29 | props.editTask(props.id, newName); 30 | setNewName(""); 31 | setEditing(false); 32 | } 33 | 34 | const editingTemplate = ( 35 |
36 |
37 | 40 | 48 |
49 |
50 | 57 | 61 |
62 |
63 | ); 64 | 65 | const viewTemplate = ( 66 |
67 |
68 | props.toggleTaskCompleted(props.id)} 73 | /> 74 | 77 |
78 |
79 | 88 | 94 |
95 |
96 | ); 97 | 98 | useEffect(() => { 99 | if (!wasEditing && isEditing) { 100 | editFieldRef.current.focus(); 101 | } else if (wasEditing && !isEditing) { 102 | editButtonRef.current.focus(); 103 | } 104 | }, [wasEditing, isEditing]); 105 | 106 | return
  • {isEditing ? editingTemplate : viewTemplate}
  • ; 107 | } 108 | 109 | export default Todo; 110 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | /* Resets */ 2 | *, 3 | *::before, 4 | *::after { 5 | box-sizing: border-box; 6 | } 7 | *:focus-visible { 8 | outline: 3px dashed #228bec; 9 | outline-offset: 0; 10 | } 11 | html { 12 | font: 62.5% / 1.15 sans-serif; 13 | } 14 | h1, 15 | h2 { 16 | margin-bottom: 0; 17 | } 18 | ul { 19 | list-style: none; 20 | padding: 0; 21 | } 22 | button { 23 | -moz-osx-font-smoothing: inherit; 24 | -webkit-font-smoothing: inherit; 25 | appearance: none; 26 | background: transparent; 27 | border: none; 28 | color: inherit; 29 | font: inherit; 30 | line-height: normal; 31 | margin: 0; 32 | overflow: visible; 33 | padding: 0; 34 | width: auto; 35 | } 36 | button::-moz-focus-inner { 37 | border: 0; 38 | } 39 | button, 40 | input, 41 | optgroup, 42 | select, 43 | textarea { 44 | font-family: inherit; 45 | font-size: 100%; 46 | line-height: 1.15; 47 | margin: 0; 48 | } 49 | button, 50 | input { 51 | overflow: visible; 52 | } 53 | input[type="text"] { 54 | border-radius: 0; 55 | } 56 | body { 57 | background-color: #f5f5f5; 58 | color: #4d4d4d; 59 | font: 60 | 1.6rem/1.25 Arial, 61 | sans-serif; 62 | margin: 0 auto; 63 | max-width: 68rem; 64 | width: 100%; 65 | } 66 | @media screen and (min-width: 620px) { 67 | body { 68 | font-size: 1.9rem; 69 | line-height: 1.31579; 70 | } 71 | } 72 | /* End resets */ 73 | /* Global styles */ 74 | .form-group > input[type="text"] { 75 | display: inline-block; 76 | margin-top: 0.4rem; 77 | } 78 | .btn { 79 | border: 0.2rem solid #4d4d4d; 80 | cursor: pointer; 81 | padding: 0.8rem 1rem 0.7rem; 82 | text-transform: capitalize; 83 | } 84 | .btn.toggle-btn { 85 | border-color: #d3d3d3; 86 | border-width: 1px; 87 | } 88 | .btn.toggle-btn[aria-pressed="true"] { 89 | border-color: #4d4d4d; 90 | text-decoration: underline; 91 | } 92 | .btn__danger { 93 | background-color: #ca3c3c; 94 | border-color: #bd2130; 95 | color: #fff; 96 | } 97 | .btn__filter { 98 | border-color: lightgrey; 99 | } 100 | .btn__primary { 101 | background-color: #000; 102 | color: #fff; 103 | } 104 | .btn-group { 105 | display: flex; 106 | justify-content: space-between; 107 | } 108 | .btn-group > * { 109 | flex: 1 1 49%; 110 | } 111 | .btn-group > * + * { 112 | margin-left: 0.8rem; 113 | } 114 | .label-wrapper { 115 | flex: 0 0 100%; 116 | margin: 0; 117 | text-align: center; 118 | } 119 | .visually-hidden { 120 | clip: rect(1px 1px 1px 1px); 121 | clip: rect(1px, 1px, 1px, 1px); 122 | height: 1px; 123 | overflow: hidden; 124 | position: absolute !important; 125 | white-space: nowrap; 126 | width: 1px; 127 | } 128 | [class*="stack"] > * { 129 | margin-bottom: 0; 130 | margin-top: 0; 131 | } 132 | .stack-small > * + * { 133 | margin-top: 1.25rem; 134 | } 135 | .stack-large > * + * { 136 | margin-top: 2.5rem; 137 | } 138 | @media screen and (min-width: 550px) { 139 | .stack-small > * + * { 140 | margin-top: 1.4rem; 141 | } 142 | .stack-large > * + * { 143 | margin-top: 2.8rem; 144 | } 145 | } 146 | .stack-exception { 147 | margin-top: 1.2rem; 148 | } 149 | /* End global styles */ 150 | /* General app styles */ 151 | .todoapp { 152 | background: #fff; 153 | box-shadow: 154 | 0 2px 4px 0 rgb(0 0 0 / 20%), 155 | 0 2.5rem 5rem 0 rgb(0 0 0 / 10%); 156 | margin: 2rem 0 4rem 0; 157 | padding: 1rem; 158 | position: relative; 159 | } 160 | @media screen and (min-width: 550px) { 161 | .todoapp { 162 | padding: 4rem; 163 | } 164 | } 165 | .todoapp > * { 166 | margin-left: auto; 167 | margin-right: auto; 168 | max-width: 50rem; 169 | } 170 | .todoapp > form { 171 | max-width: 100%; 172 | } 173 | .todoapp > h1 { 174 | display: block; 175 | margin: 0; 176 | margin-bottom: 1rem; 177 | max-width: 100%; 178 | text-align: center; 179 | } 180 | .label__lg { 181 | line-height: 1.01567; 182 | font-weight: 300; 183 | margin-bottom: 1rem; 184 | padding: 0.8rem; 185 | text-align: center; 186 | } 187 | .input__lg { 188 | border: 2px solid #000; 189 | padding: 2rem; 190 | } 191 | .input__lg:focus-visible { 192 | border-color: #4d4d4d; 193 | box-shadow: inset 0 0 0 2px; 194 | } 195 | [class*="__lg"] { 196 | display: inline-block; 197 | font-size: 1.9rem; 198 | width: 100%; 199 | } 200 | [class*="__lg"]:not(:last-child) { 201 | margin-bottom: 1rem; 202 | } 203 | @media screen and (min-width: 620px) { 204 | [class*="__lg"] { 205 | font-size: 2.4rem; 206 | } 207 | } 208 | /* End general app styles */ 209 | /* Todo item styles */ 210 | .todo { 211 | display: flex; 212 | flex-direction: row; 213 | flex-wrap: wrap; 214 | } 215 | .todo > * { 216 | flex: 0 0 100%; 217 | } 218 | .todo-text { 219 | border: 2px solid #565656; 220 | min-height: 4.4rem; 221 | padding: 0.4rem 0.8rem; 222 | width: 100%; 223 | } 224 | .todo-text:focus-visible { 225 | box-shadow: inset 0 0 0 2px; 226 | } 227 | /* End todo item styles */ 228 | /* Checkbox styles */ 229 | .c-cb { 230 | -webkit-font-smoothing: antialiased; 231 | box-sizing: border-box; 232 | clear: left; 233 | display: block; 234 | font-family: Arial, sans-serif; 235 | font-size: 1.6rem; 236 | font-weight: 400; 237 | line-height: 1.25; 238 | min-height: 44px; 239 | padding-left: 40px; 240 | position: relative; 241 | } 242 | .c-cb > label::before, 243 | .c-cb > input[type="checkbox"] { 244 | box-sizing: border-box; 245 | height: 44px; 246 | left: -2px; 247 | top: -2px; 248 | width: 44px; 249 | } 250 | .c-cb > input[type="checkbox"] { 251 | -webkit-font-smoothing: antialiased; 252 | cursor: pointer; 253 | margin: 0; 254 | opacity: 0; 255 | position: absolute; 256 | z-index: 1; 257 | } 258 | .c-cb > label { 259 | cursor: pointer; 260 | display: inline-block; 261 | font-family: inherit; 262 | font-size: inherit; 263 | line-height: inherit; 264 | margin-bottom: 0; 265 | padding: 8px 15px 5px; 266 | touch-action: manipulation; 267 | } 268 | .c-cb > label::before { 269 | background: transparent; 270 | border: 2px solid currentcolor; 271 | content: ""; 272 | position: absolute; 273 | } 274 | .c-cb > input[type="checkbox"]:focus-visible + label::before { 275 | border-width: 4px; 276 | outline: 3px dashed #228bec; 277 | } 278 | .c-cb > label::after { 279 | background: transparent; 280 | border: solid; 281 | border-width: 0 0 5px 5px; 282 | border-top-color: transparent; 283 | box-sizing: content-box; 284 | content: ""; 285 | height: 7px; 286 | left: 9px; 287 | opacity: 0; 288 | position: absolute; 289 | top: 11px; 290 | transform: rotate(-45deg); 291 | width: 18px; 292 | } 293 | .c-cb > input[type="checkbox"]:checked + label::after { 294 | opacity: 1; 295 | } 296 | /* End checkbox styles */ 297 | -------------------------------------------------------------------------------- /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 | // eslint-disable-next-line react-refresh/only-export-components 7 | const DATA = [ 8 | { id: "todo-0", name: "Eat", completed: true }, 9 | { id: "todo-1", name: "Sleep", completed: false }, 10 | { id: "todo-2", name: "Repeat", completed: false }, 11 | ]; 12 | 13 | ReactDOM.createRoot(document.getElementById('root')).render( 14 | 15 | 16 | , 17 | ) 18 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 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 | base: "https://mdn.github.io/todo-react/" 8 | }) 9 | -------------------------------------------------------------------------------- /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.25.9", "@babel/code-frame@^7.26.0": 19 | version "7.26.2" 20 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" 21 | integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== 22 | dependencies: 23 | "@babel/helper-validator-identifier" "^7.25.9" 24 | js-tokens "^4.0.0" 25 | picocolors "^1.0.0" 26 | 27 | "@babel/compat-data@^7.25.9": 28 | version "7.26.2" 29 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" 30 | integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== 31 | 32 | "@babel/core@^7.26.0": 33 | version "7.26.0" 34 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" 35 | integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== 36 | dependencies: 37 | "@ampproject/remapping" "^2.2.0" 38 | "@babel/code-frame" "^7.26.0" 39 | "@babel/generator" "^7.26.0" 40 | "@babel/helper-compilation-targets" "^7.25.9" 41 | "@babel/helper-module-transforms" "^7.26.0" 42 | "@babel/helpers" "^7.26.0" 43 | "@babel/parser" "^7.26.0" 44 | "@babel/template" "^7.25.9" 45 | "@babel/traverse" "^7.25.9" 46 | "@babel/types" "^7.26.0" 47 | convert-source-map "^2.0.0" 48 | debug "^4.1.0" 49 | gensync "^1.0.0-beta.2" 50 | json5 "^2.2.3" 51 | semver "^6.3.1" 52 | 53 | "@babel/generator@^7.25.9", "@babel/generator@^7.26.0": 54 | version "7.26.2" 55 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" 56 | integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== 57 | dependencies: 58 | "@babel/parser" "^7.26.2" 59 | "@babel/types" "^7.26.0" 60 | "@jridgewell/gen-mapping" "^0.3.5" 61 | "@jridgewell/trace-mapping" "^0.3.25" 62 | jsesc "^3.0.2" 63 | 64 | "@babel/helper-compilation-targets@^7.25.9": 65 | version "7.25.9" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" 67 | integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== 68 | dependencies: 69 | "@babel/compat-data" "^7.25.9" 70 | "@babel/helper-validator-option" "^7.25.9" 71 | browserslist "^4.24.0" 72 | lru-cache "^5.1.1" 73 | semver "^6.3.1" 74 | 75 | "@babel/helper-module-imports@^7.25.9": 76 | version "7.25.9" 77 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" 78 | integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== 79 | dependencies: 80 | "@babel/traverse" "^7.25.9" 81 | "@babel/types" "^7.25.9" 82 | 83 | "@babel/helper-module-transforms@^7.26.0": 84 | version "7.26.0" 85 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" 86 | integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== 87 | dependencies: 88 | "@babel/helper-module-imports" "^7.25.9" 89 | "@babel/helper-validator-identifier" "^7.25.9" 90 | "@babel/traverse" "^7.25.9" 91 | 92 | "@babel/helper-plugin-utils@^7.25.9": 93 | version "7.25.9" 94 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" 95 | integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== 96 | 97 | "@babel/helper-string-parser@^7.23.4": 98 | version "7.23.4" 99 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" 100 | integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== 101 | 102 | "@babel/helper-string-parser@^7.25.9": 103 | version "7.25.9" 104 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" 105 | integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== 106 | 107 | "@babel/helper-validator-identifier@^7.22.20": 108 | version "7.22.20" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 110 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 111 | 112 | "@babel/helper-validator-identifier@^7.25.9": 113 | version "7.25.9" 114 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" 115 | integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== 116 | 117 | "@babel/helper-validator-option@^7.25.9": 118 | version "7.25.9" 119 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" 120 | integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== 121 | 122 | "@babel/helpers@^7.26.0": 123 | version "7.26.0" 124 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" 125 | integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== 126 | dependencies: 127 | "@babel/template" "^7.25.9" 128 | "@babel/types" "^7.26.0" 129 | 130 | "@babel/parser@^7.1.0", "@babel/parser@^7.20.7": 131 | version "7.23.6" 132 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 133 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 134 | 135 | "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": 136 | version "7.26.2" 137 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" 138 | integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== 139 | dependencies: 140 | "@babel/types" "^7.26.0" 141 | 142 | "@babel/plugin-transform-react-jsx-self@^7.25.9": 143 | version "7.25.9" 144 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz#c0b6cae9c1b73967f7f9eb2fca9536ba2fad2858" 145 | integrity sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg== 146 | dependencies: 147 | "@babel/helper-plugin-utils" "^7.25.9" 148 | 149 | "@babel/plugin-transform-react-jsx-source@^7.25.9": 150 | version "7.25.9" 151 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz#4c6b8daa520b5f155b5fb55547d7c9fa91417503" 152 | integrity sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg== 153 | dependencies: 154 | "@babel/helper-plugin-utils" "^7.25.9" 155 | 156 | "@babel/template@^7.25.9": 157 | version "7.25.9" 158 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" 159 | integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== 160 | dependencies: 161 | "@babel/code-frame" "^7.25.9" 162 | "@babel/parser" "^7.25.9" 163 | "@babel/types" "^7.25.9" 164 | 165 | "@babel/traverse@^7.25.9": 166 | version "7.25.9" 167 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" 168 | integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== 169 | dependencies: 170 | "@babel/code-frame" "^7.25.9" 171 | "@babel/generator" "^7.25.9" 172 | "@babel/parser" "^7.25.9" 173 | "@babel/template" "^7.25.9" 174 | "@babel/types" "^7.25.9" 175 | debug "^4.3.1" 176 | globals "^11.1.0" 177 | 178 | "@babel/types@^7.0.0", "@babel/types@^7.20.7": 179 | version "7.23.6" 180 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" 181 | integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== 182 | dependencies: 183 | "@babel/helper-string-parser" "^7.23.4" 184 | "@babel/helper-validator-identifier" "^7.22.20" 185 | to-fast-properties "^2.0.0" 186 | 187 | "@babel/types@^7.25.9", "@babel/types@^7.26.0": 188 | version "7.26.0" 189 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" 190 | integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== 191 | dependencies: 192 | "@babel/helper-string-parser" "^7.25.9" 193 | "@babel/helper-validator-identifier" "^7.25.9" 194 | 195 | "@esbuild/aix-ppc64@0.21.5": 196 | version "0.21.5" 197 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" 198 | integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== 199 | 200 | "@esbuild/android-arm64@0.21.5": 201 | version "0.21.5" 202 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" 203 | integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== 204 | 205 | "@esbuild/android-arm@0.21.5": 206 | version "0.21.5" 207 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" 208 | integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== 209 | 210 | "@esbuild/android-x64@0.21.5": 211 | version "0.21.5" 212 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" 213 | integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== 214 | 215 | "@esbuild/darwin-arm64@0.21.5": 216 | version "0.21.5" 217 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" 218 | integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== 219 | 220 | "@esbuild/darwin-x64@0.21.5": 221 | version "0.21.5" 222 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" 223 | integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== 224 | 225 | "@esbuild/freebsd-arm64@0.21.5": 226 | version "0.21.5" 227 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" 228 | integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== 229 | 230 | "@esbuild/freebsd-x64@0.21.5": 231 | version "0.21.5" 232 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" 233 | integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== 234 | 235 | "@esbuild/linux-arm64@0.21.5": 236 | version "0.21.5" 237 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" 238 | integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== 239 | 240 | "@esbuild/linux-arm@0.21.5": 241 | version "0.21.5" 242 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" 243 | integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== 244 | 245 | "@esbuild/linux-ia32@0.21.5": 246 | version "0.21.5" 247 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" 248 | integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== 249 | 250 | "@esbuild/linux-loong64@0.21.5": 251 | version "0.21.5" 252 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" 253 | integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== 254 | 255 | "@esbuild/linux-mips64el@0.21.5": 256 | version "0.21.5" 257 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" 258 | integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== 259 | 260 | "@esbuild/linux-ppc64@0.21.5": 261 | version "0.21.5" 262 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" 263 | integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== 264 | 265 | "@esbuild/linux-riscv64@0.21.5": 266 | version "0.21.5" 267 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" 268 | integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== 269 | 270 | "@esbuild/linux-s390x@0.21.5": 271 | version "0.21.5" 272 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" 273 | integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== 274 | 275 | "@esbuild/linux-x64@0.21.5": 276 | version "0.21.5" 277 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" 278 | integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== 279 | 280 | "@esbuild/netbsd-x64@0.21.5": 281 | version "0.21.5" 282 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" 283 | integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== 284 | 285 | "@esbuild/openbsd-x64@0.21.5": 286 | version "0.21.5" 287 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" 288 | integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== 289 | 290 | "@esbuild/sunos-x64@0.21.5": 291 | version "0.21.5" 292 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" 293 | integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== 294 | 295 | "@esbuild/win32-arm64@0.21.5": 296 | version "0.21.5" 297 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" 298 | integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== 299 | 300 | "@esbuild/win32-ia32@0.21.5": 301 | version "0.21.5" 302 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" 303 | integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== 304 | 305 | "@esbuild/win32-x64@0.21.5": 306 | version "0.21.5" 307 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" 308 | integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== 309 | 310 | "@eslint-community/eslint-utils@^4.2.0": 311 | version "4.4.0" 312 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 313 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 314 | dependencies: 315 | eslint-visitor-keys "^3.3.0" 316 | 317 | "@eslint-community/regexpp@^4.6.1": 318 | version "4.10.0" 319 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" 320 | integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== 321 | 322 | "@eslint/eslintrc@^2.1.4": 323 | version "2.1.4" 324 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" 325 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== 326 | dependencies: 327 | ajv "^6.12.4" 328 | debug "^4.3.2" 329 | espree "^9.6.0" 330 | globals "^13.19.0" 331 | ignore "^5.2.0" 332 | import-fresh "^3.2.1" 333 | js-yaml "^4.1.0" 334 | minimatch "^3.1.2" 335 | strip-json-comments "^3.1.1" 336 | 337 | "@eslint/js@8.57.1": 338 | version "8.57.1" 339 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" 340 | integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== 341 | 342 | "@humanwhocodes/config-array@^0.13.0": 343 | version "0.13.0" 344 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" 345 | integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== 346 | dependencies: 347 | "@humanwhocodes/object-schema" "^2.0.3" 348 | debug "^4.3.1" 349 | minimatch "^3.0.5" 350 | 351 | "@humanwhocodes/module-importer@^1.0.1": 352 | version "1.0.1" 353 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 354 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 355 | 356 | "@humanwhocodes/object-schema@^2.0.3": 357 | version "2.0.3" 358 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" 359 | integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== 360 | 361 | "@jridgewell/gen-mapping@^0.3.0": 362 | version "0.3.3" 363 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 364 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 365 | dependencies: 366 | "@jridgewell/set-array" "^1.0.1" 367 | "@jridgewell/sourcemap-codec" "^1.4.10" 368 | "@jridgewell/trace-mapping" "^0.3.9" 369 | 370 | "@jridgewell/gen-mapping@^0.3.5": 371 | version "0.3.5" 372 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" 373 | integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== 374 | dependencies: 375 | "@jridgewell/set-array" "^1.2.1" 376 | "@jridgewell/sourcemap-codec" "^1.4.10" 377 | "@jridgewell/trace-mapping" "^0.3.24" 378 | 379 | "@jridgewell/resolve-uri@^3.1.0": 380 | version "3.1.1" 381 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 382 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 383 | 384 | "@jridgewell/set-array@^1.0.1": 385 | version "1.1.2" 386 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 387 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 388 | 389 | "@jridgewell/set-array@^1.2.1": 390 | version "1.2.1" 391 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" 392 | integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== 393 | 394 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 395 | version "1.4.15" 396 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 397 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 398 | 399 | "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": 400 | version "0.3.25" 401 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" 402 | integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== 403 | dependencies: 404 | "@jridgewell/resolve-uri" "^3.1.0" 405 | "@jridgewell/sourcemap-codec" "^1.4.14" 406 | 407 | "@jridgewell/trace-mapping@^0.3.9": 408 | version "0.3.20" 409 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" 410 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== 411 | dependencies: 412 | "@jridgewell/resolve-uri" "^3.1.0" 413 | "@jridgewell/sourcemap-codec" "^1.4.14" 414 | 415 | "@nodelib/fs.scandir@2.1.5": 416 | version "2.1.5" 417 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 418 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 419 | dependencies: 420 | "@nodelib/fs.stat" "2.0.5" 421 | run-parallel "^1.1.9" 422 | 423 | "@nodelib/fs.stat@2.0.5": 424 | version "2.0.5" 425 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 426 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 427 | 428 | "@nodelib/fs.walk@^1.2.8": 429 | version "1.2.8" 430 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 431 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 432 | dependencies: 433 | "@nodelib/fs.scandir" "2.1.5" 434 | fastq "^1.6.0" 435 | 436 | "@rollup/rollup-android-arm-eabi@4.22.4": 437 | version "4.22.4" 438 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz#8b613b9725e8f9479d142970b106b6ae878610d5" 439 | integrity sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w== 440 | 441 | "@rollup/rollup-android-arm64@4.22.4": 442 | version "4.22.4" 443 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz#654ca1049189132ff602bfcf8df14c18da1f15fb" 444 | integrity sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA== 445 | 446 | "@rollup/rollup-darwin-arm64@4.22.4": 447 | version "4.22.4" 448 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz#6d241d099d1518ef0c2205d96b3fa52e0fe1954b" 449 | integrity sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q== 450 | 451 | "@rollup/rollup-darwin-x64@4.22.4": 452 | version "4.22.4" 453 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz#42bd19d292a57ee11734c980c4650de26b457791" 454 | integrity sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw== 455 | 456 | "@rollup/rollup-linux-arm-gnueabihf@4.22.4": 457 | version "4.22.4" 458 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz#f23555ee3d8fe941c5c5fd458cd22b65eb1c2232" 459 | integrity sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ== 460 | 461 | "@rollup/rollup-linux-arm-musleabihf@4.22.4": 462 | version "4.22.4" 463 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz#f3bbd1ae2420f5539d40ac1fde2b38da67779baa" 464 | integrity sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg== 465 | 466 | "@rollup/rollup-linux-arm64-gnu@4.22.4": 467 | version "4.22.4" 468 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz#7abe900120113e08a1f90afb84c7c28774054d15" 469 | integrity sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw== 470 | 471 | "@rollup/rollup-linux-arm64-musl@4.22.4": 472 | version "4.22.4" 473 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz#9e655285c8175cd44f57d6a1e8e5dedfbba1d820" 474 | integrity sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA== 475 | 476 | "@rollup/rollup-linux-powerpc64le-gnu@4.22.4": 477 | version "4.22.4" 478 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz#9a79ae6c9e9d8fe83d49e2712ecf4302db5bef5e" 479 | integrity sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg== 480 | 481 | "@rollup/rollup-linux-riscv64-gnu@4.22.4": 482 | version "4.22.4" 483 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz#67ac70eca4ace8e2942fabca95164e8874ab8128" 484 | integrity sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA== 485 | 486 | "@rollup/rollup-linux-s390x-gnu@4.22.4": 487 | version "4.22.4" 488 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz#9f883a7440f51a22ed7f99e1d070bd84ea5005fc" 489 | integrity sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q== 490 | 491 | "@rollup/rollup-linux-x64-gnu@4.22.4": 492 | version "4.22.4" 493 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz#70116ae6c577fe367f58559e2cffb5641a1dd9d0" 494 | integrity sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg== 495 | 496 | "@rollup/rollup-linux-x64-musl@4.22.4": 497 | version "4.22.4" 498 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz#f473f88219feb07b0b98b53a7923be716d1d182f" 499 | integrity sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g== 500 | 501 | "@rollup/rollup-win32-arm64-msvc@4.22.4": 502 | version "4.22.4" 503 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz#4349482d17f5d1c58604d1c8900540d676f420e0" 504 | integrity sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw== 505 | 506 | "@rollup/rollup-win32-ia32-msvc@4.22.4": 507 | version "4.22.4" 508 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz#a6fc39a15db618040ec3c2a24c1e26cb5f4d7422" 509 | integrity sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g== 510 | 511 | "@rollup/rollup-win32-x64-msvc@4.22.4": 512 | version "4.22.4" 513 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz#3dd5d53e900df2a40841882c02e56f866c04d202" 514 | integrity sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q== 515 | 516 | "@types/babel__core@^7.20.5": 517 | version "7.20.5" 518 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" 519 | integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== 520 | dependencies: 521 | "@babel/parser" "^7.20.7" 522 | "@babel/types" "^7.20.7" 523 | "@types/babel__generator" "*" 524 | "@types/babel__template" "*" 525 | "@types/babel__traverse" "*" 526 | 527 | "@types/babel__generator@*": 528 | version "7.6.7" 529 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.7.tgz#a7aebf15c7bc0eb9abd638bdb5c0b8700399c9d0" 530 | integrity sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ== 531 | dependencies: 532 | "@babel/types" "^7.0.0" 533 | 534 | "@types/babel__template@*": 535 | version "7.4.4" 536 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" 537 | integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== 538 | dependencies: 539 | "@babel/parser" "^7.1.0" 540 | "@babel/types" "^7.0.0" 541 | 542 | "@types/babel__traverse@*": 543 | version "7.20.4" 544 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.4.tgz#ec2c06fed6549df8bc0eb4615b683749a4a92e1b" 545 | integrity sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA== 546 | dependencies: 547 | "@babel/types" "^7.20.7" 548 | 549 | "@types/estree@1.0.5": 550 | version "1.0.5" 551 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" 552 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 553 | 554 | "@types/prop-types@*": 555 | version "15.7.11" 556 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" 557 | integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== 558 | 559 | "@types/react-dom@^18.2.25": 560 | version "18.2.25" 561 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.25.tgz#2946a30081f53e7c8d585eb138277245caedc521" 562 | integrity sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA== 563 | dependencies: 564 | "@types/react" "*" 565 | 566 | "@types/react@*", "@types/react@^18.2.79": 567 | version "18.2.79" 568 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.79.tgz#c40efb4f255711f554d47b449f796d1c7756d865" 569 | integrity sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w== 570 | dependencies: 571 | "@types/prop-types" "*" 572 | csstype "^3.0.2" 573 | 574 | "@ungap/structured-clone@^1.2.0": 575 | version "1.2.0" 576 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" 577 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 578 | 579 | "@vitejs/plugin-react@^4.3.4": 580 | version "4.3.4" 581 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz#c64be10b54c4640135a5b28a2432330e88ad7c20" 582 | integrity sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug== 583 | dependencies: 584 | "@babel/core" "^7.26.0" 585 | "@babel/plugin-transform-react-jsx-self" "^7.25.9" 586 | "@babel/plugin-transform-react-jsx-source" "^7.25.9" 587 | "@types/babel__core" "^7.20.5" 588 | react-refresh "^0.14.2" 589 | 590 | acorn-jsx@^5.3.2: 591 | version "5.3.2" 592 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 593 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 594 | 595 | acorn@^8.9.0: 596 | version "8.11.2" 597 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" 598 | integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== 599 | 600 | ajv@^6.12.4: 601 | version "6.12.6" 602 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 603 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 604 | dependencies: 605 | fast-deep-equal "^3.1.1" 606 | fast-json-stable-stringify "^2.0.0" 607 | json-schema-traverse "^0.4.1" 608 | uri-js "^4.2.2" 609 | 610 | ansi-regex@^5.0.1: 611 | version "5.0.1" 612 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 613 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 614 | 615 | ansi-styles@^4.1.0: 616 | version "4.3.0" 617 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 618 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 619 | dependencies: 620 | color-convert "^2.0.1" 621 | 622 | argparse@^2.0.1: 623 | version "2.0.1" 624 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 625 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 626 | 627 | array-buffer-byte-length@^1.0.0: 628 | version "1.0.0" 629 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" 630 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== 631 | dependencies: 632 | call-bind "^1.0.2" 633 | is-array-buffer "^3.0.1" 634 | 635 | array-buffer-byte-length@^1.0.1: 636 | version "1.0.1" 637 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" 638 | integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== 639 | dependencies: 640 | call-bind "^1.0.5" 641 | is-array-buffer "^3.0.4" 642 | 643 | array-includes@^3.1.6, array-includes@^3.1.8: 644 | version "3.1.8" 645 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" 646 | integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== 647 | dependencies: 648 | call-bind "^1.0.7" 649 | define-properties "^1.2.1" 650 | es-abstract "^1.23.2" 651 | es-object-atoms "^1.0.0" 652 | get-intrinsic "^1.2.4" 653 | is-string "^1.0.7" 654 | 655 | array.prototype.findlast@^1.2.5: 656 | version "1.2.5" 657 | resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" 658 | integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== 659 | dependencies: 660 | call-bind "^1.0.7" 661 | define-properties "^1.2.1" 662 | es-abstract "^1.23.2" 663 | es-errors "^1.3.0" 664 | es-object-atoms "^1.0.0" 665 | es-shim-unscopables "^1.0.2" 666 | 667 | array.prototype.flat@^1.3.1: 668 | version "1.3.2" 669 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" 670 | integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== 671 | dependencies: 672 | call-bind "^1.0.2" 673 | define-properties "^1.2.0" 674 | es-abstract "^1.22.1" 675 | es-shim-unscopables "^1.0.0" 676 | 677 | array.prototype.flatmap@^1.3.2: 678 | version "1.3.2" 679 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" 680 | integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== 681 | dependencies: 682 | call-bind "^1.0.2" 683 | define-properties "^1.2.0" 684 | es-abstract "^1.22.1" 685 | es-shim-unscopables "^1.0.0" 686 | 687 | array.prototype.tosorted@^1.1.4: 688 | version "1.1.4" 689 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc" 690 | integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== 691 | dependencies: 692 | call-bind "^1.0.7" 693 | define-properties "^1.2.1" 694 | es-abstract "^1.23.3" 695 | es-errors "^1.3.0" 696 | es-shim-unscopables "^1.0.2" 697 | 698 | arraybuffer.prototype.slice@^1.0.2: 699 | version "1.0.2" 700 | resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz#98bd561953e3e74bb34938e77647179dfe6e9f12" 701 | integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw== 702 | dependencies: 703 | array-buffer-byte-length "^1.0.0" 704 | call-bind "^1.0.2" 705 | define-properties "^1.2.0" 706 | es-abstract "^1.22.1" 707 | get-intrinsic "^1.2.1" 708 | is-array-buffer "^3.0.2" 709 | is-shared-array-buffer "^1.0.2" 710 | 711 | arraybuffer.prototype.slice@^1.0.3: 712 | version "1.0.3" 713 | resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" 714 | integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== 715 | dependencies: 716 | array-buffer-byte-length "^1.0.1" 717 | call-bind "^1.0.5" 718 | define-properties "^1.2.1" 719 | es-abstract "^1.22.3" 720 | es-errors "^1.2.1" 721 | get-intrinsic "^1.2.3" 722 | is-array-buffer "^3.0.4" 723 | is-shared-array-buffer "^1.0.2" 724 | 725 | available-typed-arrays@^1.0.5: 726 | version "1.0.5" 727 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 728 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 729 | 730 | available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: 731 | version "1.0.7" 732 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" 733 | integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== 734 | dependencies: 735 | possible-typed-array-names "^1.0.0" 736 | 737 | balanced-match@^1.0.0: 738 | version "1.0.2" 739 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 740 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 741 | 742 | brace-expansion@^1.1.7: 743 | version "1.1.11" 744 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 745 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 746 | dependencies: 747 | balanced-match "^1.0.0" 748 | concat-map "0.0.1" 749 | 750 | browserslist@^4.24.0: 751 | version "4.24.2" 752 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" 753 | integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== 754 | dependencies: 755 | caniuse-lite "^1.0.30001669" 756 | electron-to-chromium "^1.5.41" 757 | node-releases "^2.0.18" 758 | update-browserslist-db "^1.1.1" 759 | 760 | call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4, call-bind@^1.0.5: 761 | version "1.0.5" 762 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" 763 | integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== 764 | dependencies: 765 | function-bind "^1.1.2" 766 | get-intrinsic "^1.2.1" 767 | set-function-length "^1.1.1" 768 | 769 | call-bind@^1.0.6, call-bind@^1.0.7: 770 | version "1.0.7" 771 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" 772 | integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== 773 | dependencies: 774 | es-define-property "^1.0.0" 775 | es-errors "^1.3.0" 776 | function-bind "^1.1.2" 777 | get-intrinsic "^1.2.4" 778 | set-function-length "^1.2.1" 779 | 780 | callsites@^3.0.0: 781 | version "3.1.0" 782 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 783 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 784 | 785 | caniuse-lite@^1.0.30001669: 786 | version "1.0.30001684" 787 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz#0eca437bab7d5f03452ff0ef9de8299be6b08e16" 788 | integrity sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ== 789 | 790 | chalk@^4.0.0: 791 | version "4.1.2" 792 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 793 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 794 | dependencies: 795 | ansi-styles "^4.1.0" 796 | supports-color "^7.1.0" 797 | 798 | color-convert@^2.0.1: 799 | version "2.0.1" 800 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 801 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 802 | dependencies: 803 | color-name "~1.1.4" 804 | 805 | color-name@~1.1.4: 806 | version "1.1.4" 807 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 808 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 809 | 810 | concat-map@0.0.1: 811 | version "0.0.1" 812 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 813 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 814 | 815 | convert-source-map@^2.0.0: 816 | version "2.0.0" 817 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" 818 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 819 | 820 | cross-spawn@^7.0.2: 821 | version "7.0.6" 822 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" 823 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 824 | dependencies: 825 | path-key "^3.1.0" 826 | shebang-command "^2.0.0" 827 | which "^2.0.1" 828 | 829 | csstype@^3.0.2: 830 | version "3.1.3" 831 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 832 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 833 | 834 | data-view-buffer@^1.0.1: 835 | version "1.0.1" 836 | resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" 837 | integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== 838 | dependencies: 839 | call-bind "^1.0.6" 840 | es-errors "^1.3.0" 841 | is-data-view "^1.0.1" 842 | 843 | data-view-byte-length@^1.0.1: 844 | version "1.0.1" 845 | resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" 846 | integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== 847 | dependencies: 848 | call-bind "^1.0.7" 849 | es-errors "^1.3.0" 850 | is-data-view "^1.0.1" 851 | 852 | data-view-byte-offset@^1.0.0: 853 | version "1.0.0" 854 | resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" 855 | integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== 856 | dependencies: 857 | call-bind "^1.0.6" 858 | es-errors "^1.3.0" 859 | is-data-view "^1.0.1" 860 | 861 | debug@^4.1.0, debug@^4.3.1, debug@^4.3.2: 862 | version "4.3.4" 863 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 864 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 865 | dependencies: 866 | ms "2.1.2" 867 | 868 | deep-is@^0.1.3: 869 | version "0.1.4" 870 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 871 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 872 | 873 | define-data-property@^1.0.1, define-data-property@^1.1.1: 874 | version "1.1.1" 875 | resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" 876 | integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== 877 | dependencies: 878 | get-intrinsic "^1.2.1" 879 | gopd "^1.0.1" 880 | has-property-descriptors "^1.0.0" 881 | 882 | define-data-property@^1.1.2, define-data-property@^1.1.4: 883 | version "1.1.4" 884 | resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" 885 | integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== 886 | dependencies: 887 | es-define-property "^1.0.0" 888 | es-errors "^1.3.0" 889 | gopd "^1.0.1" 890 | 891 | define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: 892 | version "1.2.1" 893 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" 894 | integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== 895 | dependencies: 896 | define-data-property "^1.0.1" 897 | has-property-descriptors "^1.0.0" 898 | object-keys "^1.1.1" 899 | 900 | doctrine@^2.1.0: 901 | version "2.1.0" 902 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 903 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 904 | dependencies: 905 | esutils "^2.0.2" 906 | 907 | doctrine@^3.0.0: 908 | version "3.0.0" 909 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 910 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 911 | dependencies: 912 | esutils "^2.0.2" 913 | 914 | electron-to-chromium@^1.5.41: 915 | version "1.5.65" 916 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.65.tgz#e2b9d84d31e187a847e3ccdcfb415ddd4a3d1ea7" 917 | integrity sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw== 918 | 919 | es-abstract@^1.17.5, es-abstract@^1.23.0, es-abstract@^1.23.2, es-abstract@^1.23.3: 920 | version "1.23.3" 921 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" 922 | integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== 923 | dependencies: 924 | array-buffer-byte-length "^1.0.1" 925 | arraybuffer.prototype.slice "^1.0.3" 926 | available-typed-arrays "^1.0.7" 927 | call-bind "^1.0.7" 928 | data-view-buffer "^1.0.1" 929 | data-view-byte-length "^1.0.1" 930 | data-view-byte-offset "^1.0.0" 931 | es-define-property "^1.0.0" 932 | es-errors "^1.3.0" 933 | es-object-atoms "^1.0.0" 934 | es-set-tostringtag "^2.0.3" 935 | es-to-primitive "^1.2.1" 936 | function.prototype.name "^1.1.6" 937 | get-intrinsic "^1.2.4" 938 | get-symbol-description "^1.0.2" 939 | globalthis "^1.0.3" 940 | gopd "^1.0.1" 941 | has-property-descriptors "^1.0.2" 942 | has-proto "^1.0.3" 943 | has-symbols "^1.0.3" 944 | hasown "^2.0.2" 945 | internal-slot "^1.0.7" 946 | is-array-buffer "^3.0.4" 947 | is-callable "^1.2.7" 948 | is-data-view "^1.0.1" 949 | is-negative-zero "^2.0.3" 950 | is-regex "^1.1.4" 951 | is-shared-array-buffer "^1.0.3" 952 | is-string "^1.0.7" 953 | is-typed-array "^1.1.13" 954 | is-weakref "^1.0.2" 955 | object-inspect "^1.13.1" 956 | object-keys "^1.1.1" 957 | object.assign "^4.1.5" 958 | regexp.prototype.flags "^1.5.2" 959 | safe-array-concat "^1.1.2" 960 | safe-regex-test "^1.0.3" 961 | string.prototype.trim "^1.2.9" 962 | string.prototype.trimend "^1.0.8" 963 | string.prototype.trimstart "^1.0.8" 964 | typed-array-buffer "^1.0.2" 965 | typed-array-byte-length "^1.0.1" 966 | typed-array-byte-offset "^1.0.2" 967 | typed-array-length "^1.0.6" 968 | unbox-primitive "^1.0.2" 969 | which-typed-array "^1.1.15" 970 | 971 | es-abstract@^1.22.1: 972 | version "1.22.3" 973 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.3.tgz#48e79f5573198de6dee3589195727f4f74bc4f32" 974 | integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA== 975 | dependencies: 976 | array-buffer-byte-length "^1.0.0" 977 | arraybuffer.prototype.slice "^1.0.2" 978 | available-typed-arrays "^1.0.5" 979 | call-bind "^1.0.5" 980 | es-set-tostringtag "^2.0.1" 981 | es-to-primitive "^1.2.1" 982 | function.prototype.name "^1.1.6" 983 | get-intrinsic "^1.2.2" 984 | get-symbol-description "^1.0.0" 985 | globalthis "^1.0.3" 986 | gopd "^1.0.1" 987 | has-property-descriptors "^1.0.0" 988 | has-proto "^1.0.1" 989 | has-symbols "^1.0.3" 990 | hasown "^2.0.0" 991 | internal-slot "^1.0.5" 992 | is-array-buffer "^3.0.2" 993 | is-callable "^1.2.7" 994 | is-negative-zero "^2.0.2" 995 | is-regex "^1.1.4" 996 | is-shared-array-buffer "^1.0.2" 997 | is-string "^1.0.7" 998 | is-typed-array "^1.1.12" 999 | is-weakref "^1.0.2" 1000 | object-inspect "^1.13.1" 1001 | object-keys "^1.1.1" 1002 | object.assign "^4.1.4" 1003 | regexp.prototype.flags "^1.5.1" 1004 | safe-array-concat "^1.0.1" 1005 | safe-regex-test "^1.0.0" 1006 | string.prototype.trim "^1.2.8" 1007 | string.prototype.trimend "^1.0.7" 1008 | string.prototype.trimstart "^1.0.7" 1009 | typed-array-buffer "^1.0.0" 1010 | typed-array-byte-length "^1.0.0" 1011 | typed-array-byte-offset "^1.0.0" 1012 | typed-array-length "^1.0.4" 1013 | unbox-primitive "^1.0.2" 1014 | which-typed-array "^1.1.13" 1015 | 1016 | es-abstract@^1.22.3: 1017 | version "1.22.5" 1018 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.5.tgz#1417df4e97cc55f09bf7e58d1e614bc61cb8df46" 1019 | integrity sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w== 1020 | dependencies: 1021 | array-buffer-byte-length "^1.0.1" 1022 | arraybuffer.prototype.slice "^1.0.3" 1023 | available-typed-arrays "^1.0.7" 1024 | call-bind "^1.0.7" 1025 | es-define-property "^1.0.0" 1026 | es-errors "^1.3.0" 1027 | es-set-tostringtag "^2.0.3" 1028 | es-to-primitive "^1.2.1" 1029 | function.prototype.name "^1.1.6" 1030 | get-intrinsic "^1.2.4" 1031 | get-symbol-description "^1.0.2" 1032 | globalthis "^1.0.3" 1033 | gopd "^1.0.1" 1034 | has-property-descriptors "^1.0.2" 1035 | has-proto "^1.0.3" 1036 | has-symbols "^1.0.3" 1037 | hasown "^2.0.1" 1038 | internal-slot "^1.0.7" 1039 | is-array-buffer "^3.0.4" 1040 | is-callable "^1.2.7" 1041 | is-negative-zero "^2.0.3" 1042 | is-regex "^1.1.4" 1043 | is-shared-array-buffer "^1.0.3" 1044 | is-string "^1.0.7" 1045 | is-typed-array "^1.1.13" 1046 | is-weakref "^1.0.2" 1047 | object-inspect "^1.13.1" 1048 | object-keys "^1.1.1" 1049 | object.assign "^4.1.5" 1050 | regexp.prototype.flags "^1.5.2" 1051 | safe-array-concat "^1.1.0" 1052 | safe-regex-test "^1.0.3" 1053 | string.prototype.trim "^1.2.8" 1054 | string.prototype.trimend "^1.0.7" 1055 | string.prototype.trimstart "^1.0.7" 1056 | typed-array-buffer "^1.0.2" 1057 | typed-array-byte-length "^1.0.1" 1058 | typed-array-byte-offset "^1.0.2" 1059 | typed-array-length "^1.0.5" 1060 | unbox-primitive "^1.0.2" 1061 | which-typed-array "^1.1.14" 1062 | 1063 | es-define-property@^1.0.0: 1064 | version "1.0.0" 1065 | resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" 1066 | integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== 1067 | dependencies: 1068 | get-intrinsic "^1.2.4" 1069 | 1070 | es-errors@^1.2.1, es-errors@^1.3.0: 1071 | version "1.3.0" 1072 | resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" 1073 | integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== 1074 | 1075 | es-iterator-helpers@^1.1.0: 1076 | version "1.1.0" 1077 | resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz#f6d745d342aea214fe09497e7152170dc333a7a6" 1078 | integrity sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw== 1079 | dependencies: 1080 | call-bind "^1.0.7" 1081 | define-properties "^1.2.1" 1082 | es-abstract "^1.23.3" 1083 | es-errors "^1.3.0" 1084 | es-set-tostringtag "^2.0.3" 1085 | function-bind "^1.1.2" 1086 | get-intrinsic "^1.2.4" 1087 | globalthis "^1.0.4" 1088 | has-property-descriptors "^1.0.2" 1089 | has-proto "^1.0.3" 1090 | has-symbols "^1.0.3" 1091 | internal-slot "^1.0.7" 1092 | iterator.prototype "^1.1.3" 1093 | safe-array-concat "^1.1.2" 1094 | 1095 | es-object-atoms@^1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" 1098 | integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== 1099 | dependencies: 1100 | es-errors "^1.3.0" 1101 | 1102 | es-set-tostringtag@^2.0.1: 1103 | version "2.0.2" 1104 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" 1105 | integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q== 1106 | dependencies: 1107 | get-intrinsic "^1.2.2" 1108 | has-tostringtag "^1.0.0" 1109 | hasown "^2.0.0" 1110 | 1111 | es-set-tostringtag@^2.0.3: 1112 | version "2.0.3" 1113 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" 1114 | integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== 1115 | dependencies: 1116 | get-intrinsic "^1.2.4" 1117 | has-tostringtag "^1.0.2" 1118 | hasown "^2.0.1" 1119 | 1120 | es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: 1121 | version "1.0.2" 1122 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" 1123 | integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== 1124 | dependencies: 1125 | hasown "^2.0.0" 1126 | 1127 | es-to-primitive@^1.2.1: 1128 | version "1.2.1" 1129 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1130 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1131 | dependencies: 1132 | is-callable "^1.1.4" 1133 | is-date-object "^1.0.1" 1134 | is-symbol "^1.0.2" 1135 | 1136 | esbuild@^0.21.3: 1137 | version "0.21.5" 1138 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" 1139 | integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== 1140 | optionalDependencies: 1141 | "@esbuild/aix-ppc64" "0.21.5" 1142 | "@esbuild/android-arm" "0.21.5" 1143 | "@esbuild/android-arm64" "0.21.5" 1144 | "@esbuild/android-x64" "0.21.5" 1145 | "@esbuild/darwin-arm64" "0.21.5" 1146 | "@esbuild/darwin-x64" "0.21.5" 1147 | "@esbuild/freebsd-arm64" "0.21.5" 1148 | "@esbuild/freebsd-x64" "0.21.5" 1149 | "@esbuild/linux-arm" "0.21.5" 1150 | "@esbuild/linux-arm64" "0.21.5" 1151 | "@esbuild/linux-ia32" "0.21.5" 1152 | "@esbuild/linux-loong64" "0.21.5" 1153 | "@esbuild/linux-mips64el" "0.21.5" 1154 | "@esbuild/linux-ppc64" "0.21.5" 1155 | "@esbuild/linux-riscv64" "0.21.5" 1156 | "@esbuild/linux-s390x" "0.21.5" 1157 | "@esbuild/linux-x64" "0.21.5" 1158 | "@esbuild/netbsd-x64" "0.21.5" 1159 | "@esbuild/openbsd-x64" "0.21.5" 1160 | "@esbuild/sunos-x64" "0.21.5" 1161 | "@esbuild/win32-arm64" "0.21.5" 1162 | "@esbuild/win32-ia32" "0.21.5" 1163 | "@esbuild/win32-x64" "0.21.5" 1164 | 1165 | escalade@^3.2.0: 1166 | version "3.2.0" 1167 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" 1168 | integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== 1169 | 1170 | escape-string-regexp@^4.0.0: 1171 | version "4.0.0" 1172 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1173 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1174 | 1175 | eslint-plugin-react-hooks@^4.6.2: 1176 | version "4.6.2" 1177 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596" 1178 | integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ== 1179 | 1180 | eslint-plugin-react-refresh@^0.4.16: 1181 | version "0.4.16" 1182 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.16.tgz#149dbc9279bd16942409f1c1d2f0dce3299430ef" 1183 | integrity sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ== 1184 | 1185 | eslint-plugin-react@^7.37.2: 1186 | version "7.37.2" 1187 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz#cd0935987876ba2900df2f58339f6d92305acc7a" 1188 | integrity sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w== 1189 | dependencies: 1190 | array-includes "^3.1.8" 1191 | array.prototype.findlast "^1.2.5" 1192 | array.prototype.flatmap "^1.3.2" 1193 | array.prototype.tosorted "^1.1.4" 1194 | doctrine "^2.1.0" 1195 | es-iterator-helpers "^1.1.0" 1196 | estraverse "^5.3.0" 1197 | hasown "^2.0.2" 1198 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1199 | minimatch "^3.1.2" 1200 | object.entries "^1.1.8" 1201 | object.fromentries "^2.0.8" 1202 | object.values "^1.2.0" 1203 | prop-types "^15.8.1" 1204 | resolve "^2.0.0-next.5" 1205 | semver "^6.3.1" 1206 | string.prototype.matchall "^4.0.11" 1207 | string.prototype.repeat "^1.0.0" 1208 | 1209 | eslint-scope@^7.2.2: 1210 | version "7.2.2" 1211 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" 1212 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 1213 | dependencies: 1214 | esrecurse "^4.3.0" 1215 | estraverse "^5.2.0" 1216 | 1217 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 1218 | version "3.4.3" 1219 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 1220 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 1221 | 1222 | eslint@^8.57.1: 1223 | version "8.57.1" 1224 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" 1225 | integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== 1226 | dependencies: 1227 | "@eslint-community/eslint-utils" "^4.2.0" 1228 | "@eslint-community/regexpp" "^4.6.1" 1229 | "@eslint/eslintrc" "^2.1.4" 1230 | "@eslint/js" "8.57.1" 1231 | "@humanwhocodes/config-array" "^0.13.0" 1232 | "@humanwhocodes/module-importer" "^1.0.1" 1233 | "@nodelib/fs.walk" "^1.2.8" 1234 | "@ungap/structured-clone" "^1.2.0" 1235 | ajv "^6.12.4" 1236 | chalk "^4.0.0" 1237 | cross-spawn "^7.0.2" 1238 | debug "^4.3.2" 1239 | doctrine "^3.0.0" 1240 | escape-string-regexp "^4.0.0" 1241 | eslint-scope "^7.2.2" 1242 | eslint-visitor-keys "^3.4.3" 1243 | espree "^9.6.1" 1244 | esquery "^1.4.2" 1245 | esutils "^2.0.2" 1246 | fast-deep-equal "^3.1.3" 1247 | file-entry-cache "^6.0.1" 1248 | find-up "^5.0.0" 1249 | glob-parent "^6.0.2" 1250 | globals "^13.19.0" 1251 | graphemer "^1.4.0" 1252 | ignore "^5.2.0" 1253 | imurmurhash "^0.1.4" 1254 | is-glob "^4.0.0" 1255 | is-path-inside "^3.0.3" 1256 | js-yaml "^4.1.0" 1257 | json-stable-stringify-without-jsonify "^1.0.1" 1258 | levn "^0.4.1" 1259 | lodash.merge "^4.6.2" 1260 | minimatch "^3.1.2" 1261 | natural-compare "^1.4.0" 1262 | optionator "^0.9.3" 1263 | strip-ansi "^6.0.1" 1264 | text-table "^0.2.0" 1265 | 1266 | espree@^9.6.0, espree@^9.6.1: 1267 | version "9.6.1" 1268 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" 1269 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 1270 | dependencies: 1271 | acorn "^8.9.0" 1272 | acorn-jsx "^5.3.2" 1273 | eslint-visitor-keys "^3.4.1" 1274 | 1275 | esquery@^1.4.2: 1276 | version "1.5.0" 1277 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 1278 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 1279 | dependencies: 1280 | estraverse "^5.1.0" 1281 | 1282 | esrecurse@^4.3.0: 1283 | version "4.3.0" 1284 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1285 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1286 | dependencies: 1287 | estraverse "^5.2.0" 1288 | 1289 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1290 | version "5.3.0" 1291 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1292 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1293 | 1294 | esutils@^2.0.2: 1295 | version "2.0.3" 1296 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1297 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1298 | 1299 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1300 | version "3.1.3" 1301 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1302 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1303 | 1304 | fast-json-stable-stringify@^2.0.0: 1305 | version "2.1.0" 1306 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1307 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1308 | 1309 | fast-levenshtein@^2.0.6: 1310 | version "2.0.6" 1311 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1312 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1313 | 1314 | fastq@^1.6.0: 1315 | version "1.15.0" 1316 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 1317 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1318 | dependencies: 1319 | reusify "^1.0.4" 1320 | 1321 | file-entry-cache@^6.0.1: 1322 | version "6.0.1" 1323 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1324 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1325 | dependencies: 1326 | flat-cache "^3.0.4" 1327 | 1328 | find-up@^5.0.0: 1329 | version "5.0.0" 1330 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1331 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1332 | dependencies: 1333 | locate-path "^6.0.0" 1334 | path-exists "^4.0.0" 1335 | 1336 | flat-cache@^3.0.4: 1337 | version "3.2.0" 1338 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" 1339 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== 1340 | dependencies: 1341 | flatted "^3.2.9" 1342 | keyv "^4.5.3" 1343 | rimraf "^3.0.2" 1344 | 1345 | flatted@^3.2.9: 1346 | version "3.2.9" 1347 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" 1348 | integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== 1349 | 1350 | for-each@^0.3.3: 1351 | version "0.3.3" 1352 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 1353 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1354 | dependencies: 1355 | is-callable "^1.1.3" 1356 | 1357 | fs.realpath@^1.0.0: 1358 | version "1.0.0" 1359 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1360 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1361 | 1362 | fsevents@~2.3.2, fsevents@~2.3.3: 1363 | version "2.3.3" 1364 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1365 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1366 | 1367 | function-bind@^1.1.2: 1368 | version "1.1.2" 1369 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 1370 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1371 | 1372 | function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: 1373 | version "1.1.6" 1374 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" 1375 | integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== 1376 | dependencies: 1377 | call-bind "^1.0.2" 1378 | define-properties "^1.2.0" 1379 | es-abstract "^1.22.1" 1380 | functions-have-names "^1.2.3" 1381 | 1382 | functions-have-names@^1.2.3: 1383 | version "1.2.3" 1384 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1385 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1386 | 1387 | gensync@^1.0.0-beta.2: 1388 | version "1.0.0-beta.2" 1389 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1390 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1391 | 1392 | 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, get-intrinsic@^1.2.2: 1393 | version "1.2.2" 1394 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" 1395 | integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== 1396 | dependencies: 1397 | function-bind "^1.1.2" 1398 | has-proto "^1.0.1" 1399 | has-symbols "^1.0.3" 1400 | hasown "^2.0.0" 1401 | 1402 | get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: 1403 | version "1.2.4" 1404 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" 1405 | integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== 1406 | dependencies: 1407 | es-errors "^1.3.0" 1408 | function-bind "^1.1.2" 1409 | has-proto "^1.0.1" 1410 | has-symbols "^1.0.3" 1411 | hasown "^2.0.0" 1412 | 1413 | get-symbol-description@^1.0.0: 1414 | version "1.0.0" 1415 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1416 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1417 | dependencies: 1418 | call-bind "^1.0.2" 1419 | get-intrinsic "^1.1.1" 1420 | 1421 | get-symbol-description@^1.0.2: 1422 | version "1.0.2" 1423 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" 1424 | integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== 1425 | dependencies: 1426 | call-bind "^1.0.5" 1427 | es-errors "^1.3.0" 1428 | get-intrinsic "^1.2.4" 1429 | 1430 | glob-parent@^6.0.2: 1431 | version "6.0.2" 1432 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1433 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1434 | dependencies: 1435 | is-glob "^4.0.3" 1436 | 1437 | glob@^7.1.3: 1438 | version "7.2.3" 1439 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1440 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1441 | dependencies: 1442 | fs.realpath "^1.0.0" 1443 | inflight "^1.0.4" 1444 | inherits "2" 1445 | minimatch "^3.1.1" 1446 | once "^1.3.0" 1447 | path-is-absolute "^1.0.0" 1448 | 1449 | globals@^11.1.0: 1450 | version "11.12.0" 1451 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1452 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1453 | 1454 | globals@^13.19.0: 1455 | version "13.24.0" 1456 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" 1457 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== 1458 | dependencies: 1459 | type-fest "^0.20.2" 1460 | 1461 | globalthis@^1.0.3: 1462 | version "1.0.3" 1463 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1464 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1465 | dependencies: 1466 | define-properties "^1.1.3" 1467 | 1468 | globalthis@^1.0.4: 1469 | version "1.0.4" 1470 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" 1471 | integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== 1472 | dependencies: 1473 | define-properties "^1.2.1" 1474 | gopd "^1.0.1" 1475 | 1476 | gopd@^1.0.1: 1477 | version "1.0.1" 1478 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1479 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1480 | dependencies: 1481 | get-intrinsic "^1.1.3" 1482 | 1483 | graphemer@^1.4.0: 1484 | version "1.4.0" 1485 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 1486 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1487 | 1488 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1489 | version "1.0.2" 1490 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1491 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1492 | 1493 | has-flag@^4.0.0: 1494 | version "4.0.0" 1495 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1496 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1497 | 1498 | has-property-descriptors@^1.0.0: 1499 | version "1.0.1" 1500 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" 1501 | integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== 1502 | dependencies: 1503 | get-intrinsic "^1.2.2" 1504 | 1505 | has-property-descriptors@^1.0.1, has-property-descriptors@^1.0.2: 1506 | version "1.0.2" 1507 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" 1508 | integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== 1509 | dependencies: 1510 | es-define-property "^1.0.0" 1511 | 1512 | has-proto@^1.0.1: 1513 | version "1.0.1" 1514 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1515 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1516 | 1517 | has-proto@^1.0.3: 1518 | version "1.0.3" 1519 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" 1520 | integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== 1521 | 1522 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1523 | version "1.0.3" 1524 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1525 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1526 | 1527 | has-tostringtag@^1.0.0: 1528 | version "1.0.0" 1529 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1530 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1531 | dependencies: 1532 | has-symbols "^1.0.2" 1533 | 1534 | has-tostringtag@^1.0.1, has-tostringtag@^1.0.2: 1535 | version "1.0.2" 1536 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" 1537 | integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== 1538 | dependencies: 1539 | has-symbols "^1.0.3" 1540 | 1541 | hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: 1542 | version "2.0.2" 1543 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" 1544 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 1545 | dependencies: 1546 | function-bind "^1.1.2" 1547 | 1548 | ignore@^5.2.0: 1549 | version "5.3.0" 1550 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78" 1551 | integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg== 1552 | 1553 | import-fresh@^3.2.1: 1554 | version "3.3.0" 1555 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1556 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1557 | dependencies: 1558 | parent-module "^1.0.0" 1559 | resolve-from "^4.0.0" 1560 | 1561 | imurmurhash@^0.1.4: 1562 | version "0.1.4" 1563 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1564 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1565 | 1566 | inflight@^1.0.4: 1567 | version "1.0.6" 1568 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1569 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1570 | dependencies: 1571 | once "^1.3.0" 1572 | wrappy "1" 1573 | 1574 | inherits@2: 1575 | version "2.0.4" 1576 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1577 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1578 | 1579 | internal-slot@^1.0.5: 1580 | version "1.0.6" 1581 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.6.tgz#37e756098c4911c5e912b8edbf71ed3aa116f930" 1582 | integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg== 1583 | dependencies: 1584 | get-intrinsic "^1.2.2" 1585 | hasown "^2.0.0" 1586 | side-channel "^1.0.4" 1587 | 1588 | internal-slot@^1.0.7: 1589 | version "1.0.7" 1590 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" 1591 | integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== 1592 | dependencies: 1593 | es-errors "^1.3.0" 1594 | hasown "^2.0.0" 1595 | side-channel "^1.0.4" 1596 | 1597 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: 1598 | version "3.0.2" 1599 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" 1600 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1601 | dependencies: 1602 | call-bind "^1.0.2" 1603 | get-intrinsic "^1.2.0" 1604 | is-typed-array "^1.1.10" 1605 | 1606 | is-array-buffer@^3.0.4: 1607 | version "3.0.4" 1608 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" 1609 | integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== 1610 | dependencies: 1611 | call-bind "^1.0.2" 1612 | get-intrinsic "^1.2.1" 1613 | 1614 | is-async-function@^2.0.0: 1615 | version "2.0.0" 1616 | resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" 1617 | integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== 1618 | dependencies: 1619 | has-tostringtag "^1.0.0" 1620 | 1621 | is-bigint@^1.0.1: 1622 | version "1.0.4" 1623 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1624 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1625 | dependencies: 1626 | has-bigints "^1.0.1" 1627 | 1628 | is-boolean-object@^1.1.0: 1629 | version "1.1.2" 1630 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1631 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1632 | dependencies: 1633 | call-bind "^1.0.2" 1634 | has-tostringtag "^1.0.0" 1635 | 1636 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1637 | version "1.2.7" 1638 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1639 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1640 | 1641 | is-core-module@^2.13.0: 1642 | version "2.13.1" 1643 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" 1644 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 1645 | dependencies: 1646 | hasown "^2.0.0" 1647 | 1648 | is-data-view@^1.0.1: 1649 | version "1.0.1" 1650 | resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" 1651 | integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== 1652 | dependencies: 1653 | is-typed-array "^1.1.13" 1654 | 1655 | is-date-object@^1.0.1, is-date-object@^1.0.5: 1656 | version "1.0.5" 1657 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1658 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1659 | dependencies: 1660 | has-tostringtag "^1.0.0" 1661 | 1662 | is-extglob@^2.1.1: 1663 | version "2.1.1" 1664 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1665 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1666 | 1667 | is-finalizationregistry@^1.0.2: 1668 | version "1.0.2" 1669 | resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" 1670 | integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== 1671 | dependencies: 1672 | call-bind "^1.0.2" 1673 | 1674 | is-generator-function@^1.0.10: 1675 | version "1.0.10" 1676 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" 1677 | integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== 1678 | dependencies: 1679 | has-tostringtag "^1.0.0" 1680 | 1681 | is-glob@^4.0.0, is-glob@^4.0.3: 1682 | version "4.0.3" 1683 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1684 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1685 | dependencies: 1686 | is-extglob "^2.1.1" 1687 | 1688 | is-map@^2.0.1: 1689 | version "2.0.2" 1690 | resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" 1691 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 1692 | 1693 | is-negative-zero@^2.0.2: 1694 | version "2.0.2" 1695 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1696 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1697 | 1698 | is-negative-zero@^2.0.3: 1699 | version "2.0.3" 1700 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" 1701 | integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== 1702 | 1703 | is-number-object@^1.0.4: 1704 | version "1.0.7" 1705 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1706 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1707 | dependencies: 1708 | has-tostringtag "^1.0.0" 1709 | 1710 | is-path-inside@^3.0.3: 1711 | version "3.0.3" 1712 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1713 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1714 | 1715 | is-regex@^1.1.4: 1716 | version "1.1.4" 1717 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1718 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1719 | dependencies: 1720 | call-bind "^1.0.2" 1721 | has-tostringtag "^1.0.0" 1722 | 1723 | is-set@^2.0.1: 1724 | version "2.0.2" 1725 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" 1726 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 1727 | 1728 | is-shared-array-buffer@^1.0.2: 1729 | version "1.0.2" 1730 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1731 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1732 | dependencies: 1733 | call-bind "^1.0.2" 1734 | 1735 | is-shared-array-buffer@^1.0.3: 1736 | version "1.0.3" 1737 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" 1738 | integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== 1739 | dependencies: 1740 | call-bind "^1.0.7" 1741 | 1742 | is-string@^1.0.5, is-string@^1.0.7: 1743 | version "1.0.7" 1744 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1745 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1746 | dependencies: 1747 | has-tostringtag "^1.0.0" 1748 | 1749 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1750 | version "1.0.4" 1751 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1752 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1753 | dependencies: 1754 | has-symbols "^1.0.2" 1755 | 1756 | is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9: 1757 | version "1.1.12" 1758 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" 1759 | integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== 1760 | dependencies: 1761 | which-typed-array "^1.1.11" 1762 | 1763 | is-typed-array@^1.1.13: 1764 | version "1.1.13" 1765 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" 1766 | integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== 1767 | dependencies: 1768 | which-typed-array "^1.1.14" 1769 | 1770 | is-weakmap@^2.0.1: 1771 | version "2.0.1" 1772 | resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" 1773 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 1774 | 1775 | is-weakref@^1.0.2: 1776 | version "1.0.2" 1777 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1778 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1779 | dependencies: 1780 | call-bind "^1.0.2" 1781 | 1782 | is-weakset@^2.0.1: 1783 | version "2.0.2" 1784 | resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" 1785 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 1786 | dependencies: 1787 | call-bind "^1.0.2" 1788 | get-intrinsic "^1.1.1" 1789 | 1790 | isarray@^2.0.5: 1791 | version "2.0.5" 1792 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 1793 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1794 | 1795 | isexe@^2.0.0: 1796 | version "2.0.0" 1797 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1798 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1799 | 1800 | iterator.prototype@^1.1.3: 1801 | version "1.1.3" 1802 | resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.3.tgz#016c2abe0be3bbdb8319852884f60908ac62bf9c" 1803 | integrity sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ== 1804 | dependencies: 1805 | define-properties "^1.2.1" 1806 | get-intrinsic "^1.2.1" 1807 | has-symbols "^1.0.3" 1808 | reflect.getprototypeof "^1.0.4" 1809 | set-function-name "^2.0.1" 1810 | 1811 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1812 | version "4.0.0" 1813 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1814 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1815 | 1816 | js-yaml@^4.1.0: 1817 | version "4.1.0" 1818 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1819 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1820 | dependencies: 1821 | argparse "^2.0.1" 1822 | 1823 | jsesc@^3.0.2: 1824 | version "3.0.2" 1825 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" 1826 | integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== 1827 | 1828 | json-buffer@3.0.1: 1829 | version "3.0.1" 1830 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 1831 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 1832 | 1833 | json-schema-traverse@^0.4.1: 1834 | version "0.4.1" 1835 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1836 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1837 | 1838 | json-stable-stringify-without-jsonify@^1.0.1: 1839 | version "1.0.1" 1840 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1841 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1842 | 1843 | json5@^2.2.3: 1844 | version "2.2.3" 1845 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1846 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1847 | 1848 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 1849 | version "3.3.5" 1850 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" 1851 | integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== 1852 | dependencies: 1853 | array-includes "^3.1.6" 1854 | array.prototype.flat "^1.3.1" 1855 | object.assign "^4.1.4" 1856 | object.values "^1.1.6" 1857 | 1858 | keyv@^4.5.3: 1859 | version "4.5.4" 1860 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 1861 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1862 | dependencies: 1863 | json-buffer "3.0.1" 1864 | 1865 | levn@^0.4.1: 1866 | version "0.4.1" 1867 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1868 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1869 | dependencies: 1870 | prelude-ls "^1.2.1" 1871 | type-check "~0.4.0" 1872 | 1873 | locate-path@^6.0.0: 1874 | version "6.0.0" 1875 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1876 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1877 | dependencies: 1878 | p-locate "^5.0.0" 1879 | 1880 | lodash.merge@^4.6.2: 1881 | version "4.6.2" 1882 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1883 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1884 | 1885 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1886 | version "1.4.0" 1887 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1888 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1889 | dependencies: 1890 | js-tokens "^3.0.0 || ^4.0.0" 1891 | 1892 | lru-cache@^5.1.1: 1893 | version "5.1.1" 1894 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1895 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1896 | dependencies: 1897 | yallist "^3.0.2" 1898 | 1899 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1900 | version "3.1.2" 1901 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1902 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1903 | dependencies: 1904 | brace-expansion "^1.1.7" 1905 | 1906 | ms@2.1.2: 1907 | version "2.1.2" 1908 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1909 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1910 | 1911 | nanoid@^3.3.7: 1912 | version "3.3.7" 1913 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 1914 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1915 | 1916 | nanoid@^5.1.5: 1917 | version "5.1.5" 1918 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.1.5.tgz#f7597f9d9054eb4da9548cdd53ca70f1790e87de" 1919 | integrity sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw== 1920 | 1921 | natural-compare@^1.4.0: 1922 | version "1.4.0" 1923 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1924 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1925 | 1926 | node-releases@^2.0.18: 1927 | version "2.0.18" 1928 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" 1929 | integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== 1930 | 1931 | object-assign@^4.1.1: 1932 | version "4.1.1" 1933 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1934 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1935 | 1936 | object-inspect@^1.13.1, object-inspect@^1.9.0: 1937 | version "1.13.1" 1938 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" 1939 | integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== 1940 | 1941 | object-keys@^1.1.1: 1942 | version "1.1.1" 1943 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1944 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1945 | 1946 | object.assign@^4.1.4, object.assign@^4.1.5: 1947 | version "4.1.5" 1948 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" 1949 | integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== 1950 | dependencies: 1951 | call-bind "^1.0.5" 1952 | define-properties "^1.2.1" 1953 | has-symbols "^1.0.3" 1954 | object-keys "^1.1.1" 1955 | 1956 | object.entries@^1.1.8: 1957 | version "1.1.8" 1958 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" 1959 | integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== 1960 | dependencies: 1961 | call-bind "^1.0.7" 1962 | define-properties "^1.2.1" 1963 | es-object-atoms "^1.0.0" 1964 | 1965 | object.fromentries@^2.0.8: 1966 | version "2.0.8" 1967 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" 1968 | integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== 1969 | dependencies: 1970 | call-bind "^1.0.7" 1971 | define-properties "^1.2.1" 1972 | es-abstract "^1.23.2" 1973 | es-object-atoms "^1.0.0" 1974 | 1975 | object.values@^1.1.6, object.values@^1.2.0: 1976 | version "1.2.0" 1977 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" 1978 | integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== 1979 | dependencies: 1980 | call-bind "^1.0.7" 1981 | define-properties "^1.2.1" 1982 | es-object-atoms "^1.0.0" 1983 | 1984 | once@^1.3.0: 1985 | version "1.4.0" 1986 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1987 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1988 | dependencies: 1989 | wrappy "1" 1990 | 1991 | optionator@^0.9.3: 1992 | version "0.9.3" 1993 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" 1994 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1995 | dependencies: 1996 | "@aashutoshrathi/word-wrap" "^1.2.3" 1997 | deep-is "^0.1.3" 1998 | fast-levenshtein "^2.0.6" 1999 | levn "^0.4.1" 2000 | prelude-ls "^1.2.1" 2001 | type-check "^0.4.0" 2002 | 2003 | p-limit@^3.0.2: 2004 | version "3.1.0" 2005 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 2006 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2007 | dependencies: 2008 | yocto-queue "^0.1.0" 2009 | 2010 | p-locate@^5.0.0: 2011 | version "5.0.0" 2012 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 2013 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2014 | dependencies: 2015 | p-limit "^3.0.2" 2016 | 2017 | parent-module@^1.0.0: 2018 | version "1.0.1" 2019 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2020 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2021 | dependencies: 2022 | callsites "^3.0.0" 2023 | 2024 | path-exists@^4.0.0: 2025 | version "4.0.0" 2026 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2027 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2028 | 2029 | path-is-absolute@^1.0.0: 2030 | version "1.0.1" 2031 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2032 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2033 | 2034 | path-key@^3.1.0: 2035 | version "3.1.1" 2036 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2037 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2038 | 2039 | path-parse@^1.0.7: 2040 | version "1.0.7" 2041 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2042 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2043 | 2044 | picocolors@^1.0.0: 2045 | version "1.0.0" 2046 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2047 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2048 | 2049 | picocolors@^1.0.1: 2050 | version "1.0.1" 2051 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" 2052 | integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== 2053 | 2054 | picocolors@^1.1.0: 2055 | version "1.1.0" 2056 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" 2057 | integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== 2058 | 2059 | possible-typed-array-names@^1.0.0: 2060 | version "1.0.0" 2061 | resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" 2062 | integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== 2063 | 2064 | postcss@^8.4.43: 2065 | version "8.4.44" 2066 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.44.tgz#d56834ef6508610ba224bb22b2457b2169ed0480" 2067 | integrity sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw== 2068 | dependencies: 2069 | nanoid "^3.3.7" 2070 | picocolors "^1.0.1" 2071 | source-map-js "^1.2.0" 2072 | 2073 | prelude-ls@^1.2.1: 2074 | version "1.2.1" 2075 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2076 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2077 | 2078 | prop-types@^15.8.1: 2079 | version "15.8.1" 2080 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 2081 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 2082 | dependencies: 2083 | loose-envify "^1.4.0" 2084 | object-assign "^4.1.1" 2085 | react-is "^16.13.1" 2086 | 2087 | punycode@^2.1.0: 2088 | version "2.3.1" 2089 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 2090 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 2091 | 2092 | queue-microtask@^1.2.2: 2093 | version "1.2.3" 2094 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 2095 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2096 | 2097 | react-dom@^18.2.0: 2098 | version "18.2.0" 2099 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 2100 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 2101 | dependencies: 2102 | loose-envify "^1.1.0" 2103 | scheduler "^0.23.0" 2104 | 2105 | react-is@^16.13.1: 2106 | version "16.13.1" 2107 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2108 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2109 | 2110 | react-refresh@^0.14.2: 2111 | version "0.14.2" 2112 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9" 2113 | integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== 2114 | 2115 | react@^18.2.0: 2116 | version "18.2.0" 2117 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 2118 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2119 | dependencies: 2120 | loose-envify "^1.1.0" 2121 | 2122 | reflect.getprototypeof@^1.0.4: 2123 | version "1.0.4" 2124 | resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz#aaccbf41aca3821b87bb71d9dcbc7ad0ba50a3f3" 2125 | integrity sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw== 2126 | dependencies: 2127 | call-bind "^1.0.2" 2128 | define-properties "^1.2.0" 2129 | es-abstract "^1.22.1" 2130 | get-intrinsic "^1.2.1" 2131 | globalthis "^1.0.3" 2132 | which-builtin-type "^1.1.3" 2133 | 2134 | regexp.prototype.flags@^1.5.1: 2135 | version "1.5.1" 2136 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz#90ce989138db209f81492edd734183ce99f9677e" 2137 | integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg== 2138 | dependencies: 2139 | call-bind "^1.0.2" 2140 | define-properties "^1.2.0" 2141 | set-function-name "^2.0.0" 2142 | 2143 | regexp.prototype.flags@^1.5.2: 2144 | version "1.5.2" 2145 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" 2146 | integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== 2147 | dependencies: 2148 | call-bind "^1.0.6" 2149 | define-properties "^1.2.1" 2150 | es-errors "^1.3.0" 2151 | set-function-name "^2.0.1" 2152 | 2153 | resolve-from@^4.0.0: 2154 | version "4.0.0" 2155 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2156 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2157 | 2158 | resolve@^2.0.0-next.5: 2159 | version "2.0.0-next.5" 2160 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" 2161 | integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== 2162 | dependencies: 2163 | is-core-module "^2.13.0" 2164 | path-parse "^1.0.7" 2165 | supports-preserve-symlinks-flag "^1.0.0" 2166 | 2167 | reusify@^1.0.4: 2168 | version "1.0.4" 2169 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2170 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2171 | 2172 | rimraf@^3.0.2: 2173 | version "3.0.2" 2174 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2175 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2176 | dependencies: 2177 | glob "^7.1.3" 2178 | 2179 | rollup@^4.20.0: 2180 | version "4.22.4" 2181 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.4.tgz#4135a6446671cd2a2453e1ad42a45d5973ec3a0f" 2182 | integrity sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A== 2183 | dependencies: 2184 | "@types/estree" "1.0.5" 2185 | optionalDependencies: 2186 | "@rollup/rollup-android-arm-eabi" "4.22.4" 2187 | "@rollup/rollup-android-arm64" "4.22.4" 2188 | "@rollup/rollup-darwin-arm64" "4.22.4" 2189 | "@rollup/rollup-darwin-x64" "4.22.4" 2190 | "@rollup/rollup-linux-arm-gnueabihf" "4.22.4" 2191 | "@rollup/rollup-linux-arm-musleabihf" "4.22.4" 2192 | "@rollup/rollup-linux-arm64-gnu" "4.22.4" 2193 | "@rollup/rollup-linux-arm64-musl" "4.22.4" 2194 | "@rollup/rollup-linux-powerpc64le-gnu" "4.22.4" 2195 | "@rollup/rollup-linux-riscv64-gnu" "4.22.4" 2196 | "@rollup/rollup-linux-s390x-gnu" "4.22.4" 2197 | "@rollup/rollup-linux-x64-gnu" "4.22.4" 2198 | "@rollup/rollup-linux-x64-musl" "4.22.4" 2199 | "@rollup/rollup-win32-arm64-msvc" "4.22.4" 2200 | "@rollup/rollup-win32-ia32-msvc" "4.22.4" 2201 | "@rollup/rollup-win32-x64-msvc" "4.22.4" 2202 | fsevents "~2.3.2" 2203 | 2204 | run-parallel@^1.1.9: 2205 | version "1.2.0" 2206 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2207 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2208 | dependencies: 2209 | queue-microtask "^1.2.2" 2210 | 2211 | safe-array-concat@^1.0.1: 2212 | version "1.0.1" 2213 | resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.1.tgz#91686a63ce3adbea14d61b14c99572a8ff84754c" 2214 | integrity sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q== 2215 | dependencies: 2216 | call-bind "^1.0.2" 2217 | get-intrinsic "^1.2.1" 2218 | has-symbols "^1.0.3" 2219 | isarray "^2.0.5" 2220 | 2221 | safe-array-concat@^1.1.0: 2222 | version "1.1.0" 2223 | resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692" 2224 | integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg== 2225 | dependencies: 2226 | call-bind "^1.0.5" 2227 | get-intrinsic "^1.2.2" 2228 | has-symbols "^1.0.3" 2229 | isarray "^2.0.5" 2230 | 2231 | safe-array-concat@^1.1.2: 2232 | version "1.1.2" 2233 | resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" 2234 | integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== 2235 | dependencies: 2236 | call-bind "^1.0.7" 2237 | get-intrinsic "^1.2.4" 2238 | has-symbols "^1.0.3" 2239 | isarray "^2.0.5" 2240 | 2241 | safe-regex-test@^1.0.0: 2242 | version "1.0.0" 2243 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 2244 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 2245 | dependencies: 2246 | call-bind "^1.0.2" 2247 | get-intrinsic "^1.1.3" 2248 | is-regex "^1.1.4" 2249 | 2250 | safe-regex-test@^1.0.3: 2251 | version "1.0.3" 2252 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" 2253 | integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== 2254 | dependencies: 2255 | call-bind "^1.0.6" 2256 | es-errors "^1.3.0" 2257 | is-regex "^1.1.4" 2258 | 2259 | scheduler@^0.23.0: 2260 | version "0.23.0" 2261 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 2262 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2263 | dependencies: 2264 | loose-envify "^1.1.0" 2265 | 2266 | semver@^6.3.1: 2267 | version "6.3.1" 2268 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 2269 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 2270 | 2271 | set-function-length@^1.1.1: 2272 | version "1.1.1" 2273 | resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed" 2274 | integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ== 2275 | dependencies: 2276 | define-data-property "^1.1.1" 2277 | get-intrinsic "^1.2.1" 2278 | gopd "^1.0.1" 2279 | has-property-descriptors "^1.0.0" 2280 | 2281 | set-function-length@^1.2.1: 2282 | version "1.2.1" 2283 | resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" 2284 | integrity sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g== 2285 | dependencies: 2286 | define-data-property "^1.1.2" 2287 | es-errors "^1.3.0" 2288 | function-bind "^1.1.2" 2289 | get-intrinsic "^1.2.3" 2290 | gopd "^1.0.1" 2291 | has-property-descriptors "^1.0.1" 2292 | 2293 | set-function-name@^2.0.0, set-function-name@^2.0.1: 2294 | version "2.0.1" 2295 | resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" 2296 | integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA== 2297 | dependencies: 2298 | define-data-property "^1.0.1" 2299 | functions-have-names "^1.2.3" 2300 | has-property-descriptors "^1.0.0" 2301 | 2302 | set-function-name@^2.0.2: 2303 | version "2.0.2" 2304 | resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" 2305 | integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== 2306 | dependencies: 2307 | define-data-property "^1.1.4" 2308 | es-errors "^1.3.0" 2309 | functions-have-names "^1.2.3" 2310 | has-property-descriptors "^1.0.2" 2311 | 2312 | shebang-command@^2.0.0: 2313 | version "2.0.0" 2314 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2315 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2316 | dependencies: 2317 | shebang-regex "^3.0.0" 2318 | 2319 | shebang-regex@^3.0.0: 2320 | version "3.0.0" 2321 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2322 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2323 | 2324 | side-channel@^1.0.4: 2325 | version "1.0.4" 2326 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2327 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2328 | dependencies: 2329 | call-bind "^1.0.0" 2330 | get-intrinsic "^1.0.2" 2331 | object-inspect "^1.9.0" 2332 | 2333 | side-channel@^1.0.6: 2334 | version "1.0.6" 2335 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" 2336 | integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== 2337 | dependencies: 2338 | call-bind "^1.0.7" 2339 | es-errors "^1.3.0" 2340 | get-intrinsic "^1.2.4" 2341 | object-inspect "^1.13.1" 2342 | 2343 | source-map-js@^1.2.0: 2344 | version "1.2.0" 2345 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" 2346 | integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== 2347 | 2348 | string.prototype.matchall@^4.0.11: 2349 | version "4.0.11" 2350 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" 2351 | integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== 2352 | dependencies: 2353 | call-bind "^1.0.7" 2354 | define-properties "^1.2.1" 2355 | es-abstract "^1.23.2" 2356 | es-errors "^1.3.0" 2357 | es-object-atoms "^1.0.0" 2358 | get-intrinsic "^1.2.4" 2359 | gopd "^1.0.1" 2360 | has-symbols "^1.0.3" 2361 | internal-slot "^1.0.7" 2362 | regexp.prototype.flags "^1.5.2" 2363 | set-function-name "^2.0.2" 2364 | side-channel "^1.0.6" 2365 | 2366 | string.prototype.repeat@^1.0.0: 2367 | version "1.0.0" 2368 | resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a" 2369 | integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== 2370 | dependencies: 2371 | define-properties "^1.1.3" 2372 | es-abstract "^1.17.5" 2373 | 2374 | string.prototype.trim@^1.2.8: 2375 | version "1.2.8" 2376 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" 2377 | integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== 2378 | dependencies: 2379 | call-bind "^1.0.2" 2380 | define-properties "^1.2.0" 2381 | es-abstract "^1.22.1" 2382 | 2383 | string.prototype.trim@^1.2.9: 2384 | version "1.2.9" 2385 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" 2386 | integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== 2387 | dependencies: 2388 | call-bind "^1.0.7" 2389 | define-properties "^1.2.1" 2390 | es-abstract "^1.23.0" 2391 | es-object-atoms "^1.0.0" 2392 | 2393 | string.prototype.trimend@^1.0.7: 2394 | version "1.0.7" 2395 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" 2396 | integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== 2397 | dependencies: 2398 | call-bind "^1.0.2" 2399 | define-properties "^1.2.0" 2400 | es-abstract "^1.22.1" 2401 | 2402 | string.prototype.trimend@^1.0.8: 2403 | version "1.0.8" 2404 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" 2405 | integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== 2406 | dependencies: 2407 | call-bind "^1.0.7" 2408 | define-properties "^1.2.1" 2409 | es-object-atoms "^1.0.0" 2410 | 2411 | string.prototype.trimstart@^1.0.7: 2412 | version "1.0.7" 2413 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" 2414 | integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== 2415 | dependencies: 2416 | call-bind "^1.0.2" 2417 | define-properties "^1.2.0" 2418 | es-abstract "^1.22.1" 2419 | 2420 | string.prototype.trimstart@^1.0.8: 2421 | version "1.0.8" 2422 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" 2423 | integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== 2424 | dependencies: 2425 | call-bind "^1.0.7" 2426 | define-properties "^1.2.1" 2427 | es-object-atoms "^1.0.0" 2428 | 2429 | strip-ansi@^6.0.1: 2430 | version "6.0.1" 2431 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2432 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2433 | dependencies: 2434 | ansi-regex "^5.0.1" 2435 | 2436 | strip-json-comments@^3.1.1: 2437 | version "3.1.1" 2438 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2439 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2440 | 2441 | supports-color@^7.1.0: 2442 | version "7.2.0" 2443 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2444 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2445 | dependencies: 2446 | has-flag "^4.0.0" 2447 | 2448 | supports-preserve-symlinks-flag@^1.0.0: 2449 | version "1.0.0" 2450 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2451 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2452 | 2453 | text-table@^0.2.0: 2454 | version "0.2.0" 2455 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2456 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2457 | 2458 | to-fast-properties@^2.0.0: 2459 | version "2.0.0" 2460 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2461 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2462 | 2463 | type-check@^0.4.0, type-check@~0.4.0: 2464 | version "0.4.0" 2465 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2466 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2467 | dependencies: 2468 | prelude-ls "^1.2.1" 2469 | 2470 | type-fest@^0.20.2: 2471 | version "0.20.2" 2472 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2473 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2474 | 2475 | typed-array-buffer@^1.0.0: 2476 | version "1.0.0" 2477 | resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" 2478 | integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== 2479 | dependencies: 2480 | call-bind "^1.0.2" 2481 | get-intrinsic "^1.2.1" 2482 | is-typed-array "^1.1.10" 2483 | 2484 | typed-array-buffer@^1.0.2: 2485 | version "1.0.2" 2486 | resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" 2487 | integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== 2488 | dependencies: 2489 | call-bind "^1.0.7" 2490 | es-errors "^1.3.0" 2491 | is-typed-array "^1.1.13" 2492 | 2493 | typed-array-byte-length@^1.0.0: 2494 | version "1.0.0" 2495 | resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" 2496 | integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== 2497 | dependencies: 2498 | call-bind "^1.0.2" 2499 | for-each "^0.3.3" 2500 | has-proto "^1.0.1" 2501 | is-typed-array "^1.1.10" 2502 | 2503 | typed-array-byte-length@^1.0.1: 2504 | version "1.0.1" 2505 | resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" 2506 | integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== 2507 | dependencies: 2508 | call-bind "^1.0.7" 2509 | for-each "^0.3.3" 2510 | gopd "^1.0.1" 2511 | has-proto "^1.0.3" 2512 | is-typed-array "^1.1.13" 2513 | 2514 | typed-array-byte-offset@^1.0.0: 2515 | version "1.0.0" 2516 | resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" 2517 | integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== 2518 | dependencies: 2519 | available-typed-arrays "^1.0.5" 2520 | call-bind "^1.0.2" 2521 | for-each "^0.3.3" 2522 | has-proto "^1.0.1" 2523 | is-typed-array "^1.1.10" 2524 | 2525 | typed-array-byte-offset@^1.0.2: 2526 | version "1.0.2" 2527 | resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" 2528 | integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== 2529 | dependencies: 2530 | available-typed-arrays "^1.0.7" 2531 | call-bind "^1.0.7" 2532 | for-each "^0.3.3" 2533 | gopd "^1.0.1" 2534 | has-proto "^1.0.3" 2535 | is-typed-array "^1.1.13" 2536 | 2537 | typed-array-length@^1.0.4: 2538 | version "1.0.4" 2539 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 2540 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2541 | dependencies: 2542 | call-bind "^1.0.2" 2543 | for-each "^0.3.3" 2544 | is-typed-array "^1.1.9" 2545 | 2546 | typed-array-length@^1.0.5: 2547 | version "1.0.5" 2548 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.5.tgz#57d44da160296d8663fd63180a1802ebf25905d5" 2549 | integrity sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== 2550 | dependencies: 2551 | call-bind "^1.0.7" 2552 | for-each "^0.3.3" 2553 | gopd "^1.0.1" 2554 | has-proto "^1.0.3" 2555 | is-typed-array "^1.1.13" 2556 | possible-typed-array-names "^1.0.0" 2557 | 2558 | typed-array-length@^1.0.6: 2559 | version "1.0.6" 2560 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" 2561 | integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== 2562 | dependencies: 2563 | call-bind "^1.0.7" 2564 | for-each "^0.3.3" 2565 | gopd "^1.0.1" 2566 | has-proto "^1.0.3" 2567 | is-typed-array "^1.1.13" 2568 | possible-typed-array-names "^1.0.0" 2569 | 2570 | unbox-primitive@^1.0.2: 2571 | version "1.0.2" 2572 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2573 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2574 | dependencies: 2575 | call-bind "^1.0.2" 2576 | has-bigints "^1.0.2" 2577 | has-symbols "^1.0.3" 2578 | which-boxed-primitive "^1.0.2" 2579 | 2580 | update-browserslist-db@^1.1.1: 2581 | version "1.1.1" 2582 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" 2583 | integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== 2584 | dependencies: 2585 | escalade "^3.2.0" 2586 | picocolors "^1.1.0" 2587 | 2588 | uri-js@^4.2.2: 2589 | version "4.4.1" 2590 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2591 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2592 | dependencies: 2593 | punycode "^2.1.0" 2594 | 2595 | vite@^5.4.11: 2596 | version "5.4.11" 2597 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" 2598 | integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== 2599 | dependencies: 2600 | esbuild "^0.21.3" 2601 | postcss "^8.4.43" 2602 | rollup "^4.20.0" 2603 | optionalDependencies: 2604 | fsevents "~2.3.3" 2605 | 2606 | which-boxed-primitive@^1.0.2: 2607 | version "1.0.2" 2608 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2609 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2610 | dependencies: 2611 | is-bigint "^1.0.1" 2612 | is-boolean-object "^1.1.0" 2613 | is-number-object "^1.0.4" 2614 | is-string "^1.0.5" 2615 | is-symbol "^1.0.3" 2616 | 2617 | which-builtin-type@^1.1.3: 2618 | version "1.1.3" 2619 | resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" 2620 | integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== 2621 | dependencies: 2622 | function.prototype.name "^1.1.5" 2623 | has-tostringtag "^1.0.0" 2624 | is-async-function "^2.0.0" 2625 | is-date-object "^1.0.5" 2626 | is-finalizationregistry "^1.0.2" 2627 | is-generator-function "^1.0.10" 2628 | is-regex "^1.1.4" 2629 | is-weakref "^1.0.2" 2630 | isarray "^2.0.5" 2631 | which-boxed-primitive "^1.0.2" 2632 | which-collection "^1.0.1" 2633 | which-typed-array "^1.1.9" 2634 | 2635 | which-collection@^1.0.1: 2636 | version "1.0.1" 2637 | resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" 2638 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 2639 | dependencies: 2640 | is-map "^2.0.1" 2641 | is-set "^2.0.1" 2642 | is-weakmap "^2.0.1" 2643 | is-weakset "^2.0.1" 2644 | 2645 | which-typed-array@^1.1.11, which-typed-array@^1.1.13, which-typed-array@^1.1.9: 2646 | version "1.1.13" 2647 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36" 2648 | integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow== 2649 | dependencies: 2650 | available-typed-arrays "^1.0.5" 2651 | call-bind "^1.0.4" 2652 | for-each "^0.3.3" 2653 | gopd "^1.0.1" 2654 | has-tostringtag "^1.0.0" 2655 | 2656 | which-typed-array@^1.1.14: 2657 | version "1.1.14" 2658 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.14.tgz#1f78a111aee1e131ca66164d8bdc3ab062c95a06" 2659 | integrity sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg== 2660 | dependencies: 2661 | available-typed-arrays "^1.0.6" 2662 | call-bind "^1.0.5" 2663 | for-each "^0.3.3" 2664 | gopd "^1.0.1" 2665 | has-tostringtag "^1.0.1" 2666 | 2667 | which-typed-array@^1.1.15: 2668 | version "1.1.15" 2669 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" 2670 | integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== 2671 | dependencies: 2672 | available-typed-arrays "^1.0.7" 2673 | call-bind "^1.0.7" 2674 | for-each "^0.3.3" 2675 | gopd "^1.0.1" 2676 | has-tostringtag "^1.0.2" 2677 | 2678 | which@^2.0.1: 2679 | version "2.0.2" 2680 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2681 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2682 | dependencies: 2683 | isexe "^2.0.0" 2684 | 2685 | wrappy@1: 2686 | version "1.0.2" 2687 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2688 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2689 | 2690 | yallist@^3.0.2: 2691 | version "3.1.1" 2692 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2693 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2694 | 2695 | yocto-queue@^0.1.0: 2696 | version "0.1.0" 2697 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2698 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2699 | --------------------------------------------------------------------------------