├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── packages ├── component │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ReactDocumentPictureInPicture.tsx │ │ ├── globals.d.ts │ │ └── index.tsx │ └── tsconfig.json └── examples │ ├── dist │ ├── index.0fef4f03.css │ ├── index.0fef4f03.css.map │ ├── index.46f76c42.js │ ├── index.46f76c42.js.map │ └── index.html │ ├── package.json │ ├── src │ ├── App.tsx │ ├── CodeSnippet │ │ └── index.tsx │ ├── EventsExampleSection │ │ └── index.tsx │ ├── ShareStylesExampleSection │ │ └── index.tsx │ ├── SizeExampleSection │ │ └── index.tsx │ ├── UnsupportedExampleSection │ │ └── index.tsx │ ├── UsingRefExampleSection │ │ └── index.tsx │ ├── index.html │ ├── index.tsx │ └── style.scss │ └── tsconfig.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | !packages/examples/dist 4 | build 5 | .parcel-cache -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powerHeader.autoInsert.enable": false, 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | You're an adult. Write good code, be respectable, thanks! 6 | 7 | ## Scope 8 | 9 | This Code of Conduct applies within all community spaces, and also applies when 10 | an individual is officially representing the community in public spaces. 11 | Examples of representing our community include using an official e-mail address, 12 | posting via an official social media account, or acting as an appointed 13 | representative at an online or offline event. 14 | 15 | ## Attribution 16 | 17 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 18 | version 2.0, available at 19 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 20 | 21 | ## Have questions 22 | 23 | Send an email to [developer@martinshaw.co](mailto:developer@martinshaw.co) 24 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Breaking Changes 2 | 3 | Any good ideas which change the current functionality and/or the component's exposed API (props, ref, returned nodes), may be reserved for a future major version. 4 | 5 | ## Other Contributions 6 | 7 | I welcome all contributions which improve the functionality and stability of this open source package. 8 | 9 | Please ensure that your changes are consistently formatted and do not introduce any new dependencies. 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-document-picture-in-picture 2 | 3 | Easily and quickly use Chrome's new experimental Document Picture-in-Picture API as a zero-dependency React component. 4 | 5 | ## Installation 6 | 7 | ```bash 8 | npm install react-document-picture-in-picture 9 | ``` 10 | 11 | Installs the [`component`](https://github.com/martinshaw/react-document-picture-in-picture/tree/master/packages/component) package from this monorepo project. 12 | 13 | ## Support 14 | 15 | If you find this package or any of my other open-source packages useful for your projects, please send me a dollar, quid or dinar to help me continue to maintain and develop them. 16 | 17 | [Buy me a coffee](https://www.buymeacoffee.com/lfbehjxudv) 18 | 19 | ## Usage 20 | 21 | ```tsx 22 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 23 | 24 | // Inside your React component ... 25 | 28 |
29 | Is {isOpen ? 'Open' : 'Closed'} 30 | 31 | 32 | 33 |
34 | } 35 | onOpen={() => console.log('Opened')} 36 | onClose={() => console.log('Closed')} 37 | onResize={(w, h) => console.log('Resized to ' + w + 'x' + h)} 38 | > 39 | This text should be displayed in a Document Picture in Picture in the bottom right of the original window 40 |
41 | 42 | ``` 43 | 44 | There are at least three useful examples demonstrating how to use event props, the ref prop and size props in the [`examples`](https://github.com/martinshaw/react-document-picture-in-picture/tree/master/packages/examples) package of this monorepo. 45 | 46 | To quickly take a look at the examples, click here [https://martinshaw.github.io/react-document-picture-in-picture/packages/examples/dist/](https://martinshaw.github.io/react-document-picture-in-picture/packages/examples/dist/). 47 | 48 | Or you can build the examples site yourself: 49 | 50 | 1. Clone the repository 51 | 52 | 2. Install PNPM 53 | 54 | 3. Finally, run the following commands: 55 | 56 | ```bash 57 | pnpm install 58 | pnpm run --filter react-document-picture-in-picture build 59 | pnpm run --filter examples start 60 | ``` 61 | 62 | The examples will be available at `https://localhost:1234/` in your browser. 63 | 64 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | 16 | 17 | | Version | Supported | 18 | | ------- | ------------------ | 19 | | 1.1.x | :white_check_mark: | 20 | | 1.0.x | :x: | 21 | 22 | ## Reporting a Vulnerability 23 | 24 | Use this section to tell people how to report a vulnerability. 25 | 26 | Tell them where to go, how often they can expect to get an update on a 27 | reported vulnerability, what to expect if the vulnerability is accepted or 28 | declined, etc. 29 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-document-picture-in-picture", 3 | "version": "1.2.2", 4 | "private": true, 5 | "description": "Feature-packed and optimised React component for Chrome's new Document Picture-in-Picture API", 6 | "main": "index.js", 7 | "scripts": { 8 | "component:build": "pnpm run --filter react-document-picture-in-picture build", 9 | "component:publish": "pnpm --filter react-document-picture-in-picture publish", 10 | "examples:start": "pnpm run --filter examples start", 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "keywords": [ 14 | "react", 15 | "picture-in-picture", 16 | "pip", 17 | "document-picture-in-picture", 18 | "chrome", 19 | "experimental", 20 | "web" 21 | ], 22 | "author": "Martin Shaw ", 23 | "license": "GPL-3.0-only", 24 | "devDependencies": { 25 | "@parcel/transformer-sass": "2.11.0", 26 | "process": "^0.11.10" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /packages/component/README.md: -------------------------------------------------------------------------------- 1 | # react-document-picture-in-picture 2 | 3 | Easily and quickly use Chrome's new experimental Document Picture-in-Picture API as a zero-dependency React component. 4 | 5 | ## Installation 6 | 7 | ```bash 8 | npm install react-document-picture-in-picture 9 | ``` 10 | 11 | Installs the [`component`](https://github.com/martinshaw/react-document-picture-in-picture/tree/master/packages/component) package from this monorepo project. 12 | 13 | ## Support 14 | 15 | If you find this package or any of my other open-source packages useful for your projects, please send me a dollar, quid or dinar to help me continue to maintain and develop them. 16 | 17 | [Buy me a coffee](https://www.buymeacoffee.com/lfbehjxudv) 18 | 19 | ## Usage 20 | 21 | ```tsx 22 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 23 | 24 | // Inside your React component ... 25 | 28 |
29 | Is {isOpen ? 'Open' : 'Closed'} 30 | 31 | 32 | 33 |
34 | } 35 | onOpen={() => console.log('Opened')} 36 | onClose={() => console.log('Closed')} 37 | onResize={(w, h) => console.log('Resized to ' + w + 'x' + h)} 38 | > 39 | This text should be displayed in a Document Picture in Picture in the bottom right of the original window 40 |
41 | 42 | ``` 43 | 44 | There are at least three useful examples demonstrating how to use event props, the ref prop and size props in the [`examples`](https://github.com/martinshaw/react-document-picture-in-picture/tree/master/packages/examples) package of this monorepo. 45 | 46 | To quickly take a look at the examples, click here [https://martinshaw.github.io/react-document-picture-in-picture/packages/examples/dist/](https://martinshaw.github.io/react-document-picture-in-picture/packages/examples/dist/). 47 | 48 | Or you can build the examples site yourself: 49 | 50 | 1. Clone the repository 51 | 52 | 2. Install PNPM 53 | 54 | 3. Finally, run the following commands: 55 | 56 | ```bash 57 | pnpm install 58 | pnpm run --filter react-document-picture-in-picture build 59 | pnpm run --filter examples start 60 | ``` 61 | 62 | The examples will be available at `https://localhost:1234/` in your browser. 63 | 64 | -------------------------------------------------------------------------------- /packages/component/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-document-picture-in-picture", 3 | "version": "1.2.2", 4 | "description": "Feature-packed and optimised React component for Chrome's new Document Picture-in-Picture API", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "scripts": { 8 | "build": "rm -rf dist && tsc", 9 | "prepare": "pnpm run build", 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "keywords": [ 13 | "react", 14 | "picture-in-picture", 15 | "pip", 16 | "document-picture-in-picture", 17 | "chrome", 18 | "experimental", 19 | "web" 20 | ], 21 | "author": "Martin Shaw ", 22 | "license": "GPL-3.0-only", 23 | "devDependencies": { 24 | "@types/react": "^18.2.56", 25 | "@types/react-dom": "^18.2.19", 26 | "react": "^18.2.0", 27 | "react-dom": "^18.2.0", 28 | "typescript": "^5.3.3" 29 | }, 30 | "peerDependencies": { 31 | "react": "^18.2.0", 32 | "react-dom": "^18.2.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /packages/component/src/ReactDocumentPictureInPicture.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { ReactNode, useRef, useState, useCallback, forwardRef, useEffect, useImperativeHandle, useMemo } from "react"; 4 | 5 | /** 6 | * If you wish, you can interact with the window, its document's DOM, and convenience 7 | * methods imperatively using the `ref` prop. 8 | * 9 | * Due to Chrome's current security policy regarding the Document Picture in Picture 10 | * feature, you cannot open a new window programmatically. 11 | * 12 | * You should instead use the `children` prop to render a button or other element 13 | * which calls the `open` method on user interaction. 14 | */ 15 | export type ReactDocumentPictureInPictureForwardRefType = { 16 | window: () => Window | undefined; 17 | isOpen: boolean; 18 | close: () => void; 19 | }; 20 | 21 | export enum FeatureUnavailableReasonEnum { 22 | USING_UNSECURE_PROTOCOL = "USING_UNSECURE_PROTOCOL", 23 | API_NOT_SUPPORTED = "API_NOT_SUPPORTED", 24 | }; 25 | 26 | export type ReactDocumentPictureInPicturePropsType = { 27 | width?: string | number; 28 | height?: string | number; 29 | shareStyles?: boolean; 30 | onOpen?: () => void; 31 | onClose?: () => void; 32 | onResize?: (width: number, height: number) => void; 33 | featureUnavailableRenderer?: ReactNode | ((reason: FeatureUnavailableReasonEnum) => ReactNode); 34 | buttonRenderer?: ReactNode | ((props: { open: () => void, close: () => void, toggle: () => void, isOpen: boolean }) => ReactNode); 35 | children?: ReactNode; 36 | }; 37 | 38 | const ReactDocumentPictureInPicture = forwardRef< 39 | ReactDocumentPictureInPictureForwardRefType, 40 | ReactDocumentPictureInPicturePropsType 41 | >((props, ref) => { 42 | const contentRef = useRef(); 43 | const pipWindow = useRef(); 44 | 45 | const [isOpen, setIsOpen] = useState(false); 46 | 47 | const absoluteDimensions = useMemo(() => { 48 | let absoluteWidth: number = 500; 49 | let absoluteHeight: number = 400; 50 | 51 | if (typeof props.width === "number") absoluteWidth = props.width; 52 | else if (typeof props.width === "string") { 53 | if (props.width.endsWith('px')) absoluteWidth = parseInt(props.width); 54 | else if (props.width.endsWith('%')) absoluteWidth = window.innerWidth * (parseInt(props.width) / 100) 55 | } 56 | 57 | if (typeof props.height === "number") absoluteHeight = props.height; 58 | else if (typeof props.height === "string") { 59 | if (props.height.endsWith('px')) absoluteHeight = parseInt(props.height); 60 | else if (props.height.endsWith('%')) absoluteHeight = window.innerHeight * (parseInt(props.height) / 100) 61 | } 62 | 63 | return { width: absoluteWidth, height: absoluteHeight }; 64 | }, [props.width, props.height]); 65 | 66 | const close = useCallback(() => { 67 | if (pipWindow.current == null) return; 68 | 69 | pipWindow.current.close(); 70 | 71 | setIsOpen(false) 72 | 73 | if (props.onClose) props.onClose(); 74 | }, [contentRef, pipWindow, setIsOpen]); 75 | 76 | const open = useCallback(async () => { 77 | if (contentRef.current == null) return; 78 | 79 | const contentElement = contentRef.current; 80 | 81 | pipWindow.current = await window.documentPictureInPicture.requestWindow({ ...absoluteDimensions }); 82 | 83 | if (props.shareStyles === true) { 84 | [...document.styleSheets].forEach((styleSheet) => { 85 | try { 86 | const cssRules = [...styleSheet.cssRules].map((rule) => rule.cssText).join(''); 87 | const style = document.createElement('style'); 88 | 89 | style.textContent = cssRules; 90 | pipWindow.current.document.head.appendChild(style); 91 | } catch (e) { 92 | const link = document.createElement('link'); 93 | 94 | link.rel = 'stylesheet'; 95 | link.type = styleSheet.type; 96 | if (styleSheet.media.length > 0) { 97 | link.media = styleSheet.media.mediaText; 98 | } 99 | link.href = styleSheet.href; 100 | pipWindow.current.document.head.appendChild(link); 101 | } 102 | }); 103 | } 104 | 105 | pipWindow.current.document.body.append(contentElement); 106 | 107 | pipWindow.current.addEventListener('pagehide', () => close()); 108 | pipWindow.current.addEventListener('resize', (event) => { 109 | if (props.onResize) props.onResize( 110 | (event.target as Window).innerWidth, 111 | (event.target as Window).innerHeight 112 | ); 113 | }); 114 | 115 | setIsOpen(true); 116 | 117 | if (props.onOpen) props.onOpen(); 118 | }, [contentRef, pipWindow, setIsOpen, close, absoluteDimensions, props.shareStyles]); 119 | 120 | const toggle = useCallback(() => isOpen ? close() : open(), [isOpen]); 121 | 122 | useImperativeHandle(ref, () => ({ 123 | window: () => pipWindow.current, 124 | isOpen, 125 | close, 126 | }), [ 127 | pipWindow, 128 | isOpen, 129 | close, 130 | ]); 131 | 132 | 133 | let featureUnavailableReason: FeatureUnavailableReasonEnum | null = (() => { 134 | const isUsingSecureProtocol = window.location.protocol === 'https:'; 135 | if (isUsingSecureProtocol === false) return FeatureUnavailableReasonEnum.USING_UNSECURE_PROTOCOL; 136 | 137 | const featureIsAvailable = 'documentPictureInPicture' in window; 138 | if (featureIsAvailable === false) return FeatureUnavailableReasonEnum.API_NOT_SUPPORTED; 139 | 140 | return null; 141 | })(); 142 | 143 | if (featureUnavailableReason != null && props.featureUnavailableRenderer == null) return; 144 | 145 | if (featureUnavailableReason != null) { 146 | const featureUnavailableRenderer: ReactNode = typeof props.featureUnavailableRenderer === "function" ? props.featureUnavailableRenderer(featureUnavailableReason) : props.featureUnavailableRenderer; 147 | return featureUnavailableRenderer; 148 | } 149 | 150 | const buttonRenderer: ReactNode = typeof props.buttonRenderer === "function" ? props.buttonRenderer({ open, close, toggle, isOpen }) : props.buttonRenderer; 151 | 152 | return ( 153 |
154 | {buttonRenderer} 155 |
160 | {props.children} 161 |
162 |
163 | ); 164 | }) 165 | 166 | export default ReactDocumentPictureInPicture; -------------------------------------------------------------------------------- /packages/component/src/globals.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | documentPictureInPicture: { 3 | requestWindow: (options?: { 4 | width: number; 5 | height: number; 6 | }) => Promise; 7 | }; 8 | } 9 | -------------------------------------------------------------------------------- /packages/component/src/index.tsx: -------------------------------------------------------------------------------- 1 | import ReactDocumentPictureInPicture, 2 | { 3 | ReactDocumentPictureInPicturePropsType, 4 | ReactDocumentPictureInPictureForwardRefType 5 | } from './ReactDocumentPictureInPicture'; 6 | 7 | export default ReactDocumentPictureInPicture; 8 | export { ReactDocumentPictureInPicturePropsType, ReactDocumentPictureInPictureForwardRefType }; -------------------------------------------------------------------------------- /packages/component/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react-jsx", 4 | "allowJs": true, 5 | "declaration": true, 6 | "esModuleInterop": true, 7 | "allowSyntheticDefaultImports": true, 8 | "module": "commonjs", 9 | "outDir": "./dist", 10 | "target": "es2016", 11 | "lib": ["dom", "dom.iterable", "es2016"] 12 | }, 13 | "include": ["./src/**/*"], 14 | "exclude": ["dist", "node_modules", "**/*.spec.ts"] 15 | } 16 | -------------------------------------------------------------------------------- /packages/examples/dist/index.0fef4f03.css: -------------------------------------------------------------------------------- 1 | html,body{color:#cbd5e1;-webkit-user-select:none;user-select:none;background-color:#020617;width:100%;height:100%;margin:0;padding:0;font-family:Arial,sans-serif}nav{justify-content:space-between;padding:10px 30px}nav>div:first-child,nav>div:last-child{min-width:400px}nav>div:last-child{justify-content:flex-end}nav,nav div{flex-direction:row;align-items:center;gap:30px;display:flex}nav ul{flex-direction:row;gap:30px;padding:0;list-style:none;display:flex}.example-section{flex-direction:column;justify-content:center;align-items:center;gap:1rem;height:calc(100vh - 70px);font-family:sans-serif;display:flex}.code-snippet{zoom:.8;-webkit-user-select:text;user-select:text;position:relative}.code-snippet>button{color:#cbd5e1;cursor:pointer;background-color:#020617;border:none;border-radius:5px;padding:5px 10px;transition:all .3s;position:absolute;top:18px;right:10px}.code-snippet>button:hover{background-color:#1e293b}.code-snippet,.code-snippet>*{border-radius:5px}.arrow-divider{padding:20px}.subtle-text{color:#64748b;text-align:center}.button{color:#cbd5e1;cursor:pointer;background-color:#1e293b;border:none;border-radius:5px;padding:10px 15px;font-size:16px;text-decoration:none;transition:all .3s}.button:hover{color:#f1f5f9;background-color:#1e293b}.button-bar{flex-direction:row;justify-content:center;align-items:center;gap:20px;display:flex}.button-bar b{font-size:14px} 2 | /*# sourceMappingURL=index.0fef4f03.css.map */ 3 | -------------------------------------------------------------------------------- /packages/examples/dist/index.0fef4f03.css.map: -------------------------------------------------------------------------------- 1 | {"mappings":"ACEA,kKAYA,oDAIE,uDAKA,4CAIA,wEAQA,0EAaF,wJAUA,kFAKE,mLAYE,oDAKF,gDAMF,4BAIA,6CAKA,qKAYE,qDAMF,+FAOE","sources":["index.0fef4f03.css","packages/examples/src/style.scss","packages/examples/node_modules/tailwind-colors-scss/src/variables.scss"],"sourcesContent":["html, body {\n color: #cbd5e1;\n -webkit-user-select: none;\n user-select: none;\n background-color: #020617;\n width: 100%;\n height: 100%;\n margin: 0;\n padding: 0;\n font-family: Arial, sans-serif;\n}\n\nnav {\n justify-content: space-between;\n padding: 10px 30px;\n}\n\nnav > div:first-child, nav > div:last-child {\n min-width: 400px;\n}\n\nnav > div:last-child {\n justify-content: flex-end;\n}\n\nnav, nav div {\n flex-direction: row;\n align-items: center;\n gap: 30px;\n display: flex;\n}\n\nnav ul {\n flex-direction: row;\n gap: 30px;\n padding: 0;\n list-style: none;\n display: flex;\n}\n\n.example-section {\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 1rem;\n height: calc(100vh - 70px);\n font-family: sans-serif;\n display: flex;\n}\n\n.code-snippet {\n zoom: .8;\n -webkit-user-select: text;\n user-select: text;\n position: relative;\n}\n\n.code-snippet > button {\n color: #cbd5e1;\n cursor: pointer;\n background-color: #020617;\n border: none;\n border-radius: 5px;\n padding: 5px 10px;\n transition: all .3s;\n position: absolute;\n top: 18px;\n right: 10px;\n}\n\n.code-snippet > button:hover {\n background-color: #1e293b;\n}\n\n.code-snippet, .code-snippet > * {\n border-radius: 5px;\n}\n\n.arrow-divider {\n padding: 20px;\n}\n\n.subtle-text {\n color: #64748b;\n text-align: center;\n}\n\n.button {\n color: #cbd5e1;\n cursor: pointer;\n background-color: #1e293b;\n border: none;\n border-radius: 5px;\n padding: 10px 15px;\n font-size: 16px;\n text-decoration: none;\n transition: all .3s;\n}\n\n.button:hover {\n color: #f1f5f9;\n background-color: #1e293b;\n}\n\n.button-bar {\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 20px;\n display: flex;\n}\n\n.button-bar b {\n font-size: 14px;\n}\n\n/*# sourceMappingURL=index.0fef4f03.css.map */\n","@import \"../node_modules/tailwind-colors-scss/src/variables.scss\";\n\nhtml,\nbody {\n margin: 0;\n padding: 0;\n width: 100%;\n height: 100%;\n font-family: Arial, sans-serif;\n background-color: $tw-slate-950;\n color: $tw-slate-300;\n user-select: none;\n}\n\nnav {\n justify-content: space-between;\n padding: 10px 30px;\n\n > div:first-child,\n > div:last-child {\n min-width: 400px;\n }\n\n > div:last-child {\n justify-content: flex-end;\n }\n\n &,\n & div {\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: 30px;\n }\n\n ul {\n display: flex;\n flex-direction: row;\n gap: 30px;\n list-style: none;\n padding: 0;\n\n > li > a {\n //\n }\n }\n}\n\n.example-section {\n font-family: sans-serif;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n height: calc(100vh - 70px);\n gap: 1rem;\n}\n\n.code-snippet {\n zoom: 0.8;\n user-select: text;\n position: relative;\n\n > button {\n position: absolute;\n top: 18px;\n right: 10px;\n background-color: $tw-slate-950;\n color: $tw-slate-300;\n border: none;\n padding: 5px 10px;\n cursor: pointer;\n border-radius: 5px;\n transition: all 0.3s;\n\n &:hover {\n background-color: $tw-slate-800;\n }\n }\n\n &,\n & > * {\n border-radius: 5px;\n }\n}\n\n.arrow-divider {\n padding: 20px;\n}\n\n.subtle-text {\n color: $tw-slate-500;\n text-align: center;\n}\n\n.button {\n text-decoration: none;\n color: $tw-slate-300;\n transition: color 0.3s;\n cursor: pointer;\n background-color: $tw-slate-800;\n transition: all 0.3s;\n padding: 10px 15px;\n border-radius: 5px;\n border: none;\n font-size: 16px;\n\n &:hover {\n background-color: $tw-slate-800;\n color: $tw-slate-100;\n }\n}\n\n.button-bar {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 20px;\n\n b {\n font-size: 14px;\n }\n}\n","$tw-slate-050: #f8fafc;\n$tw-slate-100: #f1f5f9;\n$tw-slate-200: #e2e8f0;\n$tw-slate-300: #cbd5e1;\n$tw-slate-400: #94a3b8;\n$tw-slate-500: #64748b;\n$tw-slate-600: #475569;\n$tw-slate-700: #334155;\n$tw-slate-800: #1e293b;\n$tw-slate-900: #0f172a;\n$tw-slate-950: #020617;\n\n$tw-gray-050: #f9fafb;\n$tw-gray-100: #f3f4f6;\n$tw-gray-200: #e5e7eb;\n$tw-gray-300: #d1d5db;\n$tw-gray-400: #9ca3af;\n$tw-gray-500: #6b7280;\n$tw-gray-600: #4b5563;\n$tw-gray-700: #374151;\n$tw-gray-800: #1f2937;\n$tw-gray-900: #111827;\n$tw-gray-950: #030712;\n\n$tw-zinc-050: #fafafa;\n$tw-zinc-100: #f4f4f5;\n$tw-zinc-200: #e4e4e7;\n$tw-zinc-300: #d4d4d8;\n$tw-zinc-400: #a1a1aa;\n$tw-zinc-500: #71717a;\n$tw-zinc-600: #52525b;\n$tw-zinc-700: #3f3f46;\n$tw-zinc-800: #27272a;\n$tw-zinc-900: #18181b;\n$tw-zinc-950: #09090b;\n\n$tw-neutral-050: #fafafa;\n$tw-neutral-100: #f5f5f5;\n$tw-neutral-200: #e5e5e5;\n$tw-neutral-300: #d4d4d4;\n$tw-neutral-400: #a3a3a3;\n$tw-neutral-500: #737373;\n$tw-neutral-600: #525252;\n$tw-neutral-700: #404040;\n$tw-neutral-800: #262626;\n$tw-neutral-900: #171717;\n$tw-neutral-950: #0a0a0a;\n\n$tw-stone-050: #fafaf9;\n$tw-stone-100: #f5f5f4;\n$tw-stone-200: #e7e5e4;\n$tw-stone-300: #d6d3d1;\n$tw-stone-400: #a8a29e;\n$tw-stone-500: #78716c;\n$tw-stone-600: #57534e;\n$tw-stone-700: #44403c;\n$tw-stone-800: #292524;\n$tw-stone-900: #1c1917;\n$tw-stone-950: #0c0a09;\n\n$tw-red-050: #fef2f2;\n$tw-red-100: #fee2e2;\n$tw-red-200: #fecaca;\n$tw-red-300: #fca5a5;\n$tw-red-400: #f87171;\n$tw-red-500: #ef4444;\n$tw-red-600: #dc2626;\n$tw-red-700: #b91c1c;\n$tw-red-800: #991b1b;\n$tw-red-900: #7f1d1d;\n$tw-red-950: #450a0a;\n\n$tw-orange-050: #fff7ed;\n$tw-orange-100: #ffedd5;\n$tw-orange-200: #fed7aa;\n$tw-orange-300: #fdba74;\n$tw-orange-400: #fb923c;\n$tw-orange-500: #f97316;\n$tw-orange-600: #ea580c;\n$tw-orange-700: #c2410c;\n$tw-orange-800: #9a3412;\n$tw-orange-900: #7c2d12;\n$tw-orange-950: #431407;\n\n$tw-amber-050: #fffbeb;\n$tw-amber-100: #fef3c7;\n$tw-amber-200: #fde68a;\n$tw-amber-300: #fcd34d;\n$tw-amber-400: #fbbf24;\n$tw-amber-500: #f59e0b;\n$tw-amber-600: #d97706;\n$tw-amber-700: #b45309;\n$tw-amber-800: #92400e;\n$tw-amber-900: #78350f;\n$tw-amber-950: #451a03;\n\n$tw-yellow-050: #fefce8;\n$tw-yellow-100: #fef9c3;\n$tw-yellow-200: #fef08a;\n$tw-yellow-300: #fde047;\n$tw-yellow-400: #facc15;\n$tw-yellow-500: #eab308;\n$tw-yellow-600: #ca8a04;\n$tw-yellow-700: #a16207;\n$tw-yellow-800: #854d0e;\n$tw-yellow-900: #713f12;\n$tw-yellow-950: #422006;\n\n$tw-lime-050: #f7fee7;\n$tw-lime-100: #ecfccb;\n$tw-lime-200: #d9f99d;\n$tw-lime-300: #bef264;\n$tw-lime-400: #a3e635;\n$tw-lime-500: #84cc16;\n$tw-lime-600: #65a30d;\n$tw-lime-700: #4d7c0f;\n$tw-lime-800: #3f6212;\n$tw-lime-900: #365314;\n$tw-lime-950: #1a2e05;\n\n$tw-green-050: #f0fdf4;\n$tw-green-100: #dcfce7;\n$tw-green-200: #bbf7d0;\n$tw-green-300: #86efac;\n$tw-green-400: #4ade80;\n$tw-green-500: #22c55e;\n$tw-green-600: #16a34a;\n$tw-green-700: #15803d;\n$tw-green-800: #166534;\n$tw-green-900: #14532d;\n$tw-green-950: #052e16;\n\n$tw-emerald-050: #ecfdf5;\n$tw-emerald-100: #d1fae5;\n$tw-emerald-200: #a7f3d0;\n$tw-emerald-300: #6ee7b7;\n$tw-emerald-400: #34d399;\n$tw-emerald-500: #10b981;\n$tw-emerald-600: #059669;\n$tw-emerald-700: #047857;\n$tw-emerald-800: #065f46;\n$tw-emerald-900: #064e3b;\n$tw-emerald-950: #022c22;\n\n$tw-teal-050: #f0fdfa;\n$tw-teal-100: #ccfbf1;\n$tw-teal-200: #99f6e4;\n$tw-teal-300: #5eead4;\n$tw-teal-400: #2dd4bf;\n$tw-teal-500: #14b8a6;\n$tw-teal-600: #0d9488;\n$tw-teal-700: #0f766e;\n$tw-teal-800: #115e59;\n$tw-teal-900: #134e4a;\n$tw-teal-950: #042f2e;\n\n$tw-cyan-050: #ecfeff;\n$tw-cyan-100: #cffafe;\n$tw-cyan-200: #a5f3fc;\n$tw-cyan-300: #67e8f9;\n$tw-cyan-400: #22d3ee;\n$tw-cyan-500: #06b6d4;\n$tw-cyan-600: #0891b2;\n$tw-cyan-700: #0e7490;\n$tw-cyan-800: #155e75;\n$tw-cyan-900: #164e63;\n$tw-cyan-950: #083344;\n\n$tw-sky-050: #f0f9ff;\n$tw-sky-100: #e0f2fe;\n$tw-sky-200: #bae6fd;\n$tw-sky-300: #7dd3fc;\n$tw-sky-400: #38bdf8;\n$tw-sky-500: #0ea5e9;\n$tw-sky-600: #0284c7;\n$tw-sky-700: #0369a1;\n$tw-sky-800: #075985;\n$tw-sky-900: #0c4a6e;\n$tw-sky-950: #083344;\n\n$tw-blue-050: #eff6ff;\n$tw-blue-100: #dbeafe;\n$tw-blue-200: #bfdbfe;\n$tw-blue-300: #93c5fd;\n$tw-blue-400: #60a5fa;\n$tw-blue-500: #3b82f6;\n$tw-blue-600: #2563eb;\n$tw-blue-700: #1d4ed8;\n$tw-blue-800: #1e40af;\n$tw-blue-900: #1e3a8a;\n$tw-blue-950: #172554;\n\n$tw-indigo-050: #eef2ff;\n$tw-indigo-100: #e0e7ff;\n$tw-indigo-200: #c7d2fe;\n$tw-indigo-300: #a5b4fc;\n$tw-indigo-400: #818cf8;\n$tw-indigo-500: #6366f1;\n$tw-indigo-600: #4f46e5;\n$tw-indigo-700: #4338ca;\n$tw-indigo-800: #3730a3;\n$tw-indigo-900: #312e81;\n$tw-indigo-950: #1e1b4b;\n\n$tw-violet-050: #f5f3ff;\n$tw-violet-100: #ede9fe;\n$tw-violet-200: #ddd6fe;\n$tw-violet-300: #c4b5fd;\n$tw-violet-400: #a78bfa;\n$tw-violet-500: #8b5cf6;\n$tw-violet-600: #7c3aed;\n$tw-violet-700: #6d28d9;\n$tw-violet-800: #5b21b6;\n$tw-violet-900: #4c1d95;\n$tw-violet-950: #2e1065;\n\n$tw-purple-050: #faf5ff;\n$tw-purple-100: #f3e8ff;\n$tw-purple-200: #e9d5ff;\n$tw-purple-300: #d8b4fe;\n$tw-purple-400: #c084fc;\n$tw-purple-500: #a855f7;\n$tw-purple-600: #9333ea;\n$tw-purple-700: #7e22ce;\n$tw-purple-800: #6b21a8;\n$tw-purple-900: #581c87;\n$tw-purple-950: #3b0764;\n\n$tw-fuchsia-050: #fdf4ff;\n$tw-fuchsia-100: #fae8ff;\n$tw-fuchsia-200: #f5d0fe;\n$tw-fuchsia-300: #f0abfc;\n$tw-fuchsia-400: #e879f9;\n$tw-fuchsia-500: #d946ef;\n$tw-fuchsia-600: #c026d3;\n$tw-fuchsia-700: #a21caf;\n$tw-fuchsia-800: #86198f;\n$tw-fuchsia-900: #701a75;\n$tw-fuchsia-950: #4a044e;\n\n$tw-pink-050: #fdf2f8;\n$tw-pink-100: #fce7f3;\n$tw-pink-200: #fbcfe8;\n$tw-pink-300: #f9a8d4;\n$tw-pink-400: #f472b6;\n$tw-pink-500: #ec4899;\n$tw-pink-600: #db2777;\n$tw-pink-700: #be185d;\n$tw-pink-800: #9d174d;\n$tw-pink-900: #831843;\n$tw-pink-950: #500724;\n\n$tw-rose-050: #fff1f2;\n$tw-rose-100: #ffe4e6;\n$tw-rose-200: #fecdd3;\n$tw-rose-300: #fda4af;\n$tw-rose-400: #fb7185;\n$tw-rose-500: #f43f5e;\n$tw-rose-600: #e11d48;\n$tw-rose-700: #be123c;\n$tw-rose-800: #9f1239;\n$tw-rose-900: #881337;\n$tw-rose-950: #4c0519;"],"names":[],"version":3,"file":"index.0fef4f03.css.map"} -------------------------------------------------------------------------------- /packages/examples/dist/index.html: -------------------------------------------------------------------------------- 1 | Example
-------------------------------------------------------------------------------- /packages/examples/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "examples", 3 | "version": "1.2.2", 4 | "private": true, 5 | "description": "Feature-packed and optimised React component for Chrome's new Document Picture-in-Picture API", 6 | "scripts": { 7 | "start": "parcel --https src/index.html", 8 | "build": "parcel build src/index.html --public-url /react-document-picture-in-picture/packages/examples/dist", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "keywords": [ 12 | "react", 13 | "picture-in-picture", 14 | "pip", 15 | "document-picture-in-picture", 16 | "chrome", 17 | "experimental", 18 | "web" 19 | ], 20 | "author": "Martin Shaw ", 21 | "license": "GPL-3.0-only", 22 | "devDependencies": { 23 | "@types/react": "^18.2.56", 24 | "@types/react-dom": "^18.2.19", 25 | "parcel": "^2.11.0", 26 | "tailwind-colors-scss": "^1.0.0", 27 | "typescript": "^5.3.3" 28 | }, 29 | "dependencies": { 30 | "react": "^18.2.0", 31 | "react-document-picture-in-picture": "workspace:^", 32 | "react-dom": "^18.2.0", 33 | "react-syntax-highlighter": "^15.5.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /packages/examples/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { ReactElement, ReactNode, useState } from "react"; 2 | import SizeExampleSection from "./SizeExampleSection"; 3 | import EventsExampleSection from "./EventsExampleSection"; 4 | import UsingRefExampleSection from "./UsingRefExampleSection"; 5 | import UnsupportedExampleSection from "./UnsupportedExampleSection"; 6 | import ShareStylesExampleSection from "./ShareStylesExampleSection"; 7 | 8 | const exampleSectionNames = [ 9 | 'size', 10 | 'events', 11 | 'using-ref', 12 | 'unsupported', 13 | 'share-styles', 14 | ] as const; 15 | type ExampleSectionNameType = typeof exampleSectionNames[number]; 16 | 17 | const exampleSections: Record ReactNode> = { 18 | 'size': SizeExampleSection, 19 | 'events': EventsExampleSection, 20 | 'using-ref': UsingRefExampleSection, 21 | 'unsupported': UnsupportedExampleSection, 22 | 'share-styles': ShareStylesExampleSection, 23 | }; 24 | 25 | const App = () => { 26 | const [visibleSection, setVisibleSection] = useState(exampleSectionNames[0]) 27 | const ExampleSection = exampleSections[visibleSection]; 28 | 29 | return ( 30 |
31 | 32 | 51 | 52 |
53 | 54 |
55 | 56 |
57 | ); 58 | } 59 | 60 | export default App; -------------------------------------------------------------------------------- /packages/examples/src/CodeSnippet/index.tsx: -------------------------------------------------------------------------------- 1 | import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; 2 | import { nightOwl } from 'react-syntax-highlighter/dist/esm/styles/prism'; 3 | 4 | export type CodeSnippetPropsType = { 5 | children: string; 6 | }; 7 | 8 | const CodeSnippet = (props: CodeSnippetPropsType) => { 9 | // Escape the HTML string and add line breaks 10 | let escapedString = props.children; 11 | 12 | // If first character is a newline, remove it 13 | if (escapedString[0] === '\n') escapedString = escapedString.slice(1); 14 | 15 | const copyCode = () => { 16 | navigator.clipboard.writeText(escapedString); 17 | } 18 | 19 | return ( 20 |
21 | 22 | 23 | {escapedString} 24 | 25 |
26 | ); 27 | } 28 | 29 | export default CodeSnippet; -------------------------------------------------------------------------------- /packages/examples/src/EventsExampleSection/index.tsx: -------------------------------------------------------------------------------- 1 | // You should use the following line to import the component in your own project 2 | // import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 3 | import ReactDocumentPictureInPicture from "../../../component/src"; 4 | import CodeSnippet from "../CodeSnippet"; 5 | 6 | const EventsExampleSection = () => { 7 | return ( 8 |
9 | 10 | {` 11 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 12 | 13 |
16 | Is {isOpen ? 'Open' : 'Closed'} 17 | 18 | 19 | 20 |
21 | } 22 | onOpen={() => console.log('Opened')} 23 | onClose={() => console.log('Closed')} 24 | onResize={(width, height) => console.log('Resized to ' + width + 'x' + height)} 25 | > 26 | This text should be displayed in a Document Picture in Picture in the bottom right of the original window 27 |
28 | `} 29 |
30 | 31 |
32 | 33 |
36 | Is {isOpen ? 'Open' : 'Closed'} 37 | 38 | 39 | 40 |
41 | } 42 | onOpen={() => console.log('Opened')} 43 | onClose={() => console.log('Closed')} 44 | onResize={(width, height) => console.log('Resized to ' + width + 'x' + height)} 45 | > 46 | This text should be displayed in a Document Picture in Picture in the bottom right of the original window 47 |
48 | 49 |

50 | There are a few useful event props which you can use to listen to the state of the Picture in Picture window: onOpen, onClose, onResize 51 |

52 | Open the console to see the logs. 53 |

54 | 55 |
56 | ); 57 | } 58 | 59 | export default EventsExampleSection; -------------------------------------------------------------------------------- /packages/examples/src/ShareStylesExampleSection/index.tsx: -------------------------------------------------------------------------------- 1 | // You should use the following line to import the component in your own project 2 | // import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 3 | import ReactDocumentPictureInPicture from "../../../component/src"; 4 | import CodeSnippet from "../CodeSnippet"; 5 | 6 | const ShareStylesExampleSection = () => { 7 | return ( 8 |
9 | 10 | {` 11 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 12 | 13 | } 16 | > 17 |
18 | This window should be styled with the styles from the main window 19 | 20 |
21 |
22 | `} 23 |
24 | 25 |
26 | 27 |
28 | } 30 | > 31 |
32 | This window should not be styled with the styles from the main window 33 | 34 |
35 |
36 | 37 | } 40 | > 41 |
42 | This window should be styled with the styles from the main window 43 | 44 |
45 |
46 |
47 | 48 |
49 | ); 50 | } 51 | 52 | export default ShareStylesExampleSection; -------------------------------------------------------------------------------- /packages/examples/src/SizeExampleSection/index.tsx: -------------------------------------------------------------------------------- 1 | // You should use the following line to import the component in your own project 2 | // import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 3 | import ReactDocumentPictureInPicture from "../../../component/src"; 4 | import CodeSnippet from "../CodeSnippet"; 5 | 6 | const SizeExampleSection = () => { 7 | return ( 8 |
9 | 10 | {` 11 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 12 | 13 |
18 | Is {isOpen ? 'Open' : 'Closed'} 19 | 20 | 21 | 22 |
23 | } 24 | > 25 | This text should be displayed in a Document Picture in Picture filling the maximum allow height and 50% of the width of the original window 26 |
27 | `} 28 |
29 | 30 |
31 | 32 |
37 | Is {isOpen ? 'Open' : 'Closed'} 38 | 39 | 40 | 41 |
42 | } 43 | > 44 | This text should be displayed in a Document Picture in Picture filling the maximum allow height and 50% of the width of the original window 45 |
46 | 47 |
48 | ); 49 | } 50 | 51 | export default SizeExampleSection; -------------------------------------------------------------------------------- /packages/examples/src/UnsupportedExampleSection/index.tsx: -------------------------------------------------------------------------------- 1 | // You should use the following line to import the component in your own project 2 | // import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 3 | import ReactDocumentPictureInPicture from "../../../component/src"; 4 | import CodeSnippet from "../CodeSnippet"; 5 | 6 | const UnsupportedExampleSection = () => { 7 | return ( 8 |
9 | 10 | {` 11 | import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 12 | 13 |
Feature Unavailable: {reason}
} 15 | buttonRenderer={({ open }) => } 16 | > 17 | This Document Picture-in-Picture window and its activating button will not appear when this experimental feature isn't available in your browser 18 |
19 | `} 20 |
21 | 22 |
23 | 24 |
Feature Unavailable: {reason}
} 26 | buttonRenderer={({ open }) => } 27 | > 28 | This Document Picture-in-Picture window and its activating button will not appear when this experimental feature isn't available in your browser 29 |
30 | 31 |

32 | View this page in a browser such as Safari or Firefox and you will see Feature Unavailable: API_NOT_SUPPORTED rendered in place of the activating button. 33 |

34 | Attempt to use this component on a website not served over HTTPS and you will see Feature Unavailable: USING_UNSECURE_PROTOCOL rendered in place of the activating button. 35 |

36 | Without the featureUnavailableRenderer prop, the component will quietly render nothing when the feature is unavailable. 37 |

38 | 39 |
40 | ); 41 | } 42 | 43 | export default UnsupportedExampleSection; -------------------------------------------------------------------------------- /packages/examples/src/UsingRefExampleSection/index.tsx: -------------------------------------------------------------------------------- 1 | // You should use the following line to import the component in your own project 2 | // import ReactDocumentPictureInPicture from "react-document-picture-in-picture"; 3 | import ReactDocumentPictureInPicture, {ReactDocumentPictureInPictureForwardRefType} from "../../../component/src"; 4 | 5 | import { useEffect, useRef } from "react"; 6 | import CodeSnippet from "../CodeSnippet"; 7 | 8 | const UsingRefExampleSection = () => { 9 | const pipWindowRef = useRef(); 10 | 11 | useEffect(() => { 12 | 13 | /** 14 | * On the first render, because the Document Picture in Picture window is not open, the window object will be null 15 | */ 16 | console.log("On first render => ", pipWindowRef.current, pipWindowRef.current?.window()) 17 | 18 | /** 19 | * After 5 seconds, if you have clicked the "Open" button below, you should see the window object logged in the console here 20 | */ 21 | setTimeout(() => { 22 | console.log('After 5 seconds => ', pipWindowRef.current, pipWindowRef.current?.window()) 23 | }, 5000); 24 | 25 | /** 26 | * After 10 seconds, we will programmatically close the window if it is open 27 | */ 28 | setTimeout(() => { 29 | pipWindowRef?.current?.close() 30 | console.log('After 10 seconds => ', pipWindowRef.current, pipWindowRef.current?.window()) 31 | }, 10000); 32 | 33 | }, [pipWindowRef]); 34 | 35 | return ( 36 |
37 | 38 | {` 39 | import ReactDocumentPictureInPicture, { ReactDocumentPictureInPictureForwardRefType } from "react-document-picture-in-picture"; 40 | 41 | const pipWindowRef = useRef(); 42 | 43 | useEffect(() => { 44 | 45 | /** 46 | * On the first render, because the Document Picture in Picture window is not open, the window object will be null 47 | */ 48 | console.log("On first render => ", pipWindowRef.current, pipWindowRef.current?.window()) 49 | 50 | /** 51 | * After 5 seconds, if you have clicked the "Open" button below, you should see the window object logged in the console here 52 | */ 53 | setTimeout(() => { 54 | console.log('After 5 seconds => ', pipWindowRef.current, pipWindowRef.current?.window()) 55 | }, 5000); 56 | 57 | /** 58 | * After 10 seconds, we will programmatically close the window if it is open 59 | */ 60 | setTimeout(() => { 61 | pipWindowRef?.current?.close() 62 | console.log('After 10 seconds => ', pipWindowRef.current, pipWindowRef.current?.window()) 63 | }, 10000); 64 | 65 | }, [pipWindowRef]); 66 | `} 67 | 68 | 69 |
70 | 71 |
75 | Is {isOpen ? 'Open' : 'Closed'} 76 | 77 |
78 | } 79 | > 80 | This text should be displayed in a Document Picture in Picture in the bottom right of the original window 81 |
82 | 83 |
84 | ); 85 | } 86 | 87 | export default UsingRefExampleSection; -------------------------------------------------------------------------------- /packages/examples/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Example 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /packages/examples/src/index.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from "react-dom/client"; 2 | import App from "./App"; 3 | 4 | const container = document.getElementById("app"); 5 | const root = createRoot(container) 6 | root.render(); -------------------------------------------------------------------------------- /packages/examples/src/style.scss: -------------------------------------------------------------------------------- 1 | @import "../node_modules/tailwind-colors-scss/src/variables.scss"; 2 | 3 | html, 4 | body { 5 | margin: 0; 6 | padding: 0; 7 | width: 100%; 8 | height: 100%; 9 | font-family: Arial, sans-serif; 10 | background-color: $tw-slate-950; 11 | color: $tw-slate-300; 12 | user-select: none; 13 | } 14 | 15 | nav { 16 | justify-content: space-between; 17 | padding: 10px 30px; 18 | 19 | > div:first-child, 20 | > div:last-child { 21 | min-width: 400px; 22 | } 23 | 24 | > div:last-child { 25 | justify-content: flex-end; 26 | } 27 | 28 | &, 29 | & div { 30 | display: flex; 31 | flex-direction: row; 32 | align-items: center; 33 | gap: 30px; 34 | } 35 | 36 | ul { 37 | display: flex; 38 | flex-direction: row; 39 | gap: 30px; 40 | list-style: none; 41 | padding: 0; 42 | 43 | > li > a { 44 | // 45 | } 46 | } 47 | } 48 | 49 | .example-section { 50 | font-family: sans-serif; 51 | display: flex; 52 | flex-direction: column; 53 | align-items: center; 54 | justify-content: center; 55 | height: calc(100vh - 70px); 56 | gap: 1rem; 57 | } 58 | 59 | .code-snippet { 60 | zoom: 0.8; 61 | user-select: text; 62 | position: relative; 63 | 64 | > button { 65 | position: absolute; 66 | top: 18px; 67 | right: 10px; 68 | background-color: $tw-slate-950; 69 | color: $tw-slate-300; 70 | border: none; 71 | padding: 5px 10px; 72 | cursor: pointer; 73 | border-radius: 5px; 74 | transition: all 0.3s; 75 | 76 | &:hover { 77 | background-color: $tw-slate-800; 78 | } 79 | } 80 | 81 | &, 82 | & > * { 83 | border-radius: 5px; 84 | } 85 | } 86 | 87 | .arrow-divider { 88 | padding: 20px; 89 | } 90 | 91 | .subtle-text { 92 | color: $tw-slate-500; 93 | text-align: center; 94 | } 95 | 96 | .button { 97 | text-decoration: none; 98 | color: $tw-slate-300; 99 | transition: color 0.3s; 100 | cursor: pointer; 101 | background-color: $tw-slate-800; 102 | transition: all 0.3s; 103 | padding: 10px 15px; 104 | border-radius: 5px; 105 | border: none; 106 | font-size: 16px; 107 | 108 | &:hover { 109 | background-color: $tw-slate-800; 110 | color: $tw-slate-100; 111 | } 112 | } 113 | 114 | .button-bar { 115 | display: flex; 116 | flex-direction: row; 117 | align-items: center; 118 | justify-content: center; 119 | gap: 20px; 120 | 121 | b { 122 | font-size: 14px; 123 | } 124 | } 125 | -------------------------------------------------------------------------------- /packages/examples/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react-jsx", 4 | "allowJs": true, 5 | "declaration": true, 6 | "esModuleInterop": true, 7 | "allowSyntheticDefaultImports": true, 8 | "module": "commonjs", 9 | "outDir": "./dist", 10 | "target": "es2016", 11 | "lib": ["dom", "dom.iterable", "es2016"] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@parcel/transformer-sass': 12 | specifier: 2.11.0 13 | version: 2.11.0(@parcel/core@2.11.0) 14 | process: 15 | specifier: ^0.11.10 16 | version: 0.11.10 17 | 18 | packages/component: 19 | devDependencies: 20 | '@types/react': 21 | specifier: ^18.2.56 22 | version: 18.2.56 23 | '@types/react-dom': 24 | specifier: ^18.2.19 25 | version: 18.2.19 26 | react: 27 | specifier: ^18.2.0 28 | version: 18.2.0 29 | react-dom: 30 | specifier: ^18.2.0 31 | version: 18.2.0(react@18.2.0) 32 | typescript: 33 | specifier: ^5.3.3 34 | version: 5.3.3 35 | 36 | packages/example-basic: 37 | dependencies: 38 | react: 39 | specifier: ^18.2.0 40 | version: 18.2.0 41 | react-document-picture-in-picture: 42 | specifier: workspace:^ 43 | version: link:../component 44 | react-dom: 45 | specifier: ^18.2.0 46 | version: 18.2.0(react@18.2.0) 47 | devDependencies: 48 | '@types/react': 49 | specifier: ^18.2.56 50 | version: 18.2.56 51 | '@types/react-dom': 52 | specifier: ^18.2.19 53 | version: 18.2.19 54 | parcel: 55 | specifier: ^2.11.0 56 | version: 2.11.0(typescript@5.3.3) 57 | typescript: 58 | specifier: ^5.3.3 59 | version: 5.3.3 60 | 61 | packages/examples: 62 | dependencies: 63 | react: 64 | specifier: ^18.2.0 65 | version: 18.2.0 66 | react-document-picture-in-picture: 67 | specifier: workspace:^ 68 | version: link:../component 69 | react-dom: 70 | specifier: ^18.2.0 71 | version: 18.2.0(react@18.2.0) 72 | react-syntax-highlighter: 73 | specifier: ^15.5.0 74 | version: 15.5.0(react@18.2.0) 75 | devDependencies: 76 | '@types/react': 77 | specifier: ^18.2.56 78 | version: 18.2.56 79 | '@types/react-dom': 80 | specifier: ^18.2.19 81 | version: 18.2.19 82 | parcel: 83 | specifier: ^2.11.0 84 | version: 2.11.0(typescript@5.3.3) 85 | tailwind-colors-scss: 86 | specifier: ^1.0.0 87 | version: 1.0.0 88 | typescript: 89 | specifier: ^5.3.3 90 | version: 5.3.3 91 | 92 | packages: 93 | 94 | /@babel/code-frame@7.23.5: 95 | resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} 96 | engines: {node: '>=6.9.0'} 97 | dependencies: 98 | '@babel/highlight': 7.23.4 99 | chalk: 2.4.2 100 | dev: true 101 | 102 | /@babel/helper-validator-identifier@7.22.20: 103 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 104 | engines: {node: '>=6.9.0'} 105 | dev: true 106 | 107 | /@babel/highlight@7.23.4: 108 | resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} 109 | engines: {node: '>=6.9.0'} 110 | dependencies: 111 | '@babel/helper-validator-identifier': 7.22.20 112 | chalk: 2.4.2 113 | js-tokens: 4.0.0 114 | dev: true 115 | 116 | /@babel/runtime@7.23.9: 117 | resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==} 118 | engines: {node: '>=6.9.0'} 119 | dependencies: 120 | regenerator-runtime: 0.14.1 121 | dev: false 122 | 123 | /@lezer/common@1.2.1: 124 | resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==} 125 | dev: true 126 | 127 | /@lezer/lr@1.4.0: 128 | resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==} 129 | dependencies: 130 | '@lezer/common': 1.2.1 131 | dev: true 132 | 133 | /@lmdb/lmdb-darwin-arm64@2.8.5: 134 | resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==} 135 | cpu: [arm64] 136 | os: [darwin] 137 | requiresBuild: true 138 | dev: true 139 | optional: true 140 | 141 | /@lmdb/lmdb-darwin-x64@2.8.5: 142 | resolution: {integrity: sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==} 143 | cpu: [x64] 144 | os: [darwin] 145 | requiresBuild: true 146 | dev: true 147 | optional: true 148 | 149 | /@lmdb/lmdb-linux-arm64@2.8.5: 150 | resolution: {integrity: sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==} 151 | cpu: [arm64] 152 | os: [linux] 153 | requiresBuild: true 154 | dev: true 155 | optional: true 156 | 157 | /@lmdb/lmdb-linux-arm@2.8.5: 158 | resolution: {integrity: sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==} 159 | cpu: [arm] 160 | os: [linux] 161 | requiresBuild: true 162 | dev: true 163 | optional: true 164 | 165 | /@lmdb/lmdb-linux-x64@2.8.5: 166 | resolution: {integrity: sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ==} 167 | cpu: [x64] 168 | os: [linux] 169 | requiresBuild: true 170 | dev: true 171 | optional: true 172 | 173 | /@lmdb/lmdb-win32-x64@2.8.5: 174 | resolution: {integrity: sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ==} 175 | cpu: [x64] 176 | os: [win32] 177 | requiresBuild: true 178 | dev: true 179 | optional: true 180 | 181 | /@mischnic/json-sourcemap@0.1.1: 182 | resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==} 183 | engines: {node: '>=12.0.0'} 184 | dependencies: 185 | '@lezer/common': 1.2.1 186 | '@lezer/lr': 1.4.0 187 | json5: 2.2.3 188 | dev: true 189 | 190 | /@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2: 191 | resolution: {integrity: sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==} 192 | cpu: [arm64] 193 | os: [darwin] 194 | requiresBuild: true 195 | dev: true 196 | optional: true 197 | 198 | /@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2: 199 | resolution: {integrity: sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==} 200 | cpu: [x64] 201 | os: [darwin] 202 | requiresBuild: true 203 | dev: true 204 | optional: true 205 | 206 | /@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2: 207 | resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==} 208 | cpu: [arm64] 209 | os: [linux] 210 | requiresBuild: true 211 | dev: true 212 | optional: true 213 | 214 | /@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2: 215 | resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==} 216 | cpu: [arm] 217 | os: [linux] 218 | requiresBuild: true 219 | dev: true 220 | optional: true 221 | 222 | /@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2: 223 | resolution: {integrity: sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==} 224 | cpu: [x64] 225 | os: [linux] 226 | requiresBuild: true 227 | dev: true 228 | optional: true 229 | 230 | /@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2: 231 | resolution: {integrity: sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==} 232 | cpu: [x64] 233 | os: [win32] 234 | requiresBuild: true 235 | dev: true 236 | optional: true 237 | 238 | /@parcel/bundler-default@2.11.0(@parcel/core@2.11.0): 239 | resolution: {integrity: sha512-ZIs0865Lp871ZK83k5I9L4DeeE26muNMrHa7j8bvls6fKBJKAn8djrhfU4XOLyziU4aAOobcPwXU0+npWqs52g==} 240 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 241 | dependencies: 242 | '@parcel/diagnostic': 2.11.0 243 | '@parcel/graph': 3.1.0 244 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 245 | '@parcel/rust': 2.11.0 246 | '@parcel/utils': 2.11.0 247 | nullthrows: 1.1.1 248 | transitivePeerDependencies: 249 | - '@parcel/core' 250 | dev: true 251 | 252 | /@parcel/cache@2.11.0(@parcel/core@2.11.0): 253 | resolution: {integrity: sha512-RSSkGNjO00lJPyftzaC9eaNVs4jMjPSAm0VJNWQ9JSm2n4A9BzQtTFAt1vhJOzzW1UsQvvBge9DdfkB7a2gIOw==} 254 | engines: {node: '>= 12.0.0'} 255 | peerDependencies: 256 | '@parcel/core': ^2.11.0 257 | dependencies: 258 | '@parcel/core': 2.11.0 259 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 260 | '@parcel/logger': 2.11.0 261 | '@parcel/utils': 2.11.0 262 | lmdb: 2.8.5 263 | dev: true 264 | 265 | /@parcel/codeframe@2.11.0: 266 | resolution: {integrity: sha512-YHs9g/i5af/sd/JrWAojU9YFbKffcJ3Tx2EJaK0ME8OJsye91UaI/3lxSUYLmJG9e4WLNJtqci8V5FBMz//ZPg==} 267 | engines: {node: '>= 12.0.0'} 268 | dependencies: 269 | chalk: 4.1.2 270 | dev: true 271 | 272 | /@parcel/compressor-raw@2.11.0(@parcel/core@2.11.0): 273 | resolution: {integrity: sha512-RArhBPRTCfz77soX2IECH09NUd76UBWujXiPRcXGPIHK+C3L1cRuzsNcA39QeSb3thz3b99JcozMJ1nkC2Bsgw==} 274 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 275 | dependencies: 276 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 277 | transitivePeerDependencies: 278 | - '@parcel/core' 279 | dev: true 280 | 281 | /@parcel/config-default@2.11.0(@parcel/core@2.11.0)(typescript@5.3.3): 282 | resolution: {integrity: sha512-1e2+qcZkm5/0f4eI20p/DemcYiSxq9d/eyjpTXA7PulJaHbL1wonwUAuy3mvnAvDnLOJmAk/obDVgX1ZfxMGtg==} 283 | peerDependencies: 284 | '@parcel/core': ^2.11.0 285 | dependencies: 286 | '@parcel/bundler-default': 2.11.0(@parcel/core@2.11.0) 287 | '@parcel/compressor-raw': 2.11.0(@parcel/core@2.11.0) 288 | '@parcel/core': 2.11.0 289 | '@parcel/namer-default': 2.11.0(@parcel/core@2.11.0) 290 | '@parcel/optimizer-css': 2.11.0(@parcel/core@2.11.0) 291 | '@parcel/optimizer-htmlnano': 2.11.0(@parcel/core@2.11.0)(typescript@5.3.3) 292 | '@parcel/optimizer-image': 2.11.0(@parcel/core@2.11.0) 293 | '@parcel/optimizer-svgo': 2.11.0(@parcel/core@2.11.0) 294 | '@parcel/optimizer-swc': 2.11.0(@parcel/core@2.11.0) 295 | '@parcel/packager-css': 2.11.0(@parcel/core@2.11.0) 296 | '@parcel/packager-html': 2.11.0(@parcel/core@2.11.0) 297 | '@parcel/packager-js': 2.11.0(@parcel/core@2.11.0) 298 | '@parcel/packager-raw': 2.11.0(@parcel/core@2.11.0) 299 | '@parcel/packager-svg': 2.11.0(@parcel/core@2.11.0) 300 | '@parcel/packager-wasm': 2.11.0(@parcel/core@2.11.0) 301 | '@parcel/reporter-dev-server': 2.11.0(@parcel/core@2.11.0) 302 | '@parcel/resolver-default': 2.11.0(@parcel/core@2.11.0) 303 | '@parcel/runtime-browser-hmr': 2.11.0(@parcel/core@2.11.0) 304 | '@parcel/runtime-js': 2.11.0(@parcel/core@2.11.0) 305 | '@parcel/runtime-react-refresh': 2.11.0(@parcel/core@2.11.0) 306 | '@parcel/runtime-service-worker': 2.11.0(@parcel/core@2.11.0) 307 | '@parcel/transformer-babel': 2.11.0(@parcel/core@2.11.0) 308 | '@parcel/transformer-css': 2.11.0(@parcel/core@2.11.0) 309 | '@parcel/transformer-html': 2.11.0(@parcel/core@2.11.0) 310 | '@parcel/transformer-image': 2.11.0(@parcel/core@2.11.0) 311 | '@parcel/transformer-js': 2.11.0(@parcel/core@2.11.0) 312 | '@parcel/transformer-json': 2.11.0(@parcel/core@2.11.0) 313 | '@parcel/transformer-postcss': 2.11.0(@parcel/core@2.11.0) 314 | '@parcel/transformer-posthtml': 2.11.0(@parcel/core@2.11.0) 315 | '@parcel/transformer-raw': 2.11.0(@parcel/core@2.11.0) 316 | '@parcel/transformer-react-refresh-wrap': 2.11.0(@parcel/core@2.11.0) 317 | '@parcel/transformer-svg': 2.11.0(@parcel/core@2.11.0) 318 | transitivePeerDependencies: 319 | - '@swc/helpers' 320 | - cssnano 321 | - postcss 322 | - purgecss 323 | - relateurl 324 | - srcset 325 | - terser 326 | - typescript 327 | - uncss 328 | dev: true 329 | 330 | /@parcel/core@2.11.0: 331 | resolution: {integrity: sha512-Npe0S6hVaqWEwRL+HI7gtOYOaoE5bJQZTgUDhsDoppWbau51jOlRYOZTXuvRK/jxXnze4/S1sdM24xBYAQ5qkw==} 332 | engines: {node: '>= 12.0.0'} 333 | dependencies: 334 | '@mischnic/json-sourcemap': 0.1.1 335 | '@parcel/cache': 2.11.0(@parcel/core@2.11.0) 336 | '@parcel/diagnostic': 2.11.0 337 | '@parcel/events': 2.11.0 338 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 339 | '@parcel/graph': 3.1.0 340 | '@parcel/logger': 2.11.0 341 | '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0) 342 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 343 | '@parcel/profiler': 2.11.0 344 | '@parcel/rust': 2.11.0 345 | '@parcel/source-map': 2.1.1 346 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 347 | '@parcel/utils': 2.11.0 348 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 349 | abortcontroller-polyfill: 1.7.5 350 | base-x: 3.0.9 351 | browserslist: 4.23.0 352 | clone: 2.1.2 353 | dotenv: 7.0.0 354 | dotenv-expand: 5.1.0 355 | json5: 2.2.3 356 | msgpackr: 1.10.1 357 | nullthrows: 1.1.1 358 | semver: 7.6.0 359 | dev: true 360 | 361 | /@parcel/diagnostic@2.11.0: 362 | resolution: {integrity: sha512-4dJmOXVL5YGGQRRsQosQbSRONBcboB71mSwaeaEgz3pPdq9QXVPLACkGe/jTXSqa3OnAHu3g5vQLpE1g5xqBqw==} 363 | engines: {node: '>= 12.0.0'} 364 | dependencies: 365 | '@mischnic/json-sourcemap': 0.1.1 366 | nullthrows: 1.1.1 367 | dev: true 368 | 369 | /@parcel/events@2.11.0: 370 | resolution: {integrity: sha512-K6SOjOrQsz1GdNl2qKBktq7KJ3Q3yxK8WXdmQYo10wG39dr051xtMb38aqieTp4eVhL8Yaq2iJgGkdr11fuBnA==} 371 | engines: {node: '>= 12.0.0'} 372 | dev: true 373 | 374 | /@parcel/fs@2.11.0(@parcel/core@2.11.0): 375 | resolution: {integrity: sha512-zWckdnnovdrgdFX4QYuQV4bbKCsh6IYCkmwaB4yp47rhw1MP0lkBINLt4yFPHBxWXOpElCfxjL+z69c9xJQRBQ==} 376 | engines: {node: '>= 12.0.0'} 377 | peerDependencies: 378 | '@parcel/core': ^2.11.0 379 | dependencies: 380 | '@parcel/core': 2.11.0 381 | '@parcel/rust': 2.11.0 382 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 383 | '@parcel/utils': 2.11.0 384 | '@parcel/watcher': 2.4.0 385 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 386 | dev: true 387 | 388 | /@parcel/graph@3.1.0: 389 | resolution: {integrity: sha512-d1dTW5C7A52HgDtoXlyvlET1ypSlmIxSIZOJ1xp3R9L9hgo3h1u3jHNyaoTe/WPkGVe2QnFxh0h+UibVJhu9vg==} 390 | engines: {node: '>= 12.0.0'} 391 | dependencies: 392 | nullthrows: 1.1.1 393 | dev: true 394 | 395 | /@parcel/logger@2.11.0: 396 | resolution: {integrity: sha512-HtMEdCq3LKnvv4T2CIskcqlf2gpBvHMm3pkeUFB/hc/7hW/hE1k6/HA2VOQvc0tBsaMpmEx7PCrfrH56usQSyA==} 397 | engines: {node: '>= 12.0.0'} 398 | dependencies: 399 | '@parcel/diagnostic': 2.11.0 400 | '@parcel/events': 2.11.0 401 | dev: true 402 | 403 | /@parcel/markdown-ansi@2.11.0: 404 | resolution: {integrity: sha512-YA60EWbXi6cLOIzcwRC2wijotPauOGQbUi0vSbu0O6/mjQ68kWCMGz0hwZjDRQcPypQVJEIvTgMymLbvumxwhg==} 405 | engines: {node: '>= 12.0.0'} 406 | dependencies: 407 | chalk: 4.1.2 408 | dev: true 409 | 410 | /@parcel/namer-default@2.11.0(@parcel/core@2.11.0): 411 | resolution: {integrity: sha512-DEwBSKSClg4DA2xAWimYkw9bFi7MFb9TdT7/TYZStMTsfYHPWOyyjGR7aVr3Ra4wNb+XX6g4rR41yp3HD6KO7A==} 412 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 413 | dependencies: 414 | '@parcel/diagnostic': 2.11.0 415 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 416 | nullthrows: 1.1.1 417 | transitivePeerDependencies: 418 | - '@parcel/core' 419 | dev: true 420 | 421 | /@parcel/node-resolver-core@3.2.0(@parcel/core@2.11.0): 422 | resolution: {integrity: sha512-XJRSxCkNbGFWjfmwFdcQZ/qlzWZd35qLtvLz2va8euGL7M5OMEQOv7dsvEhl0R+CC2zcnfFzZwxk78q6ezs8AQ==} 423 | engines: {node: '>= 12.0.0'} 424 | dependencies: 425 | '@mischnic/json-sourcemap': 0.1.1 426 | '@parcel/diagnostic': 2.11.0 427 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 428 | '@parcel/rust': 2.11.0 429 | '@parcel/utils': 2.11.0 430 | nullthrows: 1.1.1 431 | semver: 7.6.0 432 | transitivePeerDependencies: 433 | - '@parcel/core' 434 | dev: true 435 | 436 | /@parcel/optimizer-css@2.11.0(@parcel/core@2.11.0): 437 | resolution: {integrity: sha512-bV97PRxshHV3dMwOpLRgcP1QNhrVWh6VVDfm2gmWULpvsjoykcPS6vrCFksY5CpQsSvNHqJBzQjWS8FubUI76w==} 438 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 439 | dependencies: 440 | '@parcel/diagnostic': 2.11.0 441 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 442 | '@parcel/source-map': 2.1.1 443 | '@parcel/utils': 2.11.0 444 | browserslist: 4.23.0 445 | lightningcss: 1.23.0 446 | nullthrows: 1.1.1 447 | transitivePeerDependencies: 448 | - '@parcel/core' 449 | dev: true 450 | 451 | /@parcel/optimizer-htmlnano@2.11.0(@parcel/core@2.11.0)(typescript@5.3.3): 452 | resolution: {integrity: sha512-c20pz4EFF5DNFmqYgptlIj49eT6xjGLkDTdHH3RRzxKovuSXWfYSPs3GED3ZsjVuQyjNQif+/MAk9547F7hrdQ==} 453 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 454 | dependencies: 455 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 456 | htmlnano: 2.1.0(svgo@2.8.0)(typescript@5.3.3) 457 | nullthrows: 1.1.1 458 | posthtml: 0.16.6 459 | svgo: 2.8.0 460 | transitivePeerDependencies: 461 | - '@parcel/core' 462 | - cssnano 463 | - postcss 464 | - purgecss 465 | - relateurl 466 | - srcset 467 | - terser 468 | - typescript 469 | - uncss 470 | dev: true 471 | 472 | /@parcel/optimizer-image@2.11.0(@parcel/core@2.11.0): 473 | resolution: {integrity: sha512-jCaJww5QFG2GuNzYW8nlSW+Ea+Cv47TRnOPJNquFIajgfTLJ5ddsWbaNal0GQsL8yNiCBKWd1AV4W0RH9tG0Jg==} 474 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 475 | peerDependencies: 476 | '@parcel/core': ^2.11.0 477 | dependencies: 478 | '@parcel/core': 2.11.0 479 | '@parcel/diagnostic': 2.11.0 480 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 481 | '@parcel/rust': 2.11.0 482 | '@parcel/utils': 2.11.0 483 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 484 | dev: true 485 | 486 | /@parcel/optimizer-svgo@2.11.0(@parcel/core@2.11.0): 487 | resolution: {integrity: sha512-TQpvfBhjV2IsuFHXUolbDS6XWB3DDR2rYTlqlA8LMmuOY7jQd9Bnkl4JnapzWm/bRuzRlzdGjjVCPGL8iShFvA==} 488 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 489 | dependencies: 490 | '@parcel/diagnostic': 2.11.0 491 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 492 | '@parcel/utils': 2.11.0 493 | svgo: 2.8.0 494 | transitivePeerDependencies: 495 | - '@parcel/core' 496 | dev: true 497 | 498 | /@parcel/optimizer-swc@2.11.0(@parcel/core@2.11.0): 499 | resolution: {integrity: sha512-ftf42F3JyZxJb6nnLlgNGyNQ273YOla4dFGH/tWC8iTwObHUpWe7cMbCGcrSJBvAlsLkZfLpFNAXFxUgxdKyHQ==} 500 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 501 | dependencies: 502 | '@parcel/diagnostic': 2.11.0 503 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 504 | '@parcel/source-map': 2.1.1 505 | '@parcel/utils': 2.11.0 506 | '@swc/core': 1.4.1 507 | nullthrows: 1.1.1 508 | transitivePeerDependencies: 509 | - '@parcel/core' 510 | - '@swc/helpers' 511 | dev: true 512 | 513 | /@parcel/package-manager@2.11.0(@parcel/core@2.11.0): 514 | resolution: {integrity: sha512-QzdsrUYlAwIzb8by7WJjqYnbR1MoMKWbtE1MXUeYsZbFusV8B6pOH+lwqNJKS/BFtddZMRPYFueZS2N2fwzjig==} 515 | engines: {node: '>= 12.0.0'} 516 | peerDependencies: 517 | '@parcel/core': ^2.11.0 518 | dependencies: 519 | '@parcel/core': 2.11.0 520 | '@parcel/diagnostic': 2.11.0 521 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 522 | '@parcel/logger': 2.11.0 523 | '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0) 524 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 525 | '@parcel/utils': 2.11.0 526 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 527 | semver: 7.6.0 528 | dev: true 529 | 530 | /@parcel/packager-css@2.11.0(@parcel/core@2.11.0): 531 | resolution: {integrity: sha512-AyIxsp4eL8c22vp2oO2hSRnr3hSVNkARNZc9DG6uXxCc2Is5tUEX0I4PwxWnAx0EI44l+3zX/o414zT8yV9wwQ==} 532 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 533 | dependencies: 534 | '@parcel/diagnostic': 2.11.0 535 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 536 | '@parcel/source-map': 2.1.1 537 | '@parcel/utils': 2.11.0 538 | nullthrows: 1.1.1 539 | transitivePeerDependencies: 540 | - '@parcel/core' 541 | dev: true 542 | 543 | /@parcel/packager-html@2.11.0(@parcel/core@2.11.0): 544 | resolution: {integrity: sha512-ho5AQ70naTV8IqkKIbKtK+jsXQ5TJfFgtBvmJlyB3YydRMbIc+3g4G0xgIvf15V4uCMw9Md0Sv1W65nQXHPQoA==} 545 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 546 | dependencies: 547 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 548 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 549 | '@parcel/utils': 2.11.0 550 | nullthrows: 1.1.1 551 | posthtml: 0.16.6 552 | transitivePeerDependencies: 553 | - '@parcel/core' 554 | dev: true 555 | 556 | /@parcel/packager-js@2.11.0(@parcel/core@2.11.0): 557 | resolution: {integrity: sha512-SxjCsd0xQfg5H73YtVJj9VOpr9s0rwMsSoeykjkatbkEla9NsZajsUkd/bfYf+/0WvEKOrB8oUBo15HkGOgKug==} 558 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 559 | dependencies: 560 | '@parcel/diagnostic': 2.11.0 561 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 562 | '@parcel/rust': 2.11.0 563 | '@parcel/source-map': 2.1.1 564 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 565 | '@parcel/utils': 2.11.0 566 | globals: 13.24.0 567 | nullthrows: 1.1.1 568 | transitivePeerDependencies: 569 | - '@parcel/core' 570 | dev: true 571 | 572 | /@parcel/packager-raw@2.11.0(@parcel/core@2.11.0): 573 | resolution: {integrity: sha512-2/0JQ8DZrz7cVNXwD6OYoUUtSSnlr4dsz8ZkpFDKsBJhvMHtC78Sq+1EDixDGOMiUcalSEjNsoHtkpq9uNh+Xw==} 574 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 575 | dependencies: 576 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 577 | transitivePeerDependencies: 578 | - '@parcel/core' 579 | dev: true 580 | 581 | /@parcel/packager-svg@2.11.0(@parcel/core@2.11.0): 582 | resolution: {integrity: sha512-2wQBkzLwcaWFGWz8TP+bgsXgiueWPzrjKsWugWdDfq0FbXh8XVeR/599qnus3RFHZy4cH6L6yq/7zxcljtxK8A==} 583 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 584 | dependencies: 585 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 586 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 587 | '@parcel/utils': 2.11.0 588 | posthtml: 0.16.6 589 | transitivePeerDependencies: 590 | - '@parcel/core' 591 | dev: true 592 | 593 | /@parcel/packager-wasm@2.11.0(@parcel/core@2.11.0): 594 | resolution: {integrity: sha512-tTy4EbDXeeiZ0oB7L2FWaHSD1mbmYZP6R5HXqkvc5dECGUKPU5Jz6ek2C5AM+HfQdQLKXPQ/Xw3eJnI/AmctVg==} 595 | engines: {node: '>=12.0.0', parcel: ^2.11.0} 596 | dependencies: 597 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 598 | transitivePeerDependencies: 599 | - '@parcel/core' 600 | dev: true 601 | 602 | /@parcel/plugin@2.11.0(@parcel/core@2.11.0): 603 | resolution: {integrity: sha512-9npuKBlhnPn7oeUpLJGecceg16GkXbvzbr6MNSZiHhkx3IBeITHQXlZnp2zAjUOFreNsYOfifwEF2S4KsARfBQ==} 604 | engines: {node: '>= 12.0.0'} 605 | dependencies: 606 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 607 | transitivePeerDependencies: 608 | - '@parcel/core' 609 | dev: true 610 | 611 | /@parcel/profiler@2.11.0: 612 | resolution: {integrity: sha512-s10SS09prOdwnaAcjK8M5zO8o+zPJJW5oOqXPNdf6KH4NGD/ue7iOk2xM8QLw6ulSwxE7NDt++lyfW3AXgCZwg==} 613 | engines: {node: '>= 12.0.0'} 614 | dependencies: 615 | '@parcel/diagnostic': 2.11.0 616 | '@parcel/events': 2.11.0 617 | chrome-trace-event: 1.0.3 618 | dev: true 619 | 620 | /@parcel/reporter-cli@2.11.0(@parcel/core@2.11.0): 621 | resolution: {integrity: sha512-hY0iO0f+LifgJHDUIjGQJnxLFSkk2jlbfy+kIaft5oI3/IM+UljecfGO+14XH8mYlqRXXPsT09TJe8ZKQzp4ZQ==} 622 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 623 | dependencies: 624 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 625 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 626 | '@parcel/utils': 2.11.0 627 | chalk: 4.1.2 628 | cli-progress: 3.12.0 629 | term-size: 2.2.1 630 | transitivePeerDependencies: 631 | - '@parcel/core' 632 | dev: true 633 | 634 | /@parcel/reporter-dev-server@2.11.0(@parcel/core@2.11.0): 635 | resolution: {integrity: sha512-T4ue1+oLFNdcd9maw8QWQuxzOS2kX2jOrSvYKwYd9oGnqiAr1rpiHYYKJhHng+PF5ybwWkj8dUJfGh2NoQysJA==} 636 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 637 | dependencies: 638 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 639 | '@parcel/utils': 2.11.0 640 | transitivePeerDependencies: 641 | - '@parcel/core' 642 | dev: true 643 | 644 | /@parcel/reporter-tracer@2.11.0(@parcel/core@2.11.0): 645 | resolution: {integrity: sha512-33q4ftO26OPWHkUpEm0bzzSjW2kHEh6q/JFePwf8W6APTQVruj4mV46+Fh6rxX42ixs92K/QoiE0gYgWZQVDHA==} 646 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 647 | dependencies: 648 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 649 | '@parcel/utils': 2.11.0 650 | chrome-trace-event: 1.0.3 651 | nullthrows: 1.1.1 652 | transitivePeerDependencies: 653 | - '@parcel/core' 654 | dev: true 655 | 656 | /@parcel/resolver-default@2.11.0(@parcel/core@2.11.0): 657 | resolution: {integrity: sha512-suZNN2lE5W48LPTwAbG7gnj1IeubkCVEm0XspWXcXUtCzglimNJ8PVVBGx171o5CqDpdbGF3AqHjG9N3uOwXag==} 658 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 659 | dependencies: 660 | '@parcel/node-resolver-core': 3.2.0(@parcel/core@2.11.0) 661 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 662 | transitivePeerDependencies: 663 | - '@parcel/core' 664 | dev: true 665 | 666 | /@parcel/runtime-browser-hmr@2.11.0(@parcel/core@2.11.0): 667 | resolution: {integrity: sha512-uVwNBtoLMrlPHLvRS05BVhLseduMOpZT36yiIjS0YSBJcC6/otI9AY7ZiDPYmrB5xTqM0R+D554JhPaJHCuocw==} 668 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 669 | dependencies: 670 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 671 | '@parcel/utils': 2.11.0 672 | transitivePeerDependencies: 673 | - '@parcel/core' 674 | dev: true 675 | 676 | /@parcel/runtime-js@2.11.0(@parcel/core@2.11.0): 677 | resolution: {integrity: sha512-fH3nJoexINz7s4cDzp0Vjsx0k1pMYSa5ch38LbbNqCKTermy0pS0zZuvgfLfHFFP+AMRpFQenrF7h7N3bgDmHw==} 678 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 679 | dependencies: 680 | '@parcel/diagnostic': 2.11.0 681 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 682 | '@parcel/utils': 2.11.0 683 | nullthrows: 1.1.1 684 | transitivePeerDependencies: 685 | - '@parcel/core' 686 | dev: true 687 | 688 | /@parcel/runtime-react-refresh@2.11.0(@parcel/core@2.11.0): 689 | resolution: {integrity: sha512-Kfnc7gLjhoephLMnjABrkIkzVfzPrpJlxiJFIleY2Fm57YhmCfKsEYxm3lHOutNaYl1VArW0LKClPH/VHG9vfQ==} 690 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 691 | dependencies: 692 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 693 | '@parcel/utils': 2.11.0 694 | react-error-overlay: 6.0.9 695 | react-refresh: 0.9.0 696 | transitivePeerDependencies: 697 | - '@parcel/core' 698 | dev: true 699 | 700 | /@parcel/runtime-service-worker@2.11.0(@parcel/core@2.11.0): 701 | resolution: {integrity: sha512-c8MaSpSbXIKuN5sA/g4UsrsH1BtBZ6Em+eSxt9AYbdPtWrW+qwCioNVZj9lugBRUzDMjVfJz0yK59nS42hABvw==} 702 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 703 | dependencies: 704 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 705 | '@parcel/utils': 2.11.0 706 | nullthrows: 1.1.1 707 | transitivePeerDependencies: 708 | - '@parcel/core' 709 | dev: true 710 | 711 | /@parcel/rust@2.11.0: 712 | resolution: {integrity: sha512-UkLWdHOD8Md2YmJDPsqd3yIs9chhdl/ATfV/B/xdPKGmqtNouYpDCRlq+WxMt3mLoYgHEg9UwrWLTebo2rr2iQ==} 713 | engines: {node: '>= 12.0.0'} 714 | dev: true 715 | 716 | /@parcel/source-map@2.1.1: 717 | resolution: {integrity: sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==} 718 | engines: {node: ^12.18.3 || >=14} 719 | dependencies: 720 | detect-libc: 1.0.3 721 | dev: true 722 | 723 | /@parcel/transformer-babel@2.11.0(@parcel/core@2.11.0): 724 | resolution: {integrity: sha512-WKGblnp7r426VG+cpeQzc6dj/30EoUaYwyl4OEaigQSJizyuPWTBWTz6FUw+ih1/sg37h+D1BIh9C2FsVzpzbw==} 725 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 726 | dependencies: 727 | '@parcel/diagnostic': 2.11.0 728 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 729 | '@parcel/source-map': 2.1.1 730 | '@parcel/utils': 2.11.0 731 | browserslist: 4.23.0 732 | json5: 2.2.3 733 | nullthrows: 1.1.1 734 | semver: 7.6.0 735 | transitivePeerDependencies: 736 | - '@parcel/core' 737 | dev: true 738 | 739 | /@parcel/transformer-css@2.11.0(@parcel/core@2.11.0): 740 | resolution: {integrity: sha512-nFmBulF/ErNoafO87JbVrBavjBMNwE/kahbCRVxc2Mvlphz4F4lBW4eDRS5l4xBqFJaNkHr9R55ehLBBilF4Jw==} 741 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 742 | dependencies: 743 | '@parcel/diagnostic': 2.11.0 744 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 745 | '@parcel/source-map': 2.1.1 746 | '@parcel/utils': 2.11.0 747 | browserslist: 4.23.0 748 | lightningcss: 1.23.0 749 | nullthrows: 1.1.1 750 | transitivePeerDependencies: 751 | - '@parcel/core' 752 | dev: true 753 | 754 | /@parcel/transformer-html@2.11.0(@parcel/core@2.11.0): 755 | resolution: {integrity: sha512-90vp7mbvvfqPr9XIINpMcELtywj56f1bxfOkLQgWU1bm22H0FT3i5dqdac++2My0IGDvMwhAEjQfbn4pA579NQ==} 756 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 757 | dependencies: 758 | '@parcel/diagnostic': 2.11.0 759 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 760 | '@parcel/rust': 2.11.0 761 | nullthrows: 1.1.1 762 | posthtml: 0.16.6 763 | posthtml-parser: 0.10.2 764 | posthtml-render: 3.0.0 765 | semver: 7.6.0 766 | srcset: 4.0.0 767 | transitivePeerDependencies: 768 | - '@parcel/core' 769 | dev: true 770 | 771 | /@parcel/transformer-image@2.11.0(@parcel/core@2.11.0): 772 | resolution: {integrity: sha512-QiZj18UHf3lVFsi65Vz8YbS3ydx9Pe9x8ktMxE1oh9qpznN8lD7gE/Z9DxuTZB84EZ9pKytKwcv5WGXP25xIFg==} 773 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 774 | peerDependencies: 775 | '@parcel/core': ^2.11.0 776 | dependencies: 777 | '@parcel/core': 2.11.0 778 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 779 | '@parcel/utils': 2.11.0 780 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 781 | nullthrows: 1.1.1 782 | dev: true 783 | 784 | /@parcel/transformer-js@2.11.0(@parcel/core@2.11.0): 785 | resolution: {integrity: sha512-G1sv0n8/fJqHqwUs0iVnVdmRY0Kh8kWaDkuWcU/GJBHMGhUnLXKdNwxX2Av9UdBL14bU1nTINfr9qOfnQotXWg==} 786 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 787 | peerDependencies: 788 | '@parcel/core': ^2.11.0 789 | dependencies: 790 | '@parcel/core': 2.11.0 791 | '@parcel/diagnostic': 2.11.0 792 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 793 | '@parcel/rust': 2.11.0 794 | '@parcel/source-map': 2.1.1 795 | '@parcel/utils': 2.11.0 796 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 797 | '@swc/helpers': 0.5.6 798 | browserslist: 4.23.0 799 | nullthrows: 1.1.1 800 | regenerator-runtime: 0.13.11 801 | semver: 7.6.0 802 | dev: true 803 | 804 | /@parcel/transformer-json@2.11.0(@parcel/core@2.11.0): 805 | resolution: {integrity: sha512-Wt/wgSBaRWmPL4gpvjkV0bCBRxFOtsuLNzsm8vYA5poxTFhuLY+AoyQ8S2+xXU4VxwBfdppfIr2Ny3SwGs8xbQ==} 806 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 807 | dependencies: 808 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 809 | json5: 2.2.3 810 | transitivePeerDependencies: 811 | - '@parcel/core' 812 | dev: true 813 | 814 | /@parcel/transformer-postcss@2.11.0(@parcel/core@2.11.0): 815 | resolution: {integrity: sha512-Ugy8XHBaUptGotsvwzq7gPCvkCopTIqqZ0JZ40Jmy9slGms8wnx06pNHA1Be/RcJwkJ2TbSu+7ncZdgmP5x5GQ==} 816 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 817 | dependencies: 818 | '@parcel/diagnostic': 2.11.0 819 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 820 | '@parcel/rust': 2.11.0 821 | '@parcel/utils': 2.11.0 822 | clone: 2.1.2 823 | nullthrows: 1.1.1 824 | postcss-value-parser: 4.2.0 825 | semver: 7.6.0 826 | transitivePeerDependencies: 827 | - '@parcel/core' 828 | dev: true 829 | 830 | /@parcel/transformer-posthtml@2.11.0(@parcel/core@2.11.0): 831 | resolution: {integrity: sha512-dMK4p1RRAoIJEjK/Wz9GOLqwHqdD/VQDhMPk+6sUKp5zf2MhSohUstpp5gKsSZivCM3PS2f8k9rgroacJ/ReuA==} 832 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 833 | dependencies: 834 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 835 | '@parcel/utils': 2.11.0 836 | nullthrows: 1.1.1 837 | posthtml: 0.16.6 838 | posthtml-parser: 0.10.2 839 | posthtml-render: 3.0.0 840 | semver: 7.6.0 841 | transitivePeerDependencies: 842 | - '@parcel/core' 843 | dev: true 844 | 845 | /@parcel/transformer-raw@2.11.0(@parcel/core@2.11.0): 846 | resolution: {integrity: sha512-2ltp3TgS+cxEqSM1vk5gDtJrYx4KMuRRtbSgSvkdldyOgPhflnLU3/HRz72hXSNGqYOV0/JN0+ocsfPnqR00ug==} 847 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 848 | dependencies: 849 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 850 | transitivePeerDependencies: 851 | - '@parcel/core' 852 | dev: true 853 | 854 | /@parcel/transformer-react-refresh-wrap@2.11.0(@parcel/core@2.11.0): 855 | resolution: {integrity: sha512-6pY0CdIgIpXC6XpsDWizf+zLgiuEsJ106HjWLwF7/R72BrvDhLPZ6jRu4UTrnd6bM89KahPw9fZZzjKoA5Efcw==} 856 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 857 | dependencies: 858 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 859 | '@parcel/utils': 2.11.0 860 | react-refresh: 0.9.0 861 | transitivePeerDependencies: 862 | - '@parcel/core' 863 | dev: true 864 | 865 | /@parcel/transformer-sass@2.11.0(@parcel/core@2.11.0): 866 | resolution: {integrity: sha512-caVIj1UANPgtlZOXcsBrQ++ouAy04hcq+wTwxJrf5t3XA4pdXQmkiLs5WIIUUGBp5hwkV6/BSwc4ht87MunA0g==} 867 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 868 | dependencies: 869 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 870 | '@parcel/source-map': 2.1.1 871 | sass: 1.71.0 872 | transitivePeerDependencies: 873 | - '@parcel/core' 874 | dev: true 875 | 876 | /@parcel/transformer-svg@2.11.0(@parcel/core@2.11.0): 877 | resolution: {integrity: sha512-GrTNi04OoQSXsyrB7FqQPeYREscEXFhIBPkyQ0q7WDG/yYynWljiA0kwITCtMjPfv2EDVks292dvM3EcnERRIA==} 878 | engines: {node: '>= 12.0.0', parcel: ^2.11.0} 879 | dependencies: 880 | '@parcel/diagnostic': 2.11.0 881 | '@parcel/plugin': 2.11.0(@parcel/core@2.11.0) 882 | '@parcel/rust': 2.11.0 883 | nullthrows: 1.1.1 884 | posthtml: 0.16.6 885 | posthtml-parser: 0.10.2 886 | posthtml-render: 3.0.0 887 | semver: 7.6.0 888 | transitivePeerDependencies: 889 | - '@parcel/core' 890 | dev: true 891 | 892 | /@parcel/types@2.11.0(@parcel/core@2.11.0): 893 | resolution: {integrity: sha512-lN5XlfV9b1s2rli8q1LqsLtu+D4ZwNI3sKmNcL/3tohSfQcF2EgF+MaiANGo9VzXOzoWFHt4dqWjO4OcdyC5tg==} 894 | dependencies: 895 | '@parcel/cache': 2.11.0(@parcel/core@2.11.0) 896 | '@parcel/diagnostic': 2.11.0 897 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 898 | '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0) 899 | '@parcel/source-map': 2.1.1 900 | '@parcel/workers': 2.11.0(@parcel/core@2.11.0) 901 | utility-types: 3.11.0 902 | transitivePeerDependencies: 903 | - '@parcel/core' 904 | dev: true 905 | 906 | /@parcel/utils@2.11.0: 907 | resolution: {integrity: sha512-AcL70cXlIyE7eQdvjQbYxegN5l+skqvlJllxTWg4YkIZe9p8Gmv74jLAeLWh5F+IGl5WRn0TSy9JhNJjIMQGwQ==} 908 | engines: {node: '>= 12.0.0'} 909 | dependencies: 910 | '@parcel/codeframe': 2.11.0 911 | '@parcel/diagnostic': 2.11.0 912 | '@parcel/logger': 2.11.0 913 | '@parcel/markdown-ansi': 2.11.0 914 | '@parcel/rust': 2.11.0 915 | '@parcel/source-map': 2.1.1 916 | chalk: 4.1.2 917 | nullthrows: 1.1.1 918 | dev: true 919 | 920 | /@parcel/watcher-android-arm64@2.4.0: 921 | resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==} 922 | engines: {node: '>= 10.0.0'} 923 | cpu: [arm64] 924 | os: [android] 925 | requiresBuild: true 926 | dev: true 927 | optional: true 928 | 929 | /@parcel/watcher-darwin-arm64@2.4.0: 930 | resolution: {integrity: sha512-T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA==} 931 | engines: {node: '>= 10.0.0'} 932 | cpu: [arm64] 933 | os: [darwin] 934 | requiresBuild: true 935 | dev: true 936 | optional: true 937 | 938 | /@parcel/watcher-darwin-x64@2.4.0: 939 | resolution: {integrity: sha512-vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q==} 940 | engines: {node: '>= 10.0.0'} 941 | cpu: [x64] 942 | os: [darwin] 943 | requiresBuild: true 944 | dev: true 945 | optional: true 946 | 947 | /@parcel/watcher-freebsd-x64@2.4.0: 948 | resolution: {integrity: sha512-dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA==} 949 | engines: {node: '>= 10.0.0'} 950 | cpu: [x64] 951 | os: [freebsd] 952 | requiresBuild: true 953 | dev: true 954 | optional: true 955 | 956 | /@parcel/watcher-linux-arm-glibc@2.4.0: 957 | resolution: {integrity: sha512-9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ==} 958 | engines: {node: '>= 10.0.0'} 959 | cpu: [arm] 960 | os: [linux] 961 | requiresBuild: true 962 | dev: true 963 | optional: true 964 | 965 | /@parcel/watcher-linux-arm64-glibc@2.4.0: 966 | resolution: {integrity: sha512-QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg==} 967 | engines: {node: '>= 10.0.0'} 968 | cpu: [arm64] 969 | os: [linux] 970 | requiresBuild: true 971 | dev: true 972 | optional: true 973 | 974 | /@parcel/watcher-linux-arm64-musl@2.4.0: 975 | resolution: {integrity: sha512-oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng==} 976 | engines: {node: '>= 10.0.0'} 977 | cpu: [arm64] 978 | os: [linux] 979 | requiresBuild: true 980 | dev: true 981 | optional: true 982 | 983 | /@parcel/watcher-linux-x64-glibc@2.4.0: 984 | resolution: {integrity: sha512-KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ==} 985 | engines: {node: '>= 10.0.0'} 986 | cpu: [x64] 987 | os: [linux] 988 | requiresBuild: true 989 | dev: true 990 | optional: true 991 | 992 | /@parcel/watcher-linux-x64-musl@2.4.0: 993 | resolution: {integrity: sha512-7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA==} 994 | engines: {node: '>= 10.0.0'} 995 | cpu: [x64] 996 | os: [linux] 997 | requiresBuild: true 998 | dev: true 999 | optional: true 1000 | 1001 | /@parcel/watcher-win32-arm64@2.4.0: 1002 | resolution: {integrity: sha512-NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg==} 1003 | engines: {node: '>= 10.0.0'} 1004 | cpu: [arm64] 1005 | os: [win32] 1006 | requiresBuild: true 1007 | dev: true 1008 | optional: true 1009 | 1010 | /@parcel/watcher-win32-ia32@2.4.0: 1011 | resolution: {integrity: sha512-IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA==} 1012 | engines: {node: '>= 10.0.0'} 1013 | cpu: [ia32] 1014 | os: [win32] 1015 | requiresBuild: true 1016 | dev: true 1017 | optional: true 1018 | 1019 | /@parcel/watcher-win32-x64@2.4.0: 1020 | resolution: {integrity: sha512-pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA==} 1021 | engines: {node: '>= 10.0.0'} 1022 | cpu: [x64] 1023 | os: [win32] 1024 | requiresBuild: true 1025 | dev: true 1026 | optional: true 1027 | 1028 | /@parcel/watcher@2.4.0: 1029 | resolution: {integrity: sha512-XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg==} 1030 | engines: {node: '>= 10.0.0'} 1031 | dependencies: 1032 | detect-libc: 1.0.3 1033 | is-glob: 4.0.3 1034 | micromatch: 4.0.5 1035 | node-addon-api: 7.1.0 1036 | optionalDependencies: 1037 | '@parcel/watcher-android-arm64': 2.4.0 1038 | '@parcel/watcher-darwin-arm64': 2.4.0 1039 | '@parcel/watcher-darwin-x64': 2.4.0 1040 | '@parcel/watcher-freebsd-x64': 2.4.0 1041 | '@parcel/watcher-linux-arm-glibc': 2.4.0 1042 | '@parcel/watcher-linux-arm64-glibc': 2.4.0 1043 | '@parcel/watcher-linux-arm64-musl': 2.4.0 1044 | '@parcel/watcher-linux-x64-glibc': 2.4.0 1045 | '@parcel/watcher-linux-x64-musl': 2.4.0 1046 | '@parcel/watcher-win32-arm64': 2.4.0 1047 | '@parcel/watcher-win32-ia32': 2.4.0 1048 | '@parcel/watcher-win32-x64': 2.4.0 1049 | dev: true 1050 | 1051 | /@parcel/workers@2.11.0(@parcel/core@2.11.0): 1052 | resolution: {integrity: sha512-wjybqdSy6Nk0N9iBGsFcp7739W2zvx0WGfVxPVShqhz46pIkPOiFF/iSn+kFu5EmMKTRWeUif42+a6rRZ7pCnQ==} 1053 | engines: {node: '>= 12.0.0'} 1054 | peerDependencies: 1055 | '@parcel/core': ^2.11.0 1056 | dependencies: 1057 | '@parcel/core': 2.11.0 1058 | '@parcel/diagnostic': 2.11.0 1059 | '@parcel/logger': 2.11.0 1060 | '@parcel/profiler': 2.11.0 1061 | '@parcel/types': 2.11.0(@parcel/core@2.11.0) 1062 | '@parcel/utils': 2.11.0 1063 | nullthrows: 1.1.1 1064 | dev: true 1065 | 1066 | /@swc/core-darwin-arm64@1.4.1: 1067 | resolution: {integrity: sha512-ePyfx0348UbR4DOAW24TedeJbafnzha8liXFGuQ4bdXtEVXhLfPngprrxKrAddCuv42F9aTxydlF6+adD3FBhA==} 1068 | engines: {node: '>=10'} 1069 | cpu: [arm64] 1070 | os: [darwin] 1071 | requiresBuild: true 1072 | dev: true 1073 | optional: true 1074 | 1075 | /@swc/core-darwin-x64@1.4.1: 1076 | resolution: {integrity: sha512-eLf4JSe6VkCMdDowjM8XNC5rO+BrgfbluEzAVtKR8L2HacNYukieumN7EzpYCi0uF1BYwu1ku6tLyG2r0VcGxA==} 1077 | engines: {node: '>=10'} 1078 | cpu: [x64] 1079 | os: [darwin] 1080 | requiresBuild: true 1081 | dev: true 1082 | optional: true 1083 | 1084 | /@swc/core-linux-arm-gnueabihf@1.4.1: 1085 | resolution: {integrity: sha512-K8VtTLWMw+rkN/jDC9o/Q9SMmzdiHwYo2CfgkwVT29NsGccwmNhCQx6XoYiPKyKGIFKt4tdQnJHKUFzxUqQVtQ==} 1086 | engines: {node: '>=10'} 1087 | cpu: [arm] 1088 | os: [linux] 1089 | requiresBuild: true 1090 | dev: true 1091 | optional: true 1092 | 1093 | /@swc/core-linux-arm64-gnu@1.4.1: 1094 | resolution: {integrity: sha512-0e8p4g0Bfkt8lkiWgcdiENH3RzkcqKtpRXIVNGOmVc0OBkvc2tpm2WTx/eoCnes2HpTT4CTtR3Zljj4knQ4Fvw==} 1095 | engines: {node: '>=10'} 1096 | cpu: [arm64] 1097 | os: [linux] 1098 | requiresBuild: true 1099 | dev: true 1100 | optional: true 1101 | 1102 | /@swc/core-linux-arm64-musl@1.4.1: 1103 | resolution: {integrity: sha512-b/vWGQo2n7lZVUnSQ7NBq3Qrj85GrAPPiRbpqaIGwOytiFSk8VULFihbEUwDe0rXgY4LDm8z8wkgADZcLnmdUA==} 1104 | engines: {node: '>=10'} 1105 | cpu: [arm64] 1106 | os: [linux] 1107 | requiresBuild: true 1108 | dev: true 1109 | optional: true 1110 | 1111 | /@swc/core-linux-x64-gnu@1.4.1: 1112 | resolution: {integrity: sha512-AFMQlvkKEdNi1Vk2GFTxxJzbICttBsOQaXa98kFTeWTnFFIyiIj2w7Sk8XRTEJ/AjF8ia8JPKb1zddBWr9+bEQ==} 1113 | engines: {node: '>=10'} 1114 | cpu: [x64] 1115 | os: [linux] 1116 | requiresBuild: true 1117 | dev: true 1118 | optional: true 1119 | 1120 | /@swc/core-linux-x64-musl@1.4.1: 1121 | resolution: {integrity: sha512-QX2MxIECX1gfvUVZY+jk528/oFkS9MAl76e3ZRvG2KC/aKlCQL0KSzcTSm13mOxkDKS30EaGRDRQWNukGpMeRg==} 1122 | engines: {node: '>=10'} 1123 | cpu: [x64] 1124 | os: [linux] 1125 | requiresBuild: true 1126 | dev: true 1127 | optional: true 1128 | 1129 | /@swc/core-win32-arm64-msvc@1.4.1: 1130 | resolution: {integrity: sha512-OklkJYXXI/tntD2zaY8i3iZldpyDw5q+NAP3k9OlQ7wXXf37djRsHLV0NW4+ZNHBjE9xp2RsXJ0jlOJhfgGoFA==} 1131 | engines: {node: '>=10'} 1132 | cpu: [arm64] 1133 | os: [win32] 1134 | requiresBuild: true 1135 | dev: true 1136 | optional: true 1137 | 1138 | /@swc/core-win32-ia32-msvc@1.4.1: 1139 | resolution: {integrity: sha512-MBuc3/QfKX9FnLOU7iGN+6yHRTQaPQ9WskiC8s8JFiKQ+7I2p25tay2RplR9dIEEGgVAu6L7auv96LbNTh+FaA==} 1140 | engines: {node: '>=10'} 1141 | cpu: [ia32] 1142 | os: [win32] 1143 | requiresBuild: true 1144 | dev: true 1145 | optional: true 1146 | 1147 | /@swc/core-win32-x64-msvc@1.4.1: 1148 | resolution: {integrity: sha512-lu4h4wFBb/bOK6N2MuZwg7TrEpwYXgpQf5R7ObNSXL65BwZ9BG8XRzD+dLJmALu8l5N08rP/TrpoKRoGT4WSxw==} 1149 | engines: {node: '>=10'} 1150 | cpu: [x64] 1151 | os: [win32] 1152 | requiresBuild: true 1153 | dev: true 1154 | optional: true 1155 | 1156 | /@swc/core@1.4.1: 1157 | resolution: {integrity: sha512-3y+Y8js+e7BbM16iND+6Rcs3jdiL28q3iVtYsCviYSSpP2uUVKkp5sJnCY4pg8AaVvyN7CGQHO7gLEZQ5ByozQ==} 1158 | engines: {node: '>=10'} 1159 | requiresBuild: true 1160 | peerDependencies: 1161 | '@swc/helpers': ^0.5.0 1162 | peerDependenciesMeta: 1163 | '@swc/helpers': 1164 | optional: true 1165 | dependencies: 1166 | '@swc/counter': 0.1.3 1167 | '@swc/types': 0.1.5 1168 | optionalDependencies: 1169 | '@swc/core-darwin-arm64': 1.4.1 1170 | '@swc/core-darwin-x64': 1.4.1 1171 | '@swc/core-linux-arm-gnueabihf': 1.4.1 1172 | '@swc/core-linux-arm64-gnu': 1.4.1 1173 | '@swc/core-linux-arm64-musl': 1.4.1 1174 | '@swc/core-linux-x64-gnu': 1.4.1 1175 | '@swc/core-linux-x64-musl': 1.4.1 1176 | '@swc/core-win32-arm64-msvc': 1.4.1 1177 | '@swc/core-win32-ia32-msvc': 1.4.1 1178 | '@swc/core-win32-x64-msvc': 1.4.1 1179 | dev: true 1180 | 1181 | /@swc/counter@0.1.3: 1182 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 1183 | dev: true 1184 | 1185 | /@swc/helpers@0.5.6: 1186 | resolution: {integrity: sha512-aYX01Ke9hunpoCexYAgQucEpARGQ5w/cqHFrIR+e9gdKb1QWTsVJuTJ2ozQzIAxLyRQe/m+2RqzkyOOGiMKRQA==} 1187 | dependencies: 1188 | tslib: 2.6.2 1189 | dev: true 1190 | 1191 | /@swc/types@0.1.5: 1192 | resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} 1193 | dev: true 1194 | 1195 | /@trysound/sax@0.2.0: 1196 | resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} 1197 | engines: {node: '>=10.13.0'} 1198 | dev: true 1199 | 1200 | /@types/hast@2.3.10: 1201 | resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} 1202 | dependencies: 1203 | '@types/unist': 2.0.10 1204 | dev: false 1205 | 1206 | /@types/prop-types@15.7.11: 1207 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} 1208 | dev: true 1209 | 1210 | /@types/react-dom@18.2.19: 1211 | resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==} 1212 | dependencies: 1213 | '@types/react': 18.2.56 1214 | dev: true 1215 | 1216 | /@types/react@18.2.56: 1217 | resolution: {integrity: sha512-NpwHDMkS/EFZF2dONFQHgkPRwhvgq/OAvIaGQzxGSBmaeR++kTg6njr15Vatz0/2VcCEwJQFi6Jf4Q0qBu0rLA==} 1218 | dependencies: 1219 | '@types/prop-types': 15.7.11 1220 | '@types/scheduler': 0.16.8 1221 | csstype: 3.1.3 1222 | dev: true 1223 | 1224 | /@types/scheduler@0.16.8: 1225 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} 1226 | dev: true 1227 | 1228 | /@types/unist@2.0.10: 1229 | resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} 1230 | dev: false 1231 | 1232 | /abortcontroller-polyfill@1.7.5: 1233 | resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} 1234 | dev: true 1235 | 1236 | /ansi-regex@5.0.1: 1237 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1238 | engines: {node: '>=8'} 1239 | dev: true 1240 | 1241 | /ansi-styles@3.2.1: 1242 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1243 | engines: {node: '>=4'} 1244 | dependencies: 1245 | color-convert: 1.9.3 1246 | dev: true 1247 | 1248 | /ansi-styles@4.3.0: 1249 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1250 | engines: {node: '>=8'} 1251 | dependencies: 1252 | color-convert: 2.0.1 1253 | dev: true 1254 | 1255 | /anymatch@3.1.3: 1256 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1257 | engines: {node: '>= 8'} 1258 | dependencies: 1259 | normalize-path: 3.0.0 1260 | picomatch: 2.3.1 1261 | dev: true 1262 | 1263 | /argparse@2.0.1: 1264 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1265 | dev: true 1266 | 1267 | /base-x@3.0.9: 1268 | resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} 1269 | dependencies: 1270 | safe-buffer: 5.2.1 1271 | dev: true 1272 | 1273 | /binary-extensions@2.2.0: 1274 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 1275 | engines: {node: '>=8'} 1276 | dev: true 1277 | 1278 | /boolbase@1.0.0: 1279 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 1280 | dev: true 1281 | 1282 | /braces@3.0.2: 1283 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1284 | engines: {node: '>=8'} 1285 | dependencies: 1286 | fill-range: 7.0.1 1287 | dev: true 1288 | 1289 | /browserslist@4.23.0: 1290 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} 1291 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1292 | hasBin: true 1293 | dependencies: 1294 | caniuse-lite: 1.0.30001588 1295 | electron-to-chromium: 1.4.673 1296 | node-releases: 2.0.14 1297 | update-browserslist-db: 1.0.13(browserslist@4.23.0) 1298 | dev: true 1299 | 1300 | /callsites@3.1.0: 1301 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1302 | engines: {node: '>=6'} 1303 | dev: true 1304 | 1305 | /caniuse-lite@1.0.30001588: 1306 | resolution: {integrity: sha512-+hVY9jE44uKLkH0SrUTqxjxqNTOWHsbnQDIKjwkZ3lNTzUUVdBLBGXtj/q5Mp5u98r3droaZAewQuEDzjQdZlQ==} 1307 | dev: true 1308 | 1309 | /chalk@2.4.2: 1310 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 1311 | engines: {node: '>=4'} 1312 | dependencies: 1313 | ansi-styles: 3.2.1 1314 | escape-string-regexp: 1.0.5 1315 | supports-color: 5.5.0 1316 | dev: true 1317 | 1318 | /chalk@4.1.2: 1319 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1320 | engines: {node: '>=10'} 1321 | dependencies: 1322 | ansi-styles: 4.3.0 1323 | supports-color: 7.2.0 1324 | dev: true 1325 | 1326 | /character-entities-legacy@1.1.4: 1327 | resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} 1328 | dev: false 1329 | 1330 | /character-entities@1.2.4: 1331 | resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} 1332 | dev: false 1333 | 1334 | /character-reference-invalid@1.1.4: 1335 | resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} 1336 | dev: false 1337 | 1338 | /chokidar@3.6.0: 1339 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 1340 | engines: {node: '>= 8.10.0'} 1341 | dependencies: 1342 | anymatch: 3.1.3 1343 | braces: 3.0.2 1344 | glob-parent: 5.1.2 1345 | is-binary-path: 2.1.0 1346 | is-glob: 4.0.3 1347 | normalize-path: 3.0.0 1348 | readdirp: 3.6.0 1349 | optionalDependencies: 1350 | fsevents: 2.3.3 1351 | dev: true 1352 | 1353 | /chrome-trace-event@1.0.3: 1354 | resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} 1355 | engines: {node: '>=6.0'} 1356 | dev: true 1357 | 1358 | /cli-progress@3.12.0: 1359 | resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==} 1360 | engines: {node: '>=4'} 1361 | dependencies: 1362 | string-width: 4.2.3 1363 | dev: true 1364 | 1365 | /clone@2.1.2: 1366 | resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 1367 | engines: {node: '>=0.8'} 1368 | dev: true 1369 | 1370 | /color-convert@1.9.3: 1371 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 1372 | dependencies: 1373 | color-name: 1.1.3 1374 | dev: true 1375 | 1376 | /color-convert@2.0.1: 1377 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1378 | engines: {node: '>=7.0.0'} 1379 | dependencies: 1380 | color-name: 1.1.4 1381 | dev: true 1382 | 1383 | /color-name@1.1.3: 1384 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 1385 | dev: true 1386 | 1387 | /color-name@1.1.4: 1388 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1389 | dev: true 1390 | 1391 | /comma-separated-tokens@1.0.8: 1392 | resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} 1393 | dev: false 1394 | 1395 | /commander@7.2.0: 1396 | resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} 1397 | engines: {node: '>= 10'} 1398 | dev: true 1399 | 1400 | /cosmiconfig@8.3.6(typescript@5.3.3): 1401 | resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} 1402 | engines: {node: '>=14'} 1403 | peerDependencies: 1404 | typescript: '>=4.9.5' 1405 | peerDependenciesMeta: 1406 | typescript: 1407 | optional: true 1408 | dependencies: 1409 | import-fresh: 3.3.0 1410 | js-yaml: 4.1.0 1411 | parse-json: 5.2.0 1412 | path-type: 4.0.0 1413 | typescript: 5.3.3 1414 | dev: true 1415 | 1416 | /css-select@4.3.0: 1417 | resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} 1418 | dependencies: 1419 | boolbase: 1.0.0 1420 | css-what: 6.1.0 1421 | domhandler: 4.3.1 1422 | domutils: 2.8.0 1423 | nth-check: 2.1.1 1424 | dev: true 1425 | 1426 | /css-tree@1.1.3: 1427 | resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} 1428 | engines: {node: '>=8.0.0'} 1429 | dependencies: 1430 | mdn-data: 2.0.14 1431 | source-map: 0.6.1 1432 | dev: true 1433 | 1434 | /css-what@6.1.0: 1435 | resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 1436 | engines: {node: '>= 6'} 1437 | dev: true 1438 | 1439 | /csso@4.2.0: 1440 | resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} 1441 | engines: {node: '>=8.0.0'} 1442 | dependencies: 1443 | css-tree: 1.1.3 1444 | dev: true 1445 | 1446 | /csstype@3.1.3: 1447 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 1448 | dev: true 1449 | 1450 | /detect-libc@1.0.3: 1451 | resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} 1452 | engines: {node: '>=0.10'} 1453 | hasBin: true 1454 | dev: true 1455 | 1456 | /detect-libc@2.0.2: 1457 | resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 1458 | engines: {node: '>=8'} 1459 | dev: true 1460 | 1461 | /dom-serializer@1.4.1: 1462 | resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} 1463 | dependencies: 1464 | domelementtype: 2.3.0 1465 | domhandler: 4.3.1 1466 | entities: 2.2.0 1467 | dev: true 1468 | 1469 | /domelementtype@2.3.0: 1470 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 1471 | dev: true 1472 | 1473 | /domhandler@4.3.1: 1474 | resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} 1475 | engines: {node: '>= 4'} 1476 | dependencies: 1477 | domelementtype: 2.3.0 1478 | dev: true 1479 | 1480 | /domutils@2.8.0: 1481 | resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} 1482 | dependencies: 1483 | dom-serializer: 1.4.1 1484 | domelementtype: 2.3.0 1485 | domhandler: 4.3.1 1486 | dev: true 1487 | 1488 | /dotenv-expand@5.1.0: 1489 | resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} 1490 | dev: true 1491 | 1492 | /dotenv@7.0.0: 1493 | resolution: {integrity: sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g==} 1494 | engines: {node: '>=6'} 1495 | dev: true 1496 | 1497 | /electron-to-chromium@1.4.673: 1498 | resolution: {integrity: sha512-zjqzx4N7xGdl5468G+vcgzDhaHkaYgVcf9MqgexcTqsl2UHSCmOj/Bi3HAprg4BZCpC7HyD8a6nZl6QAZf72gw==} 1499 | dev: true 1500 | 1501 | /emoji-regex@8.0.0: 1502 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1503 | dev: true 1504 | 1505 | /entities@2.2.0: 1506 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} 1507 | dev: true 1508 | 1509 | /entities@3.0.1: 1510 | resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} 1511 | engines: {node: '>=0.12'} 1512 | dev: true 1513 | 1514 | /error-ex@1.3.2: 1515 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1516 | dependencies: 1517 | is-arrayish: 0.2.1 1518 | dev: true 1519 | 1520 | /escalade@3.1.2: 1521 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 1522 | engines: {node: '>=6'} 1523 | dev: true 1524 | 1525 | /escape-string-regexp@1.0.5: 1526 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1527 | engines: {node: '>=0.8.0'} 1528 | dev: true 1529 | 1530 | /fault@1.0.4: 1531 | resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} 1532 | dependencies: 1533 | format: 0.2.2 1534 | dev: false 1535 | 1536 | /fill-range@7.0.1: 1537 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1538 | engines: {node: '>=8'} 1539 | dependencies: 1540 | to-regex-range: 5.0.1 1541 | dev: true 1542 | 1543 | /format@0.2.2: 1544 | resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} 1545 | engines: {node: '>=0.4.x'} 1546 | dev: false 1547 | 1548 | /fsevents@2.3.3: 1549 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1550 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1551 | os: [darwin] 1552 | requiresBuild: true 1553 | dev: true 1554 | optional: true 1555 | 1556 | /get-port@4.2.0: 1557 | resolution: {integrity: sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw==} 1558 | engines: {node: '>=6'} 1559 | dev: true 1560 | 1561 | /glob-parent@5.1.2: 1562 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1563 | engines: {node: '>= 6'} 1564 | dependencies: 1565 | is-glob: 4.0.3 1566 | dev: true 1567 | 1568 | /globals@13.24.0: 1569 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1570 | engines: {node: '>=8'} 1571 | dependencies: 1572 | type-fest: 0.20.2 1573 | dev: true 1574 | 1575 | /has-flag@3.0.0: 1576 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1577 | engines: {node: '>=4'} 1578 | dev: true 1579 | 1580 | /has-flag@4.0.0: 1581 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1582 | engines: {node: '>=8'} 1583 | dev: true 1584 | 1585 | /hast-util-parse-selector@2.2.5: 1586 | resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} 1587 | dev: false 1588 | 1589 | /hastscript@6.0.0: 1590 | resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} 1591 | dependencies: 1592 | '@types/hast': 2.3.10 1593 | comma-separated-tokens: 1.0.8 1594 | hast-util-parse-selector: 2.2.5 1595 | property-information: 5.6.0 1596 | space-separated-tokens: 1.1.5 1597 | dev: false 1598 | 1599 | /highlight.js@10.7.3: 1600 | resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 1601 | dev: false 1602 | 1603 | /htmlnano@2.1.0(svgo@2.8.0)(typescript@5.3.3): 1604 | resolution: {integrity: sha512-jVGRE0Ep9byMBKEu0Vxgl8dhXYOUk0iNQ2pjsG+BcRB0u0oDF5A9p/iBGMg/PGKYUyMD0OAGu8dVT5Lzj8S58g==} 1605 | peerDependencies: 1606 | cssnano: ^6.0.0 1607 | postcss: ^8.3.11 1608 | purgecss: ^5.0.0 1609 | relateurl: ^0.2.7 1610 | srcset: 4.0.0 1611 | svgo: ^3.0.2 1612 | terser: ^5.10.0 1613 | uncss: ^0.17.3 1614 | peerDependenciesMeta: 1615 | cssnano: 1616 | optional: true 1617 | postcss: 1618 | optional: true 1619 | purgecss: 1620 | optional: true 1621 | relateurl: 1622 | optional: true 1623 | srcset: 1624 | optional: true 1625 | svgo: 1626 | optional: true 1627 | terser: 1628 | optional: true 1629 | uncss: 1630 | optional: true 1631 | dependencies: 1632 | cosmiconfig: 8.3.6(typescript@5.3.3) 1633 | posthtml: 0.16.6 1634 | svgo: 2.8.0 1635 | timsort: 0.3.0 1636 | transitivePeerDependencies: 1637 | - typescript 1638 | dev: true 1639 | 1640 | /htmlparser2@7.2.0: 1641 | resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} 1642 | dependencies: 1643 | domelementtype: 2.3.0 1644 | domhandler: 4.3.1 1645 | domutils: 2.8.0 1646 | entities: 3.0.1 1647 | dev: true 1648 | 1649 | /immutable@4.3.5: 1650 | resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==} 1651 | dev: true 1652 | 1653 | /import-fresh@3.3.0: 1654 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1655 | engines: {node: '>=6'} 1656 | dependencies: 1657 | parent-module: 1.0.1 1658 | resolve-from: 4.0.0 1659 | dev: true 1660 | 1661 | /is-alphabetical@1.0.4: 1662 | resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} 1663 | dev: false 1664 | 1665 | /is-alphanumerical@1.0.4: 1666 | resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} 1667 | dependencies: 1668 | is-alphabetical: 1.0.4 1669 | is-decimal: 1.0.4 1670 | dev: false 1671 | 1672 | /is-arrayish@0.2.1: 1673 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1674 | dev: true 1675 | 1676 | /is-binary-path@2.1.0: 1677 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1678 | engines: {node: '>=8'} 1679 | dependencies: 1680 | binary-extensions: 2.2.0 1681 | dev: true 1682 | 1683 | /is-decimal@1.0.4: 1684 | resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} 1685 | dev: false 1686 | 1687 | /is-extglob@2.1.1: 1688 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1689 | engines: {node: '>=0.10.0'} 1690 | dev: true 1691 | 1692 | /is-fullwidth-code-point@3.0.0: 1693 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1694 | engines: {node: '>=8'} 1695 | dev: true 1696 | 1697 | /is-glob@4.0.3: 1698 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1699 | engines: {node: '>=0.10.0'} 1700 | dependencies: 1701 | is-extglob: 2.1.1 1702 | dev: true 1703 | 1704 | /is-hexadecimal@1.0.4: 1705 | resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} 1706 | dev: false 1707 | 1708 | /is-json@2.0.1: 1709 | resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} 1710 | dev: true 1711 | 1712 | /is-number@7.0.0: 1713 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1714 | engines: {node: '>=0.12.0'} 1715 | dev: true 1716 | 1717 | /js-tokens@4.0.0: 1718 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1719 | 1720 | /js-yaml@4.1.0: 1721 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1722 | hasBin: true 1723 | dependencies: 1724 | argparse: 2.0.1 1725 | dev: true 1726 | 1727 | /json-parse-even-better-errors@2.3.1: 1728 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1729 | dev: true 1730 | 1731 | /json5@2.2.3: 1732 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1733 | engines: {node: '>=6'} 1734 | hasBin: true 1735 | dev: true 1736 | 1737 | /lightningcss-darwin-arm64@1.23.0: 1738 | resolution: {integrity: sha512-kl4Pk3Q2lnE6AJ7Qaij47KNEfY2/UXRZBT/zqGA24B8qwkgllr/j7rclKOf1axcslNXvvUdztjo4Xqh39Yq1aA==} 1739 | engines: {node: '>= 12.0.0'} 1740 | cpu: [arm64] 1741 | os: [darwin] 1742 | requiresBuild: true 1743 | dev: true 1744 | optional: true 1745 | 1746 | /lightningcss-darwin-x64@1.23.0: 1747 | resolution: {integrity: sha512-KeRFCNoYfDdcolcFXvokVw+PXCapd2yHS1Diko1z1BhRz/nQuD5XyZmxjWdhmhN/zj5sH8YvWsp0/lPLVzqKpg==} 1748 | engines: {node: '>= 12.0.0'} 1749 | cpu: [x64] 1750 | os: [darwin] 1751 | requiresBuild: true 1752 | dev: true 1753 | optional: true 1754 | 1755 | /lightningcss-freebsd-x64@1.23.0: 1756 | resolution: {integrity: sha512-xhnhf0bWPuZxcqknvMDRFFo2TInrmQRWZGB0f6YoAsZX8Y+epfjHeeOIGCfAmgF0DgZxHwYc8mIR5tQU9/+ROA==} 1757 | engines: {node: '>= 12.0.0'} 1758 | cpu: [x64] 1759 | os: [freebsd] 1760 | requiresBuild: true 1761 | dev: true 1762 | optional: true 1763 | 1764 | /lightningcss-linux-arm-gnueabihf@1.23.0: 1765 | resolution: {integrity: sha512-fBamf/bULvmWft9uuX+bZske236pUZEoUlaHNBjnueaCTJ/xd8eXgb0cEc7S5o0Nn6kxlauMBnqJpF70Bgq3zg==} 1766 | engines: {node: '>= 12.0.0'} 1767 | cpu: [arm] 1768 | os: [linux] 1769 | requiresBuild: true 1770 | dev: true 1771 | optional: true 1772 | 1773 | /lightningcss-linux-arm64-gnu@1.23.0: 1774 | resolution: {integrity: sha512-RS7sY77yVLOmZD6xW2uEHByYHhQi5JYWmgVumYY85BfNoVI3DupXSlzbw+b45A9NnVKq45+oXkiN6ouMMtTwfg==} 1775 | engines: {node: '>= 12.0.0'} 1776 | cpu: [arm64] 1777 | os: [linux] 1778 | requiresBuild: true 1779 | dev: true 1780 | optional: true 1781 | 1782 | /lightningcss-linux-arm64-musl@1.23.0: 1783 | resolution: {integrity: sha512-cU00LGb6GUXCwof6ACgSMKo3q7XYbsyTj0WsKHLi1nw7pV0NCq8nFTn6ZRBYLoKiV8t+jWl0Hv8KkgymmK5L5g==} 1784 | engines: {node: '>= 12.0.0'} 1785 | cpu: [arm64] 1786 | os: [linux] 1787 | requiresBuild: true 1788 | dev: true 1789 | optional: true 1790 | 1791 | /lightningcss-linux-x64-gnu@1.23.0: 1792 | resolution: {integrity: sha512-q4jdx5+5NfB0/qMbXbOmuC6oo7caPnFghJbIAV90cXZqgV8Am3miZhC4p+sQVdacqxfd+3nrle4C8icR3p1AYw==} 1793 | engines: {node: '>= 12.0.0'} 1794 | cpu: [x64] 1795 | os: [linux] 1796 | requiresBuild: true 1797 | dev: true 1798 | optional: true 1799 | 1800 | /lightningcss-linux-x64-musl@1.23.0: 1801 | resolution: {integrity: sha512-G9Ri3qpmF4qef2CV/80dADHKXRAQeQXpQTLx7AiQrBYQHqBjB75oxqj06FCIe5g4hNCqLPnM9fsO4CyiT1sFSQ==} 1802 | engines: {node: '>= 12.0.0'} 1803 | cpu: [x64] 1804 | os: [linux] 1805 | requiresBuild: true 1806 | dev: true 1807 | optional: true 1808 | 1809 | /lightningcss-win32-x64-msvc@1.23.0: 1810 | resolution: {integrity: sha512-1rcBDJLU+obPPJM6qR5fgBUiCdZwZLafZM5f9kwjFLkb/UBNIzmae39uCSmh71nzPCTXZqHbvwu23OWnWEz+eg==} 1811 | engines: {node: '>= 12.0.0'} 1812 | cpu: [x64] 1813 | os: [win32] 1814 | requiresBuild: true 1815 | dev: true 1816 | optional: true 1817 | 1818 | /lightningcss@1.23.0: 1819 | resolution: {integrity: sha512-SEArWKMHhqn/0QzOtclIwH5pXIYQOUEkF8DgICd/105O+GCgd7jxjNod/QPnBCSWvpRHQBGVz5fQ9uScby03zA==} 1820 | engines: {node: '>= 12.0.0'} 1821 | dependencies: 1822 | detect-libc: 1.0.3 1823 | optionalDependencies: 1824 | lightningcss-darwin-arm64: 1.23.0 1825 | lightningcss-darwin-x64: 1.23.0 1826 | lightningcss-freebsd-x64: 1.23.0 1827 | lightningcss-linux-arm-gnueabihf: 1.23.0 1828 | lightningcss-linux-arm64-gnu: 1.23.0 1829 | lightningcss-linux-arm64-musl: 1.23.0 1830 | lightningcss-linux-x64-gnu: 1.23.0 1831 | lightningcss-linux-x64-musl: 1.23.0 1832 | lightningcss-win32-x64-msvc: 1.23.0 1833 | dev: true 1834 | 1835 | /lines-and-columns@1.2.4: 1836 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1837 | dev: true 1838 | 1839 | /lmdb@2.8.5: 1840 | resolution: {integrity: sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==} 1841 | hasBin: true 1842 | requiresBuild: true 1843 | dependencies: 1844 | msgpackr: 1.10.1 1845 | node-addon-api: 6.1.0 1846 | node-gyp-build-optional-packages: 5.1.1 1847 | ordered-binary: 1.5.1 1848 | weak-lru-cache: 1.2.2 1849 | optionalDependencies: 1850 | '@lmdb/lmdb-darwin-arm64': 2.8.5 1851 | '@lmdb/lmdb-darwin-x64': 2.8.5 1852 | '@lmdb/lmdb-linux-arm': 2.8.5 1853 | '@lmdb/lmdb-linux-arm64': 2.8.5 1854 | '@lmdb/lmdb-linux-x64': 2.8.5 1855 | '@lmdb/lmdb-win32-x64': 2.8.5 1856 | dev: true 1857 | 1858 | /loose-envify@1.4.0: 1859 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1860 | hasBin: true 1861 | dependencies: 1862 | js-tokens: 4.0.0 1863 | 1864 | /lowlight@1.20.0: 1865 | resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} 1866 | dependencies: 1867 | fault: 1.0.4 1868 | highlight.js: 10.7.3 1869 | dev: false 1870 | 1871 | /lru-cache@6.0.0: 1872 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1873 | engines: {node: '>=10'} 1874 | dependencies: 1875 | yallist: 4.0.0 1876 | dev: true 1877 | 1878 | /mdn-data@2.0.14: 1879 | resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} 1880 | dev: true 1881 | 1882 | /micromatch@4.0.5: 1883 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1884 | engines: {node: '>=8.6'} 1885 | dependencies: 1886 | braces: 3.0.2 1887 | picomatch: 2.3.1 1888 | dev: true 1889 | 1890 | /msgpackr-extract@3.0.2: 1891 | resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==} 1892 | hasBin: true 1893 | requiresBuild: true 1894 | dependencies: 1895 | node-gyp-build-optional-packages: 5.0.7 1896 | optionalDependencies: 1897 | '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.2 1898 | '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.2 1899 | '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.2 1900 | '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.2 1901 | '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.2 1902 | '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.2 1903 | dev: true 1904 | optional: true 1905 | 1906 | /msgpackr@1.10.1: 1907 | resolution: {integrity: sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==} 1908 | optionalDependencies: 1909 | msgpackr-extract: 3.0.2 1910 | dev: true 1911 | 1912 | /node-addon-api@6.1.0: 1913 | resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} 1914 | dev: true 1915 | 1916 | /node-addon-api@7.1.0: 1917 | resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==} 1918 | engines: {node: ^16 || ^18 || >= 20} 1919 | dev: true 1920 | 1921 | /node-gyp-build-optional-packages@5.0.7: 1922 | resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==} 1923 | hasBin: true 1924 | requiresBuild: true 1925 | dev: true 1926 | optional: true 1927 | 1928 | /node-gyp-build-optional-packages@5.1.1: 1929 | resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==} 1930 | hasBin: true 1931 | dependencies: 1932 | detect-libc: 2.0.2 1933 | dev: true 1934 | 1935 | /node-releases@2.0.14: 1936 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1937 | dev: true 1938 | 1939 | /normalize-path@3.0.0: 1940 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1941 | engines: {node: '>=0.10.0'} 1942 | dev: true 1943 | 1944 | /nth-check@2.1.1: 1945 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1946 | dependencies: 1947 | boolbase: 1.0.0 1948 | dev: true 1949 | 1950 | /nullthrows@1.1.1: 1951 | resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} 1952 | dev: true 1953 | 1954 | /ordered-binary@1.5.1: 1955 | resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==} 1956 | dev: true 1957 | 1958 | /parcel@2.11.0(typescript@5.3.3): 1959 | resolution: {integrity: sha512-H/RI1/DmuOkL8RuG/EpNPvtzrbF+7jA/R56ydEEm+lqFbYktKB4COR7JXdHkZXRgbSJyimrFB8d0r9+SaRnj0Q==} 1960 | engines: {node: '>= 12.0.0'} 1961 | hasBin: true 1962 | peerDependenciesMeta: 1963 | '@parcel/core': 1964 | optional: true 1965 | dependencies: 1966 | '@parcel/config-default': 2.11.0(@parcel/core@2.11.0)(typescript@5.3.3) 1967 | '@parcel/core': 2.11.0 1968 | '@parcel/diagnostic': 2.11.0 1969 | '@parcel/events': 2.11.0 1970 | '@parcel/fs': 2.11.0(@parcel/core@2.11.0) 1971 | '@parcel/logger': 2.11.0 1972 | '@parcel/package-manager': 2.11.0(@parcel/core@2.11.0) 1973 | '@parcel/reporter-cli': 2.11.0(@parcel/core@2.11.0) 1974 | '@parcel/reporter-dev-server': 2.11.0(@parcel/core@2.11.0) 1975 | '@parcel/reporter-tracer': 2.11.0(@parcel/core@2.11.0) 1976 | '@parcel/utils': 2.11.0 1977 | chalk: 4.1.2 1978 | commander: 7.2.0 1979 | get-port: 4.2.0 1980 | transitivePeerDependencies: 1981 | - '@swc/helpers' 1982 | - cssnano 1983 | - postcss 1984 | - purgecss 1985 | - relateurl 1986 | - srcset 1987 | - terser 1988 | - typescript 1989 | - uncss 1990 | dev: true 1991 | 1992 | /parent-module@1.0.1: 1993 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1994 | engines: {node: '>=6'} 1995 | dependencies: 1996 | callsites: 3.1.0 1997 | dev: true 1998 | 1999 | /parse-entities@2.0.0: 2000 | resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} 2001 | dependencies: 2002 | character-entities: 1.2.4 2003 | character-entities-legacy: 1.1.4 2004 | character-reference-invalid: 1.1.4 2005 | is-alphanumerical: 1.0.4 2006 | is-decimal: 1.0.4 2007 | is-hexadecimal: 1.0.4 2008 | dev: false 2009 | 2010 | /parse-json@5.2.0: 2011 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 2012 | engines: {node: '>=8'} 2013 | dependencies: 2014 | '@babel/code-frame': 7.23.5 2015 | error-ex: 1.3.2 2016 | json-parse-even-better-errors: 2.3.1 2017 | lines-and-columns: 1.2.4 2018 | dev: true 2019 | 2020 | /path-type@4.0.0: 2021 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2022 | engines: {node: '>=8'} 2023 | dev: true 2024 | 2025 | /picocolors@1.0.0: 2026 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2027 | dev: true 2028 | 2029 | /picomatch@2.3.1: 2030 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2031 | engines: {node: '>=8.6'} 2032 | dev: true 2033 | 2034 | /postcss-value-parser@4.2.0: 2035 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2036 | dev: true 2037 | 2038 | /posthtml-parser@0.10.2: 2039 | resolution: {integrity: sha512-PId6zZ/2lyJi9LiKfe+i2xv57oEjJgWbsHGGANwos5AvdQp98i6AtamAl8gzSVFGfQ43Glb5D614cvZf012VKg==} 2040 | engines: {node: '>=12'} 2041 | dependencies: 2042 | htmlparser2: 7.2.0 2043 | dev: true 2044 | 2045 | /posthtml-parser@0.11.0: 2046 | resolution: {integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==} 2047 | engines: {node: '>=12'} 2048 | dependencies: 2049 | htmlparser2: 7.2.0 2050 | dev: true 2051 | 2052 | /posthtml-render@3.0.0: 2053 | resolution: {integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==} 2054 | engines: {node: '>=12'} 2055 | dependencies: 2056 | is-json: 2.0.1 2057 | dev: true 2058 | 2059 | /posthtml@0.16.6: 2060 | resolution: {integrity: sha512-JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ==} 2061 | engines: {node: '>=12.0.0'} 2062 | dependencies: 2063 | posthtml-parser: 0.11.0 2064 | posthtml-render: 3.0.0 2065 | dev: true 2066 | 2067 | /prismjs@1.27.0: 2068 | resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} 2069 | engines: {node: '>=6'} 2070 | dev: false 2071 | 2072 | /prismjs@1.29.0: 2073 | resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 2074 | engines: {node: '>=6'} 2075 | dev: false 2076 | 2077 | /process@0.11.10: 2078 | resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 2079 | engines: {node: '>= 0.6.0'} 2080 | dev: true 2081 | 2082 | /property-information@5.6.0: 2083 | resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} 2084 | dependencies: 2085 | xtend: 4.0.2 2086 | dev: false 2087 | 2088 | /react-dom@18.2.0(react@18.2.0): 2089 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2090 | peerDependencies: 2091 | react: ^18.2.0 2092 | dependencies: 2093 | loose-envify: 1.4.0 2094 | react: 18.2.0 2095 | scheduler: 0.23.0 2096 | 2097 | /react-error-overlay@6.0.9: 2098 | resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==} 2099 | dev: true 2100 | 2101 | /react-refresh@0.9.0: 2102 | resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} 2103 | engines: {node: '>=0.10.0'} 2104 | dev: true 2105 | 2106 | /react-syntax-highlighter@15.5.0(react@18.2.0): 2107 | resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} 2108 | peerDependencies: 2109 | react: '>= 0.14.0' 2110 | dependencies: 2111 | '@babel/runtime': 7.23.9 2112 | highlight.js: 10.7.3 2113 | lowlight: 1.20.0 2114 | prismjs: 1.29.0 2115 | react: 18.2.0 2116 | refractor: 3.6.0 2117 | dev: false 2118 | 2119 | /react@18.2.0: 2120 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2121 | engines: {node: '>=0.10.0'} 2122 | dependencies: 2123 | loose-envify: 1.4.0 2124 | 2125 | /readdirp@3.6.0: 2126 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2127 | engines: {node: '>=8.10.0'} 2128 | dependencies: 2129 | picomatch: 2.3.1 2130 | dev: true 2131 | 2132 | /refractor@3.6.0: 2133 | resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} 2134 | dependencies: 2135 | hastscript: 6.0.0 2136 | parse-entities: 2.0.0 2137 | prismjs: 1.27.0 2138 | dev: false 2139 | 2140 | /regenerator-runtime@0.13.11: 2141 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2142 | dev: true 2143 | 2144 | /regenerator-runtime@0.14.1: 2145 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 2146 | dev: false 2147 | 2148 | /resolve-from@4.0.0: 2149 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2150 | engines: {node: '>=4'} 2151 | dev: true 2152 | 2153 | /safe-buffer@5.2.1: 2154 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2155 | dev: true 2156 | 2157 | /sass@1.71.0: 2158 | resolution: {integrity: sha512-HKKIKf49Vkxlrav3F/w6qRuPcmImGVbIXJ2I3Kg0VMA+3Bav+8yE9G5XmP5lMj6nl4OlqbPftGAscNaNu28b8w==} 2159 | engines: {node: '>=14.0.0'} 2160 | hasBin: true 2161 | dependencies: 2162 | chokidar: 3.6.0 2163 | immutable: 4.3.5 2164 | source-map-js: 1.0.2 2165 | dev: true 2166 | 2167 | /scheduler@0.23.0: 2168 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2169 | dependencies: 2170 | loose-envify: 1.4.0 2171 | 2172 | /semver@7.6.0: 2173 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} 2174 | engines: {node: '>=10'} 2175 | hasBin: true 2176 | dependencies: 2177 | lru-cache: 6.0.0 2178 | dev: true 2179 | 2180 | /source-map-js@1.0.2: 2181 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2182 | engines: {node: '>=0.10.0'} 2183 | dev: true 2184 | 2185 | /source-map@0.6.1: 2186 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 2187 | engines: {node: '>=0.10.0'} 2188 | dev: true 2189 | 2190 | /space-separated-tokens@1.1.5: 2191 | resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} 2192 | dev: false 2193 | 2194 | /srcset@4.0.0: 2195 | resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==} 2196 | engines: {node: '>=12'} 2197 | dev: true 2198 | 2199 | /stable@0.1.8: 2200 | resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} 2201 | deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' 2202 | dev: true 2203 | 2204 | /string-width@4.2.3: 2205 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2206 | engines: {node: '>=8'} 2207 | dependencies: 2208 | emoji-regex: 8.0.0 2209 | is-fullwidth-code-point: 3.0.0 2210 | strip-ansi: 6.0.1 2211 | dev: true 2212 | 2213 | /strip-ansi@6.0.1: 2214 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2215 | engines: {node: '>=8'} 2216 | dependencies: 2217 | ansi-regex: 5.0.1 2218 | dev: true 2219 | 2220 | /supports-color@5.5.0: 2221 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2222 | engines: {node: '>=4'} 2223 | dependencies: 2224 | has-flag: 3.0.0 2225 | dev: true 2226 | 2227 | /supports-color@7.2.0: 2228 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2229 | engines: {node: '>=8'} 2230 | dependencies: 2231 | has-flag: 4.0.0 2232 | dev: true 2233 | 2234 | /svgo@2.8.0: 2235 | resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} 2236 | engines: {node: '>=10.13.0'} 2237 | hasBin: true 2238 | dependencies: 2239 | '@trysound/sax': 0.2.0 2240 | commander: 7.2.0 2241 | css-select: 4.3.0 2242 | css-tree: 1.1.3 2243 | csso: 4.2.0 2244 | picocolors: 1.0.0 2245 | stable: 0.1.8 2246 | dev: true 2247 | 2248 | /tailwind-colors-scss@1.0.0: 2249 | resolution: {integrity: sha512-8lLp2IUCP0zcDP5XCXTG7wvy5Fnm712UVa5SWzdn7SZgVgp0xmlSBZJpvVmEnFJU20u1+jYuWx8WQlmW0nAnTw==} 2250 | dev: true 2251 | 2252 | /term-size@2.2.1: 2253 | resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} 2254 | engines: {node: '>=8'} 2255 | dev: true 2256 | 2257 | /timsort@0.3.0: 2258 | resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==} 2259 | dev: true 2260 | 2261 | /to-regex-range@5.0.1: 2262 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2263 | engines: {node: '>=8.0'} 2264 | dependencies: 2265 | is-number: 7.0.0 2266 | dev: true 2267 | 2268 | /tslib@2.6.2: 2269 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 2270 | dev: true 2271 | 2272 | /type-fest@0.20.2: 2273 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2274 | engines: {node: '>=10'} 2275 | dev: true 2276 | 2277 | /typescript@5.3.3: 2278 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 2279 | engines: {node: '>=14.17'} 2280 | hasBin: true 2281 | dev: true 2282 | 2283 | /update-browserslist-db@1.0.13(browserslist@4.23.0): 2284 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 2285 | hasBin: true 2286 | peerDependencies: 2287 | browserslist: '>= 4.21.0' 2288 | dependencies: 2289 | browserslist: 4.23.0 2290 | escalade: 3.1.2 2291 | picocolors: 1.0.0 2292 | dev: true 2293 | 2294 | /utility-types@3.11.0: 2295 | resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} 2296 | engines: {node: '>= 4'} 2297 | dev: true 2298 | 2299 | /weak-lru-cache@1.2.2: 2300 | resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==} 2301 | dev: true 2302 | 2303 | /xtend@4.0.2: 2304 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 2305 | engines: {node: '>=0.4'} 2306 | dev: false 2307 | 2308 | /yallist@4.0.0: 2309 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2310 | dev: true 2311 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'packages/*' 3 | --------------------------------------------------------------------------------