Update with-nanostores example to match docs walkthrough (#3840)

* feat: replace with-nanostores with new example

* docs: update README with docs call-out

* chore: small formatting inconsistencies

* nit: standardize to spaces :'(

* nit: standardize to tabs!

* refactor: use html "hidden" property

* nit: beta.66 for sanity
This commit is contained in:
Ben Holmes 2022-07-11 15:42:10 -04:00 committed by GitHub
parent bf5d1cc1e7
commit faf3f3a8d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 322 additions and 380 deletions

View file

@ -6,4 +6,4 @@ npm init astro -- --template with-nanostores
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/with-nanostores)
This example showcases using [`nanostores`](https://github.com/nanostores/nanostores) to provide shared state between components from different frameworks.
This example showcases using [`nanostores`](https://github.com/nanostores/nanostores) to provide shared state between components of any framework. [**Read our documentation on sharing state**](https://docs.astro.build/en/core-concepts/sharing-state/) for a complete breakdown of this project, along with guides to use React, Vue, Svelte, or Solid!

View file

@ -1,12 +1,8 @@
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import react from '@astrojs/react';
import svelte from '@astrojs/svelte';
import vue from '@astrojs/vue';
import solid from '@astrojs/solid-js';
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
integrations: [preact(), react(), svelte(), vue(), solid()],
integrations: [preact()],
});

View file

@ -10,21 +10,11 @@
},
"dependencies": {
"@nanostores/preact": "^0.1.3",
"@nanostores/react": "^0.1.5",
"@nanostores/vue": "^0.4.1",
"nanostores": "^0.5.12",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"solid-nanostores": "0.0.6",
"vue": "^3.2.37"
"preact": "^10.7.3"
},
"devDependencies": {
"@astrojs/preact": "^0.4.0",
"@astrojs/react": "^0.3.0",
"@astrojs/solid-js": "^0.3.0",
"@astrojs/svelte": "^0.3.0",
"@astrojs/vue": "^0.3.0",
"@astrojs/preact": "^0.3.1",
"astro": "^1.0.0-beta.66"
}
}

View file

@ -1,12 +0,0 @@
<svg width="193" height="256" fill="none" xmlns="http://www.w3.org/2000/svg">
<style>
#flame { fill: #FF5D01; }
#a { fill: #000014; }
@media (prefers-color-scheme: dark) {
#a { fill: #fff; }
}
</style>
<path id="a" fill-rule="evenodd" clip-rule="evenodd" d="M131.496 18.929c1.943 2.413 2.935 5.67 4.917 12.181l43.309 142.27a180.277 180.277 0 00-51.778-17.53L99.746 60.56a3.67 3.67 0 00-7.042.01l-27.857 95.232a180.224 180.224 0 00-52.01 17.557l43.52-142.281c1.989-6.502 2.983-9.752 4.927-12.16a15.999 15.999 0 016.484-4.798c2.872-1.154 6.271-1.154 13.07-1.154h31.085c6.807 0 10.211 0 13.085 1.157a16 16 0 016.488 4.806z" fill="url(#paint0_linear)"/>
<path id="flame" fill-rule="evenodd" clip-rule="evenodd" d="M136.678 180.151c-7.14 6.105-21.39 10.268-37.804 10.268-20.147 0-37.033-6.272-41.513-14.707-1.602 4.835-1.962 10.367-1.962 13.902 0 0-1.055 17.355 11.016 29.426 0-6.268 5.081-11.349 11.349-11.349 10.743 0 10.731 9.373 10.721 16.977v.679c0 11.542 7.054 21.436 17.086 25.606a23.27 23.27 0 01-2.339-10.2c0-11.008 6.463-15.107 13.973-19.87 5.977-3.79 12.616-8.001 17.192-16.449a31.013 31.013 0 003.744-14.82c0-3.299-.513-6.479-1.463-9.463z" />
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 KiB

View file

@ -1,2 +0,0 @@
User-agent: *
Disallow: /

View file

@ -0,0 +1,31 @@
import { atom, map } from 'nanostores';
export const isCartOpen = atom(false);
export type CartItem = {
id: string;
name: string;
imageSrc: string;
quantity: number;
}
export type CartItemDisplayInfo = Pick<CartItem, 'id' | 'name' | 'imageSrc'>;
export const cartItems = map<Record<string, CartItem>>({});
export function addCartItem({ id, name, imageSrc }) {
const existingEntry = cartItems.get()[id];
if (existingEntry) {
cartItems.setKey(id, {
...existingEntry,
quantity: existingEntry.quantity + 1,
});
} else {
cartItems.setKey(id, {
id,
name,
imageSrc,
quantity: 1,
});
}
}

View file

@ -0,0 +1,22 @@
import { isCartOpen, addCartItem } from '../cartStore';
import type { CartItemDisplayInfo } from '../cartStore';
import type { ComponentChildren } from 'preact';
type Props = {
item: CartItemDisplayInfo;
children: ComponentChildren;
}
export default function AddToCartForm({ item, children }: Props) {
function addToCart(e: SubmitEvent) {
e.preventDefault();
isCartOpen.set(true);
addCartItem(item);
}
return (
<form onSubmit={addToCart}>
{children}
</form>
)
}

View file

@ -1,30 +0,0 @@
import * as React from 'react';
import { useStore } from '@nanostores/react';
import { admins } from '../store/admins.js';
import { counter, increaseCounter, decreaseCounter } from '../store/counter.js';
const AdminsReact = () => {
const list = useStore(admins);
const count = useStore(counter);
return (
<>
<h1>React</h1>
<ul>
{list.map((admin) => (
<li key={admin.id}>{JSON.stringify(admin, null, 2)}</li>
))}
</ul>
<div>
<h3>Counter</h3>
<p>{count.value}</p>
<button onClick={decreaseCounter}>-1</button>
<button onClick={increaseCounter}>+1</button>
</div>
<br />
</>
);
};
export default AdminsReact;

View file

@ -1,30 +0,0 @@
import { createSignal } from 'solid-js';
import { useStore } from 'solid-nanostores';
import { admins } from '../store/admins.js';
import { counter, increaseCounter, decreaseCounter } from '../store/counter.js';
const AdminsSolid = () => {
const list = useStore(admins);
const count = useStore(counter);
return (
<>
<h1>Solid</h1>
<ul>
{list.map((admin) => (
<li key={admin.id}>{JSON.stringify(admin, null, 2)}</li>
))}
</ul>
<div>
<h3>Counter</h3>
<p>{count.value}</p>
<button onClick={decreaseCounter}>-1</button>
<button onClick={increaseCounter}>+1</button>
</div>
<br />
</>
);
};
export default AdminsSolid;

View file

@ -1,20 +0,0 @@
<script>
import { admins } from '../store/admins.js';
import { counter, increaseCounter, decreaseCounter } from '../store/counter.js';
</script>
<h1>Svelte</h1>
<ul>
{#each $admins as admin}
<li>{JSON.stringify(admin, null, 2)}</li>
{/each}
</ul>
<div>
<h3>Counter</h3>
<p>{$counter.value}</p>
<button on:click={decreaseCounter}>-1</button>
<button on:click={increaseCounter}>+1</button>
</div>
<br />
<!-- Just to get rid of a warning -->
<slot />

View file

@ -1,33 +0,0 @@
<template>
<div>
<h1>Vue</h1>
<ul>
<li v-for="admin in list" :key="admin.id">
{{ JSON.stringify(admin, null, 2) }}
</li>
</ul>
<div>
<h3>Counter</h3>
<p>{{ count.value }}</p>
<button @click="decreaseCounter">-1</button>
<button @click="increaseCounter">+1</button>
</div>
<br />
</div>
</template>
<script>
import { useStore } from '@nanostores/vue';
import { admins } from '../store/admins.js';
import { counter, increaseCounter, decreaseCounter } from '../store/counter.js';
export default {
setup() {
const list = useStore(admins);
const count = useStore(counter);
return { list, count, increaseCounter, decreaseCounter };
},
};
</script>

View file

@ -0,0 +1,29 @@
.container {
position: fixed;
right: 0;
top: var(--nav-height);
height: 100vh;
background: var(--color-bg-2);
padding-inline: 2rem;
min-width: min(90vw, 300px);
border-left: 3px solid var(--color-bg-3);
}
.list {
list-style: none;
padding: 0;
}
.listItem {
display: flex;
gap: 1rem;
align-items: center;
}
.listItem * {
margin-block: 0.3rem;
}
.listItemImg {
width: 4rem;
}

View file

@ -0,0 +1,26 @@
import { useStore } from '@nanostores/preact';
import { cartItems, isCartOpen } from '../cartStore';
import styles from './CartFlyout.module.css';
export default function CartFlyout() {
const $isCartOpen = useStore(isCartOpen);
const $cartItems = useStore(cartItems);
return (
<aside hidden={!$isCartOpen} className={styles.container}>
{Object.values($cartItems).length ? (
<ul className={styles.list} role="list">
{Object.values($cartItems).map(cartItem => (
<li className={styles.listItem}>
<img className={styles.listItemImg} src={cartItem.imageSrc} alt={cartItem.name} />
<div>
<h3>{cartItem.name}</h3>
<p>Quantity: {cartItem.quantity}</p>
</div>
</li>
))}
</ul>
) : <p>Your cart is empty!</p>}
</aside>
);
}

View file

@ -0,0 +1,10 @@
import { useStore } from '@nanostores/preact';
import { isCartOpen } from '../cartStore';
export default function CartFlyoutToggle() {
const $isCartOpen = useStore(isCartOpen);
return (
<button onClick={() => isCartOpen.set(!$isCartOpen)}>Cart</button>
)
}

View file

@ -0,0 +1,36 @@
<h1>Astronaut Figurine</h1>
<p class="limited-edition-badge">Limited Edition</p>
<p>The limited edition Astronaut Figurine is the perfect gift for any Astro contributor. This fully-poseable action figurine comes equipped with:</p>
<ul>
<li>A fabric space suit with adjustible straps</li>
<li>Boots lightly dusted by the lunar surface *</li>
<li>An adjustable space visor</li>
</ul>
<p>
<sub>* Dust not actually from the lunar surface</sub>
</p>
<style>
h1 {
margin: 0;
margin-block-start: 2rem;
}
.limited-edition-badge {
font-weight: 700;
text-transform: uppercase;
background-image: linear-gradient(0deg,var(--astro-blue), var(--astro-pink));
background-size: 100% 200%;
background-position-y: 100%;
border-radius: 0.4rem;
animation: pulse 4s ease-in-out infinite;
display: inline-block;
color: white;
padding: 0.2rem 0.4rem;
}
@keyframes pulse {
0%, 100% { background-position-y: 0%; }
50% { background-position-y: 80%; }
}
</style>

View file

@ -0,0 +1,106 @@
---
import CartFlyoutToggle from '../components/CartFlyoutToggle';
import CartFlyout from '../components/CartFlyout';
export interface Props {
title: string;
}
const { title } = Astro.props as Props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>{title}</title>
</head>
<body>
<header>
<nav>
<a href="/" class="nav-header"><span style="color: var(--astro-blue)">Astro</span> storefront</a>
<CartFlyoutToggle client:load />
</nav>
</header>
<slot />
<CartFlyout client:load />
</body>
</html>
<style is:global>
:root {
--font-family: system-ui, sans-serif;
--font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);
--font-size-lg: clamp(1.2rem, 0.7vw + 1.2rem, 1.5rem);
--font-size-xl: clamp(2.0rem, 1.75vw + 1.35rem, 2.75rem);
--color-text: hsl(12, 5%, 4%);
--color-bg: hsl(17, 20%, 97%);
--color-bg-2: hsl(17, 20%, 94%);
--color-bg-3: hsl(17, 20%, 88%);
--astro-blue: #4F39FA;
--astro-pink: #DA62C4;
--content-max-width: 90ch;
--nav-height: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
}
h1 {
font-size: var(--font-size-xl);
}
button {
border: none;
color: var(--astro-blue);
border: 2px solid var(--astro-blue);
transition: color 0.2s, background-color 0.2s;
background-color: transparent;
padding: 0.4rem 0.8rem;
border-radius: 0.4rem;
font-family: var(--font-family);
font-size: var(--font-size-base);
font-weight: bold;
cursor: pointer;
}
button:hover {
background-color: var(--astro-blue);
color: white;
}
</style>
<style>
html {
font-family: var(--font-family);
font-size: var(--font-size-base);
color: var(--color-text);
background-color: var(--color-bg);
}
body {
margin: 0;
}
header {
background: var(--color-bg-2);
}
nav {
max-width: var(--content-max-width);
height: var(--nav-height);
margin: auto;
padding-inline: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-header, .nav-header:visited {
font-size: var(--font-size-base);
font-weight: bold;
color: inherit;
text-decoration: none;
}
</style>

View file

@ -1,50 +1,48 @@
---
// Style Imports
import "../styles/global.css";
import "../styles/home.css";
import type { CartItemDisplayInfo } from '../cartStore';
import Layout from '../layouts/Layout.astro';
import AddToCartForm from '../components/AddToCartForm';
import FigurineDescription from '../components/FigurineDescription.astro';
// Component Imports
import AdminsReact from "../components/AdminsReact.jsx";
import AdminsSvelte from "../components/AdminsSvelte.svelte";
import AdminsVue from "../components/AdminsVue.vue";
import AdminsSolid from "../components/AdminsSolid.jsx";
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
const item: CartItemDisplayInfo = {
id: 'astronaut-figurine',
name: 'Astronaut Figurine',
imageSrc: '/images/astronaut-figurine.png',
};
---
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Astro</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<style>
header {
display: flex;
flex-direction: column;
gap: 1em;
max-width: min(100%, 68ch);
}
</style>
</head>
<body>
<Layout title={item.name}>
<main>
<header>
<div class="product-layout">
<div>
<img width="60" height="80" src="/assets/logo.svg" alt="Astro logo" />
<h1>
Welcome to <a href="https://astro.build/">Astro</a> -
<a href="https://github.com/nanostores/nanostores">nanostores</a>
</h1>
<FigurineDescription />
<AddToCartForm item={item} client:load>
<button type="submit">Add to cart</button>
</AddToCartForm>
</div>
<img src={item.imageSrc} alt={item.name} />
</div>
</header>
<AdminsReact client:load />
<AdminsSvelte client:load />
<AdminsVue client:load />
<AdminsSolid client:load />
</main>
</body>
</html>
</Layout>
<style>
main {
margin: auto;
padding: 1em;
max-width: var(--content-max-width);
}
.product-layout {
display: grid;
gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(20rem, max-content));
}
.product-layout img {
width: 100%;
max-width: 26rem;
}
button[type="submit"] {
margin-block-start: 1rem;
}
</style>

View file

@ -1,7 +0,0 @@
import { computed } from 'nanostores';
import { users } from './users.js';
const admins = computed(users, (list) => list.filter((user) => user.isAdmin));
export { admins };

View file

@ -1,15 +0,0 @@
import { atom } from 'nanostores';
const initialValue = { value: 0 };
const counter = atom(initialValue);
function increaseCounter() {
counter.set({ value: counter.get().value + 1 });
}
function decreaseCounter() {
counter.set({ value: counter.get().value - 1 });
}
export { counter, increaseCounter, decreaseCounter };

View file

@ -1,30 +0,0 @@
import { atom } from 'nanostores';
const initialValue = [
{
id: 1,
name: 'User Admin',
age: 28,
isAdmin: true,
},
{
id: 2,
name: 'NOT Admin',
age: 35,
isAdmin: false,
},
{
id: 3,
name: 'Another Admin',
age: 46,
isAdmin: true,
},
];
const users = atom(initialValue);
const addUser = function addUser(user) {
users.set([...users.get(), user]);
};
export { users, addUser };

View file

@ -1,29 +0,0 @@
* {
box-sizing: border-box;
margin: 0;
}
:root {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif,
Apple Color Emoji, Segoe UI Emoji;
font-size: 1rem;
--user-font-scale: 1rem - 16px;
font-size: clamp(0.875rem, 0.4626rem + 1.0309vw + var(--user-font-scale), 1.125rem);
}
body {
padding: 4rem 2rem;
width: 100%;
min-height: 100vh;
display: grid;
justify-content: center;
background: #f9fafb;
color: #111827;
}
@media (prefers-color-scheme: dark) {
body {
background: #111827;
color: #fff;
}
}

View file

@ -1,40 +0,0 @@
:root {
--font-mono: Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter',
'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Liberation Mono', 'Nimbus Mono L', Monaco,
'Courier New', Courier, monospace;
--color-light: #f3f4f6;
}
@media (prefers-color-scheme: dark) {
:root {
--color-light: #1f2937;
}
}
a {
color: inherit;
}
header > div {
font-size: clamp(2rem, -0.4742rem + 6.1856vw, 2.75rem);
}
header > div {
display: flex;
flex-direction: column;
align-items: center;
}
header h1 {
font-size: 1em;
font-weight: 500;
}
header img {
width: 2em;
height: 2.667em;
}
h2 {
font-weight: 500;
font-size: clamp(1.5rem, 1rem + 1.25vw, 2rem);
}

View file

@ -424,37 +424,17 @@ importers:
examples/with-nanostores:
specifiers:
'@astrojs/preact': ^0.4.0
'@astrojs/react': ^0.3.0
'@astrojs/solid-js': ^0.3.0
'@astrojs/svelte': ^0.3.0
'@astrojs/vue': ^0.3.0
'@astrojs/preact': ^0.3.1
'@nanostores/preact': ^0.1.3
'@nanostores/react': ^0.1.5
'@nanostores/vue': ^0.4.1
astro: ^1.0.0-beta.66
nanostores: ^0.5.12
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
solid-nanostores: 0.0.6
vue: ^3.2.37
dependencies:
'@nanostores/preact': 0.1.3_yorvncwmul77jqfpi57ixjptpa
'@nanostores/react': 0.1.5_3iuy2wepgz3w53kxsavf2p7rzm
'@nanostores/vue': 0.4.1_ympl27tda4o7w6en7idglmssei
nanostores: 0.5.12
preact: 10.9.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
solid-nanostores: 0.0.6
vue: 3.2.37
devDependencies:
'@astrojs/preact': link:../../packages/integrations/preact
'@astrojs/react': link:../../packages/integrations/react
'@astrojs/solid-js': link:../../packages/integrations/solid
'@astrojs/svelte': link:../../packages/integrations/svelte
'@astrojs/vue': link:../../packages/integrations/vue
'@astrojs/preact': 0.3.2_preact@10.9.0
astro: link:../../packages/astro
examples/with-tailwindcss:
@ -2692,6 +2672,20 @@ packages:
vfile-message: 3.1.2
dev: false
/@astrojs/preact/0.3.2_preact@10.9.0:
resolution: {integrity: sha512-1NMlVy2/Pq3HYfrHAFHVt1MwMRmW0VbiJxwPQwJatRa1RcACWr4mHjk0KE7RYj+1Lu9e85VmR6BumhZO8/olaQ==}
engines: {node: ^14.15.0 || >=16.0.0}
peerDependencies:
preact: ^10.6.5
dependencies:
'@babel/plugin-transform-react-jsx': 7.18.6
babel-plugin-module-resolver: 4.1.0
preact: 10.9.0
preact-render-to-string: 5.2.0_preact@10.9.0
transitivePeerDependencies:
- '@babel/core'
dev: true
/@astrojs/svelte-language-integration/0.1.6_typescript@4.6.4:
resolution: {integrity: sha512-nqczE674kz7GheKSWQwTOL6+NGHghc4INQox048UyHJRaIKHEbCPyFLDBDVY7QJH0jug1komCJ8OZXUn6Z3eLA==}
dependencies:
@ -3344,7 +3338,6 @@ packages:
optional: true
dependencies:
'@babel/helper-plugin-utils': 7.18.6
dev: false
/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.6:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
@ -3809,7 +3802,6 @@ packages:
'@babel/helper-plugin-utils': 7.18.6
'@babel/plugin-syntax-jsx': 7.18.6
'@babel/types': 7.18.8
dev: false
/@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.6:
resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==}
@ -4749,34 +4741,6 @@ packages:
preact: 10.9.0
dev: false
/@nanostores/react/0.1.5_3iuy2wepgz3w53kxsavf2p7rzm:
resolution: {integrity: sha512-1XEsszpCDcxNeX21QJ+4mFROdn45ulahJ9oLJEo0IA2HZPkwfjSzG+iSXImqFU5nzo0earvlD09z4C9olf8Sxw==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
peerDependencies:
nanostores: ^0.5.2
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
nanostores: 0.5.12
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@nanostores/vue/0.4.1_ympl27tda4o7w6en7idglmssei:
resolution: {integrity: sha512-b0nNzKD2fTi8R48Jrlg6j+/InPH9r1HOl0iOnpNmL84BOxl+jQnbgyzNlf+3VWAEQSD955hJ/HTl/N1bjJSz5g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
peerDependencies:
'@vue/devtools-api': '>=6.0.0-beta.20'
nanostores: ^0.5.6
vue: '>=3.2.0'
peerDependenciesMeta:
'@vue/devtools-api':
optional: true
dependencies:
nanostores: 0.5.12
vue: 3.2.37
dev: false
/@netlify/edge-handler-types/0.34.1:
resolution: {integrity: sha512-YTwn8cw89M4lRTmoUhl9s8ljSGMDt7FOIsxsrx7YrRz/RZlbh4Yuh4RU13DDafDRBEVuRbjGo93cnN621ZfBjA==}
dependencies:
@ -8346,7 +8310,6 @@ packages:
pkg-up: 3.1.0
reselect: 4.1.6
resolve: 1.22.1
dev: false
/babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.6:
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
@ -9946,14 +9909,12 @@ packages:
dependencies:
json5: 0.5.1
path-exists: 3.0.0
dev: false
/find-up/3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
dependencies:
locate-path: 3.0.0
dev: false
/find-up/4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
@ -11058,7 +11019,6 @@ packages:
/json5/0.5.1:
resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
hasBin: true
dev: false
/json5/2.2.1:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
@ -11193,7 +11153,6 @@ packages:
dependencies:
p-locate: 3.0.0
path-exists: 3.0.0
dev: false
/locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
@ -12380,7 +12339,6 @@ packages:
engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
dev: false
/p-locate/4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
@ -12522,7 +12480,6 @@ packages:
/path-exists/3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: false
/path-exists/4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
@ -12592,7 +12549,6 @@ packages:
engines: {node: '>=8'}
dependencies:
find-up: 3.0.0
dev: false
/playwright-core/1.23.2:
resolution: {integrity: sha512-UGbutIr0nBALDHWW/HcXfyK6ZdmefC99Moo4qyTr89VNIkYZuDrW8Sw554FyFUamcFSdKOgDPk6ECSkofGIZjQ==}
@ -13034,7 +12990,6 @@ packages:
dependencies:
preact: 10.9.0
pretty-format: 3.8.0
dev: false
/preact/10.6.6:
resolution: {integrity: sha512-dgxpTFV2vs4vizwKohYKkk7g7rmp1wOOcfd4Tz3IB3Wi+ivZzsn/SpeKJhRENSE+n8sUfsAl4S3HiCVT923ABw==}
@ -13111,7 +13066,6 @@ packages:
/pretty-format/3.8.0:
resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==}
dev: false
/prismjs/1.28.0:
resolution: {integrity: sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==}
@ -13553,7 +13507,6 @@ packages:
/reselect/4.1.6:
resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==}
dev: false
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
@ -13920,13 +13873,6 @@ packages:
/solid-js/1.4.7:
resolution: {integrity: sha512-u3hoe5w3xseAc/8zLwYaQVGanWXknMMQkzryNz7lOPy2ygW6DhCtfMseun4kLflRNRzrUUpTV3W5p7j2SGcHCQ==}
/solid-nanostores/0.0.6:
resolution: {integrity: sha512-iwbgdBzQSxBKoxkzaZgC9MGGUsHWJ74at9i7FF0naoqtwGuKdLYOgOJ9QRlA353DHDS/ttH2e0SRS6s3gz8NLQ==}
dependencies:
nanostores: 0.5.12
solid-js: 1.4.7
dev: false
/sorcery/0.10.0:
resolution: {integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g==}
hasBin: true