├── src ├── index.ts └── lib │ ├── Pane.tsx │ ├── Resizer.tsx │ ├── util.ts │ └── SplitPane.tsx ├── prettier.config.js ├── tsconfig.json ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── .gitignore ├── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── package.json ├── CODE_OF_CONDUCT.md ├── README.md ├── CONTRIBUTING.md └── yarn.lock /src/index.ts: -------------------------------------------------------------------------------- 1 | export { SplitPane, SplitPaneProps } from './lib/SplitPane'; 2 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | semi: true, 3 | trailingComma: 'all', 4 | arrowParens: 'always', 5 | singleQuote: true, 6 | jsxSingleQuote: true, 7 | printWidth: 120, 8 | useTabs: true, 9 | tabWidth: 8, 10 | }; 11 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 4 | "module": "commonjs", 5 | "strict": true, 6 | "jsx": "react", 7 | "outDir": "dist", 8 | "sourceMap": true, 9 | "declaration": true 10 | }, 11 | "include": [ 12 | "src/**/*" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: '@typescript-eslint/parser', 3 | plugins: [ 4 | 'react-hooks', 5 | ], 6 | extends: [ 7 | 'plugin:react/recommended', 8 | 'plugin:@typescript-eslint/recommended', 9 | 'plugin:prettier/recommended', 10 | ], 11 | parserOptions: { 12 | ecmaVersion: 2018, 13 | sourceType: 'module', 14 | ecmaFeatures: { 15 | jsx: true, 16 | }, 17 | }, 18 | rules: { 19 | 'react-hooks/rules-of-hooks': 'error', 20 | 'react-hooks/exhaustive-deps': 'warn', 21 | 'prettier/prettier': 'warn', 22 | }, 23 | settings: { 24 | react: { 25 | version: 'detect', 26 | }, 27 | }, 28 | }; 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | #### Describe the bug 8 | 9 | A clear and concise description of what the bug is. 10 | 11 | #### To Reproduce 12 | 13 | Steps to reproduce the behavior: 14 | 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | or 21 | 22 | Post a link to a [CodeSandbox](https://codesandbox.io/). 23 | 24 | #### Expected behavior 25 | 26 | A clear and concise description of what you expected to happen. 27 | 28 | #### Screenshots 29 | 30 | If applicable, add screenshots to help explain your problem. 31 | 32 | #### Additional context 33 | 34 | Add any other context about the problem here. 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # Compiled binary addons (http://nodejs.org/api/addons.html) 20 | build/Release 21 | 22 | # Dependency directory 23 | # Commenting this out is preferred by some people, see 24 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 25 | node_modules 26 | 27 | # Users Environment Variables 28 | .lock-wscript 29 | 30 | .idea 31 | *.iml 32 | /lib 33 | 34 | lcov.info 35 | .DS_Store 36 | 37 | dist 38 | build 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | #### Is your feature request related to a problem? Please describe. 8 | 9 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 10 | 11 | #### Describe the solution you'd like 12 | 13 | A clear and concise description of what you want to happen. 14 | 15 | But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to _you_ to make a strong case to convince the project's developers of the merits of this feature. 16 | 17 | #### Describe alternatives you've considered 18 | 19 | A clear and concise description of any alternative solutions or features you've considered. 20 | 21 | #### Additional context 22 | 23 | Add any other context or screenshots about the feature request here. 24 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Thanks for contributing to react-split-pane! 2 | 3 | **Before submitting a pull request,** please complete the following checklist: 4 | 5 | - [ ] The existing test suites (`yarn test`) all pass 6 | - [ ] For any new features or bug fixes, both positive and negative test cases have been added 7 | - [ ] For any new features, documentation has been added 8 | - [ ] For any documentation changes, the text has been proofread and is clear to both experienced users and beginners. 9 | - [ ] Format your code with [prettier](https://github.com/prettier/prettier) (`npm run prettier`). 10 | 11 | Here is a short checklist of additional things to keep in mind before submitting: 12 | * Please make sure your pull request description makes it very clear what you're trying to accomplish. If it's a bug fix, please also provide a failing test case (if possible). In either case, please add additional unit test coverage for your changes. :) 13 | * Be sure you have notifications setup so that you'll see my code review responses. (I may ask you to make some adjustments before merging.) 14 | -------------------------------------------------------------------------------- /src/lib/Pane.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | 3 | export interface PaneProps { 4 | size: number; 5 | minSize: number; 6 | 7 | split: 'horizontal' | 'vertical'; 8 | className: string; 9 | 10 | forwardRef: React.Ref; 11 | 12 | children: React.ReactNode; 13 | } 14 | 15 | const baseStyle: React.CSSProperties = { 16 | position: 'relative', 17 | outline: 'none', 18 | border: 0, 19 | overflow: 'hidden', 20 | display: 'flex', 21 | flexBasis: 'auto', 22 | }; 23 | 24 | export const Pane = React.memo(({ size, minSize, split, className, forwardRef, children }: PaneProps) => { 25 | const style: React.CSSProperties = { 26 | ...baseStyle, 27 | flexGrow: size, 28 | flexShrink: size, 29 | }; 30 | 31 | if (split === 'vertical') { 32 | style.width = 0; 33 | style.height = '100%'; 34 | style.minWidth = minSize; 35 | } else { 36 | style.width = '100%'; 37 | style.height = 0; 38 | style.minHeight = minSize; 39 | } 40 | 41 | const classes = ['Pane', split, className].join(' '); 42 | 43 | return ( 44 |
45 | {children} 46 |
47 | ); 48 | }); 49 | Pane.displayName = 'Pane'; 50 | -------------------------------------------------------------------------------- /src/lib/Resizer.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | const { useCallback } = React; 3 | 4 | import { ClientPosition } from './util'; 5 | 6 | export interface ResizerProps { 7 | split: 'horizontal' | 'vertical'; 8 | className: string; 9 | index: number; 10 | 11 | onDragStarted: (index: number, pos: ClientPosition) => void; 12 | } 13 | 14 | export const Resizer = React.memo(({ split, className, index, onDragStarted }: ResizerProps) => { 15 | const handleMouseDown = useCallback( 16 | (event: React.MouseEvent) => { 17 | event.preventDefault(); 18 | 19 | onDragStarted(index, event); 20 | }, 21 | [index, onDragStarted], 22 | ); 23 | 24 | const handleTouchStart = useCallback( 25 | (event: React.TouchEvent) => { 26 | event.preventDefault(); 27 | 28 | onDragStarted(index, event.touches[0]); 29 | }, 30 | [index, onDragStarted], 31 | ); 32 | 33 | const classes = ['Resizer', split, className].join(' '); 34 | 35 | return ( 36 | 43 | ); 44 | }); 45 | Resizer.displayName = 'Resizer'; 46 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 tomkp 4 | Copyright (c) 2018 Matthias Schiffer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-multi-split-pane", 3 | "description": "React multi split-pane component", 4 | "main": "dist/index.js", 5 | "source": "src/index.ts", 6 | "files": [ 7 | "dist", 8 | "!dist/**/*.map" 9 | ], 10 | "version": "0.3.3", 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/neoraider/react-multi-split-pane" 14 | }, 15 | "license": "MIT", 16 | "bugs": { 17 | "url": "https://github.com/neoraider/react-multi-split-pane" 18 | }, 19 | "homepage": "https://github.com/neoraider/react-multi-split-pane", 20 | "author": "Matthias Schiffer ", 21 | "keywords": [ 22 | "react", 23 | "react-component", 24 | "split-pane", 25 | "multi-split-pane", 26 | "react-split-pane", 27 | "react-multi-split-pane", 28 | "typescript" 29 | ], 30 | "scripts": { 31 | "prebuild": "yarn run clean", 32 | "clean": "rimraf dist", 33 | "build": "tsc", 34 | "build:watch": "tsc -w", 35 | "lint": "eslint 'src/**/*'", 36 | "release": "yarn version --message \"$npm_package_name v%s\"" 37 | }, 38 | "peerDependencies": { 39 | "react": "^16.14.0 || ^17.0.1", 40 | "react-dom": "^16.14.0 || ^17.0.1" 41 | }, 42 | "devDependencies": { 43 | "@types/react": "^17.0.19", 44 | "@types/react-dom": "^17.0.9", 45 | "@typescript-eslint/eslint-plugin": "^5.10.2", 46 | "@typescript-eslint/parser": "^5.10.2", 47 | "eslint": "^8.8.0", 48 | "eslint-config-prettier": "^8.3.0", 49 | "eslint-plugin-prettier": "^4.0.0", 50 | "eslint-plugin-react": "^7.24.0", 51 | "eslint-plugin-react-hooks": "^4.2.0", 52 | "prettier": "^2.3.2", 53 | "react": "^17.0.2", 54 | "rimraf": "^3.0.2", 55 | "typescript": "^4.3.5" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/lib/util.ts: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as ReactDOM from 'react-dom'; 3 | const { useCallback, useMemo, useState, useEffect } = React; 4 | 5 | export interface ClientPosition { 6 | clientX: number; 7 | clientY: number; 8 | } 9 | 10 | export function useEventListener( 11 | type: K, 12 | listener?: (this: Document, ev: DocumentEventMap[K]) => void, 13 | ): void { 14 | useEffect(() => { 15 | if (!listener) return; 16 | 17 | document.addEventListener(type, listener); 18 | 19 | return (): void => { 20 | document.removeEventListener(type, listener); 21 | }; 22 | }, [type, listener]); 23 | } 24 | 25 | export interface DragState { 26 | offset: number; 27 | extraState: T; 28 | } 29 | 30 | interface DragStateHandlers { 31 | beginDrag: (pos: ClientPosition, extraState: T) => void; 32 | dragState: DragState | null; 33 | onMouseMove?: (event: ClientPosition) => void; 34 | onTouchMove?: (event: TouchEvent) => void; 35 | onMouseUp?: () => void; 36 | } 37 | 38 | function useDragStateHandlers( 39 | split: 'horizontal' | 'vertical', 40 | onDragFinished: (dragState: DragState) => void, 41 | ): DragStateHandlers { 42 | const [dragging, setDragging] = useState<[T, number] | null>(null); 43 | const [current, setCurrent] = useState(0); 44 | 45 | const beginDrag = useCallback( 46 | (event: ClientPosition, extraState: T): void => { 47 | const pos = split === 'vertical' ? event.clientX : event.clientY; 48 | setDragging([extraState, pos]); 49 | setCurrent(pos); 50 | }, 51 | [split], 52 | ); 53 | 54 | const [dragState, onMouseUp] = useMemo(() => { 55 | if (!dragging) { 56 | return [null, undefined]; 57 | } 58 | 59 | const [extraState, origin] = dragging; 60 | const dragState: DragState = { offset: current - origin, extraState }; 61 | 62 | const onMouseUp = (): void => { 63 | ReactDOM.unstable_batchedUpdates(() => { 64 | setDragging(null); 65 | onDragFinished(dragState); 66 | }); 67 | }; 68 | 69 | return [dragState, onMouseUp]; 70 | }, [current, dragging, onDragFinished]); 71 | 72 | const [onMouseMove, onTouchMove] = useMemo(() => { 73 | if (!dragging) { 74 | return [undefined, undefined]; 75 | } 76 | 77 | const onMouseMove = (event: ClientPosition): void => { 78 | const pos = split === 'vertical' ? event.clientX : event.clientY; 79 | setCurrent(pos); 80 | }; 81 | 82 | const onTouchMove = (event: TouchEvent): void => { 83 | onMouseMove(event.touches[0]); 84 | }; 85 | 86 | return [onMouseMove, onTouchMove]; 87 | }, [dragging, split]); 88 | 89 | return { beginDrag, dragState, onMouseMove, onTouchMove, onMouseUp }; 90 | } 91 | 92 | export function useDragState( 93 | split: 'horizontal' | 'vertical', 94 | onDragFinished: (dragState: DragState) => void, 95 | ): [DragState | null, (pos: ClientPosition, extraState: T) => void] { 96 | const { beginDrag, dragState, onMouseMove, onTouchMove, onMouseUp } = useDragStateHandlers( 97 | split, 98 | onDragFinished, 99 | ); 100 | 101 | useEventListener('mousemove', onMouseMove); 102 | useEventListener('touchmove', onTouchMove); 103 | useEventListener('mouseup', onMouseUp); 104 | 105 | return [dragState, beginDrag]; 106 | } 107 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at tom@tomkp.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Multi Split Pane 2 | 3 | [![NPM version](https://img.shields.io/npm/v/react-multi-split-pane.svg?style=flat)](https://www.npmjs.com/package/react-multi-split-pane) 4 | ![NPM license](https://img.shields.io/npm/l/react-multi-split-pane.svg?style=flat) 5 | 6 | Fork of [react-split-pane](https://github.com/tomkp/react-split-pane) with support for more than two panes. 7 | 8 | ## Installing 9 | ```sh 10 | npm install react-multi-split-pane 11 | 12 | # or if you use yarn 13 | 14 | yarn add react-multi-split-pane 15 | ``` 16 | 17 | ## Example Usage 18 | ```jsx 19 | 20 |
21 |
22 |
23 |
24 | ``` 25 | 26 | ```jsx 27 | 28 |
29 | 30 |
31 |
32 |
33 |
34 | ``` 35 | 36 | ## Differences from [react-split-pane](https://github.com/tomkp/react-split-pane) 37 | 38 | Much of the code has been rewritten, so the feature set is a bit different. All 39 | code has been converted to TypeScript. 40 | 41 | The most important changes: 42 | 43 | * All pane sizes are relative, so when the window is resized, all panes 44 | grow/shrink at the same time (as far as their `minSize` properties allow) 45 | * An array of all pane sizes is passed to the `onDragFinished` and `onChange` 46 | callbacks 47 | 48 | ## Props 49 | ### split: 'vertical' | 'horizontal' 50 | Split direction, defaults to vertical. 51 | 52 | ### defaultSizes: number[] 53 | Array of (relative) default sizes for the individual panes. Missing values 54 | default to 1. When no `defaultSizes` are passed, all sizes default to 1, 55 | equally distributing the available space (as far as `minSize` values permit). 56 | 57 | ### minSize: number | number[] 58 | Minimum size of all panes (in pixels), or array containing individual minimum 59 | sizes for each pane. Defaults to 50. 60 | 61 | ### className: string 62 | Additional CSS class name that is appied to all elements rendered by the 63 | SplitPane. For a class name `custom`, the individual elements can be selected as 64 | `.SplitPane.custom`, `.Resizer.custom`, and `.Pane.custom`. 65 | 66 | ### resizerClassName: string 67 | Additional CSS class name that is appied only to the resizer rendered by the 68 | SplitPane. 69 | 70 | ### onDragStarted: () => void 71 | This callback is invoked when a drag starts. 72 | 73 | ### onDragFinished: (sizes: number[]) => void 74 | This callback is invoked when a drag ends. 75 | 76 | ### onChange: (sizes: number[]) => void 77 | This callback is invoked with the current drag during a drag event. It is 78 | recommended that it is wrapped in a debounce function. 79 | 80 | ## Persisting Positions 81 | 82 | Each SplitPane accepts an onChange function prop. Used in conjunction with 83 | defaultSize and a persistence layer, you can ensure that your splitter choices 84 | survive a refresh of your app. 85 | 86 | For example, if you are comfortable with the trade-offs of localStorage, you 87 | could do something like the following: 88 | 89 | ```jsx 90 | localStorage.setItem('splitPos', JSON.stringify(size))} 94 | > 95 |
96 |
97 |
98 | ``` 99 | 100 | ## Example styling 101 | 102 | This gives a single pixel wide divider, but with a 'grabbable' surface of 11 103 | pixels. 104 | 105 | Thanks to `background-clip: padding-box;` for making transparent borders 106 | possible. 107 | 108 | 109 | ```css 110 | .Resizer { 111 | background: #000; 112 | opacity: .2; 113 | z-index: 1; 114 | box-sizing: border-box; 115 | background-clip: padding-box; 116 | } 117 | 118 | .Resizer:hover { 119 | transition: all 2s ease; 120 | } 121 | 122 | .Resizer.horizontal { 123 | height: 11px; 124 | margin: -5px 0; 125 | border-top: 5px solid rgba(255, 255, 255, 0); 126 | border-bottom: 5px solid rgba(255, 255, 255, 0); 127 | cursor: row-resize; 128 | } 129 | 130 | .Resizer.horizontal:hover, .Resizer.horizontal.resizing { 131 | border-top: 5px solid rgba(0, 0, 0, 0.5); 132 | border-bottom: 5px solid rgba(0, 0, 0, 0.5); 133 | } 134 | 135 | .Resizer.vertical { 136 | width: 11px; 137 | margin: 0 -5px; 138 | border-left: 5px solid rgba(255, 255, 255, 0); 139 | border-right: 5px solid rgba(255, 255, 255, 0); 140 | cursor: col-resize; 141 | } 142 | 143 | .Resizer.vertical:hover, .Resizer.vertical.resizing { 144 | border-left: 5px solid rgba(0, 0, 0, 0.5); 145 | border-right: 5px solid rgba(0, 0, 0, 0.5); 146 | } 147 | 148 | .DragLayer { 149 | z-index: 1; 150 | pointer-events: none; 151 | } 152 | 153 | .DragLayer.resizing { 154 | pointer-events: auto; 155 | } 156 | 157 | .DragLayer.horizontal { 158 | cursor: row-resize; 159 | } 160 | 161 | .DragLayer.vertical { 162 | cursor: col-resize; 163 | } 164 | ``` 165 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | [Bug Reports](#bugs) | [Features Requests](#features) | [Submitting Pull Requests](#pull-requests) | [Running Local Demo](#running-local-demo) | [Running Tests](#running-tests) 2 | 3 | # Contributing to this project 4 | 5 | Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved. 6 | 7 | Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. 8 | In return, they should reciprocate that respect in addressing your issue or assessing patches and features. 9 | 10 | ## Using the issue tracker 11 | 12 | The issue tracker is the preferred channel for bug reports but please respect the following restrictions: 13 | 14 | - Please **do not** use the issue tracker for personal support requests. 15 | - Please **do not** derail or troll issues. Keep the discussion on topic and respect the opinions of others. 16 | 17 | 18 | 19 | ## Bug reports 20 | 21 | A bug is a _demonstrable problem_ that is caused by the code in the repository. 22 | Good bug reports are extremely helpful - thank you! 23 | 24 | Guidelines for bug reports: 25 | 26 | 1. **Use the GitHub issue search** — check if the issue has already been reported. 27 | 2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or development branch in the repository. 28 | 3. **Isolate the problem** — create a [reduced test case](http://css-tricks.com/reduced-test-cases/) and a live example (using a site like [CodeSandbox](https://codesandbox.io/)). 29 | 30 | A good bug report shouldn't leave others needing to chase you up for more information. 31 | Please try to be as detailed as possible in your report. 32 | Which versions of react-virtualized and react are you using? 33 | What steps will reproduce the issue? What browser(s) and OS experience the problem? 34 | What would you expect to be the outcome? 35 | All these details will help people to fix any potential bugs. 36 | 37 | Example: 38 | 39 | > Short and descriptive example bug report title 40 | > 41 | > A summary of the issue and the browser/OS environment in which it occurs. 42 | > If suitable, include the steps required to reproduce the bug. 43 | > 44 | > 1. This is the first step 45 | > 2. This is the second step 46 | > 3. Further steps, etc. 47 | > 48 | > `` - a link to the reduced test case 49 | > 50 | > Any other information you want to share that is relevant to the issue being reported. 51 | > This might include the lines of code that you have identified as causing the bug, 52 | > and potential solutions (and your opinions on their merits). 53 | 54 | 55 | 56 | ## Feature requests 57 | 58 | Feature requests are welcome. 59 | But take a moment to find out whether your idea fits with the scope and aims of the project. 60 | It's up to _you_ to make a strong case to convince the project's developers of the merits of this feature. 61 | Please provide as much detail and context as possible. 62 | 63 | 64 | 65 | ## Pull requests 66 | 67 | Good pull requests - patches, improvements, new features - are a fantastic help. 68 | They should remain focused in scope and avoid containing unrelated commits. 69 | 70 | **Please ask first** before embarking on any significant pull request (e.g. implementing features, refactoring code, porting to a different language), 71 | otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project. 72 | 73 | Please adhere to the coding conventions used throughout a project (indentation, accurate comments, etc.) and any other requirements (such as test coverage). 74 | 75 | Follow this process if you'd like your work considered for inclusion in the project: 76 | 77 | 1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes: 78 | 79 | ```bash 80 | # Clone your fork of the repo into the current directory 81 | git clone https://github.com//react-multi-split-pane 82 | # Navigate to the newly cloned directory 83 | cd react-split-pane 84 | # Assign the original repo to a remote called "upstream" 85 | git remote add upstream https://github.com/neoraider/react-multi-split-pane 86 | ``` 87 | 88 | 2. If you cloned a while ago, get the latest changes from upstream: 89 | 90 | ```bash 91 | git checkout master 92 | git pull upstream master 93 | ``` 94 | 95 | 3. Install/update dependencies: 96 | 97 | ```bash 98 | yarn install 99 | ``` 100 | 101 | 4. Create a new topic branch (off the main project development branch) to 102 | contain your feature, change, or fix: 103 | 104 | ```bash 105 | git checkout -b 106 | ``` 107 | 108 | 5. Commit your changes in logical chunks. 109 | Please adhere to these [git commit message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) 110 | or your code is unlikely be merged into the main project. 111 | Use Git's [interactive rebase](https://help.github.com/articles/interactive-rebase) 112 | feature to tidy up your commits before making them public. 113 | 114 | 6. Locally merge (or rebase) the upstream development branch into your topic branch: 115 | 116 | ```bash 117 | git pull [--rebase] upstream master 118 | ``` 119 | 120 | 7. Push your topic branch up to your fork: 121 | 122 | ```bash 123 | git push origin 124 | ``` 125 | 126 | 8. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) 127 | with a clear title and description. 128 | 129 | **IMPORTANT**: By submitting a patch, you agree to allow the project owner to license your work under the same license as that used by this project (MIT). 130 | -------------------------------------------------------------------------------- /src/lib/SplitPane.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | const { useCallback, useRef, useState, useMemo, useEffect } = React; 3 | 4 | import { Pane } from './Pane'; 5 | import { Resizer } from './Resizer'; 6 | import { ClientPosition, useDragState, DragState } from './util'; 7 | 8 | const DEFAULT_MIN_SIZE = 50; 9 | 10 | export interface SplitPaneProps { 11 | split?: 'horizontal' | 'vertical'; 12 | className?: string; 13 | resizerClassName?: string; 14 | 15 | children: React.ReactChild[]; 16 | 17 | defaultSizes?: number[]; 18 | minSize?: number | number[]; 19 | 20 | onDragStarted?: () => void; 21 | onChange?: (sizes: number[]) => void; 22 | onDragFinished?: (sizes: number[]) => void; 23 | } 24 | 25 | export interface SplitPaneResizeOptions extends SplitPaneProps { 26 | split: 'horizontal' | 'vertical'; 27 | className: string; 28 | } 29 | 30 | interface ResizeState { 31 | index: number; 32 | } 33 | 34 | function getNodeKey(node: React.ReactChild, index: number): string { 35 | if (typeof node === 'object' && node && node.key != null) { 36 | return 'key.' + node.key; 37 | } 38 | 39 | return 'index.' + index; 40 | } 41 | 42 | function getMinSize(index: number, minSizes?: number | number[]): number { 43 | if (typeof minSizes === 'number') { 44 | if (minSizes > 0) { 45 | return minSizes; 46 | } 47 | } else if (minSizes instanceof Array) { 48 | const value = minSizes[index]; 49 | if (value > 0) { 50 | return value; 51 | } 52 | } 53 | 54 | return DEFAULT_MIN_SIZE; 55 | } 56 | 57 | function getDefaultSize(index: number, defaultSizes?: number[]): number { 58 | if (defaultSizes) { 59 | const value = defaultSizes[index]; 60 | if (value >= 0) { 61 | return value; 62 | } 63 | } 64 | 65 | return 1; 66 | } 67 | 68 | function move(sizes: number[], index: number, offset: number, minSizes: number | number[] | undefined): number { 69 | if (!offset || index < 0 || index + 1 >= sizes.length) { 70 | return 0; 71 | } 72 | 73 | const firstMinSize = getMinSize(index, minSizes); 74 | const secondMinSize = getMinSize(index + 1, minSizes); 75 | 76 | const firstSize = sizes[index] + offset; 77 | const secondSize = sizes[index + 1] - offset; 78 | 79 | if (offset < 0 && firstSize < firstMinSize) { 80 | // offset is negative, so missing and pushed are, too 81 | const missing = firstSize - firstMinSize; 82 | const pushed = move(sizes, index - 1, missing, minSizes); 83 | 84 | offset -= missing - pushed; 85 | } else if (offset > 0 && secondSize < secondMinSize) { 86 | const missing = secondMinSize - secondSize; 87 | const pushed = move(sizes, index + 1, missing, minSizes); 88 | 89 | offset -= missing - pushed; 90 | } 91 | 92 | sizes[index] += offset; 93 | sizes[index + 1] -= offset; 94 | 95 | return offset; 96 | } 97 | 98 | const defaultProps = { 99 | split: 'vertical' as const, 100 | className: '', 101 | }; 102 | 103 | function useSplitPaneResize(options: SplitPaneResizeOptions): { 104 | childPanes: { 105 | key: string; 106 | node: React.ReactNode; 107 | ref: React.RefObject; 108 | size: number; 109 | minSize: number; 110 | }[]; 111 | resizeState: ResizeState | null; 112 | handleDragStart: (index: number, pos: ClientPosition) => void; 113 | } { 114 | const { children, split, defaultSizes, minSize: minSizes, onDragStarted, onChange, onDragFinished } = options; 115 | 116 | const [sizes, setSizes] = useState(new Map()); 117 | const paneRefs = useRef(new Map>()); 118 | 119 | const getMovedSizes = useCallback( 120 | (dragState: DragState | null): number[] => { 121 | const collectedSizes = children.map( 122 | (node, index) => 123 | sizes.get(getNodeKey(node, index)) || getDefaultSize(index, defaultSizes), 124 | ); 125 | 126 | if (dragState) { 127 | const { 128 | offset, 129 | extraState: { index }, 130 | } = dragState; 131 | move(collectedSizes, index, offset, minSizes); 132 | } 133 | 134 | return collectedSizes; 135 | }, 136 | [children, defaultSizes, minSizes, sizes], 137 | ); 138 | 139 | const handleDragFinished = useCallback( 140 | (dragState: DragState) => { 141 | const movedSizes = getMovedSizes(dragState); 142 | 143 | setSizes( 144 | new Map( 145 | children.map((node, index): [string, number] => [ 146 | getNodeKey(node, index), 147 | movedSizes[index], 148 | ]), 149 | ), 150 | ); 151 | 152 | if (onDragFinished) { 153 | onDragFinished(movedSizes); 154 | } 155 | }, 156 | [children, getMovedSizes, onDragFinished], 157 | ); 158 | 159 | const [dragState, beginDrag] = useDragState(split, handleDragFinished); 160 | const movedSizes = useMemo(() => getMovedSizes(dragState), [dragState, getMovedSizes]); 161 | const resizeState = dragState ? dragState.extraState : null; 162 | 163 | useEffect(() => { 164 | if (onChange && dragState) { 165 | onChange(movedSizes); 166 | } 167 | }, [dragState, movedSizes, onChange]); 168 | 169 | const childPanes = useMemo(() => { 170 | const prevPaneRefs = paneRefs.current; 171 | paneRefs.current = new Map>(); 172 | 173 | return children.map((node, index) => { 174 | const key = getNodeKey(node, index); 175 | 176 | const ref = prevPaneRefs.get(key) || React.createRef(); 177 | paneRefs.current.set(key, ref); 178 | 179 | const minSize = getMinSize(index, minSizes); 180 | 181 | return { key, node, ref, minSize }; 182 | }); 183 | }, [children, minSizes]); 184 | 185 | const childPanesWithSizes = useMemo( 186 | () => 187 | childPanes.map((child, index) => { 188 | const size = movedSizes[index]; 189 | return { ...child, size }; 190 | }), 191 | [childPanes, movedSizes], 192 | ); 193 | 194 | const handleDragStart = useCallback( 195 | (index: number, pos: ClientPosition): void => { 196 | const sizeAttr = split === 'vertical' ? 'width' : 'height'; 197 | 198 | const clientSizes = new Map( 199 | childPanes.map(({ key, ref }): [string, number] => { 200 | const size = ref.current ? ref.current.getBoundingClientRect()[sizeAttr] : 0; 201 | return [key, size]; 202 | }), 203 | ); 204 | 205 | if (onDragStarted) { 206 | onDragStarted(); 207 | } 208 | 209 | beginDrag(pos, { index }); 210 | setSizes(clientSizes); 211 | }, 212 | [beginDrag, childPanes, onDragStarted, split], 213 | ); 214 | 215 | return { childPanes: childPanesWithSizes, resizeState, handleDragStart }; 216 | } 217 | 218 | export const SplitPane = React.memo((props: SplitPaneProps) => { 219 | const options = { ...defaultProps, ...props }; 220 | const { split, className, resizerClassName } = options; 221 | 222 | const { childPanes, resizeState, handleDragStart } = useSplitPaneResize(options); 223 | 224 | const splitStyleProps: React.CSSProperties = 225 | split === 'vertical' 226 | ? { 227 | left: 0, 228 | right: 0, 229 | flexDirection: 'row', 230 | } 231 | : { 232 | bottom: 0, 233 | top: 0, 234 | flexDirection: 'column', 235 | minHeight: '100%', 236 | width: '100%', 237 | }; 238 | 239 | const style: React.CSSProperties = { 240 | display: 'flex', 241 | flex: 1, 242 | height: '100%', 243 | position: 'absolute', 244 | outline: 'none', 245 | overflow: 'hidden', 246 | ...splitStyleProps, 247 | }; 248 | const classes = ['SplitPane', split, className].join(' '); 249 | 250 | const dragLayerStyle: React.CSSProperties = { 251 | position: 'absolute', 252 | top: 0, 253 | right: 0, 254 | bottom: 0, 255 | left: 0, 256 | }; 257 | const dragLayerClasses = ['DragLayer', split, resizeState ? 'resizing' : '', className].join(' '); 258 | 259 | const entries: React.ReactNode[] = []; 260 | 261 | childPanes.forEach(({ key, node, ref, size, minSize }, index) => { 262 | if (index !== 0) { 263 | const resizing = resizeState && resizeState.index === index - 1; 264 | 265 | entries.push( 266 | , 277 | ); 278 | } 279 | 280 | entries.push( 281 | 289 | {node} 290 | , 291 | ); 292 | }); 293 | 294 | return ( 295 |
296 |
297 | {entries} 298 |
299 | ); 300 | }); 301 | SplitPane.displayName = 'SplitPane'; 302 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@eslint/eslintrc@^1.0.5": 6 | version "1.0.5" 7 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.0.5.tgz#33f1b838dbf1f923bfa517e008362b78ddbbf318" 8 | integrity sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ== 9 | dependencies: 10 | ajv "^6.12.4" 11 | debug "^4.3.2" 12 | espree "^9.2.0" 13 | globals "^13.9.0" 14 | ignore "^4.0.6" 15 | import-fresh "^3.2.1" 16 | js-yaml "^4.1.0" 17 | minimatch "^3.0.4" 18 | strip-json-comments "^3.1.1" 19 | 20 | "@humanwhocodes/config-array@^0.9.2": 21 | version "0.9.3" 22 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.3.tgz#f2564c744b387775b436418491f15fce6601f63e" 23 | integrity sha512-3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ== 24 | dependencies: 25 | "@humanwhocodes/object-schema" "^1.2.1" 26 | debug "^4.1.1" 27 | minimatch "^3.0.4" 28 | 29 | "@humanwhocodes/object-schema@^1.2.1": 30 | version "1.2.1" 31 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 32 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 33 | 34 | "@nodelib/fs.scandir@2.1.5": 35 | version "2.1.5" 36 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 37 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 38 | dependencies: 39 | "@nodelib/fs.stat" "2.0.5" 40 | run-parallel "^1.1.9" 41 | 42 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 43 | version "2.0.5" 44 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 45 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 46 | 47 | "@nodelib/fs.walk@^1.2.3": 48 | version "1.2.8" 49 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 50 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 51 | dependencies: 52 | "@nodelib/fs.scandir" "2.1.5" 53 | fastq "^1.6.0" 54 | 55 | "@types/json-schema@^7.0.9": 56 | version "7.0.9" 57 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" 58 | integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== 59 | 60 | "@types/prop-types@*": 61 | version "15.7.4" 62 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" 63 | integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== 64 | 65 | "@types/react-dom@^17.0.9": 66 | version "17.0.11" 67 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.11.tgz#e1eadc3c5e86bdb5f7684e00274ae228e7bcc466" 68 | integrity sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q== 69 | dependencies: 70 | "@types/react" "*" 71 | 72 | "@types/react@*", "@types/react@^17.0.19": 73 | version "17.0.38" 74 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.38.tgz#f24249fefd89357d5fa71f739a686b8d7c7202bd" 75 | integrity sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ== 76 | dependencies: 77 | "@types/prop-types" "*" 78 | "@types/scheduler" "*" 79 | csstype "^3.0.2" 80 | 81 | "@types/scheduler@*": 82 | version "0.16.2" 83 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 84 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 85 | 86 | "@typescript-eslint/eslint-plugin@^5.10.2": 87 | version "5.10.2" 88 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.2.tgz#f8c1d59fc37bd6d9d11c97267fdfe722c4777152" 89 | integrity sha512-4W/9lLuE+v27O/oe7hXJKjNtBLnZE8tQAFpapdxwSVHqtmIoPB1gph3+ahNwVuNL37BX7YQHyGF9Xv6XCnIX2Q== 90 | dependencies: 91 | "@typescript-eslint/scope-manager" "5.10.2" 92 | "@typescript-eslint/type-utils" "5.10.2" 93 | "@typescript-eslint/utils" "5.10.2" 94 | debug "^4.3.2" 95 | functional-red-black-tree "^1.0.1" 96 | ignore "^5.1.8" 97 | regexpp "^3.2.0" 98 | semver "^7.3.5" 99 | tsutils "^3.21.0" 100 | 101 | "@typescript-eslint/parser@^5.10.2": 102 | version "5.10.2" 103 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.10.2.tgz#b6076d27cc5499ce3f2c625f5ccde946ecb7db9a" 104 | integrity sha512-JaNYGkaQVhP6HNF+lkdOr2cAs2wdSZBoalE22uYWq8IEv/OVH0RksSGydk+sW8cLoSeYmC+OHvRyv2i4AQ7Czg== 105 | dependencies: 106 | "@typescript-eslint/scope-manager" "5.10.2" 107 | "@typescript-eslint/types" "5.10.2" 108 | "@typescript-eslint/typescript-estree" "5.10.2" 109 | debug "^4.3.2" 110 | 111 | "@typescript-eslint/scope-manager@5.10.2": 112 | version "5.10.2" 113 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.2.tgz#92c0bc935ec00f3d8638cdffb3d0e70c9b879639" 114 | integrity sha512-39Tm6f4RoZoVUWBYr3ekS75TYgpr5Y+X0xLZxXqcZNDWZdJdYbKd3q2IR4V9y5NxxiPu/jxJ8XP7EgHiEQtFnw== 115 | dependencies: 116 | "@typescript-eslint/types" "5.10.2" 117 | "@typescript-eslint/visitor-keys" "5.10.2" 118 | 119 | "@typescript-eslint/type-utils@5.10.2": 120 | version "5.10.2" 121 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.10.2.tgz#ad5acdf98a7d2ab030bea81f17da457519101ceb" 122 | integrity sha512-uRKSvw/Ccs5FYEoXW04Z5VfzF2iiZcx8Fu7DGIB7RHozuP0VbKNzP1KfZkHBTM75pCpsWxIthEH1B33dmGBKHw== 123 | dependencies: 124 | "@typescript-eslint/utils" "5.10.2" 125 | debug "^4.3.2" 126 | tsutils "^3.21.0" 127 | 128 | "@typescript-eslint/types@5.10.2": 129 | version "5.10.2" 130 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.2.tgz#604d15d795c4601fffba6ecb4587ff9fdec68ce8" 131 | integrity sha512-Qfp0qk/5j2Rz3p3/WhWgu4S1JtMcPgFLnmAKAW061uXxKSa7VWKZsDXVaMXh2N60CX9h6YLaBoy9PJAfCOjk3w== 132 | 133 | "@typescript-eslint/typescript-estree@5.10.2": 134 | version "5.10.2" 135 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.2.tgz#810906056cd3ddcb35aa333fdbbef3713b0fe4a7" 136 | integrity sha512-WHHw6a9vvZls6JkTgGljwCsMkv8wu8XU8WaYKeYhxhWXH/atZeiMW6uDFPLZOvzNOGmuSMvHtZKd6AuC8PrwKQ== 137 | dependencies: 138 | "@typescript-eslint/types" "5.10.2" 139 | "@typescript-eslint/visitor-keys" "5.10.2" 140 | debug "^4.3.2" 141 | globby "^11.0.4" 142 | is-glob "^4.0.3" 143 | semver "^7.3.5" 144 | tsutils "^3.21.0" 145 | 146 | "@typescript-eslint/utils@5.10.2": 147 | version "5.10.2" 148 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.10.2.tgz#1fcd37547c32c648ab11aea7173ec30060ee87a8" 149 | integrity sha512-vuJaBeig1NnBRkf7q9tgMLREiYD7zsMrsN1DA3wcoMDvr3BTFiIpKjGiYZoKPllfEwN7spUjv7ZqD+JhbVjEPg== 150 | dependencies: 151 | "@types/json-schema" "^7.0.9" 152 | "@typescript-eslint/scope-manager" "5.10.2" 153 | "@typescript-eslint/types" "5.10.2" 154 | "@typescript-eslint/typescript-estree" "5.10.2" 155 | eslint-scope "^5.1.1" 156 | eslint-utils "^3.0.0" 157 | 158 | "@typescript-eslint/visitor-keys@5.10.2": 159 | version "5.10.2" 160 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.2.tgz#fdbf272d8e61c045d865bd6c8b41bea73d222f3d" 161 | integrity sha512-zHIhYGGGrFJvvyfwHk5M08C5B5K4bewkm+rrvNTKk1/S15YHR+SA/QUF8ZWscXSfEaB8Nn2puZj+iHcoxVOD/Q== 162 | dependencies: 163 | "@typescript-eslint/types" "5.10.2" 164 | eslint-visitor-keys "^3.0.0" 165 | 166 | acorn-jsx@^5.3.1: 167 | version "5.3.2" 168 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 169 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 170 | 171 | acorn@^8.7.0: 172 | version "8.7.0" 173 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" 174 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 175 | 176 | ajv@^6.10.0, ajv@^6.12.4: 177 | version "6.12.6" 178 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 179 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 180 | dependencies: 181 | fast-deep-equal "^3.1.1" 182 | fast-json-stable-stringify "^2.0.0" 183 | json-schema-traverse "^0.4.1" 184 | uri-js "^4.2.2" 185 | 186 | ansi-regex@^5.0.1: 187 | version "5.0.1" 188 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 189 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 190 | 191 | ansi-styles@^4.1.0: 192 | version "4.3.0" 193 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 194 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 195 | dependencies: 196 | color-convert "^2.0.1" 197 | 198 | argparse@^2.0.1: 199 | version "2.0.1" 200 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 201 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 202 | 203 | array-includes@^3.1.3, array-includes@^3.1.4: 204 | version "3.1.4" 205 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" 206 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== 207 | dependencies: 208 | call-bind "^1.0.2" 209 | define-properties "^1.1.3" 210 | es-abstract "^1.19.1" 211 | get-intrinsic "^1.1.1" 212 | is-string "^1.0.7" 213 | 214 | array-union@^2.1.0: 215 | version "2.1.0" 216 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 217 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 218 | 219 | array.prototype.flatmap@^1.2.5: 220 | version "1.2.5" 221 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" 222 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== 223 | dependencies: 224 | call-bind "^1.0.0" 225 | define-properties "^1.1.3" 226 | es-abstract "^1.19.0" 227 | 228 | balanced-match@^1.0.0: 229 | version "1.0.2" 230 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 231 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 232 | 233 | brace-expansion@^1.1.7: 234 | version "1.1.11" 235 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 236 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 237 | dependencies: 238 | balanced-match "^1.0.0" 239 | concat-map "0.0.1" 240 | 241 | braces@^3.0.1: 242 | version "3.0.2" 243 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 244 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 245 | dependencies: 246 | fill-range "^7.0.1" 247 | 248 | call-bind@^1.0.0, call-bind@^1.0.2: 249 | version "1.0.2" 250 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 251 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 252 | dependencies: 253 | function-bind "^1.1.1" 254 | get-intrinsic "^1.0.2" 255 | 256 | callsites@^3.0.0: 257 | version "3.1.0" 258 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 259 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 260 | 261 | chalk@^4.0.0: 262 | version "4.1.2" 263 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 264 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 265 | dependencies: 266 | ansi-styles "^4.1.0" 267 | supports-color "^7.1.0" 268 | 269 | color-convert@^2.0.1: 270 | version "2.0.1" 271 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 272 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 273 | dependencies: 274 | color-name "~1.1.4" 275 | 276 | color-name@~1.1.4: 277 | version "1.1.4" 278 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 279 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 280 | 281 | concat-map@0.0.1: 282 | version "0.0.1" 283 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 284 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 285 | 286 | cross-spawn@^7.0.2: 287 | version "7.0.3" 288 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 289 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 290 | dependencies: 291 | path-key "^3.1.0" 292 | shebang-command "^2.0.0" 293 | which "^2.0.1" 294 | 295 | csstype@^3.0.2: 296 | version "3.0.10" 297 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5" 298 | integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA== 299 | 300 | debug@^4.1.1, debug@^4.3.2: 301 | version "4.3.3" 302 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 303 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 304 | dependencies: 305 | ms "2.1.2" 306 | 307 | deep-is@^0.1.3: 308 | version "0.1.4" 309 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 310 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 311 | 312 | define-properties@^1.1.3: 313 | version "1.1.3" 314 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 315 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 316 | dependencies: 317 | object-keys "^1.0.12" 318 | 319 | dir-glob@^3.0.1: 320 | version "3.0.1" 321 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 322 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 323 | dependencies: 324 | path-type "^4.0.0" 325 | 326 | doctrine@^2.1.0: 327 | version "2.1.0" 328 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 329 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 330 | dependencies: 331 | esutils "^2.0.2" 332 | 333 | doctrine@^3.0.0: 334 | version "3.0.0" 335 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 336 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 337 | dependencies: 338 | esutils "^2.0.2" 339 | 340 | es-abstract@^1.19.0, es-abstract@^1.19.1: 341 | version "1.19.1" 342 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" 343 | integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== 344 | dependencies: 345 | call-bind "^1.0.2" 346 | es-to-primitive "^1.2.1" 347 | function-bind "^1.1.1" 348 | get-intrinsic "^1.1.1" 349 | get-symbol-description "^1.0.0" 350 | has "^1.0.3" 351 | has-symbols "^1.0.2" 352 | internal-slot "^1.0.3" 353 | is-callable "^1.2.4" 354 | is-negative-zero "^2.0.1" 355 | is-regex "^1.1.4" 356 | is-shared-array-buffer "^1.0.1" 357 | is-string "^1.0.7" 358 | is-weakref "^1.0.1" 359 | object-inspect "^1.11.0" 360 | object-keys "^1.1.1" 361 | object.assign "^4.1.2" 362 | string.prototype.trimend "^1.0.4" 363 | string.prototype.trimstart "^1.0.4" 364 | unbox-primitive "^1.0.1" 365 | 366 | es-to-primitive@^1.2.1: 367 | version "1.2.1" 368 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 369 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 370 | dependencies: 371 | is-callable "^1.1.4" 372 | is-date-object "^1.0.1" 373 | is-symbol "^1.0.2" 374 | 375 | escape-string-regexp@^4.0.0: 376 | version "4.0.0" 377 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 378 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 379 | 380 | eslint-config-prettier@^8.3.0: 381 | version "8.3.0" 382 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" 383 | integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew== 384 | 385 | eslint-plugin-prettier@^4.0.0: 386 | version "4.0.0" 387 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0" 388 | integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ== 389 | dependencies: 390 | prettier-linter-helpers "^1.0.0" 391 | 392 | eslint-plugin-react-hooks@^4.2.0: 393 | version "4.3.0" 394 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" 395 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== 396 | 397 | eslint-plugin-react@^7.24.0: 398 | version "7.28.0" 399 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz#8f3ff450677571a659ce76efc6d80b6a525adbdf" 400 | integrity sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw== 401 | dependencies: 402 | array-includes "^3.1.4" 403 | array.prototype.flatmap "^1.2.5" 404 | doctrine "^2.1.0" 405 | estraverse "^5.3.0" 406 | jsx-ast-utils "^2.4.1 || ^3.0.0" 407 | minimatch "^3.0.4" 408 | object.entries "^1.1.5" 409 | object.fromentries "^2.0.5" 410 | object.hasown "^1.1.0" 411 | object.values "^1.1.5" 412 | prop-types "^15.7.2" 413 | resolve "^2.0.0-next.3" 414 | semver "^6.3.0" 415 | string.prototype.matchall "^4.0.6" 416 | 417 | eslint-scope@^5.1.1: 418 | version "5.1.1" 419 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 420 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 421 | dependencies: 422 | esrecurse "^4.3.0" 423 | estraverse "^4.1.1" 424 | 425 | eslint-scope@^7.1.0: 426 | version "7.1.0" 427 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.0.tgz#c1f6ea30ac583031f203d65c73e723b01298f153" 428 | integrity sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg== 429 | dependencies: 430 | esrecurse "^4.3.0" 431 | estraverse "^5.2.0" 432 | 433 | eslint-utils@^3.0.0: 434 | version "3.0.0" 435 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 436 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 437 | dependencies: 438 | eslint-visitor-keys "^2.0.0" 439 | 440 | eslint-visitor-keys@^2.0.0: 441 | version "2.1.0" 442 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 443 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 444 | 445 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.1.0, eslint-visitor-keys@^3.2.0: 446 | version "3.2.0" 447 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz#6fbb166a6798ee5991358bc2daa1ba76cc1254a1" 448 | integrity sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ== 449 | 450 | eslint@^8.8.0: 451 | version "8.8.0" 452 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.8.0.tgz#9762b49abad0cb4952539ffdb0a046392e571a2d" 453 | integrity sha512-H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ== 454 | dependencies: 455 | "@eslint/eslintrc" "^1.0.5" 456 | "@humanwhocodes/config-array" "^0.9.2" 457 | ajv "^6.10.0" 458 | chalk "^4.0.0" 459 | cross-spawn "^7.0.2" 460 | debug "^4.3.2" 461 | doctrine "^3.0.0" 462 | escape-string-regexp "^4.0.0" 463 | eslint-scope "^7.1.0" 464 | eslint-utils "^3.0.0" 465 | eslint-visitor-keys "^3.2.0" 466 | espree "^9.3.0" 467 | esquery "^1.4.0" 468 | esutils "^2.0.2" 469 | fast-deep-equal "^3.1.3" 470 | file-entry-cache "^6.0.1" 471 | functional-red-black-tree "^1.0.1" 472 | glob-parent "^6.0.1" 473 | globals "^13.6.0" 474 | ignore "^5.2.0" 475 | import-fresh "^3.0.0" 476 | imurmurhash "^0.1.4" 477 | is-glob "^4.0.0" 478 | js-yaml "^4.1.0" 479 | json-stable-stringify-without-jsonify "^1.0.1" 480 | levn "^0.4.1" 481 | lodash.merge "^4.6.2" 482 | minimatch "^3.0.4" 483 | natural-compare "^1.4.0" 484 | optionator "^0.9.1" 485 | regexpp "^3.2.0" 486 | strip-ansi "^6.0.1" 487 | strip-json-comments "^3.1.0" 488 | text-table "^0.2.0" 489 | v8-compile-cache "^2.0.3" 490 | 491 | espree@^9.2.0, espree@^9.3.0: 492 | version "9.3.0" 493 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.0.tgz#c1240d79183b72aaee6ccfa5a90bc9111df085a8" 494 | integrity sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ== 495 | dependencies: 496 | acorn "^8.7.0" 497 | acorn-jsx "^5.3.1" 498 | eslint-visitor-keys "^3.1.0" 499 | 500 | esquery@^1.4.0: 501 | version "1.4.0" 502 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 503 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 504 | dependencies: 505 | estraverse "^5.1.0" 506 | 507 | esrecurse@^4.3.0: 508 | version "4.3.0" 509 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 510 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 511 | dependencies: 512 | estraverse "^5.2.0" 513 | 514 | estraverse@^4.1.1: 515 | version "4.3.0" 516 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 517 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 518 | 519 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 520 | version "5.3.0" 521 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 522 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 523 | 524 | esutils@^2.0.2: 525 | version "2.0.3" 526 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 527 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 528 | 529 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 530 | version "3.1.3" 531 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 532 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 533 | 534 | fast-diff@^1.1.2: 535 | version "1.2.0" 536 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 537 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 538 | 539 | fast-glob@^3.2.9: 540 | version "3.2.11" 541 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 542 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 543 | dependencies: 544 | "@nodelib/fs.stat" "^2.0.2" 545 | "@nodelib/fs.walk" "^1.2.3" 546 | glob-parent "^5.1.2" 547 | merge2 "^1.3.0" 548 | micromatch "^4.0.4" 549 | 550 | fast-json-stable-stringify@^2.0.0: 551 | version "2.1.0" 552 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 553 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 554 | 555 | fast-levenshtein@^2.0.6: 556 | version "2.0.6" 557 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 558 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 559 | 560 | fastq@^1.6.0: 561 | version "1.13.0" 562 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 563 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 564 | dependencies: 565 | reusify "^1.0.4" 566 | 567 | file-entry-cache@^6.0.1: 568 | version "6.0.1" 569 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 570 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 571 | dependencies: 572 | flat-cache "^3.0.4" 573 | 574 | fill-range@^7.0.1: 575 | version "7.0.1" 576 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 577 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 578 | dependencies: 579 | to-regex-range "^5.0.1" 580 | 581 | flat-cache@^3.0.4: 582 | version "3.0.4" 583 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 584 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 585 | dependencies: 586 | flatted "^3.1.0" 587 | rimraf "^3.0.2" 588 | 589 | flatted@^3.1.0: 590 | version "3.2.5" 591 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 592 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 593 | 594 | fs.realpath@^1.0.0: 595 | version "1.0.0" 596 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 597 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 598 | 599 | function-bind@^1.1.1: 600 | version "1.1.1" 601 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 602 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 603 | 604 | functional-red-black-tree@^1.0.1: 605 | version "1.0.1" 606 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 607 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 608 | 609 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 610 | version "1.1.1" 611 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 612 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 613 | dependencies: 614 | function-bind "^1.1.1" 615 | has "^1.0.3" 616 | has-symbols "^1.0.1" 617 | 618 | get-symbol-description@^1.0.0: 619 | version "1.0.0" 620 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 621 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 622 | dependencies: 623 | call-bind "^1.0.2" 624 | get-intrinsic "^1.1.1" 625 | 626 | glob-parent@^5.1.2: 627 | version "5.1.2" 628 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 629 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 630 | dependencies: 631 | is-glob "^4.0.1" 632 | 633 | glob-parent@^6.0.1: 634 | version "6.0.2" 635 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 636 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 637 | dependencies: 638 | is-glob "^4.0.3" 639 | 640 | glob@^7.1.3: 641 | version "7.2.0" 642 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 643 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 644 | dependencies: 645 | fs.realpath "^1.0.0" 646 | inflight "^1.0.4" 647 | inherits "2" 648 | minimatch "^3.0.4" 649 | once "^1.3.0" 650 | path-is-absolute "^1.0.0" 651 | 652 | globals@^13.6.0, globals@^13.9.0: 653 | version "13.12.0" 654 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e" 655 | integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== 656 | dependencies: 657 | type-fest "^0.20.2" 658 | 659 | globby@^11.0.4: 660 | version "11.1.0" 661 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 662 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 663 | dependencies: 664 | array-union "^2.1.0" 665 | dir-glob "^3.0.1" 666 | fast-glob "^3.2.9" 667 | ignore "^5.2.0" 668 | merge2 "^1.4.1" 669 | slash "^3.0.0" 670 | 671 | has-bigints@^1.0.1: 672 | version "1.0.1" 673 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 674 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 675 | 676 | has-flag@^4.0.0: 677 | version "4.0.0" 678 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 679 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 680 | 681 | has-symbols@^1.0.1, has-symbols@^1.0.2: 682 | version "1.0.2" 683 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 684 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 685 | 686 | has-tostringtag@^1.0.0: 687 | version "1.0.0" 688 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 689 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 690 | dependencies: 691 | has-symbols "^1.0.2" 692 | 693 | has@^1.0.3: 694 | version "1.0.3" 695 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 696 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 697 | dependencies: 698 | function-bind "^1.1.1" 699 | 700 | ignore@^4.0.6: 701 | version "4.0.6" 702 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 703 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 704 | 705 | ignore@^5.1.8, ignore@^5.2.0: 706 | version "5.2.0" 707 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 708 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 709 | 710 | import-fresh@^3.0.0, import-fresh@^3.2.1: 711 | version "3.3.0" 712 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 713 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 714 | dependencies: 715 | parent-module "^1.0.0" 716 | resolve-from "^4.0.0" 717 | 718 | imurmurhash@^0.1.4: 719 | version "0.1.4" 720 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 721 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 722 | 723 | inflight@^1.0.4: 724 | version "1.0.6" 725 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 726 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 727 | dependencies: 728 | once "^1.3.0" 729 | wrappy "1" 730 | 731 | inherits@2: 732 | version "2.0.4" 733 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 734 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 735 | 736 | internal-slot@^1.0.3: 737 | version "1.0.3" 738 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 739 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 740 | dependencies: 741 | get-intrinsic "^1.1.0" 742 | has "^1.0.3" 743 | side-channel "^1.0.4" 744 | 745 | is-bigint@^1.0.1: 746 | version "1.0.4" 747 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 748 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 749 | dependencies: 750 | has-bigints "^1.0.1" 751 | 752 | is-boolean-object@^1.1.0: 753 | version "1.1.2" 754 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 755 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 756 | dependencies: 757 | call-bind "^1.0.2" 758 | has-tostringtag "^1.0.0" 759 | 760 | is-callable@^1.1.4, is-callable@^1.2.4: 761 | version "1.2.4" 762 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 763 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 764 | 765 | is-core-module@^2.2.0: 766 | version "2.8.1" 767 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 768 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 769 | dependencies: 770 | has "^1.0.3" 771 | 772 | is-date-object@^1.0.1: 773 | version "1.0.5" 774 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 775 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 776 | dependencies: 777 | has-tostringtag "^1.0.0" 778 | 779 | is-extglob@^2.1.1: 780 | version "2.1.1" 781 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 782 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 783 | 784 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 785 | version "4.0.3" 786 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 787 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 788 | dependencies: 789 | is-extglob "^2.1.1" 790 | 791 | is-negative-zero@^2.0.1: 792 | version "2.0.2" 793 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 794 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 795 | 796 | is-number-object@^1.0.4: 797 | version "1.0.6" 798 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" 799 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== 800 | dependencies: 801 | has-tostringtag "^1.0.0" 802 | 803 | is-number@^7.0.0: 804 | version "7.0.0" 805 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 806 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 807 | 808 | is-regex@^1.1.4: 809 | version "1.1.4" 810 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 811 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 812 | dependencies: 813 | call-bind "^1.0.2" 814 | has-tostringtag "^1.0.0" 815 | 816 | is-shared-array-buffer@^1.0.1: 817 | version "1.0.1" 818 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" 819 | integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== 820 | 821 | is-string@^1.0.5, is-string@^1.0.7: 822 | version "1.0.7" 823 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 824 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 825 | dependencies: 826 | has-tostringtag "^1.0.0" 827 | 828 | is-symbol@^1.0.2, is-symbol@^1.0.3: 829 | version "1.0.4" 830 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 831 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 832 | dependencies: 833 | has-symbols "^1.0.2" 834 | 835 | is-weakref@^1.0.1: 836 | version "1.0.2" 837 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 838 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 839 | dependencies: 840 | call-bind "^1.0.2" 841 | 842 | isexe@^2.0.0: 843 | version "2.0.0" 844 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 845 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 846 | 847 | "js-tokens@^3.0.0 || ^4.0.0": 848 | version "4.0.0" 849 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 850 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 851 | 852 | js-yaml@^4.1.0: 853 | version "4.1.0" 854 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 855 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 856 | dependencies: 857 | argparse "^2.0.1" 858 | 859 | json-schema-traverse@^0.4.1: 860 | version "0.4.1" 861 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 862 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 863 | 864 | json-stable-stringify-without-jsonify@^1.0.1: 865 | version "1.0.1" 866 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 867 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 868 | 869 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 870 | version "3.2.1" 871 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b" 872 | integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA== 873 | dependencies: 874 | array-includes "^3.1.3" 875 | object.assign "^4.1.2" 876 | 877 | levn@^0.4.1: 878 | version "0.4.1" 879 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 880 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 881 | dependencies: 882 | prelude-ls "^1.2.1" 883 | type-check "~0.4.0" 884 | 885 | lodash.merge@^4.6.2: 886 | version "4.6.2" 887 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 888 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 889 | 890 | loose-envify@^1.1.0, loose-envify@^1.4.0: 891 | version "1.4.0" 892 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 893 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 894 | dependencies: 895 | js-tokens "^3.0.0 || ^4.0.0" 896 | 897 | lru-cache@^6.0.0: 898 | version "6.0.0" 899 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 900 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 901 | dependencies: 902 | yallist "^4.0.0" 903 | 904 | merge2@^1.3.0, merge2@^1.4.1: 905 | version "1.4.1" 906 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 907 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 908 | 909 | micromatch@^4.0.4: 910 | version "4.0.4" 911 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 912 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 913 | dependencies: 914 | braces "^3.0.1" 915 | picomatch "^2.2.3" 916 | 917 | minimatch@^3.0.4: 918 | version "3.0.4" 919 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 920 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 921 | dependencies: 922 | brace-expansion "^1.1.7" 923 | 924 | ms@2.1.2: 925 | version "2.1.2" 926 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 927 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 928 | 929 | natural-compare@^1.4.0: 930 | version "1.4.0" 931 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 932 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 933 | 934 | object-assign@^4.1.1: 935 | version "4.1.1" 936 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 937 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 938 | 939 | object-inspect@^1.11.0, object-inspect@^1.9.0: 940 | version "1.12.0" 941 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" 942 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== 943 | 944 | object-keys@^1.0.12, object-keys@^1.1.1: 945 | version "1.1.1" 946 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 947 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 948 | 949 | object.assign@^4.1.2: 950 | version "4.1.2" 951 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 952 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 953 | dependencies: 954 | call-bind "^1.0.0" 955 | define-properties "^1.1.3" 956 | has-symbols "^1.0.1" 957 | object-keys "^1.1.1" 958 | 959 | object.entries@^1.1.5: 960 | version "1.1.5" 961 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 962 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 963 | dependencies: 964 | call-bind "^1.0.2" 965 | define-properties "^1.1.3" 966 | es-abstract "^1.19.1" 967 | 968 | object.fromentries@^2.0.5: 969 | version "2.0.5" 970 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 971 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 972 | dependencies: 973 | call-bind "^1.0.2" 974 | define-properties "^1.1.3" 975 | es-abstract "^1.19.1" 976 | 977 | object.hasown@^1.1.0: 978 | version "1.1.0" 979 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" 980 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== 981 | dependencies: 982 | define-properties "^1.1.3" 983 | es-abstract "^1.19.1" 984 | 985 | object.values@^1.1.5: 986 | version "1.1.5" 987 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 988 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 989 | dependencies: 990 | call-bind "^1.0.2" 991 | define-properties "^1.1.3" 992 | es-abstract "^1.19.1" 993 | 994 | once@^1.3.0: 995 | version "1.4.0" 996 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 997 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 998 | dependencies: 999 | wrappy "1" 1000 | 1001 | optionator@^0.9.1: 1002 | version "0.9.1" 1003 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1004 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1005 | dependencies: 1006 | deep-is "^0.1.3" 1007 | fast-levenshtein "^2.0.6" 1008 | levn "^0.4.1" 1009 | prelude-ls "^1.2.1" 1010 | type-check "^0.4.0" 1011 | word-wrap "^1.2.3" 1012 | 1013 | parent-module@^1.0.0: 1014 | version "1.0.1" 1015 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1016 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1017 | dependencies: 1018 | callsites "^3.0.0" 1019 | 1020 | path-is-absolute@^1.0.0: 1021 | version "1.0.1" 1022 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1023 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1024 | 1025 | path-key@^3.1.0: 1026 | version "3.1.1" 1027 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1028 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1029 | 1030 | path-parse@^1.0.6: 1031 | version "1.0.7" 1032 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1033 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1034 | 1035 | path-type@^4.0.0: 1036 | version "4.0.0" 1037 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1038 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1039 | 1040 | picomatch@^2.2.3: 1041 | version "2.3.1" 1042 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1043 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1044 | 1045 | prelude-ls@^1.2.1: 1046 | version "1.2.1" 1047 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1048 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1049 | 1050 | prettier-linter-helpers@^1.0.0: 1051 | version "1.0.0" 1052 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1053 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1054 | dependencies: 1055 | fast-diff "^1.1.2" 1056 | 1057 | prettier@^2.3.2: 1058 | version "2.5.1" 1059 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.5.1.tgz#fff75fa9d519c54cf0fce328c1017d94546bc56a" 1060 | integrity sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg== 1061 | 1062 | prop-types@^15.7.2: 1063 | version "15.8.1" 1064 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1065 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1066 | dependencies: 1067 | loose-envify "^1.4.0" 1068 | object-assign "^4.1.1" 1069 | react-is "^16.13.1" 1070 | 1071 | punycode@^2.1.0: 1072 | version "2.1.1" 1073 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1074 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1075 | 1076 | queue-microtask@^1.2.2: 1077 | version "1.2.3" 1078 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1079 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1080 | 1081 | react-is@^16.13.1: 1082 | version "16.13.1" 1083 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1084 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1085 | 1086 | react@^17.0.2: 1087 | version "17.0.2" 1088 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 1089 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1090 | dependencies: 1091 | loose-envify "^1.1.0" 1092 | object-assign "^4.1.1" 1093 | 1094 | regexp.prototype.flags@^1.3.1: 1095 | version "1.4.1" 1096 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307" 1097 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ== 1098 | dependencies: 1099 | call-bind "^1.0.2" 1100 | define-properties "^1.1.3" 1101 | 1102 | regexpp@^3.2.0: 1103 | version "3.2.0" 1104 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1105 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1106 | 1107 | resolve-from@^4.0.0: 1108 | version "4.0.0" 1109 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1110 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1111 | 1112 | resolve@^2.0.0-next.3: 1113 | version "2.0.0-next.3" 1114 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" 1115 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== 1116 | dependencies: 1117 | is-core-module "^2.2.0" 1118 | path-parse "^1.0.6" 1119 | 1120 | reusify@^1.0.4: 1121 | version "1.0.4" 1122 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1123 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1124 | 1125 | rimraf@^3.0.2: 1126 | version "3.0.2" 1127 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1128 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1129 | dependencies: 1130 | glob "^7.1.3" 1131 | 1132 | run-parallel@^1.1.9: 1133 | version "1.2.0" 1134 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1135 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1136 | dependencies: 1137 | queue-microtask "^1.2.2" 1138 | 1139 | semver@^6.3.0: 1140 | version "6.3.0" 1141 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1142 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1143 | 1144 | semver@^7.3.5: 1145 | version "7.3.5" 1146 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1147 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1148 | dependencies: 1149 | lru-cache "^6.0.0" 1150 | 1151 | shebang-command@^2.0.0: 1152 | version "2.0.0" 1153 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1154 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1155 | dependencies: 1156 | shebang-regex "^3.0.0" 1157 | 1158 | shebang-regex@^3.0.0: 1159 | version "3.0.0" 1160 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1161 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1162 | 1163 | side-channel@^1.0.4: 1164 | version "1.0.4" 1165 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1166 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1167 | dependencies: 1168 | call-bind "^1.0.0" 1169 | get-intrinsic "^1.0.2" 1170 | object-inspect "^1.9.0" 1171 | 1172 | slash@^3.0.0: 1173 | version "3.0.0" 1174 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1175 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1176 | 1177 | string.prototype.matchall@^4.0.6: 1178 | version "4.0.6" 1179 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa" 1180 | integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg== 1181 | dependencies: 1182 | call-bind "^1.0.2" 1183 | define-properties "^1.1.3" 1184 | es-abstract "^1.19.1" 1185 | get-intrinsic "^1.1.1" 1186 | has-symbols "^1.0.2" 1187 | internal-slot "^1.0.3" 1188 | regexp.prototype.flags "^1.3.1" 1189 | side-channel "^1.0.4" 1190 | 1191 | string.prototype.trimend@^1.0.4: 1192 | version "1.0.4" 1193 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 1194 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 1195 | dependencies: 1196 | call-bind "^1.0.2" 1197 | define-properties "^1.1.3" 1198 | 1199 | string.prototype.trimstart@^1.0.4: 1200 | version "1.0.4" 1201 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 1202 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 1203 | dependencies: 1204 | call-bind "^1.0.2" 1205 | define-properties "^1.1.3" 1206 | 1207 | strip-ansi@^6.0.1: 1208 | version "6.0.1" 1209 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1210 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1211 | dependencies: 1212 | ansi-regex "^5.0.1" 1213 | 1214 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1215 | version "3.1.1" 1216 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1217 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1218 | 1219 | supports-color@^7.1.0: 1220 | version "7.2.0" 1221 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1222 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1223 | dependencies: 1224 | has-flag "^4.0.0" 1225 | 1226 | text-table@^0.2.0: 1227 | version "0.2.0" 1228 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1229 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1230 | 1231 | to-regex-range@^5.0.1: 1232 | version "5.0.1" 1233 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1234 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1235 | dependencies: 1236 | is-number "^7.0.0" 1237 | 1238 | tslib@^1.8.1: 1239 | version "1.14.1" 1240 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1241 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1242 | 1243 | tsutils@^3.21.0: 1244 | version "3.21.0" 1245 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1246 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1247 | dependencies: 1248 | tslib "^1.8.1" 1249 | 1250 | type-check@^0.4.0, type-check@~0.4.0: 1251 | version "0.4.0" 1252 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1253 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1254 | dependencies: 1255 | prelude-ls "^1.2.1" 1256 | 1257 | type-fest@^0.20.2: 1258 | version "0.20.2" 1259 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1260 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1261 | 1262 | typescript@^4.3.5: 1263 | version "4.5.5" 1264 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3" 1265 | integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA== 1266 | 1267 | unbox-primitive@^1.0.1: 1268 | version "1.0.1" 1269 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 1270 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 1271 | dependencies: 1272 | function-bind "^1.1.1" 1273 | has-bigints "^1.0.1" 1274 | has-symbols "^1.0.2" 1275 | which-boxed-primitive "^1.0.2" 1276 | 1277 | uri-js@^4.2.2: 1278 | version "4.4.1" 1279 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1280 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1281 | dependencies: 1282 | punycode "^2.1.0" 1283 | 1284 | v8-compile-cache@^2.0.3: 1285 | version "2.3.0" 1286 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 1287 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 1288 | 1289 | which-boxed-primitive@^1.0.2: 1290 | version "1.0.2" 1291 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1292 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1293 | dependencies: 1294 | is-bigint "^1.0.1" 1295 | is-boolean-object "^1.1.0" 1296 | is-number-object "^1.0.4" 1297 | is-string "^1.0.5" 1298 | is-symbol "^1.0.3" 1299 | 1300 | which@^2.0.1: 1301 | version "2.0.2" 1302 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1303 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1304 | dependencies: 1305 | isexe "^2.0.0" 1306 | 1307 | word-wrap@^1.2.3: 1308 | version "1.2.3" 1309 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1310 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1311 | 1312 | wrappy@1: 1313 | version "1.0.2" 1314 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1315 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1316 | 1317 | yallist@^4.0.0: 1318 | version "4.0.0" 1319 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1320 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1321 | --------------------------------------------------------------------------------